/* Interface show/hide */
.hide-down {
  animation-duration: var(--interface-animation-duration);
  animation-timing-function: ease-in;
  animation-name: hide-down;
  animation-fill-mode: forwards;
}
.show-down {
  animation-duration: var(--interface-animation-duration);
  animation-timing-function: ease-in;
  animation-name: show-down;
  animation-fill-mode: forwards;
}
.hide-up {
  animation-duration: var(--interface-animation-duration);
  animation-timing-function: ease-in;
  animation-name: hide-up;
  animation-fill-mode: forwards;
}
.show-up {
  animation-duration: var(--interface-animation-duration);
  animation-timing-function: ease-in;
  animation-name: show-up;
  animation-fill-mode: forwards;
}
.hide-message-sidebar {
  animation-duration: var(--interface-animation-duration);
  animation-timing-function: ease-in;
  animation-name: hide-message-sidebar;
  animation-fill-mode: forwards;
}
.show-message-sidebar {
  animation-duration: var(--interface-animation-duration);
  animation-timing-function: ease-in;
  animation-name: show-message-sidebar;
  animation-fill-mode: forwards;
}
.hide-right {
  animation-duration: var(--interface-animation-duration);
  animation-timing-function: ease-in;
  animation-name: hide-right;
  animation-fill-mode: forwards;
}
.show-right {
  animation-duration: var(--interface-animation-duration);
  animation-timing-function: ease-in;
  animation-name: show-right;
  animation-fill-mode: forwards;
}
@keyframes hide-down {
  100% {
    bottom: -80px;
  }
}
@keyframes show-down {
  0% {
    bottom: -80px;
  }
}
@keyframes hide-up {
  100% {
    top: -80px;
  }
}
@keyframes show-up {
  0% {
    top: -80px;
  }
}
@keyframes hide-message-sidebar {
  100% {
    margin-left: -80px;
  }
}
@keyframes show-message-sidebar {
  0% {
    margin-left: -80px;
  }
}
@keyframes hide-right {
  100% {
    right: -160px;
  }
}
@keyframes show-right {
  0% {
    right: -160px;
  }
}

#room-capacity-dialog {
  text-align: center;
}
#room-capacity-dialog .title {
  font-size: 18px;
  margin: 8px 0 12px;
  place-content: center;
}
#room-capacity-dialog .title-image {
  margin-bottom: 20px;
}
#room-capacity-dialog .title-image img {
  height: 400px;
}
#room-capacity-dialog .capacity-container {
  margin-bottom: 20px;
}
#room-capacity-dialog .capacity-container .capacity {
  color: #f00;
}
#room-capacity-dialog .capacity-container .capacity-icon {
  height: 20px;
  position: relative;
  top: -2px;
}
#room-capacity-dialog .retry-button {
  width: 60%;
  color: white;
}

.message-creator {
  font-size: 0.7rem;
  padding-top: 0.2em;
  padding-left: 5px;
  padding-bottom: 0;
  color: #fff;
  text-shadow: 1px 1px #333;
}
.message-creator .message-date {
  color: #999;
}
.message-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  word-wrap: break-word;
}
.message-container.room-card-message {
  margin-top: 8px;
}
.bottom-message-bubble {
  border-radius: 10px 10px 10px 0;
}
.bottom-message-bubble-self {
  border-radius: 10px 10px 0 10px;
}
.message-bubble {
  border-radius: 10px;
}
.message-bubble,
.image-message-bubble,
.bottom-message-bubble-self,
.bottom-message-bubble {
  display: inline-block;
  position: relative;
  color: #eee;
  background-color: #6b1be3;
  pointer-events: all;
  margin: 0;
  padding: 7px 5px;
  vertical-align: middle;
  line-height: 1.2em;
  box-shadow: 1px 1px 3px #0008;
}
.message-bubble.inside-decorator,
.image-message-bubble.inside-decorator,
.bottom-message-bubble-self.inside-decorator,
.bottom-message-bubble.inside-decorator {
  overflow: hidden;
}
.message-bubble .message-text,
.image-message-bubble .message-text,
.bottom-message-bubble-self .message-text,
.bottom-message-bubble .message-text {
  position: relative;
  padding: 1px 4px;
  overflow-wrap: anywhere;
  user-select: text;
  cursor: text;
}
.message-bubble .message-emoji,
.image-message-bubble .message-emoji,
.bottom-message-bubble-self .message-emoji,
.bottom-message-bubble .message-emoji {
  overflow-wrap: anywhere;
  font-size: 50px;
  line-height: 50px;
}
.message-bubble a,
.image-message-bubble a,
.bottom-message-bubble-self a,
.bottom-message-bubble a,
.message-bubble a:hover,
.image-message-bubble a:hover,
.bottom-message-bubble-self a:hover,
.bottom-message-bubble a:hover {
  color: inherit;
}
.message-bubble img,
.image-message-bubble img,
.bottom-message-bubble-self img,
.bottom-message-bubble img {
  max-width: 75px;
  max-height: 75px;
  object-fit: fill;
  padding-right: 5px;
}
.message-bubble .sticker,
.image-message-bubble .sticker,
.bottom-message-bubble-self .sticker,
.bottom-message-bubble .sticker {
  max-width: 200px;
  max-height: 200px;
}
.message-bubble p,
.image-message-bubble p,
.bottom-message-bubble-self p,
.bottom-message-bubble p {
  font-size: 16px;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 10px 0 10px 0;
  color: #444;
}
.message-bubble h2,
.image-message-bubble h2,
.bottom-message-bubble-self h2,
.bottom-message-bubble h2 {
  font-size: 1.1em;
  padding: 0;
  margin: 0;
}
.message-bubble .message-add-element-prompt,
.image-message-bubble .message-add-element-prompt,
.bottom-message-bubble-self .message-add-element-prompt,
.bottom-message-bubble .message-add-element-prompt {
  text-align: center;
}
.message-bubble .hidden,
.image-message-bubble .hidden,
.bottom-message-bubble-self .hidden,
.bottom-message-bubble .hidden {
  display: none;
}
.message-bubble .embed-element-button,
.image-message-bubble .embed-element-button,
.bottom-message-bubble-self .embed-element-button,
.bottom-message-bubble .embed-element-button {
  display: inline-block;
  border-radius: 12px;
  background-color: #6b1be3;
  border: none;
  width: 200px;
  font-size: 1.2em;
  font-weight: normal;
  color: #fff;
  cursor: pointer;
  max-width: 100%;
  padding: 0.5rem 1rem;
}
.message-bubble .embed-element-button:hover,
.image-message-bubble .embed-element-button:hover,
.bottom-message-bubble-self .embed-element-button:hover,
.bottom-message-bubble .embed-element-button:hover {
  text-decoration: none;
}
.image-message-bubble {
  padding: 0;
  background: none;
  box-shadow: none;
  background-color: transparent !important;
}
.image-message-bubble img {
  max-width: 250px;
  max-height: unset;
  padding: 0;
  border-radius: 10px;
}
.image-message-bubble .feed-item-image-content {
  max-width: 100%;
}
.bottom-message-bubble-self.image-message-bubble img,
.bottom-message-bubble.image-message-bubble img {
  border-bottom-left-radius: 0;
}
.bottom-message-bubble-self.image-message-bubble img {
  border-bottom-right-radius: 0;
}
.message-link-summary {
  background-color: #ededed;
  margin-top: 5px;
  padding: 5px;
  pointer-events: all;
  color: #444;
  text-decoration: none;
  border-radius: 0 0 10px 10px;
  display: grid;
  grid-template-areas: 'message-link-thumbnail message-link-title' 'message-link-thumbnail message-link-description' 'message-link--embed message-link--embed' 'message-link--add-element-prompt message-link--add-element-prompt';
  grid-template-columns: auto 1fr;
  grid-template-rows: 1fr auto;
}
.message-link-summary .message-link-image {
  grid-area: message-link-thumbnail;
}
.message-link-summary .message-link-title {
  grid-area: message-link-title;
}
.message-link-summary .message-link-description {
  grid-area: message-link-description;
}
.message-link-summary .message-add-element-prompt {
  grid-area: message-link--add-element-prompt;
  margin-top: 4px;
}
.sticker-bubble {
  background-color: transparent;
  box-shadow: none;
}
.chat-item-context-buttons {
  position: absolute;
  top: calc(-20px / 2);
  right: calc(-20px / 2);
  z-index: 10;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  border-radius: 20px;
}
.chat-item-context-buttons .chat-item-context-button {
  padding: 3px;
  height: 20px;
  width: 20px;
  cursor: pointer;
  border-radius: 50%;
}
.chat-item-context-buttons .chat-item-context-button:hover {
  display: flex;
  background-color: #ececec;
}
.local-message .chat-item-context-buttons {
  display: none !important;
}
.feed-text-message {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 7px;
}
.feed-text-message .feed-text-message-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.feed-text-message,
.feed-image-message {
  display: flex;
}
.feed-text-message .feed-text-message-header,
.feed-image-message .feed-text-message-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.feed-text-message .message-container,
.feed-image-message .message-container {
  position: relative;
}
.feed-text-message .delete-message-button,
.feed-image-message .delete-message-button {
  position: absolute;
  top: -5px;
  right: -2px;
  width: 15px;
  height: 15px;
  display: none;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: #000;
  font-size: 11px;
  border: none;
  border-radius: 50%;
  background-color: #f6335d;
  pointer-events: all;
  margin: 0;
  padding: 0;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.feed-text-message .delete-message-button:hover,
.feed-image-message .delete-message-button:hover {
  background-color: #e74f81;
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}
.feed-image-message {
  position: relative;
}
.feed-image-message .message-container:hover {
  cursor: pointer;
}
.feed-system-message {
  color: white;
  font-size: 0.7rem;
  text-shadow: 1px 1px #333;
  font-weight: 500;
  line-height: 20px;
  padding-left: 48px;
  font-family: var(--chat-system-font, Inter, sans-serif);
}
.feed-system-message .feed-system-message-text::before {
  content: ' ';
  position: relative;
  width: 5px;
  display: inline-block;
}
.feed-system-message .friending-button {
  width: 135px;
  height: 30px;
  font-size: 10px;
  font-weight: 700;
  column-gap: 6px;
  color: var(--secondary-foreground, white);
  background: var(--secondary-background, #6b1be3);
}
.feed-system-message .friending-button path[fill]:not([fill='none']),
.feed-system-message .friending-button circle[fill]:not([fill='none']),
.feed-system-message .friending-button g[fill]:not([fill='none']),
.feed-system-message .friending-button rect[fill]:not([fill='none']) {
  fill: var(--secondary-foreground, white);
}
.feed-system-message .friending-button path[stroke],
.feed-system-message .friending-button circle[stroke],
.feed-system-message .friending-button g[stroke],
.feed-system-message .friending-button rect[stroke] {
  stroke: var(--secondary-foreground, white);
}
.feed-system-message .friending-button:hover {
  background: var(--secondary-background-alpha-80, rgba(97, 44, 218, 0.8));
  text-decoration: none;
  color: var(--secondary-foreground, white);
}
.feed-system-message button {
  color: #aaaaaa;
  font-size: 0.6rem;
  border: none;
  background-color: inherit;
  cursor: pointer;
  pointer-events: all;
}
.feed-system-message button:hover {
  color: #0f6ecd;
  text-decoration: underline;
}

.minimap-container {
  display: none;
  position: absolute;
  top: 64px;
  right: 10px;
  width: 152px;
  height: 115px;
}
.minimap-container.electron-windows {
  top: 79px;
}
.minimap-container #mini-map,
.minimap-container #reset-position-button,
.minimap-container #zoom-in,
.minimap-container #zoom-out {
  background: var(--primary-background, #12002d);
  color: var(--primary-foreground, white);
  opacity: 0.7;
}
.minimap-container #mini-map path[fill]:not([fill='none']),
.minimap-container #reset-position-button path[fill]:not([fill='none']),
.minimap-container #zoom-in path[fill]:not([fill='none']),
.minimap-container #zoom-out path[fill]:not([fill='none']),
.minimap-container #mini-map circle[fill]:not([fill='none']),
.minimap-container #reset-position-button circle[fill]:not([fill='none']),
.minimap-container #zoom-in circle[fill]:not([fill='none']),
.minimap-container #zoom-out circle[fill]:not([fill='none']),
.minimap-container #mini-map g[fill]:not([fill='none']),
.minimap-container #reset-position-button g[fill]:not([fill='none']),
.minimap-container #zoom-in g[fill]:not([fill='none']),
.minimap-container #zoom-out g[fill]:not([fill='none']),
.minimap-container #mini-map rect[fill]:not([fill='none']),
.minimap-container #reset-position-button rect[fill]:not([fill='none']),
.minimap-container #zoom-in rect[fill]:not([fill='none']),
.minimap-container #zoom-out rect[fill]:not([fill='none']) {
  fill: var(--primary-foreground, white);
}
.minimap-container #mini-map path[stroke],
.minimap-container #reset-position-button path[stroke],
.minimap-container #zoom-in path[stroke],
.minimap-container #zoom-out path[stroke],
.minimap-container #mini-map circle[stroke],
.minimap-container #reset-position-button circle[stroke],
.minimap-container #zoom-in circle[stroke],
.minimap-container #zoom-out circle[stroke],
.minimap-container #mini-map g[stroke],
.minimap-container #reset-position-button g[stroke],
.minimap-container #zoom-in g[stroke],
.minimap-container #zoom-out g[stroke],
.minimap-container #mini-map rect[stroke],
.minimap-container #reset-position-button rect[stroke],
.minimap-container #zoom-in rect[stroke],
.minimap-container #zoom-out rect[stroke] {
  stroke: var(--primary-foreground, white);
}
.minimap-container #mini-map:hover,
.minimap-container #reset-position-button:hover,
.minimap-container #zoom-in:hover,
.minimap-container #zoom-out:hover {
  opacity: 1;
}
.minimap-container #mini-map {
  z-index: 1000;
  position: absolute;
  width: 115px;
  height: 115px;
  border-radius: 10px;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.1);
  right: 0;
  top: 0;
  cursor: grab;
}
.minimap-container #mini-map:active {
  cursor: grabbing;
}
.minimap-container #reset-position-button {
  z-index: 1000;
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 15px;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.1);
  right: 130px;
  overflow: hidden;
  top: 85px;
  outline: none;
  border: none;
  cursor: pointer;
}
.minimap-container #zoom {
  z-index: 1000;
  position: absolute;
  width: 30px;
  height: 70px;
  border-radius: 15px;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.1);
  right: 130px;
  overflow: hidden;
  top: 0;
}
.minimap-container #zoom-in,
.minimap-container #zoom-out {
  outline: none;
  border: none;
  font-size: 1.5em;
  text-align: center;
  width: 100%;
  height: 50%;
  cursor: pointer;
}
@media (max-width: 613px) {
  .minimap-container {
    display: none !important;
  }
}
.map-controls-feed-open {
  margin-right: 240px;
  transition: margin-right 0.3s ease;
}
.map-controls-feed-closed {
  margin-right: 0;
  transition: margin-right 0.3s ease;
}
.minimap-feed-open {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.minimap-feed-closed {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.camera-hand {
  position: absolute;
  z-index: 9997;
  pointer-events: none;
  height: 0;
}
.camera-hand .hand-image {
  position: absolute;
  width: 100%;
  height: 100%;
  transform: translateY(-50%);
}
.camera-hand .camera-arm {
  position: absolute;
  width: 35%;
  margin-left: 32.5%;
  margin-top: 10px;
}

.wayfinder {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  width: 84px;
  height: 84px;
  overflow: visible;
}
.wayfinder svg {
  width: 84px;
  height: 84px;
  transform-origin: 40px 52px;
}
.wayfinder .bars {
  margin: -30px 0 0 -20px;
  position: sticky;
  margin: 30px 26px;
  margin-bottom: 6px;
  float: right;
}
.wayfinder .bar {
  background: white;
  bottom: 1px;
  height: 2px;
  position: absolute;
  width: 3px;
  animation: sound 0ms -600ms linear infinite alternate;
}
@keyframes sound {
  0% {
    opacity: 1;
    height: 3px;
  }
  100% {
    opacity: 1;
    height: 8px;
  }
}
.wayfinder .bar:nth-child(1) {
  left: 2px;
  animation-duration: 474ms;
}
.wayfinder .bar:nth-child(2) {
  left: 7px;
  animation-duration: 433ms;
}
.wayfinder .bar:nth-child(3) {
  left: 12px;
  animation-duration: 407ms;
}
.wayfinder .bar:nth-child(4) {
  left: 17px;
  animation-duration: 458ms;
}
.wayfinder .bar:nth-child(5) {
  left: 22px;
  animation-duration: 400ms;
}
.wayfinder .bar:nth-child(6) {
  left: 27px;
  animation-duration: 427ms;
}
.wayfinder .bar:nth-child(7) {
  left: 32px;
  animation-duration: 441ms;
}
.wayfinder .bar:nth-child(8) {
  left: 37px;
  animation-duration: 419ms;
}
.wayfinder .bar:nth-child(9) {
  left: 42px;
  animation-duration: 487ms;
}
.wayfinder .bar:nth-child(10) {
  left: 47px;
  animation-duration: 442ms;
}

.options-menu-option {
  width: 100%;
  text-align: left;
}
.options-menu-option.hidden {
  display: none;
}
.options-menu-option .right {
  position: absolute;
  right: 8%;
}
.options-menu-option.disabled {
  cursor: default;
}
.camera-add-friend-menu-button {
  position: relative;
}
.camera-add-friend-menu-button img {
  position: absolute;
  top: -4px;
  width: 20px;
  max-width: none;
}
.camera-add-friend-menu-button img.request-sent-icon {
  top: 3px;
  left: 2px;
  width: 12px;
}
.camera-add-friend-menu-button.request-sent .add-icon,
.camera-add-friend-menu-button:not(.request-sent) .request-sent-icon {
  display: none;
}
.camera-add-friend-menu-button.request-sent {
  pointer-events: none;
}
.duplicate-option .locked-text,
.deck-option .locked-text,
.undeck-option .locked-text {
  display: none;
}
.duplicate-option.disabled .locked-text,
.deck-option.disabled .locked-text,
.undeck-option.disabled .locked-text {
  margin-left: 5px;
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  cursor: default;
}
.duplicate-option.disabled .locked-text img,
.deck-option.disabled .locked-text img,
.undeck-option.disabled .locked-text img {
  margin-left: 3px;
  margin-right: 5px;
  opacity: 0.6;
}
.element-footer-options-translate {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
}
.element-footer-options-translate .element-footer-options {
  display: none;
  flex-direction: row;
  justify-content: flex-end;
  height: 20px;
  line-height: 30px;
  z-index: 1000;
  padding: 0;
  margin: 0;
  transform-origin: bottom right;
}
.element-footer-options-translate .element-footer-options .element-option-button.unlock {
  display: none;
}
.element-footer-options-translate .element-footer-options.locked .element-option-button {
  display: none !important;
}
.element-footer-options-translate .element-footer-options.locked .element-option-button.unlock {
  display: block !important;
}
.rotating .element-footer-options-translate .element-footer-options {
  display: flex !important;
}
.element-footer-options-translate .element-footer-options.hidden {
  display: none !important;
}
.element-footer-options-translate .hidden {
  display: none !important;
}
.boardElement:hover .element-footer-options {
  display: flex;
}
.element-option-item,
.element-option-button {
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  width: 16px;
  height: 16px;
  margin: 0 2px;
}
@media (max-width: 576px) {
  .element-footer-options {
    height: 30px;
  }
  .element-option-item,
  .element-option-button {
    width: 30px;
    height: 30px;
    background-size: 18px 18px;
  }
}
.element-option-button {
  background-color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}
.element-option-button:hover {
  background-color: #ffffff;
}
.camera-send-dm {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #6031d6b3;
  border: 1px solid white;
}
.camera-send-dm .send-message-icon {
  height: 9px;
  width: 9px;
}
.camera-send-dm:hover {
  background-color: #6031d6;
}
.element-options-menu {
  padding: 3px 10px;
  line-height: 25px;
}
.resize {
  cursor: move;
  background-image: url(/images/icons/resize.svg);
}
.rotate {
  background-image: url(/images/icons/rotate.svg);
}
.download {
  background-image: url(/images/icons/download.svg);
}
.unlock {
  background-image: url(/images/icons/lock-black.svg);
  background-size: 40%;
}
.rotate,
body.rotating-cursor * {
  cursor: url(/images/icons/rotate.svg) 10 10, alias;
}
.copy-button {
  background-image: url(/images/icons/copy.png);
  background-size: 10px 10px;
}
.element-overflow {
  background-image: url(/images/icons/more.svg);
}
.can-move {
  cursor: grab;
}
.pinnable {
  cursor: url(/images/icons/pin-cursor.svg), auto;
}
.pinnable:hover {
  filter: drop-shadow(5px 5px 15px #612cda) drop-shadow(-5px -5px 15px #bd14ff);
}
.boardElement.deck-element .element-container {
  filter: drop-shadow(5px 5px 15px #f00) drop-shadow(-5px -5px 15px #f00);
  cursor: copy;
}
.boardElement.deck-element .deck-option,
.boardElement.deck-element .duplicate-option {
  display: none;
}
.boardElement:not(.deck-element) .undeck-option {
  display: none;
}
.unpinnable {
  cursor: url(/images/icons/pin-cursor-minus.svg), auto;
}
.ignore-pointer {
  pointer-events: none;
}
.boardElement {
  /* Center the element */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  transition: filter ease-in-out 0.25s;
}
.boardElement .element-container {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.boardElement .element-container .rotatable-container.full-height {
  height: 100%;
}
.boardElement .containing-rectangle {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scale3d(1, 1, 1);
}
.pin-to-element-toast {
  position: absolute;
  bottom: 60px;
  padding: 15px;
  background-color: #000a;
  border-radius: 10px;
}
.pin-to-element-toast p {
  margin: 0;
  color: #fff;
  font-size: 1rem;
}
.pin-to-element-toast p:not(:first-child) {
  margin-top: 5px;
}
.option-menu-extension {
  left: 185px;
  top: 0;
}
.element-container.ignore-pointer ~ .element-footer-options-translate .interaction-option {
  display: none;
}
.tag-user-button {
  font-size: 11px;
  color: black;
  line-height: 13px;
  text-align: center;
}
.tagging-container {
  position: absolute;
  top: 0;
  right: 0;
}

@font-face {
  font-family: Digital;
  src: url(/fonts/digital/digital.ttf);
}
.presentation-mode-button {
  position: absolute;
  top: 10px;
  left: 10px;
  margin: 0;
  padding: 13px;
  z-index: 1;
  display: flex;
  align-items: center;
  border: none;
  border-radius: 20px;
  background-color: #39c360;
  cursor: pointer;
}
.presentation-mode-button .text {
  margin-left: 8px;
  margin-right: 16px;
  color: white;
  font-size: 14px;
  font-weight: bold;
}
.presentation-mode-controls {
  display: none;
}
.presentation-mode-controls.visible {
  display: flex;
}
.camera-container {
  padding: 0;
  width: 100%;
  height: 100%;
}
.camera-container img.no-signal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000000;
  display: none;
}
.camera-container.screenshare:hover .presentation-mode-controls {
  display: flex;
}
.camera-container .video-container {
  width: 100%;
  height: 100%;
}
.camera-container .video-container video {
  max-width: 100%;
  max-height: 100%;
}
.camera-container .video-container .camera-muted-icon {
  position: absolute;
  left: 5%;
  bottom: 5%;
  z-index: 1;
  height: 14%;
  width: 14%;
  border: none;
  background-color: #f6335d;
  background-image: url('../images/icons/mic-off-white.svg');
  background-size: 60%;
  background-position: 50%;
  background-repeat: no-repeat;
  clip-path: circle(50% at 50% 50%);
}
.camera-container .video-container .camera-muted-icon.camera-muted-button {
  cursor: pointer;
}
.camera-container .video-container .camera-muted-icon.camera-muted-button:hover {
  background-color: #ff556f;
}
.camera-container .video-container .camera-muted-icon.hidden {
  display: none;
}
.camera-container .camera {
  position: relative;
  top: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}
.camera-container .mirror {
  transform: scaleX(-1) translateZ(0);
}
.camera-container video,
.camera-container .video-snapshot {
  position: relative;
  object-fit: cover;
  object-position: center;
  min-width: 100%;
  min-height: 100%;
}
.camera-container here-avatar {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 3em;
}
.screenshare-fullscreen {
  display: flex;
  justify-content: center;
  align-items: center;
}
.screenshare-fullscreen .screenshare-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 13%;
  background: linear-gradient(180deg, rgba(18, 0, 45, 0) 0%, rgba(18, 0, 45, 0.08) 32.81%, rgba(18, 0, 45, 0.4) 100%);
  display: none;
  z-index: 1;
}
.screenshare-fullscreen .screenshare-controls-bar {
  position: absolute;
  bottom: 8px;
  left: 12px;
  transform-origin: bottom left;
  z-index: 1;
  display: none;
  box-sizing: border-box;
  align-items: center;
}
.screenshare-fullscreen .screenshare-controls-bar .volume-icon {
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.screenshare-fullscreen .screenshare-controls-bar .volume-icon > img {
  width: 14px;
  filter: invert(1);
}
.screenshare-fullscreen .screenshare-controls-bar .volume-icon > img[src$='off.svg'] {
  width: 10px;
}
.screenshare-fullscreen .screenshare-controls-bar .volume-icon .here-audio-control-wrapper {
  position: absolute;
  bottom: -8px;
  left: 0;
  z-index: 1;
  display: none;
  transform: scale(0.7);
  transform-origin: bottom left;
}
.screenshare-fullscreen .screenshare-controls-bar .volume-icon:hover .here-audio-control-wrapper {
  display: block;
}
.screenshare-fullscreen:hover .screenshare-controls-bar,
.screenshare-fullscreen:hover .screenshare-overlay {
  display: block;
}
.screenshare-fullscreen:hover .screenshare-controls-bar.hidden {
  display: none;
}
.screenshare-fullscreen:fullscreen:hover .screenshare-controls-bar,
.screenshare-fullscreen:fullscreen:hover .screenshare-overlay {
  display: none;
}
.screenshare-fullscreen::backdrop {
  background-color: #000000a0;
  backdrop-filter: blur(6px);
}
.screenshare-fullscreen .animation {
  height: unset !important;
}
.screenshare-fullscreen .camera-name-container {
  position: absolute;
  top: -30px;
  max-width: 600px;
  bottom: unset;
  justify-content: flex-start;
}
.screenshare-fullscreen .camera-name-container .camera-name {
  margin: 0 auto;
}
.presentation-mode-dropdown {
  padding: 19px 17px;
  background-color: white;
  border-radius: 10px;
}
.presentation-mode-dropdown .uk-dropdown-nav {
  padding-left: 20px;
}
.presentation-mode-dropdown .presentation-mode-list-item.selected {
  list-style-image: url(../images/icons/check-main.svg);
}
.camera-name-container {
  position: absolute;
  max-width: 600px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 2;
  gap: 2px;
  height: 64px;
}
.camera-name-container .camera-name {
  display: none;
  white-space: nowrap;
  line-height: 14px;
  animation-duration: 0.25s;
  animation-name: slideup;
  background: rgba(18, 0, 45, 0.4);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  color: white;
  padding: 5px 9px;
}
.camera-name-container .camera-name a {
  color: white;
  text-decoration: none;
}
.boardElement:hover .camera-name-container .camera-name {
  display: block;
  align-items: center;
}
.camera-name-container .camera-name .link-quality {
  margin-left: 10px;
  margin: 0 0 0 8px;
  vertical-align: baseline;
}
.camera-name-icon {
  margin-top: -3px;
  margin-right: 6px;
}
.link-quality-icon {
  margin-top: -3px;
  margin-right: 6px;
}
.camera-audio-level {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 40%;
  width: 100%;
}
@keyframes slideup {
  from {
    margin-top: 20px;
    opacity: 0;
  }
  to {
    margin-top: 0%;
    opacity: 1;
  }
}
.videoElement .animation {
  position: relative;
  display: flex;
  justify-content: center;
}
.active-camera-element .animation {
  width: 100%;
  height: 100%;
  animation-name: bounce-in;
  animation-duration: 0.65s;
  animation-fill-mode: both;
}
.animate-in {
  width: 100%;
  height: 100%;
  animation-name: bounce-in;
  animation-duration: 0.65s;
  animation-fill-mode: both;
}
@keyframes bounce-in {
  0% {
    transform: scale(0.3);
  }
  50% {
    animation-timing-function: ease-in-out;
    transform: scale(1.05);
  }
  70% {
    animation-timing-function: ease-in-out;
    transform: scale(0.95);
  }
  100% {
    animation-timing-function: ease-in-out;
    transform: scale(1);
  }
}
.disappearing-camera-element .animation {
  animation-name: bounce-out;
  animation-duration: 0.65s;
  animation-fill-mode: both;
}
@keyframes bounce-out {
  0% {
    animation-timing-function: ease-in;
    transform: scale(1);
  }
  50% {
    animation-timing-function: ease-in-out;
    transform: scale(1.05);
  }
  100% {
    animation-timing-function: ease-in-out;
    transform: scale(0);
  }
}
.inactive-camera-element {
  -webkit-transform: scale(0.3);
  transform: scale(0.3);
}
.inactive-camera-element .animation {
  width: 100%;
  height: 100%;
}
.camera-circle {
  clip-path: circle(50%);
  -webkit-clip-path: circle(50%);
}
.camera-star {
  clip-path: polygon(100% 50%, 91% 61%, 93% 75%, 80% 80%, 75% 93%, 61% 91%, 50% 100%, 39% 91%, 25% 93%, 20% 80%, 7% 75%, 9% 61%, 0% 50%, 9% 39%, 7% 25%, 20% 20%, 25% 7%, 39% 9%, 50% 0%, 61% 9%, 75% 7%, 80% 20%, 93% 25%, 91% 39%);
  -webkit-clip-path: polygon(100% 50%, 91% 61%, 93% 75%, 80% 80%, 75% 93%, 61% 91%, 50% 100%, 39% 91%, 25% 93%, 20% 80%, 7% 75%, 9% 61%, 0% 50%, 9% 39%, 7% 25%, 20% 20%, 25% 7%, 39% 9%, 50% 0%, 61% 9%, 75% 7%, 80% 20%, 93% 25%, 91% 39%);
}
.camera-hexagon {
  clip-path: polygon(100% 50%, 75% 93%, 25% 93%, 0% 50%, 25% 7%, 75% 7%, 100% 50%, 100% 0%, 0% 0%, 0% 100%, 100% 100%, 0% 100%, 100% 0%, 0% 0%, 100% 0%, 0% 100%, 0% 0%, 100% 0%);
  -webkit-clip-path: polygon(100% 50%, 75% 93%, 25% 93%, 0% 50%, 25% 7%, 75% 7%, 100% 50%, 100% 0%, 0% 0%, 0% 100%, 100% 100%, 0% 100%, 100% 0%, 0% 0%, 100% 0%, 0% 100%, 0% 0%, 100% 0%);
}
.camera-rect {
  clip-path: inset(0% 0% 0% 0% round 10%);
  -webkit-clip-path: inset(0% 0% 0% 0% round 10%);
}
.camera-triangle {
  clip-path: polygon(0% 14%, 100% 14%, 50% 100%);
  -webkit-clip-path: polygon(0% 14%, 100% 14%, 50% 100%);
}
.camera-heart {
  clip-path: url(#camera-heart-path);
  -webkit-clip-path: url(#camera-heart-path);
}
.caption-container {
  display: none;
  position: absolute;
  min-width: 100%;
  height: 1.8em;
  color: #3aff16;
  font-family: Digital, sans-serif;
  letter-spacing: 0.5px;
  overflow: hidden;
}
.caption-container div {
  position: absolute;
  display: inline-block;
  margin: 0;
  padding: 0 7px;
  white-space: nowrap;
}

#group-not-allowed-dialog {
  text-align: center;
}
#group-not-allowed-dialog .title {
  font-size: 18px;
  margin: 8px 0 12px;
  place-content: center;
}
#group-not-allowed-dialog .title-image {
  margin-bottom: 20px;
}
#group-not-allowed-dialog .title-image img {
  height: 400px;
}

.color-dropdown {
  min-width: 255px !important;
  height: 260px;
}
.text-channel-container .color-dropdown {
  background: var(--primary-background, white);
}
.color-dropdown p {
  padding-top: 10px;
  font-size: 0.8em;
  line-height: 19px;
}
.color-select-container {
  clear: both;
  min-width: 255px;
  display: flex;
  justify-content: space-between;
}
.color-select-with-alpha {
  height: 190px;
}
.color-picker {
  width: 150px;
}
.color-prefixes {
  width: 90px;
  display: inline-flex;
  flex-wrap: wrap;
}
.color-prefix {
  width: 25px;
  height: 25px;
  margin: 5px;
  border-radius: 5px;
  border: 3px solid white;
  box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
.color-prefix:hover {
  border-color: black;
}

.font-select {
  width: 55% !important;
  border: none !important;
  padding-right: 0 !important;
  background: var(--primary-background, white) !important;
}
.font-size-select {
  width: 24% !important;
  background-image: none !important;
  border: none !important;
}
.font-dropdown-icon {
  background-image: url('images/icons/down-black.svg');
  background-repeat: no-repeat;
  background-size: 7px;
  background-position: center;
  height: 7px;
  width: 7px;
  margin-bottom: 3px !important;
}
.dropdown-button {
  background: none !important;
  font-size: 14px !important;
  color: var(--primary-foreground, black) !important;
}
.dropdown-button .dropdown-font-family {
  margin-bottom: 3px !important;
}
.dropdown-button .dropdown-icon::before {
  border-top-color: var(--primary-foreground, black) !important;
}
.font-size-select-container {
  margin-left: 4%;
  margin-right: 6%;
}
.font-dropdown {
  height: 30px;
  background: var(--primary-background, #eaeaea);
  border: none;
  font-size: 14px;
  vertical-align: middle;
  cursor: pointer;
  width: 100% !important;
  border-radius: 4px;
}
.font-size-dropdown {
  height: 30px;
  border: none;
  font-size: 14px;
  vertical-align: middle;
  cursor: pointer;
  width: 60px;
  border-radius: 4px;
}
.uk-dropdown.font-size-dropdown-menu {
  background: var(--primary-background, white);
}
.uk-dropdown.font-size-dropdown-menu .font-option {
  color: var(--primary-foreground, #666);
}
.uk-dropdown.font-size-dropdown-menu .font-option:hover {
  background: var(--secondary-background, #ddd);
  color: var(--secondary-foreground, #666);
}
.font-list {
  background: var(--primary-background, white) !important;
  bottom: 100%;
  color: var(--primary-foreground, black);
}
.font-list .font-button:hover,
.font-list .font-button.active-font {
  background: var(--secondary-background, #ddd);
  color: var(--secondary-foreground, black);
}
option:empty {
  display: none;
}

#screenshare-source-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 100px;
}
.screenshare-sources-body {
  height: 650px;
  border-radius: 20px;
  overflow: hidden;
}
.screenshare-sources-body .screenshare-select-content {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  height: 550px;
}
.screenshare-sources-body .screenshare-select-content .title {
  color: black;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: none;
}
.screenshare-sources-body .screenshare-select-content .subtitle {
  color: #999;
  margin-bottom: 10px;
}
.screenshare-sources-body .screenshare-option {
  width: 30%;
  border-radius: 10px;
  border: 2px solid transparent;
}
.screenshare-sources-body .screenshare-option .screenshare-thumb {
  height: 100px;
  margin: 0 auto;
  padding: 5px;
  display: block;
}
.screenshare-sources-body .screenshare-option .screenshare-title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0 5px 5px 5px;
  font-size: 0.9em;
}
.screenshare-sources-body .screenshare-option:hover {
  background-color: #ccf;
}
.screenshare-sources-body .selected {
  border: 2px solid #6b1be3;
}
.screenshare-sources-body .selected .screenshare-title {
  color: black;
}
.screenshare-sources-body .screenshare-control-bottom {
  position: absolute;
  bottom: 0;
  height: 45px;
  left: 0;
  right: 0;
  box-shadow: 0 0 8px 5px #bbb;
  background-color: white;
  display: flex;
  flex-direction: row-reverse;
  gap: 15px;
  padding: 15px;
  align-items: center;
}
.screenshare-sources-body .screenshare-control-bottom button {
  border-radius: 8px;
  padding: 0 30px;
  height: 42px;
  border: none;
}
.screenshare-sources-body .screenshare-control-bottom button[disabled] {
  opacity: 0.5;
}
.screenshare-sources-body .screenshare-control-bottom .cancel-button {
  color: #444;
  background-color: #ccc;
}
.screenshare-sources-body .screenshare-control-bottom .share-button {
  color: white;
  background-color: #6b1be3;
  line-height: 1.5em;
}

/* Editing style */
.textCard .CodeMirror,
.textCard.text-editing {
  background-color: inherit;
}
.textCard .CodeMirror-selected {
  background-color: #778;
}
/* TODO this doesn't seem to work. */
.CodeMirror-line::selection,
.CodeMirror-line > span::selection,
.CodeMirror-line > span > span::selection {
  background: #778;
}
.textCard {
  color: white;
}
.textCard h1,
.textCard h2,
.textCard h3,
.textCard h4 {
  color: #ddd;
  margin: 10px 0 10px 0;
}
.text-container,
.text-editor {
  position: relative;
  height: calc(100% - 30px);
  overflow: hidden;
  padding: 15px;
  border-radius: 10px;
  background-color: rgba(45, 45, 45, 0.8);
}
.text-editor-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 999;
}
.text-editor {
  display: none;
}
.text-container {
  padding: 15px;
}
.text-container * {
  font-family: inherit;
}
.text-container pre {
  background-color: #0000;
  color: inherit;
  border: none;
  font-size: 1rem;
  line-height: 1rem;
}
.text-container div,
.text-container ul,
.text-container ol {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 1.1;
}
.text-container:hover {
  overflow-y: scroll;
}
.firepad-done-editing-button {
  position: absolute;
  right: 8px;
  bottom: 10px;
  border: none;
  border-radius: 17.5px;
  width: 35px;
  height: 35px;
  font-size: 1.5em;
  background-image: url(/images/icons/check-white.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
  background-color: #2d2d2d;
  z-index: 1000;
  outline: none;
}
.text-done-editing-button {
  position: absolute;
  right: 10px;
  bottom: 28px;
  border: none;
  border-radius: 17.5px;
  width: 35px;
  height: 35px;
  font-size: 1.5em;
  background-image: url(/images/icons/check-white.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
  background-color: #2d2d2d;
  outline: none;
}
.text-done-editing-button:hover,
.firepad-done-editing-button:hover {
  border: none;
  background-color: #56a;
}

/*

    Name:       Tomorrow Night - Eighties
    Author:     Chris Kempson

    CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-codemirror)
    Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16)

*/

.cm-s-tomorrow-night-eighties.CodeMirror { background: #000000; color: #CCCCCC; }
.cm-s-tomorrow-night-eighties div.CodeMirror-selected { background: #2D2D2D; }
.cm-s-tomorrow-night-eighties .CodeMirror-line::selection, .cm-s-tomorrow-night-eighties .CodeMirror-line > span::selection, .cm-s-tomorrow-night-eighties .CodeMirror-line > span > span::selection { background: rgba(45, 45, 45, 0.99); }
.cm-s-tomorrow-night-eighties .CodeMirror-line::-moz-selection, .cm-s-tomorrow-night-eighties .CodeMirror-line > span::-moz-selection, .cm-s-tomorrow-night-eighties .CodeMirror-line > span > span::-moz-selection { background: rgba(45, 45, 45, 0.99); }
.cm-s-tomorrow-night-eighties .CodeMirror-gutters { background: #000000; border-right: 0px; }
.cm-s-tomorrow-night-eighties .CodeMirror-guttermarker { color: #f2777a; }
.cm-s-tomorrow-night-eighties .CodeMirror-guttermarker-subtle { color: #777; }
.cm-s-tomorrow-night-eighties .CodeMirror-linenumber { color: #515151; }
.cm-s-tomorrow-night-eighties .CodeMirror-cursor { border-left: 1px solid #6A6A6A; }

.cm-s-tomorrow-night-eighties span.cm-comment { color: #d27b53; }
.cm-s-tomorrow-night-eighties span.cm-atom { color: #a16a94; }
.cm-s-tomorrow-night-eighties span.cm-number { color: #a16a94; }

.cm-s-tomorrow-night-eighties span.cm-property, .cm-s-tomorrow-night-eighties span.cm-attribute { color: #99cc99; }
.cm-s-tomorrow-night-eighties span.cm-keyword { color: #f2777a; }
.cm-s-tomorrow-night-eighties span.cm-string { color: #ffcc66; }

.cm-s-tomorrow-night-eighties span.cm-variable { color: #99cc99; }
.cm-s-tomorrow-night-eighties span.cm-variable-2 { color: #6699cc; }
.cm-s-tomorrow-night-eighties span.cm-def { color: #f99157; }
.cm-s-tomorrow-night-eighties span.cm-bracket { color: #CCCCCC; }
.cm-s-tomorrow-night-eighties span.cm-tag { color: #f2777a; }
.cm-s-tomorrow-night-eighties span.cm-link { color: #a16a94; }
.cm-s-tomorrow-night-eighties span.cm-error { background: #f2777a; color: #6A6A6A; }

.cm-s-tomorrow-night-eighties .CodeMirror-activeline-background { background: #343600; }
.cm-s-tomorrow-night-eighties .CodeMirror-matchingbracket { text-decoration: underline; color: white !important; }

/* Warps */
.warp {
  transform: translateZ(0);
  text-align: center;
}
.warp .warp-waitlist-container {
  position: absolute;
  bottom: 80px;
  width: 100%;
  cursor: pointer;
  pointer-events: none;
  z-index: 1;
}
.warp .warp-waitlist-container .warp-waitlist {
  background-color: #fff;
  border-radius: 12px;
  color: #6b1be3;
  display: none;
  padding: 5px;
  border: 1.5px solid #6b1be3;
}
.warp .warp-container {
  height: 100%;
}
.warp:hover .warp-waitlist-animations {
  display: inline;
  animation: fadeIn 0.4s ease forwards;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes warpHover {
  0% {
    left: 27.5px;
    right: 27.5px;
    border-radius: 50%;
  }
  100% {
    left: 0;
    right: 0;
    border-radius: 10px;
  }
}
@keyframes warpUnhover {
  0% {
    left: 0;
    right: 0;
  }
  100% {
    left: 27.5px;
    right: 27.5px;
    border-radius: 50%;
  }
}
@keyframes warpGlow {
  0% {
    filter: none;
  }
  25% {
    filter: drop-shadow(0 0 20px rgba(164, 27, 134, 0.8));
  }
  50% {
    filter: drop-shadow(20px 20px 20px rgba(21, 66, 214, 0.8));
  }
  75% {
    filter: drop-shadow(-20px -20px 20px rgba(244, 19, 19, 0.8));
  }
  100% {
    filter: none;
  }
}
.warp-center {
  position: absolute;
  background-color: black;
  left: 27.5px;
  right: 27.5px;
  top: 0;
  bottom: 55px;
  animation: warpUnhover 0.5s forwards;
  border: 3px solid white;
  background-size: cover;
  cursor: pointer;
}
.warp:hover .warp-animations {
  animation: 0.4s warpHover forwards, 5s warpGlow infinite;
}
.warp-users {
  position: absolute;
  display: flex;
  cursor: pointer;
  pointer-events: none;
  align-items: center;
  bottom: calc(50% + 8px);
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  height: 34px;
  width: fit-content;
}
/* Style when waiting for host acceptance */
.warp-pending {
  left: 0;
  right: 0;
  border-radius: 10px;
  transform: scale(1);
  animation: 5s warpGlow infinite;
}
.warp-title-container {
  position: absolute;
  bottom: 25px;
  width: 100%;
  text-align: center;
}
.warp-title-container .warp-title {
  display: inline;
  background-color: #444d;
  border-radius: 0.5em;
  line-height: 1em;
  white-space: nowrap;
  color: white;
  padding: 2px 5px;
  overflow: hidden;
}
.warp-presence {
  display: inline-block;
  text-align: center;
  font-size: 1em;
  clip-path: circle(40%);
  width: 34px;
  height: 34px;
  bottom: 0;
  padding: 2px;
  color: white;
  pointer-events: none;
  cursor: pointer;
  background: #27fd1d;
  background: linear-gradient(135deg, #27fd80 2%, #4064ff 75%);
}

.cobrowser-container {
  box-sizing: border-box;
  padding: 10px;
  height: 100%;
}
.cobrowser-container .underlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: black;
  opacity: 0.1;
  border-radius: 10px;
  z-index: 1;
}
.cobrowser-container .underlay.cobrowser-focused {
  background-color: #12002d;
  opacity: 1;
}
.cobrowser-container:hover .underlay:not(.cobrowser-focused, .embedded-underlay) {
  opacity: 0.35;
}
.cobrowser-container .cobrowser-iframe {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.cobrowser-container .cobrowser-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.cobrowser-container .iframe-bounding-box {
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
  z-index: 2;
  position: relative;
}

.blur {
  filter: blur(5px);
}
.underlay.embedded-underlay {
  opacity: 1;
  background: none;
}
.underlay.embedded-underlay.overlay {
  z-index: 3;
  backdrop-filter: blur(1px);
}
.underlay.embedded-underlay .underlay-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.underlay.embedded-underlay .underlay-content .icon {
  width: 40%;
  height: 40%;
  z-index: 2;
  filter: drop-shadow(0px 0px 5px rgba(18, 0, 45, 0.5));
}
.underlay.embedded-underlay .underlay-content .title {
  color: white;
  font-size: 20px;
  z-index: 2;
  margin-top: 6px;
  margin-left: 25px;
  margin-right: 25px;
  filter: drop-shadow(0px 0px 5px rgba(18, 0, 45, 0.5));
}
.underlay.embedded-underlay .underlay-content .underlay-background {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 10px;
}
.underlay.embedded-underlay .underlay-content .underlay-background.trello-background {
  background-color: #006cb3;
}
.underlay.embedded-underlay .underlay-content .underlay-background.figma-background {
  background: linear-gradient(180deg, #262626 0%, #fe3902 0.01%, #fc6451 28.13%, #b228ff 57.29%, #00baff 77.6%, #00d880 100%);
}
.underlay.embedded-underlay .underlay-content .underlay-background.airtable-background {
  background: linear-gradient(180deg, #ffb500 0%, #ff0054 50%, #00bdff 100%);
}
.underlay.embedded-underlay .underlay-content .underlay-background.pdf-background {
  background: #ff0000;
}
.underlay.embedded-underlay .underlay-content .underlay-background.google-doc-background {
  background-color: #3d7afc;
}
.underlay.embedded-underlay .underlay-content .underlay-background.google-sheet-background {
  background-color: #00b04c;
}
.cobrowser-focused .underlay.embedded-underlay .underlay-content .underlay-background {
  background-color: #12002d;
  opacity: 1 !important;
}

.fileCard .rotatable-container {
  width: 100%;
  height: 100%;
}
.fileCard .icon-background {
  height: 74%;
  width: 74%;
  background-size: contain;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.fileCard .icon-background-outline {
  height: 74%;
  width: 74%;
  background-size: contain;
  top: 40%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
}
.fileCard .file-icon {
  height: 50%;
  width: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -75%);
  filter: drop-shadow(0px 0px 5px rgba(18, 0, 45, 0.5));
}
.fileCard .audio-file {
  height: 55%;
  width: 55%;
  z-index: 1;
  transform: translate(-50%, -65%);
}
.fileCard .half-opacity {
  filter: opacity(50%);
}
.fileCard .video-file {
  height: 40%;
  width: 40%;
  z-index: 1;
}
.fileCard .text-file {
  height: 40%;
  width: 40%;
  z-index: 1;
}
.fileCard .spreadsheet-file {
  height: 38%;
  width: 38%;
  z-index: 1;
}
.fileCard .presentation-file {
  height: 44%;
  width: 44%;
  z-index: 1;
}
.fileCard .unknown-file {
  height: 42%;
  width: 42%;
  z-index: 1;
}
.fileCard .filename-area {
  position: fixed;
  text-align: center;
  width: 100%;
  height: 14%;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 1000px;
  z-index: 2;
  bottom: 8%;
}
.fileCard .filename {
  color: white;
  text-overflow: ellipsis;
  overflow: hidden;
  width: auto;
  white-space: nowrap;
  height: auto;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.fileCard .filename-input {
  color: white;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 80%;
  white-space: nowrap;
  height: auto;
  position: relative;
  top: 50%;
  transform: translate(0%, -50%);
  border: 0px;
  text-decoration: none;
  background-color: transparent;
  font-size: 1.05em;
  text-align: center;
}
.fileCard .filename-input:focus {
  outline: none;
}
.fileCard .input-area {
  display: none;
  bottom: 8%;
  position: fixed;
  text-align: center;
  width: 100%;
  height: 14%;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 1000px;
  z-index: 2;
  left: 1px;
  border: 1px solid white;
}

.upload-notification-container {
  background-color: white;
  height: 70px;
  border-radius: 12px;
  overflow: hidden;
  width: 675px;
  box-shadow: 0 0 6px 1px rgba(0, 0, 0, 0.7);
  margin-top: 12px;
  margin-bottom: 12px;
}
.upload-notification-section {
  height: 100%;
  float: left !important;
}
.icon-section {
  width: 135px;
}
.upload-notification-icon {
  color: white;
  height: 40px;
  width: 40px;
  margin: auto;
  object-fit: contain;
  transform: translate(123%, 35%) !important;
}
.message-section {
  margin-left: 26px !important;
  width: 250px;
  transform: translate(0%, 120%);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.message-section-error {
  margin-left: 26px !important;
  width: 400px;
  transform: translate(0%, 120%);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.button-section {
  width: 100px;
}
.upload-notification-error {
  background-color: #f6335d;
}
.upload-notification-text {
  background-color: #1b77e4;
}
.upload-notification-text::-webkit-progress-value {
  background: #1b77e4 !important;
}
.upload-notification-text::-moz-progress-bar {
  background: #1b77e4 !important;
}
.upload-notification-audio {
  background-color: #ff72ff;
}
.upload-notification-audio::-webkit-progress-value {
  background: #ff72ff !important;
}
.upload-notification-audio::-moz-progress-bar {
  background: #ff72ff !important;
}
.upload-notification-video {
  background-color: #f6335d;
}
.upload-notification-video::-webkit-progress-value {
  background: #f6335d !important;
}
.upload-notification-video::-moz-progress-bar {
  background: #f6335d !important;
}
.upload-notification-presentation {
  background-color: #f6a730;
}
.upload-notification-presentation::-webkit-progress-value {
  background: #f6a730 !important;
}
.upload-notification-presentation::-moz-progress-bar {
  background: #f6a730 !important;
}
.upload-notification-spreadsheet {
  background-color: #39c360;
}
.upload-notification-spreadsheet::-webkit-progress-value {
  background: #39c360 !important;
}
.upload-notification-spreadsheet::-moz-progress-bar {
  background: #39c360;
}
.upload-notification-image {
  background-color: #16c7ff;
}
.upload-notification-image::-webkit-progress-value {
  background: #16c7ff !important;
}
.upload-notification-image::-moz-progress-bar {
  background: #16c7ff !important;
}
.upload-notification-unknown {
  background-color: #959494;
}
.upload-notification-unknown::-webkit-progress-value {
  background: #959494 !important;
}
.upload-notification-unknown::-moz-progress-bar {
  background: #959494 !important;
}
.upload-notification-pdf {
  background-color: #ff0000;
}
.upload-notification-pdf::-webkit-progress-value {
  background: #ff0000 !important;
}
.upload-notification-pdf::-moz-progress-bar {
  background: #ff0000 !important;
}
.action-button-section {
  height: 100%;
  width: 200px;
  float: right !important;
}
.action-button {
  margin: auto;
  width: 80px;
  height: 30px;
  transform: translate(150%, 70%);
}
.uk-progress {
  height: 7px;
}
.upload-bar {
  transform: translate(0%, 430%);
  width: 85% !important;
  height: 8px !important;
  background-color: #c4c4c4 !important;
  margin-left: 6px;
}
.upload-bar-section {
  height: 100%;
  width: 225px;
  float: right !important;
}
body.user-card .notifications-container-bottom {
  transform: translateX(-50%) scale(42%) translateY(180px);
}

.switch {
  position: relative;
  height: 24px;
  width: 43px;
  min-width: 43px;
  display: inline-block;
  box-shadow: 0 4px 10px var(--primary-foreground-alpha-10, rgba(0, 0, 0, 0.1));
  border-radius: 30px;
}
.switch .slider {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  cursor: pointer;
  background: var(--primary-background-alpha-70, rgba(180, 180, 180, 0.7));
  transition: 0.4s;
  border: 1px solid var(--primary-foreground-alpha-20, rgba(180, 180, 180, 0.2));
}
.switch .slider::before {
  content: '';
  position: absolute;
  left: 1px;
  top: 1px;
  height: 20px;
  width: 20px;
  background: white;
  transition: 0.4s;
}
.unthemed .switch .slider::before {
  background: white !important;
}
body.themed .switch .slider::before {
  background: var(--primary-foreground-alpha-30);
}
.switch input[type='checkbox'] {
  opacity: 0;
  width: 0;
  height: 0;
}
.switch input[type='checkbox']:checked + .slider {
  background: var(--secondary-background, #6b1be3);
  border-color: transparent;
}
.switch input[type='checkbox']:checked + .slider::before {
  background: var(--secondary-foreground, white);
}
.switch .slider-round {
  border-radius: 30px;
}
.switch .slider-round::before {
  border-radius: 50%;
}
input:checked + .slider {
  background: #6b1be3;
}
input:checked + .slider:before {
  -webkit-transform: translateX(19px);
  -ms-transform: translateX(19px);
  transform: translateX(19px);
}
/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}
.slider.round:before {
  border-radius: 50%;
}

.reaction {
  z-index: 2147483647;
  position: absolute;
  top: 0;
  left: 0;
  will-change: transform, opacity;
}
.reaction-up,
.reaction-down {
  position: absolute;
  width: 50px;
  height: 50px;
  font-size: 2em;
}
.reaction-up {
  animation: floatUp 4s linear;
}
.reaction-down {
  animation: floatDown 3s linear;
}
.reaction-scale-in {
  animation: scaleIn 0.5s linear;
  font-size: 2em;
  pointer-events: none;
}
.reaction-wave {
  animation: leftRight 1.5s alternate infinite ease-in-out;
}
.reaction-directed {
  animation: directed var(--duration) forwards linear;
  font-size: 2em;
  pointer-events: none;
}
@keyframes leftRight {
  100% {
    transform: translateX(30px);
  }
}
@keyframes floatUp {
  0% {
    transform: scale(0.7);
  }
  3% {
    transform: scale(1.4) translateY(-9px);
  }
  4% {
    transform: scale(0.9) translateY(-12px);
  }
  5% {
    transform: scale(1) translateY(-15px);
  }
  80% {
    opacity: 1;
    transform: scale(1) translateY(-140px);
  }
  100% {
    opacity: 0;
    transform: translateY(-200px);
  }
}
@keyframes floatDown {
  0% {
    transform: scale(0.7);
  }
  3% {
    transform: scale(1.4) translateY(9px);
  }
  4% {
    transform: scale(0.9) translateY(12px);
  }
  5% {
    transform: scale(1) translateY(15px);
  }
  80% {
    opacity: 1;
    transform: scale(1) translateY(140px);
  }
  100% {
    opacity: 0;
    transform: translateY(200px);
  }
}
@keyframes scaleIn {
  0% {
    transform: scale(2);
    opacity: 0.5;
  }
  100% {
    transform: scale(40);
    opacity: 0;
  }
}
@keyframes directed {
  0% {
    transform: translate3d(var(--x-start), var(--y-start), 0) scale3d(1, 1, 1) rotate3d(0, 0, 1, var(--initial-rotation));
  }
  25% {
    transform: translate3d(var(--x-half), var(--y-half), 0) scale3d(3, 3, 1) rotate3d(0, 0, 1, var(--initial-rotation));
  }
  50% {
    transform: translate3d(var(--x-end), var(--y-end), 0) scale3d(1, 1, 1) rotate3d(0, 0, 1, var(--initial-rotation));
  }
  80% {
    transform: translate3d(var(--x-splash-end), var(--y-splash-end), 0) scale3d(var(--final-scale), var(--final-scale), 1) rotate3d(0, 0, 1, var(--final-rotation));
    opacity: 0.5;
  }
  100% {
    transform: translate3d(var(--x-splash-end), var(--y-splash-end), 0) scale3d(var(--final-scale), var(--final-scale), 1) rotate3d(0, 0, 1, var(--final-rotation));
    opacity: 0;
  }
}

.dm-window-container .text-channel-container {
  background-color: unset;
}
.dm-window-container .text-channel-container .sticker-select-text-channel {
  min-height: unset;
}
.dm-window-container .feed-list-scroll-wrapper {
  height: 326px;
  box-sizing: border-box;
  border-radius: 0;
  overflow: hidden auto;
}
.dm-window-container .message-input-container {
  border-radius: 0 0 10px 10px;
}
.dm-window-container .image-message-bubble img {
  max-width: 225px;
}
.dm-window-container .chat-item-context-buttons {
  right: 2px;
}
.dm-window-container .feed-image-message .chat-item-context-buttons {
  right: 9px;
}

.room-details .done-button {
  font-size: 1.2em;
  padding: 10px 20px;
  margin: auto;
  display: block;
}
.room-details .background-group {
  margin-top: 20px;
}
.room-details .background-group .color-picker-container {
  position: relative;
  height: 250px;
  width: 300px;
  margin: auto;
}
.room-details .background-group .color-picker-container .color-select-container {
  margin: 0;
}
.room-details .background-group .search-input-group {
  width: 100%;
}
.room-details .background-group .search-input-group .copyright {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 12px;
  color: var(--primary-foreground, #888);
}
.room-details .background-group .search-input-group .copyright .unsplash-link {
  text-decoration: underline;
  color: var(--primary-foreground, #555);
}
.room-details .background-group .search-input-group path[fill]:not([fill='none']),
.room-details .background-group .search-input-group circle[fill]:not([fill='none']),
.room-details .background-group .search-input-group g[fill]:not([fill='none']),
.room-details .background-group .search-input-group rect[fill]:not([fill='none']) {
  fill: var(--primary-foreground, black);
}
.room-details .background-group .search-input-group path[stroke],
.room-details .background-group .search-input-group circle[stroke],
.room-details .background-group .search-input-group g[stroke],
.room-details .background-group .search-input-group rect[stroke] {
  stroke: var(--primary-foreground, black);
}
.room-details .background-group .search-button {
  background-color: #612ddb;
}
.room-details .background-group .uk-tab {
  margin-bottom: 0;
  margin-left: 0;
}
.room-details .background-group .uk-tab li {
  padding-left: 0;
}
.room-details .background-group .uk-tab::before {
  display: none;
}
.room-details .background-group .uk-tab a {
  color: var(--primary-foreground-70, rgba(153, 153, 153, 0.7));
}
.room-details .background-group .uk-tab a:hover {
  color: var(--primary-foreground, #333);
}
.room-details .background-group .uk-tab li.uk-active > a {
  padding-bottom: 4px;
  border-color: var(--primary-foreground, #1e87f0);
  color: var(--primary-foreground, #333);
  font-weight: bold;
}
.room-details .background-group .uk-tab .background-group-label {
  flex-grow: 1;
}
.room-details .background-group .uk-tab .upload-button-container {
  pointer-events: all;
  height: 32px;
  position: absolute;
  padding: 0 8px;
  right: 0;
  bottom: 5px;
}
.room-details .background-group .uk-tab .upload-button-container .upload-button {
  cursor: pointer;
  font-size: 13px;
}
.room-details .background-group .uk-tab .upload-button-container .upload-icon {
  width: 16px;
  margin: 0 2px;
}
.room-details .background-group .uk-tab .upload-button-container input {
  display: none;
}
.room-details .background-group .search-results {
  margin-top: 10px;
  padding: 0.4rem 0.8rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-height: calc(100vh - 264px);
  overflow-y: scroll;
}
.room-details .background-group .search-results .image-container {
  position: relative;
  margin-bottom: 7px;
  flex: 0 0 32%;
  height: 120px;
  margin-top: 4px;
  cursor: pointer;
  transform: scale(1);
  transition: transform 0.3s;
  border-radius: 8px;
  overflow: hidden;
}
.room-details .background-group .search-results .image-container .check-container {
  display: none;
}
.room-details .background-group .search-results .image-container.selected .check-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: calc(50% - (30px / 2));
  left: calc(50% - (30px / 2));
  width: 30px;
  height: 30px;
  border: 2px solid white;
  border-radius: 50%;
  background-color: #6b1be3;
  pointer-events: none;
}
.room-details .background-group .search-results .image-container.selected .check-container .uk-icon {
  color: white;
}
.room-details .background-group .search-results .image-container .author-info {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 24px;
  line-height: 21px;
  background: rgba(0, 0, 0, 0.3);
  padding-left: 10px;
}
.room-details .background-group .search-results .image-container .author-info a {
  font-size: 12px;
  color: white;
}
.room-details .background-group .search-results .image-container:hover {
  transform: scale(1.05);
}
.room-details .background-group .search-results .image-container:hover .author-info {
  display: block;
}
.room-details .background-group .search-results .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
div.chat-background-picker-modal {
  padding: 0.8rem 1rem;
  border-radius: 1rem;
  background: var(--primary-background, white);
}
div.chat-background-picker-modal .room-details .search-results {
  max-height: 50vh;
}
div.chat-background-picker-modal .room-details .search-results .image-container {
  height: 260px;
}

.embedded-container {
  box-sizing: border-box;
  height: 100%;
}
.embedded-container .embedded-iframe {
  background: #12002d;
  width: 100%;
  height: 100%;
  border-radius: 14px;
}
.embedded-container .embedded-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.embedded-body {
  border: 10px solid rgba(107, 27, 227, 0.25);
  margin: 0;
}
.embedded-body-focused {
  border: 10px solid #6b1be3;
}

.beacon-element .beacon {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100%;
  width: 100%;
  position: absolute;
  outline: none;
  color: #fff;
  border-radius: 12px;
  background-color: #6b1be3;
  font-size: 1.2em;
  font-weight: 400;
  margin: 5px;
  cursor: pointer;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.beacon-element .beacon input {
  width: calc(100% - 10px);
}
#beacon-set-destination-dialog {
  position: absolute;
  bottom: 60px;
  color: #fff;
  background-color: #000a;
  border-radius: 10px;
  font-size: 1em;
  padding: 10px;
}
#beacon-set-destination-dialog .set-button {
  outline: none;
  color: #fff;
  border-radius: 12px;
  height: 35px;
  padding: 10px 20px;
  background-color: #6b1be3;
  font-size: 1em;
  line-height: 5px;
  border: none;
  margin: 5px;
}
#beacon-set-destination-dialog a {
  color: #ddd;
  font-size: 0.9em;
}

.here-button-regular {
  border-radius: 10px;
  box-shadow: 0 4px 10px var(--secondary-foreground-alpha-10, rgba(0, 0, 0, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 2px solid transparent;
  color: var(--secondary-foreground, white);
  background: var(--secondary-background, #6b1be3);
}
.here-button-regular,
.here-button-regular:focus,
.here-button-regular:hover {
  outline: none;
}
.here-button-regular:hover {
  box-shadow: 0 2px 5px var(--secondary-foreground-alpha-30, rgba(0, 0, 0, 0.3));
}
.here-button-regular:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.here-button-regular path[fill]:not([fill='none']),
.here-button-regular circle[fill]:not([fill='none']),
.here-button-regular g[fill]:not([fill='none']),
.here-button-regular rect[fill]:not([fill='none']) {
  fill: var(--secondary-foreground, white);
}
.here-button-regular path[stroke],
.here-button-regular circle[stroke],
.here-button-regular g[stroke],
.here-button-regular rect[stroke] {
  stroke: var(--secondary-foreground, white);
}
.here-button-ghost {
  border-radius: 10px;
  box-shadow: 0 4px 10px var(--secondary-foreground-alpha-10, rgba(0, 0, 0, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 2px solid var(--secondary-background, #6b1be3);
  color: var(--secondary-background, #6b1be3);
  background: transparent;
  box-shadow: none;
}
.here-button-ghost,
.here-button-ghost:focus,
.here-button-ghost:hover {
  outline: none;
}
.here-button-ghost:hover {
  box-shadow: 0 2px 5px var(--secondary-foreground-alpha-30, rgba(0, 0, 0, 0.3));
}
.here-button-ghost:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.here-button-ghost path[fill]:not([fill='none']),
.here-button-ghost circle[fill]:not([fill='none']),
.here-button-ghost g[fill]:not([fill='none']),
.here-button-ghost rect[fill]:not([fill='none']) {
  fill: var(--secondary-background, #6b1be3);
}
.here-button-ghost path[stroke],
.here-button-ghost circle[stroke],
.here-button-ghost g[stroke],
.here-button-ghost rect[stroke] {
  stroke: var(--secondary-background, #6b1be3);
}
.here-button-ghost:hover {
  color: var(--secondary-foreground, white);
}
.here-button-ghost:hover path[fill]:not([fill='none']),
.here-button-ghost:hover circle[fill]:not([fill='none']),
.here-button-ghost:hover g[fill]:not([fill='none']),
.here-button-ghost:hover rect[fill]:not([fill='none']) {
  fill: var(--secondary-foreground, white);
}
.here-button-ghost:hover path[stroke],
.here-button-ghost:hover circle[stroke],
.here-button-ghost:hover g[stroke],
.here-button-ghost:hover rect[stroke] {
  stroke: var(--secondary-foreground, white);
}
.here-button-regular:hover,
.here-button-ghost:hover {
  background: var(--secondary-background-alpha-80, rgba(97, 44, 218, 0.8));
  border-color: var(--secondary-foreground-alpha-20, rgba(97, 44, 218, 0.2));
}
.here-button-minimal {
  border-radius: 10px;
  box-shadow: 0 4px 10px var(--secondary-foreground-alpha-10, rgba(0, 0, 0, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid var(--primary-foreground-alpha-20, rgba(0, 0, 0, 0.2));
  color: var(--primary-foreground, black);
  background: var(--primary-background-alpha-70, rgba(255, 255, 255, 0.7));
}
.here-button-minimal,
.here-button-minimal:focus,
.here-button-minimal:hover {
  outline: none;
}
.here-button-minimal:hover {
  box-shadow: 0 2px 5px var(--secondary-foreground-alpha-30, rgba(0, 0, 0, 0.3));
}
.here-button-minimal:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.here-button-minimal path[fill]:not([fill='none']),
.here-button-minimal circle[fill]:not([fill='none']),
.here-button-minimal g[fill]:not([fill='none']),
.here-button-minimal rect[fill]:not([fill='none']) {
  fill: var(--primary-foreground, black);
}
.here-button-minimal path[stroke],
.here-button-minimal circle[stroke],
.here-button-minimal g[stroke],
.here-button-minimal rect[stroke] {
  stroke: var(--primary-foreground, black);
}
.here-button-minimal:hover {
  border: 1px solid var(--primary-foreground-alpha-40, rgba(0, 0, 0, 0.4));
}
.here-button-danger {
  border-radius: 10px;
  box-shadow: 0 4px 10px var(--secondary-foreground-alpha-10, rgba(0, 0, 0, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  background: #f6335d;
  border: 1px solid rgba(18, 0, 45, 0.2);
}
.here-button-danger,
.here-button-danger:focus,
.here-button-danger:hover {
  outline: none;
}
.here-button-danger:hover {
  box-shadow: 0 2px 5px var(--secondary-foreground-alpha-30, rgba(0, 0, 0, 0.3));
}
.here-button-danger:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.here-button-danger path[fill]:not([fill='none']),
.here-button-danger circle[fill]:not([fill='none']),
.here-button-danger g[fill]:not([fill='none']),
.here-button-danger rect[fill]:not([fill='none']) {
  fill: white;
}
.here-button-danger path[stroke],
.here-button-danger circle[stroke],
.here-button-danger g[stroke],
.here-button-danger rect[stroke] {
  stroke: white;
}
.here-button-danger:hover {
  background: rgba(246, 51, 93, 0.7);
}
.here-button-secondary {
  border-radius: 10px;
  box-shadow: 0 4px 10px var(--secondary-foreground-alpha-10, rgba(0, 0, 0, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: none;
  border: 2px solid transparent;
  background: #ededed;
}
.here-button-secondary,
.here-button-secondary:focus,
.here-button-secondary:hover {
  outline: none;
}
.here-button-secondary:hover {
  box-shadow: 0 2px 5px var(--secondary-foreground-alpha-30, rgba(0, 0, 0, 0.3));
}
.here-button-secondary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.here-button-secondary path[fill]:not([fill='none']),
.here-button-secondary circle[fill]:not([fill='none']),
.here-button-secondary g[fill]:not([fill='none']),
.here-button-secondary rect[fill]:not([fill='none']) {
  fill: black;
}
.here-button-secondary path[stroke],
.here-button-secondary circle[stroke],
.here-button-secondary g[stroke],
.here-button-secondary rect[stroke] {
  stroke: black;
}
.here-button-secondary:hover {
  background: #f2f2f2;
}
.here-button {
  padding: 8px 6px;
  color: white;
  font-size: 1em;
  border-radius: 4px;
  cursor: pointer;
  background-color: #6b1be3;
}
.here-button:focus {
  outline: none;
}
.here-button.outlined {
  color: #6b1be3;
  border: 1px solid #6b1be3;
  background-color: transparent;
}
.here-button.outlined:hover {
  background-color: rgba(107, 27, 227, 0.05);
}
.here-button.link {
  padding: 0;
  height: fit-content;
  width: fit-content;
  color: var(--primary-foreground, #6b1be3);
  border: none;
  background-color: inherit;
}
.here-button.link:hover {
  text-decoration: underline;
}
/*
  Currently we have the following theming CSS variables:
  • --primary-font - used for room name only.
  • --primary-foreground and --primary-background - main background and text colors.
  • --secondary-foreground and --secondary-background - usually used for buttons and hover effects.
  Each of aforementioned variables has 9 modifications for using with alpha channels,
  e.g. --primary-background-alpha-30 means it's --primary-background with opacity 0.3.
  So using it with default value would look like this:
  var(--primary-background-alpha-30, rgba(0, 0, 0, 0.3))

  Also if a theme is applied, body element has 'themed` class.
  Default theme (in other words, no theme) means that all these variables are unset,
  also 'themed' class is removed from the body.
*/
.unthemed {
  --primary-foreground: initial;
  --primary-foreground-alpha-10: initial;
  --primary-foreground-alpha-20: initial;
  --primary-foreground-alpha-30: initial;
  --primary-foreground-alpha-40: initial;
  --primary-foreground-alpha-50: initial;
  --primary-foreground-alpha-60: initial;
  --primary-foreground-alpha-70: initial;
  --primary-foreground-alpha-80: initial;
  --primary-foreground-alpha-90: initial;
  --primary-background: initial;
  --primary-background-alpha-10: initial;
  --primary-background-alpha-20: initial;
  --primary-background-alpha-30: initial;
  --primary-background-alpha-40: initial;
  --primary-background-alpha-50: initial;
  --primary-background-alpha-60: initial;
  --primary-background-alpha-70: initial;
  --primary-background-alpha-80: initial;
  --primary-background-alpha-90: initial;
  --secondary-foreground: initial;
  --secondary-foreground-alpha-10: initial;
  --secondary-foreground-alpha-20: initial;
  --secondary-foreground-alpha-30: initial;
  --secondary-foreground-alpha-40: initial;
  --secondary-foreground-alpha-50: initial;
  --secondary-foreground-alpha-60: initial;
  --secondary-foreground-alpha-70: initial;
  --secondary-foreground-alpha-80: initial;
  --secondary-foreground-alpha-90: initial;
  --secondary-background: initial;
  --secondary-background-alpha-10: initial;
  --secondary-background-alpha-20: initial;
  --secondary-background-alpha-30: initial;
  --secondary-background-alpha-40: initial;
  --secondary-background-alpha-50: initial;
  --secondary-background-alpha-60: initial;
  --secondary-background-alpha-70: initial;
  --secondary-background-alpha-80: initial;
  --secondary-background-alpha-90: initial;
  --primary-font: initial;
}
.themed-font {
  font-family: var(--primary-font, Inter, sans-serif);
}
body:not(.has-themed-font) .themed-font {
  font-weight: bold;
}
body.themed .themed-shadow {
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
}
body.themed .unthemed .themed-shadow,
body:not(.themed) .themed-shadow {
  box-shadow: none;
}
.themed-select {
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
  background: var(--primary-background) border-box;
  color: var(--primary-foreground);
  border: none;
  border-right: 12px solid transparent;
  padding: 12px;
  border-radius: 10px;
  outline: 1px solid var(--primary-foreground-alpha-20, rgba(0, 0, 0, 0.2));
}
.themed-select:hover {
  outline: 1px solid var(--primary-foreground-alpha-40, rgba(0, 0, 0, 0.4));
}
.themed-input.themed-input.themed-input {
  border-radius: 10px;
}
body.themed .themed-input {
  outline: none;
  color: var(--primary-foreground, #666);
  box-shadow: 0 4px 10px 0 var(--primary-foreground-alpha-10);
  border: 1px solid var(--primary-foreground-alpha-20, #e5e5e5);
  background: var(--primary-background-alpha-70);
}
body.themed .themed-input:hover {
  box-shadow: 0 2px 5px 0 var(--primary-foreground-alpha-30, #aaa);
  border: 1px solid var(--primary-foreground-alpha-40, #aaa);
}
body.themed .themed-input:focus,
body.themed .themed-input:focus-visible {
  box-shadow: none;
  border: 2px solid var(--secondary-background, #999);
  background: var(--primary-background);
}
body.themed .themed-input:disabled {
  background: var(--primary-foreground-alpha-10);
  box-shadow: none;
  color: var(--primary-foreground-alpha-50);
}
body.themed .themed-input::placeholder {
  color: var(--primary-foreground-alpha-50);
}
body.themed .themed-slider {
  appearance: none;
  background: transparent;
}
body.themed .themed-slider::-webkit-slider-thumb {
  appearance: none;
  background: var(--secondary-background);
  border: 2px solid var(--primary-foreground);
  height: 14px;
  width: 14px;
  border-radius: 50%;
  margin-top: -4px;
}
body.themed .themed-slider::-webkit-slider-runnable-track {
  background: var(--secondary-background);
  height: 6px;
  border-radius: 3px;
}
.sdk-element path[fill]:not([fill='none']),
.sdk-element circle[fill]:not([fill='none']),
.sdk-element g[fill]:not([fill='none']),
.sdk-element rect[fill]:not([fill='none']) {
  fill: currentcolor;
}
.sdk-element path[stroke],
.sdk-element circle[stroke],
.sdk-element g[stroke],
.sdk-element rect[stroke] {
  stroke: currentcolor;
}
.sdk-element .app-container {
  background: var(--primary-background, #12002d);
  border-radius: 10px;
  padding: 5px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  overflow-y: auto;
}
.sdk-element .app-container .container {
  display: flex;
  padding: 5px;
  flex: 1 1 auto;
  min-height: auto;
}
.sdk-element .app-container .container .visible-on-hover {
  display: none;
}
.sdk-element .app-container .container :hover .visible-on-hover {
  display: block;
}
.sdk-element .app-container .font-size-s {
  font-size: 12px;
}
.sdk-element .app-container .font-size-m {
  font-size: 16px;
}
.sdk-element .app-container .font-size-l {
  font-size: 23px;
}
.sdk-element .app-container .font-size-xl {
  font-size: 36px;
}
.sdk-element .app-container here-avatar {
  border-radius: 50%;
  height: 40px;
  width: 40px;
  margin: 0 3px;
  overflow: hidden;
}
.sdk-element .app-container div {
  color: var(--primary-foreground, #fff);
}
.sdk-element .app-container button {
  border-radius: 10px;
  box-shadow: 0 4px 10px var(--secondary-foreground-alpha-10, rgba(0, 0, 0, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 2px solid transparent;
  color: var(--secondary-foreground, white);
  background: var(--secondary-background, #6b1be3);
  height: 50px;
  font-size: 1.2em;
  line-height: 5px;
  margin: 5px;
}
.sdk-element .app-container button,
.sdk-element .app-container button:focus,
.sdk-element .app-container button:hover {
  outline: none;
}
.sdk-element .app-container button:hover {
  box-shadow: 0 2px 5px var(--secondary-foreground-alpha-30, rgba(0, 0, 0, 0.3));
}
.sdk-element .app-container button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.sdk-element .app-container button path[fill]:not([fill='none']),
.sdk-element .app-container button circle[fill]:not([fill='none']),
.sdk-element .app-container button g[fill]:not([fill='none']),
.sdk-element .app-container button rect[fill]:not([fill='none']) {
  fill: var(--secondary-foreground, white);
}
.sdk-element .app-container button path[stroke],
.sdk-element .app-container button circle[stroke],
.sdk-element .app-container button g[stroke],
.sdk-element .app-container button rect[stroke] {
  stroke: var(--secondary-foreground, white);
}
.sdk-element .app-container button:hover {
  background: var(--secondary-background-alpha-80, rgba(97, 44, 218, 0.8));
  border-color: var(--secondary-foreground-alpha-20, rgba(97, 44, 218, 0.2));
}
.sdk-element .app-container button .button-title {
  padding: 10px 20px;
  color: inherit;
}
.sdk-element .app-container button.secondary {
  border-radius: 10px;
  box-shadow: 0 4px 10px var(--secondary-foreground-alpha-10, rgba(0, 0, 0, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 2px solid transparent;
  color: var(--secondary-foreground, white);
  background: var(--secondary-background, #6b1be3);
}
.sdk-element .app-container button.secondary,
.sdk-element .app-container button.secondary:focus,
.sdk-element .app-container button.secondary:hover {
  outline: none;
}
.sdk-element .app-container button.secondary:hover {
  box-shadow: 0 2px 5px var(--secondary-foreground-alpha-30, rgba(0, 0, 0, 0.3));
}
.sdk-element .app-container button.secondary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.sdk-element .app-container button.secondary path[fill]:not([fill='none']),
.sdk-element .app-container button.secondary circle[fill]:not([fill='none']),
.sdk-element .app-container button.secondary g[fill]:not([fill='none']),
.sdk-element .app-container button.secondary rect[fill]:not([fill='none']) {
  fill: var(--secondary-foreground, white);
}
.sdk-element .app-container button.secondary path[stroke],
.sdk-element .app-container button.secondary circle[stroke],
.sdk-element .app-container button.secondary g[stroke],
.sdk-element .app-container button.secondary rect[stroke] {
  stroke: var(--secondary-foreground, white);
}
.sdk-element .app-container button.secondary:hover {
  background: var(--secondary-background-alpha-80, rgba(97, 44, 218, 0.8));
  border-color: var(--secondary-foreground-alpha-20, rgba(97, 44, 218, 0.2));
}
.sdk-element .app-container label span {
  color: #fff;
}
.sdk-element .app-container .clickable {
  cursor: pointer;
}
.sdk-element .app-container input {
  margin: 5px;
  height: 40px;
  vertical-align: middle;
  font-size: 1.2em;
}
.sdk-element .app-container input.sdk-element .app-container input.sdk-element .app-container input {
  border-radius: 10px;
}
body.themed .sdk-element .app-container input {
  outline: none;
  color: var(--primary-foreground, #666);
  box-shadow: 0 4px 10px 0 var(--primary-foreground-alpha-10);
  border: 1px solid var(--primary-foreground-alpha-20, #e5e5e5);
  background: var(--primary-background-alpha-70);
}
body.themed .sdk-element .app-container input:hover {
  box-shadow: 0 2px 5px 0 var(--primary-foreground-alpha-30, #aaa);
  border: 1px solid var(--primary-foreground-alpha-40, #aaa);
}
body.themed .sdk-element .app-container input:focus,
body.themed .sdk-element .app-container input:focus-visible {
  box-shadow: none;
  border: 2px solid var(--secondary-background, #999);
  background: var(--primary-background);
}
body.themed .sdk-element .app-container input:disabled {
  background: var(--primary-foreground-alpha-10);
  box-shadow: none;
  color: var(--primary-foreground-alpha-50);
}
body.themed .sdk-element .app-container input::placeholder {
  color: var(--primary-foreground-alpha-50);
}
.sdk-element .app-container input[type='checkbox'] {
  appearance: none;
}
.sdk-element .app-container input[type='checkbox'] {
  width: 20px;
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 20px;
  border: 0.1px solid white;
  border-radius: 3px;
  outline: none;
}
.sdk-element .app-container input[type='checkbox']:checked {
  background: var(--secondary-background, #6b1be3);
  border: 0.1px solid #0000;
}
.sdk-element .app-container input[type='checkbox']:checked::after {
  margin-left: 5.3px;
  margin-top: -7.6px;
  width: 5px;
  height: 15px;
  border: solid var(--secondary-foreground, white);
  border-radius: 1px;
  border-width: 0 2.5px 2.5px 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  content: '';
  display: inline-block;
}
.sdk-element .errors {
  background-color: white;
  color: red;
  font-size: 0.8em;
  position: absolute;
  bottom: 0;
  width: calc(100% - 10px);
  padding: 5px;
  display: none;
}

.whiteboard {
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  position: relative;
}
.whiteboard-rasterized-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5, 0.5);
  max-width: unset;
}
.whiteboard-canvas {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.whiteboard-drawing-tip {
  z-index: 10000;
  position: absolute;
  top: 5px;
  right: 5px;
  display: none;
  background-color: white;
  border-radius: 8px;
  padding: 2px 10px;
  overflow: hidden;
  box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
}
.whiteboard-bg-options {
  display: flex;
  justify-content: space-between;
}
.whiteboard-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 999;
}
.whiteboard-overlay-message {
  position: absolute;
  top: calc(50% - 0.6em);
  width: 100%;
  text-align: center;
  font-size: 1.2em;
  font-weight: 450;
}
.boardElement:not(.can-move) .whiteboard-overlay-message {
  display: none !important;
}
.boardElement:hover .whiteboard-drawing-tip {
  display: inline-flex;
}

.tictactoe-card h1,
.tictactoe-card h3 {
  color: var(--primary-foreground, white);
  margin: 0;
}
.tictactoe-card h1 {
  font-size: 2.1em;
}
.tictactoe-card h3 {
  font-size: 1.3em;
}
.tictactoe-card .ttt-restart {
  height: 50px;
  padding: 10px 20px;
  font-size: 1.2em;
  line-height: 5px;
  float: right;
}
.tictactoe-card .game-title-screen-div {
  width: 100%;
  height: 100%;
  background: var(--primary-background, black);
  border-radius: 18px;
  overflow: hidden;
}
.tictactoe-card .ttt-container {
  display: grid;
  grid-template-columns: repeat(3, 33%);
  position: relative;
  width: 100%;
  height: calc(100% - 5em);
}
.tictactoe-card .ttt-cell:hover {
  background: var(--primary-foreground-alpha-50, rgba(255, 255, 255, 0.5));
}
.tictactoe-card .ttt-status {
  line-height: 2em;
  height: 2em;
  font-size: 20px;
  color: var(--primary-foreground, white);
}
.tictactoe-card .ttt-left {
  border-right: 1px solid var(--primary-foreground, slategray);
}
.tictactoe-card .ttt-right {
  border-left: 1px solid var(--primary-foreground, slategray);
}
.tictactoe-card .ttt-top {
  border-bottom: 1px solid var(--primary-foreground, slategray);
}
.tictactoe-card .ttt-bottom {
  border-top: 1px solid var(--primary-foreground, slategray);
}
.tictactoe-card .ttt-cell {
  cursor: pointer;
  font-size: 30px;
  color: var(--primary-foreground, white);
  vertical-align: middle;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tictactoe-card .ttt-x {
  background-color: rgba(255, 128, 32, 0.5);
  vertical-align: middle;
}
.tictactoe-card .ttt-o {
  background-color: rgba(32, 32, 255, 0.5);
  vertical-align: middle;
}
.tictactoe-card .ttt-restart {
  height: 100%;
  padding: 14px;
  margin: 5px;
  font-size: 20px;
  border-radius: 5px;
}
.tictactoe-card .ttt-game {
  padding: 14px 20px;
  padding-left: 20px;
  height: calc(100% - 28px);
}

.timer-content {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: var(--primary-background, #12002d);
}
.timer-wrapper {
  display: table;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
}
.timer-header {
  height: 74px;
  display: flex;
  align-items: center;
  padding-left: 23px;
  color: var(--primary-foreground, white);
  background: var(--primary-background, #12002d);
}
.timer-header svg {
  height: 21px;
  margin-right: 15px;
}
.timer-header .header-icon path[fill]:not([fill='none']),
.timer-header .header-icon circle[fill]:not([fill='none']),
.timer-header .header-icon g[fill]:not([fill='none']),
.timer-header .header-icon rect[fill]:not([fill='none']) {
  fill: var(--primary-foreground, white);
}
.timer-header .header-icon path[stroke],
.timer-header .header-icon circle[stroke],
.timer-header .header-icon g[stroke],
.timer-header .header-icon rect[stroke] {
  stroke: var(--primary-foreground, white);
}
.timer-header-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.timer-cell {
  text-align: center;
  line-height: normal;
  display: table-row;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}
.timer-bg {
  text-align: center;
  width: 260px;
  height: 175px;
  border-radius: 20px;
  border: 1px solid #fafbfc;
  background-color: #201b4b;
}
.timer-clock {
  color: var(--primary-foreground, darkgray);
  line-height: 1;
  margin: auto;
  margin-top: 10px;
}
.timer-stopwatch-time {
  font-size: 2em;
  height: auto;
  color: var(--primary-foreground, white);
  margin: auto;
  margin-top: 25px;
  font-weight: thin;
  font-family: 'Courier Prime', monospace;
}
.timer-ui-button {
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 20px;
  z-index: -1000;
  width: auto;
  height: 10%;
  background-color: transparent;
  text-decoration: none;
  outline: 0;
  border: none;
  cursor: pointer;
}
.timer-ui-button svg {
  width: 30px;
}
.timer-ui-button svg path[fill]:not([fill='none']),
.timer-ui-button svg circle[fill]:not([fill='none']),
.timer-ui-button svg g[fill]:not([fill='none']),
.timer-ui-button svg rect[fill]:not([fill='none']) {
  fill: var(--primary-foreground, white);
}
.timer-ui-button svg path[stroke],
.timer-ui-button svg circle[stroke],
.timer-ui-button svg g[stroke],
.timer-ui-button svg rect[stroke] {
  stroke: var(--primary-foreground, white);
}

.wtv-card {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  text-align: center;
  font-weight: normal;
  color: white;
}
.wtv-card .wtv-restart {
  float: right;
  color: white !important;
  background: none !important;
  width: 5%;
  font-size: 1em;
  top: 0;
  position: absolute;
  right: 1%;
  margin: auto;
  margin-top: 5px;
}
.wtv-card .wtv-bg {
  text-align: center;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background-image: linear-gradient(#5818b7, #8b128f);
  overflow: hidden;
}
.wtv-card .game-content {
  width: 100% !important;
  height: 100% !important;
  color: white !important;
}
.wtv-card .game-title {
  padding-top: 30px;
  font-weight: bold;
  color: white;
  line-height: 1;
  margin: auto;
}
.wtv-card .game-description {
  font-size: 8pt;
  margin: auto;
  color: #a1a1a1;
  margin-top: 10px;
}
.wtv-card .start-playing-button {
  border-radius: 12px;
  height: 50px;
  padding: 10px 20px;
  background-color: #6b1be3;
  font-size: 1.2em;
  line-height: 5px;
  margin-top: 18px;
  border: none;
  color: white;
}
.wtv-card h5 {
  color: white;
}
.wtv-card .sub-header {
  color: white;
  font-weight: bold;
  font-size: 7pt;
}
.wtv-card .correct {
  margin: auto;
  margin-top: 15px;
  z-index: -1000;
  width: 170px;
  border-radius: 12px;
  height: 50px;
  color: white;
  background-color: green;
  border: 1px solid white;
}
.wtv-card .pass {
  margin: auto;
  margin-top: 10px;
  z-index: -1000;
  width: 170px;
  border-radius: 12px;
  height: 50px;
  color: white;
  background-color: red;
  border: 1px solid white;
}
.wtv-card .result-score {
  padding-top: 20px;
  color: white;
  font-weight: bold;
  margin: 0;
  padding-bottom: 10px;
  place-content: center;
}
.wtv-card .full-width {
  width: 100%;
}
.wtv-card .full-height {
  height: 100%;
}
.wtv-card .wtv-result-correct {
  color: #0f0 !important;
  line-height: 1.3;
  margin: 0;
  font-size: 10pt;
}
.wtv-card .wtv-result-incorrect {
  color: darkgray !important;
  line-height: 1.3;
  margin: 0;
  font-size: 10pt;
}
.wtv-card .guess-tooltip {
  line-height: 0;
  color: white;
  margin-top: 15%;
}
.wtv-card .guesser-text {
  font-size: 0.9em;
  color: white;
  bottom: 1%;
  left: 4%;
  position: absolute;
  margin: auto;
  margin-bottom: 5px;
}
.wtv-card .wtv-status {
  font-size: 2em;
  color: white;
  place-content: center;
}
.wtv-card .voice-prompt {
  color: white;
  margin: 0;
  padding-top: 0;
  font-weight: bold;
  place-content: center;
}
.wtv-card .game-title-div {
  width: 65%;
  margin: auto;
  margin-top: 11%;
  background-color: black;
  border-radius: 18px;
  padding: 26px;
  border: 1px solid white;
  overflow: auto;
  text-align: center;
}
.wtv-card .in-game {
  margin-top: 10%;
}

.poker-element {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  text-align: center;
  font-weight: normal;
  background-image: url('../images/games/poker.jpg');
  background-size: cover;
  color: var(--primary-foreground, white);
  box-sizing: border-box;
}
.poker-element,
.poker-element h1,
.poker-element h3 {
  color: var(--primary-foreground, white);
  margin: 0;
}
.poker-element h1 {
  font-size: 2.1em;
}
.poker-element h3 {
  font-size: 1.3em;
}
.poker-element button:not(.options-menu-option) {
  height: 50px;
  padding: 10px 20px;
  font-size: 1.2em;
  line-height: 5px;
  margin: 20px auto 0;
}
.poker-element p {
  font-size: 0.9em;
}
.poker-element .game-title-screen-div {
  width: 37%;
  margin: auto;
  margin-top: 13%;
  background: var(--primary-background, black);
  border-radius: 18px;
  padding: 26px;
  border: 1px solid white;
}

.codenames-element {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  text-align: center;
  font-weight: normal;
  background-image: url('../images/games/codenames.jpg');
  background-size: cover;
}
.codenames-element h1,
.codenames-element h3 {
  color: var(--primary-foreground, white);
  margin: 0;
}
.codenames-element h1 {
  font-size: 2.1em;
}
.codenames-element h3 {
  font-size: 1.3em;
}
.codenames-element button:not(.options-menu-option) {
  height: 50px;
  padding: 10px 20px;
  font-size: 1.2em;
  line-height: 5px;
  margin: 18px auto 0;
}
.codenames-element p {
  font-size: 0.9em;
  color: var(--primary-foreground, white);
}
.codenames-element a,
.codenames-element a:hover {
  color: var(--primary-foreground, #6b1be3);
  text-decoration: underline;
}
.codenames-element .game-title-screen-div {
  width: 37%;
  margin: auto;
  margin-top: 33%;
  background: var(--primary-background, black);
  border-radius: 18px;
  padding: 26px;
  resize: both;
  overflow: auto;
}
.codenames-background {
  background-color: white;
}

.share-room-master,
.share-room-master-top {
  background: var(--primary-background, #12002d);
  width: 100%;
}
.share-room-master {
  height: 105px;
}
.share-room-master-top {
  height: 80px;
  display: flex;
}
.share-room-div {
  background: var(--primary-background, #12002d);
  position: relative;
  display: none;
}
.share-room-directions {
  color: var(--primary-foreground, white);
  text-align: center;
  padding-top: 10px;
  margin-bottom: 0;
}
.share-room-submit {
  float: right;
  margin: 10px;
  height: 45px;
  border-radius: 4px;
  width: 160px;
  font-size: 1em;
  margin-right: 20px;
}
.share-room-input {
  float: left;
  color: white;
  height: 40px;
  margin: 10px;
  width: calc(100% - 240px);
  margin-left: 20px;
  color: black;
  border-radius: 4px;
  padding-left: 10px;
  font-size: 1.1em;
}
.instructions-directions {
  color: white;
  padding-top: 14px;
  float: left;
  height: 40px;
  margin: 10px;
  width: calc(100% - 240px);
  margin-left: 20px;
  border-radius: 4px;
  padding-left: 10px;
  font-size: 1.1em;
}
.instructions-close {
  float: right;
  margin: 15px;
  height: 45px;
  border-radius: 4px;
  background-color: #6b1be3;
  color: white;
  width: 160px;
  font-size: 1em;
  margin-right: 20px;
  border: none;
  text-decoration: none;
  cursor: pointer;
}
.instructions-div {
  background-color: #12002d;
  display: none;
}
.how-to-start-button {
  height: 40px;
}

.skribblio-element {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  text-align: center;
  font-weight: normal;
  background-image: url('../images/games/skribblio.png');
  background-repeat: repeat;
  overflow: hidden;
}
.skribblio-element h1,
.skribblio-element h3 {
  color: var(--primary-foreground, white);
  margin: 0;
}
.skribblio-element h1 {
  font-size: 2.1em;
}
.skribblio-element h3 {
  font-size: 1.3em;
}
.skribblio-element .title-logo {
  margin-top: 10%;
}
.skribblio-element .title-logo-small {
  height: 80px;
  margin-top: 30px;
}
.skribblio-element button:not(.options-menu-option) {
  height: 50px;
  padding: 10px 20px;
  font-size: 1.2em;
  line-height: 5px;
  margin: 0 auto;
}
.skribblio-element p {
  font-size: 1.1em;
  color: var(--primary-foreground, white);
}
.skribblio-element a,
.skribblio-element a:hover {
  color: var(--primary-foreground, #6b1be3);
  text-decoration: underline;
}
.skribblio-element .game-title-screen-div {
  width: fit-content;
  margin: auto;
  background: var(--primary-background, black);
  border-radius: 18px;
  padding: 26px;
  border: 1px solid white;
  resize: both;
  overflow: auto;
  color: white;
}
.skribblio-background {
  height: calc(100% - 185px) !important;
  background-image: url('../images/games/skribblio.png');
  background-repeat: repeat;
  border-radius: 0px !important;
}
.skribblio-background-full {
  height: 100% !important;
  background-image: url('../images/games/skribblio.png');
  background-repeat: repeat;
}
.player-gif {
  height: calc(100% - 150px);
  margin-top: -30px;
}
.host-gif {
  height: 100%;
}
.player-gif-div {
  width: 100%;
  position: fixed;
  text-align: center;
  margin: auto;
  height: calc(100% - 185px) !important;
  position: absolute;
  overflow: hidden;
  z-index: 4;
}
.player-gif-div-background {
  background-color: rgba(107, 27, 227, 0.8);
  height: 100%;
  width: 100%;
  z-index: 1;
}
.skribbl-close-button {
  position: relative;
  right: 0;
  top: -38%;
  color: white !important;
  z-index: 5;
}

.chess-element {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  font-weight: normal;
  background: var(--primary-background, linear-gradient(#5818b7, #8b128f));
  color: var(--primary-foreground, white);
}
.chess-element h1 {
  color: var(--primary-foreground, white);
}
.chess-element h2 {
  margin-top: 12px;
  font-weight: bold;
  font-size: 30%;
}
.chess-element button:not(.options-menu-option) {
  height: 50px;
  padding: 20px;
  font-size: 1.2em;
  line-height: 5px;
  margin: 0 auto;
}
.chess-element .chessboard {
  width: 100%;
  height: auto;
  margin: auto;
  text-align: -webkit-center;
}
.chess-element .chessboard-frame {
  height: 100%;
  width: 100%;
  overflow: auto;
}
.chess-element .chess-status {
  text-align: center;
  padding: 10px;
  font-size: 1.3em;
}
.chess-element .game-title-div {
  width: 50%;
  margin: auto;
  margin-top: 35%;
  background: var(--primary-background, black);
  border-radius: 18px;
  padding: 26px;
  border: 1px solid white;
  overflow: auto;
  text-align: center;
}

/*! chessboard.js v@VERSION | (c) 2019 Chris Oakman | MIT License chessboardjs.com/license */

.clearfix-7da63 {
  clear: both;
}

.board-b72b1 {
  border: 2px solid #404040;
  box-sizing: content-box;
}

.square-55d63 {
  float: left;
  position: relative;

  /* disable any native browser highlighting */
  -webkit-touch-callout: none;
    -webkit-user-select: none;
     -khtml-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

.white-1e1d7 {
  background-color: #f0d9b5;
  color: #b58863;
}

.black-3c85d {
  background-color: #b58863;
  color: #f0d9b5;
}

.highlight1-32417, .highlight2-9c5d2 {
  box-shadow: inset 0 0 3px 3px yellow;
}

.notation-322f9 {
  cursor: default;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  position: absolute;
}

.alpha-d2270 {
  bottom: 1px;
  right: 3px;
}

.numeric-fc462 {
  top: 2px;
  left: 2px;
}
.app-admin-element {
  background-color: #eee;
  border-radius: 10px;
}
.app-admin-element .app-admin-contents {
  padding: 10px;
}
.app-admin-element .app-admin-contents .app-title {
  width: calc(100% - 20px);
  font-size: 1.2em;
  margin: 5px;
}
.app-admin-element .app-admin-contents .admin-button {
  outline: none;
  color: #fff;
  border-radius: 12px;
  height: 50px;
  padding: 10px 20px;
  background-color: #6b1be3;
  font-size: 1.2em;
  line-height: 5px;
  border: none;
  margin: 5px;
}

.barrier {
  background-color: #deff22dd;
  width: 100%;
  height: 100%;
}
.bg-color-select-button {
  background-size: 15px 15px;
}

#main-effect-image {
  z-index: 9997;
  pointer-events: none;
  position: fixed;
  width: 100%;
  height: 100%;
  display: none;
  object-fit: contain;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.dreidel-effect {
  width: 45% !important;
  height: 45% !important;
  margin: auto;
  top: 25%;
  left: 28%;
}
.haunted-effect {
  margin: auto;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: unset !important;
  z-index: 100000;
}
.trick-or-treat-effect {
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: unset !important;
  z-index: 100000;
}
.halloween-effect {
  margin: auto;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: unset !important;
  z-index: 100000;
}
.explosion-effect {
  z-index: 9997;
  pointer-events: none;
  position: fixed;
  width: 40%;
  height: 40%;
  display: none;
  object-fit: contain;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#explosion-effect-image-one {
  top: 30%;
  left: 30%;
}
#explosion-effect-image-two {
  top: 32%;
  left: 67%;
  width: 25%;
  height: 25%;
}
#explosion-effect-image-three {
  top: 46%;
  left: 9%;
  width: 25%;
  height: 25%;
}

.infinite-scroll-component {
  overflow: unset !important;
}

.rdw-option-wrapper {
  border: 1px solid #F1F1F1;
  padding: 5px;
  min-width: 25px;
  height: 20px;
  border-radius: 2px;
  margin: 0 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background: white;
  text-transform: capitalize;
}
.rdw-option-wrapper:hover {
  box-shadow: 1px 1px 0px #BFBDBD;
}
.rdw-option-wrapper:active {
  box-shadow: 1px 1px 0px #BFBDBD inset;
}
.rdw-option-active {
  box-shadow: 1px 1px 0px #BFBDBD inset;
}
.rdw-option-disabled {
  opacity: 0.3;
  cursor: default;
}

.rdw-dropdown-wrapper {
  height: 30px;
  background: white;
  cursor: pointer;
  border: 1px solid #F1F1F1;
  border-radius: 2px;
  margin: 0 3px;
  text-transform: capitalize;
  background: white;
}
.rdw-dropdown-wrapper:focus {
  outline: none;
}
.rdw-dropdown-wrapper:hover {
  box-shadow: 1px 1px 0px #BFBDBD;
  background-color: #FFFFFF;
}
.rdw-dropdown-wrapper:active {
  box-shadow: 1px 1px 0px #BFBDBD inset;
}
.rdw-dropdown-carettoopen {
  height: 0px;
  width: 0px;
  position: absolute;
  top: 35%;
  right: 10%;
  border-top: 6px solid black;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}
.rdw-dropdown-carettoclose {
  height: 0px;
  width: 0px;
  position: absolute;
  top: 35%;
  right: 10%;
  border-bottom: 6px solid black;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}
.rdw-dropdown-selectedtext {
  display: flex;
  position: relative;
  height: 100%;
  align-items: center;
  padding: 0 5px;
}
.rdw-dropdown-optionwrapper {
  z-index: 100;
  position: relative;
  border: 1px solid #F1F1F1;
  width: 98%;
  background: white;
  border-radius: 2px;
  margin: 0;
  padding: 0;
  max-height: 250px;
  overflow-y: scroll;
}
.rdw-dropdown-optionwrapper:hover {
  box-shadow: 1px 1px 0px #BFBDBD;
  background-color: #FFFFFF;
}

.rdw-dropdownoption-default {
  min-height: 25px;
  display: flex;
  align-items: center;
  padding: 0 5px;
}
.rdw-dropdownoption-highlighted {
  background: #F1F1F1;
}
.rdw-dropdownoption-active {
  background: #f5f5f5;
}
.rdw-dropdownoption-disabled {
  opacity: 0.3;
  cursor: default;
}

.rdw-inline-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  flex-wrap: wrap
}
.rdw-inline-dropdown {
  width: 50px;
}
.rdw-inline-dropdownoption {
  height: 40px;
  display: flex;
  justify-content: center;
}

.rdw-block-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  flex-wrap: wrap
}
.rdw-block-dropdown {
  width: 110px;
}

.rdw-fontsize-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  flex-wrap: wrap
}
.rdw-fontsize-dropdown {
  min-width: 40px;
}
.rdw-fontsize-option {
  display: flex;
  justify-content: center;
}

.rdw-fontfamily-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  flex-wrap: wrap
}
.rdw-fontfamily-dropdown {
  width: 115px;
}
.rdw-fontfamily-placeholder {
  white-space: nowrap;
  max-width: 90px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rdw-fontfamily-optionwrapper {
  width: 140px;
}

.rdw-list-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  flex-wrap: wrap
}
.rdw-list-dropdown {
  width: 50px;
  z-index: 90;
}
.rdw-list-dropdownOption {
  height: 40px;
  display: flex;
  justify-content: center;
}

.rdw-text-align-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  flex-wrap: wrap
}
.rdw-text-align-dropdown {
  width: 50px;
  z-index: 90;
}
.rdw-text-align-dropdownOption {
  height: 40px;
  display: flex;
  justify-content: center;
}
.rdw-right-aligned-block {
  text-align: right;
}
.rdw-left-aligned-block {
  text-align: left !important;
}
.rdw-center-aligned-block {
  text-align: center !important;
}
.rdw-justify-aligned-block {
  text-align: justify !important;
}
.rdw-right-aligned-block > div {
  display: inline-block;
}
.rdw-left-aligned-block > div {
  display: inline-block;
}
.rdw-center-aligned-block > div {
  display: inline-block;
}
.rdw-justify-aligned-block > div {
  display: inline-block;
}

.rdw-colorpicker-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  position: relative;
  flex-wrap: wrap
}
.rdw-colorpicker-modal {
  position: absolute;
  top: 35px;
  left: 5px;
  display: flex;
  flex-direction: column;
  width: 175px;
  height: 175px;
  border: 1px solid #F1F1F1;
  padding: 15px;
  border-radius: 2px;
  z-index: 100;
  background: white;
  box-shadow: 3px 3px 5px #BFBDBD;
}
.rdw-colorpicker-modal-header {
  display: flex;
  padding-bottom: 5px;
}
.rdw-colorpicker-modal-style-label {
  font-size: 15px;
  width: 50%;
  text-align: center;
  cursor: pointer;
  padding: 0 10px 5px;
}
.rdw-colorpicker-modal-style-label-active {
  border-bottom: 2px solid #0a66b7;
}
.rdw-colorpicker-modal-options {
  margin: 5px auto;
  display: flex;
  width: 100%;
  height: 100%;
  flex-wrap: wrap;
  overflow: scroll;
}
.rdw-colorpicker-cube {
  width: 22px;
  height: 22px;
  border: 1px solid #F1F1F1;
}
.rdw-colorpicker-option {
  margin: 3px;
  padding: 0;
  min-height: 20px;
  border: none;
  width: 22px;
  height: 22px;
  min-width: 22px;
  box-shadow: 1px 2px 1px #BFBDBD inset;
}
.rdw-colorpicker-option:hover {
  box-shadow: 1px 2px 1px #BFBDBD;
}
.rdw-colorpicker-option:active {
  box-shadow: -1px -2px 1px #BFBDBD;
}
.rdw-colorpicker-option-active {
  box-shadow: 0px 0px 2px 2px #BFBDBD;
}

.rdw-link-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  position: relative;
  flex-wrap: wrap
}
.rdw-link-dropdown {
  width: 50px;
}
.rdw-link-dropdownOption {
  height: 40px;
  display: flex;
  justify-content: center;
}
.rdw-link-dropdownPlaceholder {
  margin-left: 8px;
}
.rdw-link-modal {
  position: absolute;
  top: 35px;
  left: 5px;
  display: flex;
  flex-direction: column;
  width: 235px;
  height: 205px;
  border: 1px solid #F1F1F1;
  padding: 15px;
  border-radius: 2px;
  z-index: 100;
  background: white;
  box-shadow: 3px 3px 5px #BFBDBD;
}
.rdw-link-modal-label {
  font-size: 15px;
}
.rdw-link-modal-input {
  margin-top: 5px;
  border-radius: 2px;
  border: 1px solid #F1F1F1;
  height: 25px;
  margin-bottom: 15px;
  padding: 0 5px;
}
.rdw-link-modal-input:focus {
  outline: none;
}
.rdw-link-modal-buttonsection {
  margin: 0 auto;
}
.rdw-link-modal-target-option {
  margin-bottom: 20px;
}
.rdw-link-modal-target-option > span {
  margin-left: 5px;
}
.rdw-link-modal-btn {
  margin-left: 10px;
  width: 75px;
  height: 30px;
  border: 1px solid #F1F1F1;
  border-radius: 2px;
  cursor: pointer;
  background: white;
  text-transform: capitalize;
}
.rdw-link-modal-btn:hover {
  box-shadow: 1px 1px 0px #BFBDBD;
}
.rdw-link-modal-btn:active {
  box-shadow: 1px 1px 0px #BFBDBD inset;
}
.rdw-link-modal-btn:focus {
  outline: none !important;
}
.rdw-link-modal-btn:disabled {
  background: #ece9e9;
}
.rdw-link-dropdownoption {
  height: 40px;
  display: flex;
  justify-content: center;
}
.rdw-history-dropdown {
  width: 50px;
}

.rdw-embedded-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  position: relative;
  flex-wrap: wrap
}
.rdw-embedded-modal {
  position: absolute;
  top: 35px;
  left: 5px;
  display: flex;
  flex-direction: column;
  width: 235px;
  height: 180px;
  border: 1px solid #F1F1F1;
  padding: 15px;
  border-radius: 2px;
  z-index: 100;
  background: white;
  justify-content: space-between;
  box-shadow: 3px 3px 5px #BFBDBD;
}
.rdw-embedded-modal-header {
  font-size: 15px;
  display: flex;
}
.rdw-embedded-modal-header-option {
  width: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.rdw-embedded-modal-header-label {
  width: 95px;
  border: 1px solid #f1f1f1;
  margin-top: 5px;
  background: #6EB8D4;
  border-bottom: 2px solid #0a66b7;
}
.rdw-embedded-modal-link-section {
  display: flex;
  flex-direction: column;
}
.rdw-embedded-modal-link-input {
  width: 88%;
  height: 35px;
  margin: 10px 0;
  border: 1px solid #F1F1F1;
  border-radius: 2px;
  font-size: 15px;
  padding: 0 5px;
}
.rdw-embedded-modal-link-input-wrapper {
  display: flex;
  align-items: center;
}
.rdw-embedded-modal-link-input:focus {
  outline: none;
}
.rdw-embedded-modal-btn-section {
  display: flex;
  justify-content: center;
}
.rdw-embedded-modal-btn {
  margin: 0 3px;
  width: 75px;
  height: 30px;
  border: 1px solid #F1F1F1;
  border-radius: 2px;
  cursor: pointer;
  background: white;
  text-transform: capitalize;
}
.rdw-embedded-modal-btn:hover {
  box-shadow: 1px 1px 0px #BFBDBD;
}
.rdw-embedded-modal-btn:active {
  box-shadow: 1px 1px 0px #BFBDBD inset;
}
.rdw-embedded-modal-btn:focus {
  outline: none !important;
}
.rdw-embedded-modal-btn:disabled {
  background: #ece9e9;
}
.rdw-embedded-modal-size {
  align-items: center;
  display: flex;
  margin: 8px 0;
  justify-content: space-between;
}
.rdw-embedded-modal-size-input {
  width: 80%;
  height: 20px;
  border: 1px solid #F1F1F1;
  border-radius: 2px;
  font-size: 12px;
}
.rdw-embedded-modal-size-input:focus {
  outline: none;
}

.rdw-emoji-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  position: relative;
  flex-wrap: wrap
}
.rdw-emoji-modal {
  overflow: auto;
  position: absolute;
  top: 35px;
  left: 5px;
  display: flex;
  flex-wrap: wrap;
  width: 235px;
  height: 180px;
  border: 1px solid #F1F1F1;
  padding: 15px;
  border-radius: 2px;
  z-index: 100;
  background: white;
  box-shadow: 3px 3px 5px #BFBDBD;
}
.rdw-emoji-icon {
  margin: 2.5px;
  height: 24px;
  width: 24px;
  cursor: pointer;
  font-size: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rdw-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.rdw-spinner > div {
  width: 12px;
  height: 12px;
  background-color: #333;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.rdw-spinner .rdw-bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.rdw-spinner .rdw-bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}
@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}

.rdw-image-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  position: relative;
  flex-wrap: wrap
}
.rdw-image-modal {
  position: absolute;
  top: 35px;
  left: 5px;
  display: flex;
  flex-direction: column;
  width: 235px;
  border: 1px solid #F1F1F1;
  padding: 15px;
  border-radius: 2px;
  z-index: 100;
  background: white;
  box-shadow: 3px 3px 5px #BFBDBD;
}
.rdw-image-modal-header {
  font-size: 15px;
  margin: 10px 0;
  display: flex;
}
.rdw-image-modal-header-option {
  width: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.rdw-image-modal-header-label {
  width: 80px;
  background: #f1f1f1;
  border: 1px solid #f1f1f1;
  margin-top: 5px;
}
.rdw-image-modal-header-label-highlighted {
  background: #6EB8D4;
  border-bottom: 2px solid #0a66b7;
}
.rdw-image-modal-upload-option {
  width: 100%;
  color: gray;
  cursor: pointer;
  display: flex;
  border: none;
  font-size: 15px;
  align-items: center;
  justify-content: center;
  background-color: #f1f1f1;
  outline: 2px dashed gray;
  outline-offset: -10px;
  margin: 10px 0;
  padding: 9px 0;
}
.rdw-image-modal-upload-option-highlighted {
  outline: 2px dashed #0a66b7;
}
.rdw-image-modal-upload-option-label {
  cursor: pointer;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
}
.rdw-image-modal-upload-option-label span{
  padding: 0 20px;
}
.rdw-image-modal-upload-option-image-preview {
  max-width: 100%;
  max-height: 200px;
}
.rdw-image-modal-upload-option-input {
	width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}
.rdw-image-modal-url-section {
  display: flex;
  align-items: center;
}
.rdw-image-modal-url-input {
  width: 90%;
  height: 35px;
  margin: 15px 0 12px;
  border: 1px solid #F1F1F1;
  border-radius: 2px;
  font-size: 15px;
  padding: 0 5px;
}
.rdw-image-modal-btn-section {
  margin: 10px auto 0;
}
.rdw-image-modal-url-input:focus {
  outline: none;
}
.rdw-image-modal-btn {
  margin: 0 5px;
  width: 75px;
  height: 30px;
  border: 1px solid #F1F1F1;
  border-radius: 2px;
  cursor: pointer;
  background: white;
  text-transform: capitalize;
}
.rdw-image-modal-btn:hover {
  box-shadow: 1px 1px 0px #BFBDBD;
}
.rdw-image-modal-btn:active {
  box-shadow: 1px 1px 0px #BFBDBD inset;
}
.rdw-image-modal-btn:focus {
  outline: none !important;
}
.rdw-image-modal-btn:disabled {
  background: #ece9e9;
}
.rdw-image-modal-spinner {
  position: absolute;
  top: -3px;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}
.rdw-image-modal-alt-input {
  width: 70%;
  height: 20px;
  border: 1px solid #F1F1F1;
  border-radius: 2px;
  font-size: 12px;
  margin-left: 5px;
}
.rdw-image-modal-alt-input:focus {
  outline: none;
}
.rdw-image-modal-alt-lbl {
  font-size: 12px;
}
.rdw-image-modal-size {
  align-items: center;
  display: flex;
  margin: 8px 0;
  justify-content: space-between;
}
.rdw-image-modal-size-input {
  width: 40%;
  height: 20px;
  border: 1px solid #F1F1F1;
  border-radius: 2px;
  font-size: 12px;
}
.rdw-image-modal-size-input:focus {
  outline: none;
}
.rdw-image-mandatory-sign {
  color: red;
  margin-left: 3px;
  margin-right: 3px;
}

.rdw-remove-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  position: relative;
  flex-wrap: wrap
}

.rdw-history-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  flex-wrap: wrap
}
.rdw-history-dropdownoption {
  height: 40px;
  display: flex;
  justify-content: center;
}
.rdw-history-dropdown {
  width: 50px;
}

.rdw-link-decorator-wrapper {
  position: relative;
}
.rdw-link-decorator-icon {
  position: absolute;
  left: 40%;
  top: 0;
  cursor: pointer;
  background-color: white;
}

.rdw-mention-link {
  text-decoration: none;
  color: #1236ff;
  background-color: #f0fbff;
  padding: 1px 2px;
  border-radius: 2px;
}

.rdw-suggestion-wrapper {
  position: relative;
}
.rdw-suggestion-dropdown {
  position: absolute;
  display: flex;
  flex-direction: column;
  border: 1px solid #F1F1F1;
  min-width: 100px;
  max-height: 150px;
  overflow: auto;
  background: white;
  z-index: 100;
}
.rdw-suggestion-option {
  padding: 7px 5px;
  border-bottom: 1px solid #f1f1f1;
}
.rdw-suggestion-option-active {
  background-color: #F1F1F1;
}

.rdw-hashtag-link {
  text-decoration: none;
  color: #1236ff;
  background-color: #f0fbff;
  padding: 1px 2px;
  border-radius: 2px;
}

.rdw-image-alignment-options-popup {
  position: absolute;
  background: white;
  display: flex;
  padding: 5px 2px;
  border-radius: 2px;
  border: 1px solid #F1F1F1;
  width: 105px;
  cursor: pointer;
  z-index: 100;
}
.rdw-alignment-option-left {
  justify-content: flex-start;
}
.rdw-image-alignment-option {
  height: 15px;
  width: 15px;
  min-width: 15px;
}
.rdw-image-alignment {
  position: relative;
}
.rdw-image-imagewrapper {
  position: relative;
}
.rdw-image-center {
  display: flex;
  justify-content: center;
}
.rdw-image-left {
  display: flex;
}
.rdw-image-right {
  display: flex;
  justify-content: flex-end;
}
.rdw-image-alignment-options-popup-right {
  right: 0;
}

.rdw-editor-main {
  height: 100%;
  overflow: auto;
  box-sizing: border-box;
}
.rdw-editor-toolbar {
  padding: 6px 5px 0;
  border-radius: 2px;
  border: 1px solid #F1F1F1;
  display: flex;
  justify-content: flex-start;
  background: white;
  flex-wrap: wrap;
  font-size: 15px;
  margin-bottom: 5px;
  user-select: none;
}
.public-DraftStyleDefault-block {
  margin: 1em 0;
}
.rdw-editor-wrapper:focus {
  outline: none;
}
.rdw-editor-wrapper {
  box-sizing: content-box;
}
.rdw-editor-main blockquote {
  border-left: 5px solid #f1f1f1;
  padding-left: 5px;
}
.rdw-editor-main pre {
  background: #f1f1f1;
  border-radius: 3px;
  padding: 1px 10px;
}
/**
 * Draft v0.9.1
 *
 * Copyright (c) 2013-present, Facebook, Inc.
 * All rights reserved.
 *
 * This source code is licensed under the BSD-style license found in the
 * LICENSE file in the root directory of this source tree. An additional grant
 * of patent rights can be found in the PATENTS file in the same directory.
 */
.DraftEditor-editorContainer,.DraftEditor-root,.public-DraftEditor-content{height:inherit;text-align:initial}.public-DraftEditor-content[contenteditable=true]{-webkit-user-modify:read-write-plaintext-only}.DraftEditor-root{position:relative}.DraftEditor-editorContainer{background-color:rgba(255,255,255,0);border-left:.1px solid transparent;position:relative;z-index:1}.public-DraftEditor-block{position:relative}.DraftEditor-alignLeft .public-DraftStyleDefault-block{text-align:left}.DraftEditor-alignLeft .public-DraftEditorPlaceholder-root{left:0;text-align:left}.DraftEditor-alignCenter .public-DraftStyleDefault-block{text-align:center}.DraftEditor-alignCenter .public-DraftEditorPlaceholder-root{margin:0 auto;text-align:center;width:100%}.DraftEditor-alignRight .public-DraftStyleDefault-block{text-align:right}.DraftEditor-alignRight .public-DraftEditorPlaceholder-root{right:0;text-align:right}.public-DraftEditorPlaceholder-root{color:#9197a3;position:absolute;z-index:0}.public-DraftEditorPlaceholder-hasFocus{color:#bdc1c9}.DraftEditorPlaceholder-hidden{display:none}.public-DraftStyleDefault-block{position:relative;white-space:pre-wrap}.public-DraftStyleDefault-ltr{direction:ltr;text-align:left}.public-DraftStyleDefault-rtl{direction:rtl;text-align:right}.public-DraftStyleDefault-listLTR{direction:ltr}.public-DraftStyleDefault-listRTL{direction:rtl}.public-DraftStyleDefault-ol,.public-DraftStyleDefault-ul{margin:16px 0;padding:0}.public-DraftStyleDefault-depth0.public-DraftStyleDefault-listLTR{margin-left:1.5em}.public-DraftStyleDefault-depth0.public-DraftStyleDefault-listRTL{margin-right:1.5em}.public-DraftStyleDefault-depth1.public-DraftStyleDefault-listLTR{margin-left:3em}.public-DraftStyleDefault-depth1.public-DraftStyleDefault-listRTL{margin-right:3em}.public-DraftStyleDefault-depth2.public-DraftStyleDefault-listLTR{margin-left:4.5em}.public-DraftStyleDefault-depth2.public-DraftStyleDefault-listRTL{margin-right:4.5em}.public-DraftStyleDefault-depth3.public-DraftStyleDefault-listLTR{margin-left:6em}.public-DraftStyleDefault-depth3.public-DraftStyleDefault-listRTL{margin-right:6em}.public-DraftStyleDefault-depth4.public-DraftStyleDefault-listLTR{margin-left:7.5em}.public-DraftStyleDefault-depth4.public-DraftStyleDefault-listRTL{margin-right:7.5em}.public-DraftStyleDefault-unorderedListItem{list-style-type:square;position:relative}.public-DraftStyleDefault-unorderedListItem.public-DraftStyleDefault-depth0{list-style-type:disc}.public-DraftStyleDefault-unorderedListItem.public-DraftStyleDefault-depth1{list-style-type:circle}.public-DraftStyleDefault-orderedListItem{list-style-type:none;position:relative}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-listLTR:before{left:-36px;position:absolute;text-align:right;width:30px}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-listRTL:before{position:absolute;right:-36px;text-align:left;width:30px}.public-DraftStyleDefault-orderedListItem:before{content:counter(ol0) ". ";counter-increment:ol0}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth1:before{content:counter(ol1) ". ";counter-increment:ol1}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth2:before{content:counter(ol2) ". ";counter-increment:ol2}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth3:before{content:counter(ol3) ". ";counter-increment:ol3}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth4:before{content:counter(ol4) ". ";counter-increment:ol4}.public-DraftStyleDefault-depth0.public-DraftStyleDefault-reset{counter-reset:ol0}.public-DraftStyleDefault-depth1.public-DraftStyleDefault-reset{counter-reset:ol1}.public-DraftStyleDefault-depth2.public-DraftStyleDefault-reset{counter-reset:ol2}.public-DraftStyleDefault-depth3.public-DraftStyleDefault-reset{counter-reset:ol3}.public-DraftStyleDefault-depth4.public-DraftStyleDefault-reset{counter-reset:ol4}


/*# sourceMappingURL=react-draft-wysiwyg.css.map*/
here-open-in-desktop-modal.uk-modal {
  padding: 0;
}
.modal-wrapper {
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(44.31deg, #55017d 0.28%, #1901aa 100.53%);
}
.modal-content {
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background-color: #ffffff;
  border-radius: 20px;
}
.modal-content .title {
  margin-top: 10px;
  color: #6b1be3;
  font-family: 'Inter';
  font-size: 18px;
  font-weight: 900;
  text-align: center;
}
.modal-content .download-desktop-app-link {
  width: 100%;
  text-align: center;
}
.modal-content .download-desktop-app-link.hidden {
  display: none;
}
.modal-content .open-in-web-button {
  margin-top: 20px;
  color: gray;
  font-family: 'Inter';
  font-size: 14px;
  background: none;
  border: none;
  cursor: pointer;
}
.modal-content .open-in-web-button:hover {
  text-decoration: underline;
}
.modal-content .open-in-web-button:focus {
  outline: none;
}

.here-button-regular {
  border-radius: 10px;
  box-shadow: 0 4px 10px var(--secondary-foreground-alpha-10, rgba(0, 0, 0, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 2px solid transparent;
  color: var(--secondary-foreground, white);
  background: var(--secondary-background, #6b1be3);
}
.here-button-regular,
.here-button-regular:focus,
.here-button-regular:hover {
  outline: none;
}
.here-button-regular:hover {
  box-shadow: 0 2px 5px var(--secondary-foreground-alpha-30, rgba(0, 0, 0, 0.3));
}
.here-button-regular:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.here-button-regular path[fill]:not([fill='none']),
.here-button-regular circle[fill]:not([fill='none']),
.here-button-regular g[fill]:not([fill='none']),
.here-button-regular rect[fill]:not([fill='none']) {
  fill: var(--secondary-foreground, white);
}
.here-button-regular path[stroke],
.here-button-regular circle[stroke],
.here-button-regular g[stroke],
.here-button-regular rect[stroke] {
  stroke: var(--secondary-foreground, white);
}
.here-button-ghost {
  border-radius: 10px;
  box-shadow: 0 4px 10px var(--secondary-foreground-alpha-10, rgba(0, 0, 0, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 2px solid var(--secondary-background, #6b1be3);
  color: var(--secondary-background, #6b1be3);
  background: transparent;
  box-shadow: none;
}
.here-button-ghost,
.here-button-ghost:focus,
.here-button-ghost:hover {
  outline: none;
}
.here-button-ghost:hover {
  box-shadow: 0 2px 5px var(--secondary-foreground-alpha-30, rgba(0, 0, 0, 0.3));
}
.here-button-ghost:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.here-button-ghost path[fill]:not([fill='none']),
.here-button-ghost circle[fill]:not([fill='none']),
.here-button-ghost g[fill]:not([fill='none']),
.here-button-ghost rect[fill]:not([fill='none']) {
  fill: var(--secondary-background, #6b1be3);
}
.here-button-ghost path[stroke],
.here-button-ghost circle[stroke],
.here-button-ghost g[stroke],
.here-button-ghost rect[stroke] {
  stroke: var(--secondary-background, #6b1be3);
}
.here-button-ghost:hover {
  color: var(--secondary-foreground, white);
}
.here-button-ghost:hover path[fill]:not([fill='none']),
.here-button-ghost:hover circle[fill]:not([fill='none']),
.here-button-ghost:hover g[fill]:not([fill='none']),
.here-button-ghost:hover rect[fill]:not([fill='none']) {
  fill: var(--secondary-foreground, white);
}
.here-button-ghost:hover path[stroke],
.here-button-ghost:hover circle[stroke],
.here-button-ghost:hover g[stroke],
.here-button-ghost:hover rect[stroke] {
  stroke: var(--secondary-foreground, white);
}
.here-button-regular:hover,
.here-button-ghost:hover {
  background: var(--secondary-background-alpha-80, rgba(97, 44, 218, 0.8));
  border-color: var(--secondary-foreground-alpha-20, rgba(97, 44, 218, 0.2));
}
.here-button-minimal {
  border-radius: 10px;
  box-shadow: 0 4px 10px var(--secondary-foreground-alpha-10, rgba(0, 0, 0, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid var(--primary-foreground-alpha-20, rgba(0, 0, 0, 0.2));
  color: var(--primary-foreground, black);
  background: var(--primary-background-alpha-70, rgba(255, 255, 255, 0.7));
}
.here-button-minimal,
.here-button-minimal:focus,
.here-button-minimal:hover {
  outline: none;
}
.here-button-minimal:hover {
  box-shadow: 0 2px 5px var(--secondary-foreground-alpha-30, rgba(0, 0, 0, 0.3));
}
.here-button-minimal:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.here-button-minimal path[fill]:not([fill='none']),
.here-button-minimal circle[fill]:not([fill='none']),
.here-button-minimal g[fill]:not([fill='none']),
.here-button-minimal rect[fill]:not([fill='none']) {
  fill: var(--primary-foreground, black);
}
.here-button-minimal path[stroke],
.here-button-minimal circle[stroke],
.here-button-minimal g[stroke],
.here-button-minimal rect[stroke] {
  stroke: var(--primary-foreground, black);
}
.here-button-minimal:hover {
  border: 1px solid var(--primary-foreground-alpha-40, rgba(0, 0, 0, 0.4));
}
.here-button-danger {
  border-radius: 10px;
  box-shadow: 0 4px 10px var(--secondary-foreground-alpha-10, rgba(0, 0, 0, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  background: #f6335d;
  border: 1px solid rgba(18, 0, 45, 0.2);
}
.here-button-danger,
.here-button-danger:focus,
.here-button-danger:hover {
  outline: none;
}
.here-button-danger:hover {
  box-shadow: 0 2px 5px var(--secondary-foreground-alpha-30, rgba(0, 0, 0, 0.3));
}
.here-button-danger:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.here-button-danger path[fill]:not([fill='none']),
.here-button-danger circle[fill]:not([fill='none']),
.here-button-danger g[fill]:not([fill='none']),
.here-button-danger rect[fill]:not([fill='none']) {
  fill: white;
}
.here-button-danger path[stroke],
.here-button-danger circle[stroke],
.here-button-danger g[stroke],
.here-button-danger rect[stroke] {
  stroke: white;
}
.here-button-danger:hover {
  background: rgba(246, 51, 93, 0.7);
}
.here-button-secondary {
  border-radius: 10px;
  box-shadow: 0 4px 10px var(--secondary-foreground-alpha-10, rgba(0, 0, 0, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: none;
  border: 2px solid transparent;
  background: #ededed;
}
.here-button-secondary,
.here-button-secondary:focus,
.here-button-secondary:hover {
  outline: none;
}
.here-button-secondary:hover {
  box-shadow: 0 2px 5px var(--secondary-foreground-alpha-30, rgba(0, 0, 0, 0.3));
}
.here-button-secondary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.here-button-secondary path[fill]:not([fill='none']),
.here-button-secondary circle[fill]:not([fill='none']),
.here-button-secondary g[fill]:not([fill='none']),
.here-button-secondary rect[fill]:not([fill='none']) {
  fill: black;
}
.here-button-secondary path[stroke],
.here-button-secondary circle[stroke],
.here-button-secondary g[stroke],
.here-button-secondary rect[stroke] {
  stroke: black;
}
.here-button-secondary:hover {
  background: #f2f2f2;
}
.here-button {
  padding: 8px 6px;
  color: white;
  font-size: 1em;
  border-radius: 4px;
  cursor: pointer;
  background-color: #6b1be3;
}
.here-button:focus {
  outline: none;
}
.here-button.outlined {
  color: #6b1be3;
  border: 1px solid #6b1be3;
  background-color: transparent;
}
.here-button.outlined:hover {
  background-color: rgba(107, 27, 227, 0.05);
}
.here-button.link {
  padding: 0;
  height: fit-content;
  width: fit-content;
  color: var(--primary-foreground, #6b1be3);
  border: none;
  background-color: inherit;
}
.here-button.link:hover {
  text-decoration: underline;
}

/* BASICS */
.CodeMirror {
  /* Set height, width, borders, and global font properties here */
  font-family: inherit;
  color: white;
  line-height: inherit;
}
/* PADDING */
.CodeMirror-lines {
  padding: 0;
  /* Vertical padding around content */
}
.CodeMirror-scrollbar-filler,
.CodeMirror-gutter-filler {
  background-color: white;
  /* The little square between H and V scrollbars */
}
/* GUTTER */
.CodeMirror-gutters {
  border-right: 1px solid #ddd;
  background-color: #f7f7f7;
  white-space: nowrap;
}
.CodeMirror-linenumber {
  padding: 0 3px 0 5px;
  min-width: 20px;
  text-align: right;
  color: #999;
  white-space: nowrap;
}
.CodeMirror-guttermarker {
  color: black;
}
.CodeMirror-guttermarker-subtle {
  color: #999;
}
/* CURSOR */
.CodeMirror-cursor {
  border-left: 1px solid white;
  border-right: none;
  width: 0;
}
/* Shown when moving in bi-directional text */
.CodeMirror div.CodeMirror-secondarycursor {
  border-left: 1px solid silver;
}
.cm-fat-cursor .CodeMirror-cursor {
  width: auto;
  border: 0 !important;
  background: #7e7;
}
.cm-fat-cursor div.CodeMirror-cursors {
  z-index: 1;
}
.cm-animate-fat-cursor {
  width: auto;
  border: 0;
  -webkit-animation: blink 1.06s steps(1) infinite;
  -moz-animation: blink 1.06s steps(1) infinite;
  animation: blink 1.06s steps(1) infinite;
  background-color: #7e7;
}
@-moz-keyframes blink {
  50% {
    background-color: transparent;
  }
}
@-webkit-keyframes blink {
  50% {
    background-color: transparent;
  }
}
@keyframes blink {
  50% {
    background-color: transparent;
  }
}
/* Can style cursor different in overwrite (non-insert) mode */
.cm-tab {
  display: inline-block;
  text-decoration: inherit;
}
.CodeMirror-rulers {
  position: absolute;
  left: 0;
  right: 0;
  top: -50px;
  bottom: -20px;
  overflow: hidden;
}
.CodeMirror-ruler {
  border-left: 1px solid #ccc;
  top: 0;
  bottom: 0;
  position: absolute;
}
/* DEFAULT THEME */
.cm-s-default .cm-header {
  color: blue;
}
.cm-s-default .cm-quote {
  color: #090;
}
.cm-negative {
  color: #d44;
}
.cm-positive {
  color: #292;
}
.cm-header,
.cm-strong {
  font-weight: bold;
}
.cm-em {
  font-style: italic;
}
.cm-link {
  text-decoration: underline;
}
.cm-strikethrough {
  text-decoration: line-through;
}
.cm-s-default .cm-keyword {
  color: #708;
}
.cm-s-default .cm-atom {
  color: #219;
}
.cm-s-default .cm-number {
  color: #164;
}
.cm-s-default .cm-def {
  color: #00f;
}
.cm-s-default .cm-variable-2 {
  color: #05a;
}
.cm-s-default .cm-variable-3 {
  color: #085;
}
.cm-s-default .cm-comment {
  color: #a50;
}
.cm-s-default .cm-string {
  color: #a11;
}
.cm-s-default .cm-string-2 {
  color: #f50;
}
.cm-s-default .cm-meta {
  color: #555;
}
.cm-s-default .cm-qualifier {
  color: #555;
}
.cm-s-default .cm-builtin {
  color: #30a;
}
.cm-s-default .cm-bracket {
  color: #997;
}
.cm-s-default .cm-tag {
  color: #170;
}
.cm-s-default .cm-attribute {
  color: #00c;
}
.cm-s-default .cm-hr {
  color: #999;
}
.cm-s-default .cm-link {
  color: #00c;
}
.cm-s-default .cm-error {
  color: #f00;
}
.cm-invalidchar {
  color: #f00;
}
.CodeMirror-composing {
  border-bottom: 2px solid;
}
/* Default styles for common addons */
div.CodeMirror span.CodeMirror-matchingbracket {
  color: #0f0;
}
div.CodeMirror span.CodeMirror-nonmatchingbracket {
  color: #f22;
}
.CodeMirror-matchingtag {
  background: rgba(255, 150, 0, 0.3);
}
.CodeMirror-activeline-background {
  background: #e8f2ff;
}
/* STOP */
/* The rest of this file contains styles related to the mechanics of
   the editor. You probably shouldn't touch them. */
.CodeMirror {
  position: relative;
  overflow: hidden;
  background: white;
}
.CodeMirror-scroll {
  overflow: scroll !important;
  /* Things will break if this is overridden */
  /* 30px is the magic margin used to hide the element's real scrollbars */
  /* See overflow: hidden in .CodeMirror */
  margin-bottom: -30px;
  margin-right: -30px;
  padding-bottom: 30px;
  height: 100%;
  outline: none;
  /* Prevent dragging from highlighting the element */
  position: relative;
}
.CodeMirror-sizer {
  position: relative;
  border-right: 30px solid transparent;
}
/* The fake, visible scrollbars. Used to force redraw during scrolling
   before actual scrolling happens, thus preventing shaking and
   flickering artifacts. */
.CodeMirror-vscrollbar,
.CodeMirror-hscrollbar,
.CodeMirror-scrollbar-filler,
.CodeMirror-gutter-filler {
  position: absolute;
  z-index: 6;
  display: none;
}
.CodeMirror-vscrollbar {
  right: 0;
  top: 0;
  overflow-x: hidden;
  overflow-y: scroll;
}
.CodeMirror-hscrollbar {
  bottom: 0;
  left: 0;
  overflow-y: hidden;
  overflow-x: scroll;
}
.CodeMirror-scrollbar-filler {
  right: 0;
  bottom: 0;
}
.CodeMirror-gutter-filler {
  left: 0;
  bottom: 0;
}
.CodeMirror-gutters {
  position: absolute;
  left: 0;
  top: 0;
  min-height: 100%;
  z-index: 3;
}
.CodeMirror-gutter {
  white-space: normal;
  height: 100%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: -30px;
  /* Hack to make IE7 behave */
  *zoom: 1;
  *display: inline;
}
.CodeMirror-gutter-wrapper {
  position: absolute;
  z-index: 4;
  background: none !important;
  border: none !important;
}
.CodeMirror-gutter-background {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 4;
}
.CodeMirror-gutter-elt {
  position: absolute;
  cursor: default;
  z-index: 4;
}
.CodeMirror-gutter-wrapper {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.CodeMirror-lines {
  cursor: text;
  min-height: 1px;
  /* prevents collapsing before first draw */
}
.code-editor .CodeMirror pre {
  font-family: 'Lucida Console', 'Lucida Sans Typewriter', monaco, 'Bitstream Vera Sans Mono', monospace;
}
.CodeMirror pre {
  /* Reset some styles that the rest of the page might have set */
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  border-width: 0;
  background: transparent;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  font-size: inherit;
  padding: 0 4px;
  /* Horizontal padding of content */
  margin: 0;
  white-space: pre;
  word-wrap: normal;
  line-height: inherit;
  color: inherit;
  z-index: 2;
  position: relative;
  overflow: visible;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-variant-ligatures: none;
  font-variant-ligatures: none;
}
.CodeMirror-wrap pre {
  word-wrap: break-word;
  white-space: pre-wrap;
  word-break: normal;
}
.CodeMirror-linebackground {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
}
.CodeMirror-linewidget {
  position: relative;
  z-index: 2;
  overflow: auto;
}
.CodeMirror-code {
  outline: none;
}
/* Force content-box sizing for the elements where we expect it */
.CodeMirror-scroll,
.CodeMirror-sizer,
.CodeMirror-gutter,
.CodeMirror-gutters,
.CodeMirror-linenumber {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.CodeMirror-measure {
  position: absolute;
  width: 100%;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}
.CodeMirror-cursor {
  position: absolute;
  pointer-events: none;
}
.CodeMirror-measure pre {
  position: static;
}
div.CodeMirror-cursors {
  visibility: hidden;
  position: relative;
  z-index: 3;
}
div.CodeMirror-dragcursors {
  visibility: visible;
}
.CodeMirror-focused div.CodeMirror-cursors {
  visibility: visible;
}
.CodeMirror-selected {
  background: #d9d9d9;
}
.CodeMirror-focused .CodeMirror-selected {
  background: #636370;
}
.CodeMirror-crosshair {
  cursor: crosshair;
}
.CodeMirror-line::selection,
.CodeMirror-line > span::selection,
.CodeMirror-line > span > span::selection {
  background: #d7d4f0;
}
.CodeMirror-line::-moz-selection,
.CodeMirror-line > span::-moz-selection,
.CodeMirror-line > span > span::-moz-selection {
  background: #d7d4f0;
}
.cm-searching {
  background: #ffa;
  background: rgba(255, 255, 0, 0.4);
}
/* IE7 hack to prevent it from returning funny offsetTops on the spans */
.CodeMirror span {
  *vertical-align: text-bottom;
}
/* Used to force a border model for a node */
.cm-force-border {
  padding-right: 0.1px;
}
@media print {
  /* Hide the cursor when printing */
  .CodeMirror div.CodeMirror-cursors {
    visibility: hidden;
  }
}
/* See issue #2901 */
.cm-tab-wrap-hack:after {
  content: '';
}
/* Help users use markselection to safely style text background */
span.CodeMirror-selectedtext {
  background: none;
}
.firepad {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  position: relative;
  text-align: left;
  line-height: normal;
}
.firepad .CodeMirror {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  height: auto;
}
.firepad-with-toolbar .CodeMirror {
  padding-left: 10px;
}
.firepad-with-toolbar .CodeMirror-lines {
  padding-top: 10px;
}
.CodeMirror-line {
  line-height: 1.1;
}
.firepad-toolbar {
  z-index: 9997;
  position: fixed;
  display: none;
  height: 40px;
  line-height: 40px;
  padding-left: 10px;
  background-color: #555555;
  border: 1px solid black;
  border-radius: 10px;
  /* Don't select text when double-clicking in toolbar */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.firepad-toolbar-wrapper {
  display: inline-block;
  line-height: 14px;
}
.firepad-richtext .CodeMirror {
  font-family: Verdana, sans-serif;
  font-size: 14px;
}
.firepad-spacer {
  height: 10px;
  width: 1px;
}
/** Styles for all of the rich-text formatting we support. */
.firepad-b {
  font-weight: bold;
}
.firepad-i {
  font-style: italic;
}
.firepad-u {
  text-decoration: underline;
}
.firepad-s {
  text-decoration: line-through;
}
.firepad-u.firepad-s {
  text-decoration: underline line-through;
}
.firepad-f-arial {
  font-family: Arial, Helvetica, sans-serif;
}
.firepad-f-comic-sans-ms {
  font-family: 'Comic Sans MS', cursive, sans-serif;
}
.firepad-f-courier-new {
  font-family: 'Courier New', Courier, monospace;
}
.firepad-f-impact {
  font-family: Impact, Charcoal, sans-serif;
}
.firepad-f-times-new-roman {
  font-family: 'Times New Roman', Times, serif;
}
.firepad-f-verdana {
  font-family: Verdana, Geneva, sans-serif;
}
.firepad-la-left {
  text-align: left;
}
.firepad-la-center {
  text-align: center;
}
.firepad-la-right {
  text-align: right;
}
/** Line Styles */
pre.firepad-lt-o,
pre.firepad-lt-u,
pre.firepad-lt-t,
pre.firepad-lt-tc,
pre.CodeMirror-line.firepad-lt-o,
pre.CodeMirror-line.firepad-lt-u,
pre.CodeMirror-line.firepad-lt-t,
pre.CodeMirror-line.firepad-lt-tc {
  padding-left: 20px;
}
pre.CodeMirror-line.firepad-li-2 {
  padding-left: 40px;
}
pre.CodeMirror-line.firepad-li-3 {
  padding-left: 60px;
}
pre.CodeMirror-line.firepad-li-4 {
  padding-left: 80px;
}
.firepad-list-left {
  display: inline-block;
  margin-left: -40px;
  width: 40px;
  padding-right: 5px;
  text-align: right;
}
.firepad-todo-left {
  display: inline-block;
  margin-left: -20px;
  width: 20px;
}
.firepad-btn-group {
  margin: 5px 7px 0 0;
  display: inline-block;
}
a.firepad-btn,
a.firepad-btn:visited,
a.firepad-btn:active {
  font-family: 'Arial' sans-serif;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  padding: 6px 6px 4px 6px;
  text-align: center;
  vertical-align: middle;
  font-size: 16px;
  background-color: #fcfcfc;
  border: 1px solid #c9c9c9;
  color: #3c3c3c;
  margin-bottom: 3px;
}
a.firepad-btn:hover {
  color: #fff;
  background-color: #56a;
  border-color: #000000;
  text-decoration: none;
}
a.firepad-btn:active {
  -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}
.firepad-btn-group > .firepad-btn {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  margin-left: -1px;
}
.firepad-btn-group > .firepad-btn:first-child {
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
  -webkit-border-bottom-left-radius: 6px;
  -webkit-border-top-left-radius: 6px;
  -moz-border-radius-bottomleft: 6px;
  -moz-border-radius-topleft: 6px;
  margin-left: 0px;
}
.firepad-btn-group > .firepad-btn:last-child {
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px;
  -webkit-border-bottom-right-radius: 6px;
  -webkit-border-top-right-radius: 6px;
  -moz-border-radius-bottomright: 6px;
  -moz-border-radius-topright: 6px;
}
.firepad-dropdown {
  position: relative;
}
.firepad-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  padding: 4px 0;
  margin: 4px 0 0;
  list-style: none;
  background-color: #ffffff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  *border-right-width: 2px;
  *border-bottom-width: 2px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}
.firepad-dropdown-menu a {
  text-align: left;
  display: block;
  padding: 3px 15px;
  clear: both;
  font-weight: normal;
  line-height: 18px;
  color: #888888;
  white-space: nowrap;
}
.firepad-dropdown-menu a:hover {
  color: #fff;
  text-decoration: none;
  background-color: #56a;
}
.firepad-color-dropdown-item {
  height: 25px;
  width: 25px;
  border-radius: 12.5px;
  border: 1px solid black;
}
.firepad-dialog {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
.firepad-dialog-div {
  position: relative;
  width: 400px;
  height: 100px;
  margin: 100px auto;
  background-color: #fff;
  border: 1px solid #000;
  padding: 15px;
}
.firepad-dialog-input {
  width: 80%;
  display: block;
  padding: 5px 5px;
  margin: 10px 10px 10px 5px;
  clear: both;
  font-weight: normal;
  line-height: 25px;
  color: #333333;
  white-space: nowrap;
}
/********************************************************************
 * Generated via icomoon.io.
  If you want to make changes, you can go to http://icomoon.io/app/, go to the bottom right and click the
  database-looking icon, then "Load Session" and use the checked-in font/firepad-icomoon.json file.

  Note: When you download the generated font, turn on the "Base 64 Encode ..." option to generate the font inline
  in the CSS (to avoid needing to distribute a font file with firepad).
 */
@font-face {
  font-family: 'firepad';
  src: url('firepad.eot');
}
@font-face {
  font-family: 'firepad';
  src: url(data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AAAzsAAsAAAAAFegAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAABCAAACZUAABDLmL2mHkZGVE0AAAqgAAAAGgAAABxoZGqgR0RFRgAACrwAAAAdAAAAIABFAARPUy8yAAAK3AAAAEsAAABgL9zcQGNtYXAAAAsoAAAAXgAAAX7gqNO7aGVhZAAAC4gAAAAuAAAANv1GCI1oaGVhAAALuAAAAB4AAAAkBBD/5GhtdHgAAAvYAAAAHgAAADYEYAEQbWF4cAAAC/gAAAAGAAAABgAYUABuYW1lAAAMAAAAAOAAAAGGNHbrq3Bvc3QAAAzgAAAADAAAACAAAwAAeJy9V3l0lNUVf1+YjWQyQJghBMIMZafTCoERQUQWIaCDYGGkiNKypuBIC5hYUERB9o9FYMoOrWgrEPDkQMqpcKpCkUqnRyONCBRo2FKSgbAY+L7yDdz+7vcmw5ZqT//omTP33nff3d6977vvPUVYLEJRFEfexKnjJ48eJ5QUoYjH9U4peuc6emOL6qyjOi3eVJE1NINUNUk47WpYj+gF1mzlsXrZQtTPVsINsoUzu74vQ2SxDYeoJxqJZqKV8ItOopvoJfqLQeJZ8YIYK14UU8Q08YaYJ5aIiFgvNoutoqjg5xNzO3bsCNQviXIk6iRRZ4kCEj0sUReJHpGoq0TdJOotUR+JnpCor0T9TJQjHeVIRznSUY50lCMd5SQc5SZSVJMpIZT5ygJlobJIUZXFyhJlqbJMeVtZrqxQVioR5VfKKmW1skZZq6xT1isblI2iMaclRTjFLcWrHKrzjk23++wT7AvsW+yf2csd3tSqtCfTNqUddjqcp9Id6TnpH7jedKl6viUe0SN2Fymjr7xH4tJ21UOidfuuRBUrrpJoXN6K6OtHT6tEX87d7CD6MHyQ6GDk0QTA0OtXg2pYVfVQoRrFz0oiF1Oim5R8lYXm+WCgbMcKouqiMURn+44gutSrD5zs+TWM/qTeCyRWDC3wGG4SnT4RdhJNjQskGh1oTCL79/tJtHzqcQmoovsFyaNzlsY+kJ8IoxQxN+u2jkTmwTye/BPL9pCALvAE8+jMwTwfUdGbwnDbXHpID3mM/HDUZgTi7qCqhrV8VS0MqlpAd2MVLq2aBcbZEXmsch/RjdOLiC7ubUF0eUoboqtZw7GGJc9gOP4c0T9teRA5fprofNY6tQYyV9Rt7ZOSov66bNZuS8JVvoUtLiTRsO8plYTb09OhjQvCHQKctpJE/83LiD6eP4nE8JFTGOxk3iASvXh28PxJXm2c3SiNuz3NU116RMv3EL3YY6cNqzzUFfa2PkJ0/JVcEmnDDhEdnV2iIs/RG/OJSutOR7YGNyHRoqg8AfyYkLwAzwbqTmPeAhjDLJ0c3MQXtSHKlpNRvEuF86CVUYSCpj6GlOtDIDbkIVSrzyCiY6zqZOpI1RqV4TCVuXuIvvnjTpb8IWrIVFkqqnnB/gFbnAsnl56B4IllmyQkkRF6zeSS8F3fLyWF0iqLiFqdBNWuGNT3UWTF3xfUD55ymAkIaxHbvQs4zwtoaq6CFz8tsagozz6YEF/Qdl8ArmQAVyC2428yfNHmRq5ckmjfYJvKcILK3AVy+ZA8LFMC7QOcpvps8VVO3TWZSsBG708i0t/4CFRmkOhaz5nYEL0HOEgU9Dpgc2mWGHa241gjEvY2lZAERVqbSp/fbuIEp4bt9dsYVzAnU6qwsi9mTxqpSLIzvX/v7ilMzJgmpA+2E7bVZt4XtkvzNcFkmsreQttdMUofMO/TW+2tPfgaMzXWM6VTo/i+6BN2CmuPXivWQvfZNw1V/G/2M5P2Jdvr50+qtvC735P7C//X3FfeFUytuU94XW9Yvm3jPJCb+4NPpOa7gs9MBl9Re/D3VeS/3TjanG/bOQ9s+wcqm8jCf9g5Lo1bf/NUo9S4C8UjWrXne6lGyJIAEIua01roDooHCj3BcKG/0BY2mnqiW9VSP06OqKpODU5S+8TMA8QaDXr84Wg4aP5jfNRYWsC+/26fMQ+zMGiRmpgP3DUfDzwwb5TePR95UB/2a4MurdgS1KqjdqM65kkQUEtQfkkUxjyaWw36rVHNjUNYjcasuBGc2FlEyp4dh1GMDg22E5WYvXznzd8weZTBOjTdXZBigHNfjChDJ5v5MJFxtR0oFTcA7RdorJ62k9DTcn78uQkgmbX4rwwWc+NcNY+o/OUAxkuPw94t2BcpdTKs4E7ZBu4y9O0j4c9UHuPgLZ9cDqkVlzcBXN1iSk0wuXzaTNzDZtawwQJ4TLGOMg3CY53bfyCKK2jPlonTQe22gPodTuFbvT6FvaMNCxh0hj2j+DWI8xXF+PoLUAv3QtwzC9RFPkRvxbdzfCGrzAJS0xareNr6jkkC1Ed8YlL6coAGE6wmg6fasNAZiHbIuMaqvNZRR3CIjPqql8e0yLarrFKWSi435WTj2GBZc8zLvnoR4Eq56Xw1czdxRfh+VnJxMfsakwzRkpWQgsciM8RzbHsiS51HiAOfxtE2cCAubES/RZ4qZqcjJa5hoF7ejU9leVuiyqNfwd7n718B2JJjNfNq1oWT/VJdriHXZfK79yY7a+mz4E69hupGuqlcw6YAS1ycmPrvcmLamFLHTcCbYKUuy4vxseQmsPqsXLNcrt4vUY5VfwH1ZBzUc/iqUz5+Hfba8rLbVs6EPUsQOynOR7KlXSdQ+Tht61TO5OrNdmA/z6gaFkamF4/A4b66+DYuAp1wbfmmoU63q+ecIvqX/SUHYpnRYZMRMkIa/hjNrJgO0/8YJUhYe+zCpS2M68aYE5eI/twyg2iNccGBT4yUsSVjPLAztzkJmx6B7ZxtRM6LiHDx8y2JJgRToNGihMTPLI2lFbGxZUNpmW7uHwTPNKvRfM30q4WsLj2ALtUyVcPt1KMFNDcaTQyfpur3c8Uu9R7A558y/vWH1HAh3T4++7B6RyffKPbEVANaRsBwoy358XlDKx1apaw1o0pqvZXBN123zg0hErXH/MhPg7W4MLvycJ+9Coqq8vJ8RsBuEglWDd/rN9xGBKGh/1aNP4uJdc2kKhvxadC6Yy3J92qluLFrASQZAkr/zgHtPbh1ljQnur4RFUkd68bVqkNZAlzfsJ1BFQ9PSQCRkOSZasL5RRnzMqQu87z3ds07MNEb3VoEjQ5p8Vu/QzISRW9E5mOcXoseiQfiEZueX+jRquMho9qulZrhN5l5E31uli0BzGGSR5Wg6DxT55PDWnhJXW/MmOPxa62CzxtuLeA3IqhSBFUimrpxMtGSMW8TbS7DzlnSXPDb6qMPkeXWVi/Rp/sG4O11Hk+SY6fQU8UufFjGj9CNxWg4Mbr0g7Thex3wZDoeL2f6biA6HX4Cw73j8DjpYsXXd23RPlSu5yt4FChTi0j03vwlnjEnwiS63OqQAOlKlOj28CGghu5GB2nhBLVSR4cUHJ3gOMVIH662U8v6MBAybDGyuTBX4cOzxa16VGcqXvYNhUVR7M/9dG1QK43a03A/Hqrj1bbdkQDmMMmjs6DoBFMnksNaeEldb1pQx/ZOi/lV4xy+A6093iP6EQuDXB7GvfF8W5KPhmMHJRxHcn2qdi4Ws6b9G/R4y/0AAAB4nGNgYGBkAIIztovOg+hzwskvYDQASW0G1AAAeJxjYGRgYOADYgkGEGBiYARCcSBmAfMYAAVHAEoAAAB4nGNgZmJgnMDAysDB6MOYxsDA4A6lvzJIMrQwMDAxsDIzwIEAgskQkOaawuDwgOEDA+OD/w8Y9BgfMCg0MDAwwhUoACEjABBCDB8AeJzljdkRgCAMRB+I94UH+mNpFmK5lmAHGGCsws1ksjvJmwAZqQ8UQZckFbPhlFlJ6bC43YP30fE5q+JtEUktpCGXVApT09DS0TMwYtmZmFlYcWyghEkP/6sX448KEgAAeJxjYGRgYADiA48eTY3nt/nKwM3EAALnhJNfIOj/D5gYGB8AuRwMYGkAXjsL7AAAeJxjYGRgYHzw/wGDHhMDA8M/BiAJFEEBzABt5wP2AAB4nGNigAAmBoYEBgcghgAFBmSgwGCAwmcAADLOAXUAAAAAUAAAGAAAeJx1jk9qwkAUh79otJRK6ap0OeCmm4RkXAgeIAfown2gYwhIIqNCT9KVR3DpMXqAHqHH6C/2bbpw4DHf++b9GWDGJwnDSbjjyXgkfjUeM+fDOJU/G0944Mt4Kv+jyiS9l3m8dg08Er8Yj6kojFP5k/GEZy7GU/lvNrREAjtq3mHTxrCrBW9yDUe28lFpaI7bWlDR03G43lEVAYcn1zbHSvF/3p/zLMhYKrzqSmVUfXeo+tgE5/PCrZztFflFtsx8Uaro1t/WcpG9Xoe/OE0c9rMOcd/2nSvz4mbvL7EuORF4nGNgZsALAAB9AAQ=) format('woff'), url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAANAIAAAwBQRkZUTWhkaqAAAA9wAAAAHEdERUYARwAGAAAPUAAAACBPUy8yL7vcIAAAAVgAAABWY21hcODA1NYAAAHwAAABfmdhc3D//wADAAAPSAAAAAhnbHlmMPUBFgAAA6gAAAkIaGVhZP1GCI0AAADcAAAANmhoZWEEEf/lAAABFAAAACRobXR4BQoBEQAAAbAAAAA+bG9jYR04G1IAAANwAAAANm1heHAAZQCTAAABOAAAACBuYW1lNHbrqwAADLAAAAGGcG9zdFMv72QAAA44AAABDgABAAAAAQAABST+1l8PPPUACwIAAAAAAM4TY+gAAAAAzhNj6AAA/98CAAHhAAAACAACAAAAAAAAAAEAAAHh/98ALgIAAAD+AAIAAAEAAAAAAAAAAAAAAAAAAAAFAAEAAAAaAJAACQAAAAAAAgAAAAEAAQAAAEAAAAAAAAAAAQIAAZAABQAIAUwBZgAAAEcBTAFmAAAA9QAZAIQAAAIABQMAAAAAAAAAAAAAEAAAAAAAAAAAAAAAUGZFZABA4ADwAAHg/+AALgHhACGAAAABAAAAAAAAAgAAAAAAAAAAqgAAAAAAAAIAAGAAQABgAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAxAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAADAAAAHAABAAAAAAB4AAMAAQAAABwABABcAAAACAAIAAIAAAAA4BXwAP//AAAAAOAA8AD//wAAAAAQAwABAAAABgAAAAAABAAFAAYABwAIAAkACgALAAwADQAOAA8AEAARABIAGQATABQAFQAWABcAGAAAAQYAAAEAAAAAAAAAAQIAAAACAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4APgBWAHwAugF0AbAB7AISAjgCXgKEAq4DFAM0A1QDfgOoA+AEDAQ2BGAEhAAAAAEAAP/gAgAB4AACAAARASECAP4AAeD+AAAAAAADAGAAAAGgAcAAEQAZACEAACU2NTQmKwMROwIyNjU0JiczMhYUBisBFyM1MzIWFAYBYh5LNUBAICBAYDVLIr4zFR4eFTNQUFAVHx/uIy81S/5ASzUiO6MmNCbAgCY0JgABAEAAAAHAAcAACwAAARUjAzMVIzUzEyM1AcBAoEDgQKBAAcAg/oAgIAGAIAAAAAACAGAAAAGgAcAAEQAVAAABMxUUBiImPQEzFRQXFjI3NjUFIRUhAWBAXoReQBocVBwa/wABQP7AAcDQPFRUPNDQHxcaGhcfsEAAAAAAAQAAAAACAAHAACoAACUVIxYVFAcGIicmNTMUFjI2NCYjITUzJicmNDc2MhcWFSM0JiIGFBYzMhcCAHUVMi6ALjJAOU45OSf/AJYCAjIyLoAuMkA5Tjk5Jz0t4CAeIjglIyMlOBomJjQmIAECJXAlIyMlOBomJjQmIAAAAAkAAP/gAgAB4AAPAB8ALwA/AE8AXwBvAH8AjwAANyMiBh0BFBY7ATI2PQE0JgcUBisBIiY9ATQ2OwEyFhUlISIGHQEUFjMhMjY9ATQmJyEiBh0BFBYzITI2PQE0JiUjIgYdARQWOwEyNj0BNCYHFAYrASImPQE0NjsBMhYVFyMiBh0BFBY7ATI2PQE0JgcUBisBIiY9ATQ2OwEyFhUlISIGHQEUFjMhMjY9ATQmcGAHCQkHYAcJCRcJByAHCQkHIAcJAZD+4AcJCQcBIAcJCQf+4AcJCQcBIAcJCf55YAcJCQdgBgoJFwkHIAcJCQcgBwkQYAcJCQdgBwkJFwkHIAcJCQcgBwkBkP7gBwkJBwEgBwkJYAkHYAcJCQdgBwlQBwkJByAHCQkHEAkHIAcJCQcgBwnACQcgBwkJByAHCeAJB2AHCRgIUAcJUAcJCQcgBwkJB5AJB2AHCQkHYAcJUAcJCQcgBwkJB9AJByAHCQkHIAcJAAYAAP/gAgAB4AADAAcACwATABsAIwAAEyEVIRUhFSEVIRUhAhQWMjY0JiIGFBYyNjQmIgYUFjI2NCYiwAFA/sABQP7AAUD+wMAmNCYmNCYmNCYmNCYmNCYmNAHAQIBAgEABujQmJjQm5jQmJjQm5jQmJjQmAAAAAAYAIP/gAgAB4AADAAcACwARAB0AKQAANyEVIREhFSERIRUhJxUjNSM1ExUzFSM1NzUjNTMdAiM1MzUjNTM1IzXAAUD+wAFA/sABQP7AYCAgIEBgQEBgYEBAQEBAQAEAQAEAQGCAYCD++RkgSR4ZIEl3oCAgICAgAAUAAAAAAgABwAADAAcACwAPABMAABEhFSEVIRUhFSEVITUhFSEVIRUhAgD+AAFA/sABQP7AAgD+AAIA/gABwEAgQIBAoECAQAAAAAAFAAAAAAIAAcAAAwAHAAsADwATAAARIRUhFyEVIRUhFSEnIRUhFSEVIQIA/gBgAUD+wAFA/sBgAgD+AAIA/gABwEAgQIBAoECAQAAABQAAAAACAAHAAAMABwALAA8AEwAAESEVIRchFSEVIRUhJyEVIRUhFSECAP4AwAFA/sABQP7AwAIA/gACAP4AAcBAIECAQKBAgEAAAAUAAAAAAgABwAADAAcACwAPABMAABEhFSEVIRUhFSEVIRUhFSEVIRUhAgD+AAIA/gACAP4AAgD+AAIA/gABwEAgQCBAIEAgQAAAAAAGAAAAIAIAAYAAAwAHAAsADwASABUAABEhFSE1IRUhFSEVIRUhFSElFzc1JwcBYP6gAWD+oAFg/qABYP6gAYBAQEBAASBAoECAQCBAoGBgIGBgAAACAAD/4AIAAeEAIABBAAABJyYiDwEGFB8BFhc3Ji8BJjQ/ATYyHwEWFA8BFgc3NjQHJicHFh8BFhQPAQYiLwEmND8BJjcHBhQfARYyPwE2NCcB3QIkZCNuIyMCBgcoCAUCExNtEzYTAhQUMQ0BTSPEBgcoCAUCExNtEzYTAhQUMQ0BTSMjAiRkI24jIwG7AiMjbSRkJAIFBSgEBgITNhNtFBQCEzYTMh8jTSNkeQUFKAQGAhM2E20UFAITNhMyHyNNI2QkAiMjbSRkJAABACD/4AHPAeAAEAAABT4BLgIHFSc3FTYeAg4BAX0SEwclVkDAwEFiOBkLKSAhREY1IAF/wMB8ASM8UVdZAAAAAQAx/98B4AHgABAAAAE1Fwc1Jg4CFhcuAj4CASDAwEBWJQcTEiMpCxk4YgFkfMDAfwEgNUZEISVZV1E8IwAAAAMAAAAAAgABwAALABIAFgAAASEHERQWMyEyNjURASczNTMVMyU3IRcBoP7AYAkHAeAHCf8AoGCAYP6tIAEmIAHAYP6wBwkJBwFQ/uCAYGDAICAAAAMAAAAAAgABwAALABIAFgAAASEHERQWMyEyNjURBxUjNSM3FyU3IRcBoP7AYAkHAeAHCcCAYKCg/q0gASYgAcBg/rAHCQkHAVDAYGCAgOAgIAAAAAQAAAAAAgABwAADABcAGwAjAAATIRUhBSEiBh0BFBY7ARUhNTMyNj0BNCYDIzUzNhQGIiY0NjKAAQD/AAFg/kANExMNYAEAYA0TE43AwIcNFA0NFAHAQCATDaANE4CAEw2gDRP+wKB6FA0NFA0AAAAGAAAAAAIAAcAAAwAHAAsADwATABYAABEhFSEXIRUhFSEVIRUhFSEHIRUhExUnAgD+AMABQP7AAUD+wAFA/sDAAgD+AICAAcBAIEAgQCBAIEABQMBgAAAABgAAAAACAAHAAAMABwALAA8AEwAWAAARIRUhFyEVIRUhFSEVIRUhByEVIT0BFwIA/gDAAUD+wAFA/sABQP7AwAIA/gCAAcBAIEAgQCBAIECAwGAABAAAAAACAAGgAAMABwAPABQAABkBIREDIREhBhQWMjY0JiITIRMXNwIAIP5AAcCAHCgcHChE/oBggEABoP5gAaD+gAFgPCgcHCgc/uABAKAwAAAAAQAA/+ACAAHAABQAABIyFhQGIyInDgEHNT4BNTQnLgE1NJbUlpZqFBQmWTkcJAEsMwHAeqx6AyYbAg4NLBkHBx5UMFYAAAAAAAAMAJYAAQAAAAAAAQAHABAAAQAAAAAAAgAHACgAAQAAAAAAAwAjAHgAAQAAAAAABAAHAKwAAQAAAAAABQALAMwAAQAAAAAABgAHAOgAAwABBAkAAQAOAAAAAwABBAkAAgAOABgAAwABBAkAAwBGADAAAwABBAkABAAOAJwAAwABBAkABQAWALQAAwABBAkABgAOANgAZgBpAHIAZQBwAGEAZAAAZmlyZXBhZAAAUgBlAGcAdQBsAGEAcgAAUmVndWxhcgAARgBvAG4AdABGAG8AcgBnAGUAIAAyAC4AMAAgADoAIABmAGkAcgBlAHAAYQBkACAAOgAgADIAMwAtADcALQAyADAAMQAzAABGb250Rm9yZ2UgMi4wIDogZmlyZXBhZCA6IDIzLTctMjAxMwAAZgBpAHIAZQBwAGEAZAAAZmlyZXBhZAAAVgBlAHIAcwBpAG8AbgAgADEALgAwAABWZXJzaW9uIDEuMAAAZgBpAHIAZQBwAGEAZAAAZmlyZXBhZAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAABAAIBAgEDAQQBBQEGAQcBCAEJAQoBCwEMAQ0BDgEPARABEQESARMBFAEVARYBFwEYB3VuaUYwMDAHdW5pRTAwMAd1bmlFMDAxB3VuaUUwMDIHdW5pRTAwMwd1bmlFMDA0B3VuaUUwMDUHdW5pRTAwNgd1bmlFMDA3B3VuaUUwMDgHdW5pRTAwOQd1bmlFMDBBB3VuaUUwMEIHdW5pRTAwQwd1bmlFMDBEB3VuaUUwMEUHdW5pRTAxMAd1bmlFMDExB3VuaUUwMTIHdW5pRTAxMwd1bmlFMDE0B3VuaUUwMTUHdW5pRTAwRgAAAAAAAf//AAIAAQAAAA4AAAAYAAAAAAACAAEAAwAZAAEABAAAAAIAAAAAAAEAAAAAzD2izwAAAADOE2PoAAAAAM4TY+g=) format('truetype');
  font-weight: normal;
  font-style: normal;
}
.firepad-tb-bold,
.firepad-tb-italic,
.firepad-tb-underline,
.firepad-tb-strikethrough,
.firepad-tb-list,
.firepad-tb-list-2,
.firepad-tb-numbered-list,
.firepad-tb-paragraph-left,
.firepad-tb-paragraph-center,
.firepad-tb-paragraph-right,
.firepad-tb-paragraph-justify,
.firepad-tb-menu,
.firepad-tb-link,
.firepad-tb-undo,
.firepad-tb-redo,
.firepad-tb-box-add,
.firepad-tb-box-remove,
.firepad-tb-print,
.firepad-tb-indent-decrease,
.firepad-tb-indent-increase,
.firepad-tb-insert-image,
.firepad-tb-bubble {
  font-family: 'firepad';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}
.firepad-tb-bold:before {
  content: '\e000';
}
.firepad-tb-italic:before {
  content: '\e001';
}
.firepad-tb-underline:before {
  content: '\e002';
}
.firepad-tb-strikethrough:before {
  content: '\e003';
}
.firepad-tb-list:before {
  content: '\e004';
}
.firepad-tb-list-2:before {
  content: '\e005';
}
.firepad-tb-numbered-list:before {
  content: '\e006';
}
.firepad-tb-paragraph-left:before {
  content: '\e007';
}
.firepad-tb-paragraph-center:before {
  content: '\e008';
}
.firepad-tb-paragraph-right:before {
  content: '\e009';
}
.firepad-tb-paragraph-justify:before {
  content: '\e00a';
}
.firepad-tb-menu:before {
  content: '\e00b';
}
.firepad-tb-link:before {
  content: '\e00c';
}
.firepad-tb-undo:before {
  content: '\e00d';
}
.firepad-tb-redo:before {
  content: '\e00e';
}
.firepad-tb-box-add:before {
  content: '\e010';
}
.firepad-tb-box-remove:before {
  content: '\e011';
}
.firepad-tb-print:before {
  content: '\e012';
}
.firepad-tb-indent-decrease:before {
  content: '\e013';
}
.firepad-tb-indent-increase:before {
  content: '\e014';
}
.firepad-tb-insert-image:before {
  content: '\e015';
}
.firepad-tb-bubble:before {
  content: '\e00f';
}
.uk-dropdown.feedback-window {
  width: 380px !important;
  height: fit-content;
  line-height: 1.6em;
  font-size: 0.85em;
  background: var(--primary-background, white);
}
.feedback-tabs {
  display: flex;
  align-items: baseline;
  overflow: hidden;
  border-bottom: 1px solid var(--primary-foreground-alpha-70, rgba(70, 70, 70, 0.7));
  background-color: transparent;
}
.feedback-tab-link {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  padding-bottom: 16px;
  margin-right: 14px;
  color: var(--primary-foreground-alpha-70, rgba(0, 0, 0, 0.7));
}
.feedback-tab-link-active,
.feedback-tab-link:hover {
  color: var(--primary-foreground, #6b1be3);
  font-weight: bold;
}
.feedback-tab-link-active {
  border-bottom: 1px solid var(--primary-foreground, #6b1be3);
}
.feedback-link,
.feedback-link:hover {
  color: #6b1be3;
  text-decoration: underline;
}
.feedback-response {
  margin-top: 10%;
  margin-left: 3%;
  margin-right: 3%;
}
#feedback-whats-new-content {
  margin-top: 15px;
}
.feedback-badge-hi {
  position: relative;
  top: -18px;
  right: -36%;
}
.feedback-badge-new {
  position: relative;
  top: -18px;
  right: -53%;
}
.etc-tools-dropdown .feedback-badge-new,
.etc-tools-dropdown .feedback-badge-hi {
  top: -7px;
}
.update-title {
  font-weight: bold;
  font-size: 1.1em;
  color: black;
  width: 75%;
}
.uk-notification-message {
  background-color: #ffffff !important;
  border-radius: 10px !important;
  max-width: 280px;
}
.uk-notification-message .important-update-notification .text-block {
  text-align: left;
  margin-top: 5px;
}
.uk-notification-message .important-update-notification .text-block .title {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}
.uk-notification-message .important-update-notification .text-block .title h3 {
  font-weight: bolder;
  font-size: 1rem;
  margin-bottom: 0;
}
.uk-notification-message .important-update-notification .text-block .title .update-date {
  font-size: 0.8rem;
  color: #aaa;
}
.uk-notification-message .important-update-notification .text-block .new-badge {
  position: relative;
  margin: 0;
  width: fit-content;
  display: block;
}
.uk-notification-message .important-update-notification .text-block p {
  padding-top: 10px;
  color: #666666;
  font-size: 0.9rem;
  margin: 0 0 5px 0;
}
.uk-notification-message .important-update-notification .text-block p span {
  display: block;
  text-align: justify;
}
.uk-notification-message .important-update-notification .text-block a {
  text-decoration: none;
}
.uk-notification-message .important-update-notification .text-block a:hover {
  text-decoration: underline;
}
.uk-notification-message .important-update-notification .feedback-link {
  display: block;
  text-align: center;
}
.uk-notification.uk-notification-bottom-left {
  z-index: 10006;
}

.uk-modal-body.welcome-modal {
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
  width: 44%;
  min-width: 320px;
  color: var(--primary-foreground, white);
  background: var(--primary-background, linear-gradient(44.31deg, #1901aa 0%, #55017d 70%));
  background-attachment: fixed;
}
.uk-modal-body.welcome-modal #join-room-error,
.uk-modal-body.welcome-modal #join-room-content {
  width: 100%;
}
.uk-modal-body.welcome-modal #device-scanning {
  display: block;
  font-size: 1em;
  padding: 5px 0;
}
.uk-modal-body.welcome-modal .app-launch-gif {
  max-width: 400px;
  padding: 20px 0;
}
.uk-modal-body.welcome-modal .app-launch-message {
  padding-bottom: 15px;
}
.uk-modal-body.welcome-modal .join-room-button,
.uk-modal-body.welcome-modal .join-on-web-button {
  width: 50%;
  height: 50px;
  text-transform: capitalize;
  font-size: 20px;
  line-height: 24px;
  font-weight: bold;
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  transition-duration: 0.1s;
  transition-property: transform;
}
@media (max-width: 614px) {
  .uk-modal-body.welcome-modal .join-room-button,
  .uk-modal-body.welcome-modal .join-on-web-button {
    width: unset;
  }
}
.uk-modal-body.welcome-modal .join-room-button:hover,
.uk-modal-body.welcome-modal .join-on-web-button:hover {
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}
.uk-modal-body.welcome-modal #viewer-join-room-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.uk-modal-body.welcome-modal #viewer-join-room-content .join-room-title {
  font-size: 48px;
}
.uk-modal-body.welcome-modal #viewer-join-room-content .subtitle {
  margin-bottom: 100px;
  color: #ddd;
  font-size: 16px;
}
.uk-modal-body.welcome-modal #viewer-join-room-content .steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  width: 100%;
  margin-bottom: 30px;
}
.uk-modal-body.welcome-modal #viewer-join-room-content .steps .step {
  width: 180px;
  text-align: center;
  color: #ddd;
  opacity: 0.3;
  animation: joinRoomStep 1.5s forwards;
}
.uk-modal-body.welcome-modal #viewer-join-room-content .steps .step:nth-child(1) {
  animation-delay: 1s;
}
.uk-modal-body.welcome-modal #viewer-join-room-content .steps .step:nth-child(2) {
  animation-delay: 2.5s;
}
.uk-modal-body.welcome-modal #viewer-join-room-content .steps .step:nth-child(3) {
  animation-delay: 4s;
}
.uk-modal-body.welcome-modal #viewer-join-room-content .steps .step .gif {
  height: 150px;
  margin-bottom: 20px;
}
.uk-modal-body.welcome-modal #viewer-join-room-content .join-room-button {
  opacity: 0.3;
  animation: joinRoomStep 1.5s 5s forwards;
}
.uk-modal-body.welcome-modal #public-join-room-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.uk-modal-body.welcome-modal #public-join-room-content .join-room-title {
  margin-bottom: 2px;
  font-size: 40px;
  text-align: center;
}
@media (max-width: 500px) {
  .uk-modal-body.welcome-modal #public-join-room-content .join-room-title {
    font-size: 28px;
  }
}
.uk-modal-body.welcome-modal #public-join-room-content .subtitle {
  margin-bottom: 5%;
  margin-top: 2%;
  color: #ddd;
  font-size: 16px;
}
.uk-modal-body.welcome-modal #public-join-room-content .steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  width: 100%;
  margin-bottom: 4%;
}
.uk-modal-body.welcome-modal #public-join-room-content .steps .step {
  width: 180px;
  text-align: center;
  color: #ddd;
  opacity: 0.3;
  animation: joinRoomStep 1.5s forwards;
}
.uk-modal-body.welcome-modal #public-join-room-content .steps .step:nth-child(1) {
  animation-delay: 1s;
}
.uk-modal-body.welcome-modal #public-join-room-content .steps .step:nth-child(2) {
  animation-delay: 2.5s;
}
.uk-modal-body.welcome-modal #public-join-room-content .steps .step:nth-child(3) {
  animation-delay: 4s;
}
.uk-modal-body.welcome-modal #public-join-room-content .steps .step .gif {
  height: 150px;
  margin-bottom: 20px;
}
.uk-modal-body.welcome-modal #public-join-room-content .steps .step .gif-red-flag {
  height: 120px;
  margin: 25px 0px;
}
.uk-modal-body.welcome-modal #public-join-room-content .join-room-button {
  opacity: 0.3;
  animation: joinRoomStep 1.5s 5s forwards;
  margin-top: 20px;
}
.uk-modal-body.welcome-modal #public-join-room-content .public-room-identifier {
  color: white;
  background-color: #6b1be3;
  padding: 5px 8px;
  border-radius: 4px;
  margin-bottom: 2%;
}
.uk-modal-body.welcome-modal #public-join-room-content .public-room-identifier .public-room-identifier-icon {
  margin-right: 2px;
  height: 20px;
  width: auto;
  vertical-align: text-top;
}
.uk-modal-body.welcome-modal #public-join-room-content .public-room-community-title {
  font-weight: 600;
  color: white;
  text-align: center;
  margin-bottom: 0;
  margin-top: 2%;
}
.uk-modal-body.welcome-modal #public-join-room-content .join-hr {
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin: 2% 0px;
}
.uk-modal-body.welcome-modal #viewer-join-room-content,
.uk-modal-body.welcome-modal #public-join-room-content {
  overflow: hidden;
}
.uk-modal-body.welcome-modal #viewer-join-room-content .steps,
.uk-modal-body.welcome-modal #public-join-room-content .steps {
  transition: transform ease-in-out 0.35s;
}
.uk-modal-body.welcome-modal #viewer-join-room-content .mobile-step-dots,
.uk-modal-body.welcome-modal #public-join-room-content .mobile-step-dots {
  margin: 15px auto 35px;
  width: 20%;
  display: none;
  justify-content: space-between;
  align-items: center;
}
.uk-modal-body.welcome-modal #viewer-join-room-content .mobile-step-dots .mobile-step-dot,
.uk-modal-body.welcome-modal #public-join-room-content .mobile-step-dots .mobile-step-dot {
  height: 12px;
  width: 12px;
  border-radius: 50%;
  background-color: #ffffff;
  opacity: 0.2;
}
@media (max-width: 720px) {
  .uk-modal-body.welcome-modal #viewer-join-room-content .steps,
  .uk-modal-body.welcome-modal #public-join-room-content .steps {
    width: 300%;
  }
  .uk-modal-body.welcome-modal #viewer-join-room-content .steps.first-step,
  .uk-modal-body.welcome-modal #public-join-room-content .steps.first-step {
    transform: translateX(33.3%);
  }
  .uk-modal-body.welcome-modal #viewer-join-room-content .steps.second-step,
  .uk-modal-body.welcome-modal #public-join-room-content .steps.second-step {
    transform: translateX(0%);
  }
  .uk-modal-body.welcome-modal #viewer-join-room-content .steps.third-step,
  .uk-modal-body.welcome-modal #public-join-room-content .steps.third-step {
    transform: translateX(-33.3%);
  }
  .uk-modal-body.welcome-modal #viewer-join-room-content .mobile-step-dots,
  .uk-modal-body.welcome-modal #public-join-room-content .mobile-step-dots {
    display: flex;
  }
  .uk-modal-body.welcome-modal #viewer-join-room-content .mobile-step-dots.first-step .mobile-step-dot:nth-child(1),
  .uk-modal-body.welcome-modal #public-join-room-content .mobile-step-dots.first-step .mobile-step-dot:nth-child(1) {
    opacity: 1;
  }
  .uk-modal-body.welcome-modal #viewer-join-room-content .mobile-step-dots.second-step .mobile-step-dot:nth-child(2),
  .uk-modal-body.welcome-modal #public-join-room-content .mobile-step-dots.second-step .mobile-step-dot:nth-child(2) {
    opacity: 1;
  }
  .uk-modal-body.welcome-modal #viewer-join-room-content .mobile-step-dots.third-step .mobile-step-dot:nth-child(3),
  .uk-modal-body.welcome-modal #public-join-room-content .mobile-step-dots.third-step .mobile-step-dot:nth-child(3) {
    opacity: 1;
  }
}
@media (min-width: 993px) and (max-width: 1499px) {
  .uk-modal-body.welcome-modal {
    width: 65%;
  }
}
@media (min-width: 501px) and (max-width: 992px) {
  .uk-modal-body.welcome-modal {
    width: 95%;
  }
}
@media (max-width: 500px) {
  .uk-modal-body.welcome-modal {
    width: 98%;
  }
}
@keyframes joinRoomStep {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  33% {
    transform: scale(1.1);
  }
  66% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.preview-camera-switch-container {
  display: inline-flex;
  line-height: 26px;
  margin-top: 2px;
  margin-bottom: 6px;
}
.preview-camera-devices {
  width: 100%;
  margin: 0 auto;
  margin-top: 10px;
}
.preview-camera-devices .device-select {
  text-align: center;
}
.preview-camera-devices .device-select select {
  width: 372px;
  margin-left: 24px;
}
.preview-camera-devices .device-select svg {
  width: 22px;
}
.preview-camera-devices .device-select svg path[fill]:not([fill='none']),
.preview-camera-devices .device-select svg circle[fill]:not([fill='none']),
.preview-camera-devices .device-select svg g[fill]:not([fill='none']),
.preview-camera-devices .device-select svg rect[fill]:not([fill='none']) {
  fill: var(--primary-foreground);
}
.preview-camera-devices .device-select svg path[stroke],
.preview-camera-devices .device-select svg circle[stroke],
.preview-camera-devices .device-select svg g[stroke],
.preview-camera-devices .device-select svg rect[stroke] {
  stroke: var(--primary-foreground);
}
@media (max-width: 500px) {
  .preview-camera-devices select {
    width: 87%;
  }
}
.preview-room-title {
  margin-bottom: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
}
#preview-camera-message {
  margin: auto;
  margin-right: 8px;
  font-size: 18px;
  font-weight: 300;
}
#preview-camera-error {
  background-color: white;
  border-radius: 10px;
  width: 80%;
  color: #a63;
  padding: 10px;
}
#preview-camera-off-button,
#preview-camera-on-button,
#preview-mic-off-button,
#preview-mic-on-button,
#preview-mic-levels {
  border-radius: 25px;
  width: 36px;
  height: 36px;
  background-size: 18px;
  cursor: pointer;
}

body.react-confirm-alert-body-element {
  overflow: hidden;
}

.react-confirm-alert-blur {
  filter: url(#gaussian-blur);
  filter: blur(2px);
  -webkit-filter: blur(2px);
}

.react-confirm-alert-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: rgba(255, 255, 255, 0.9);
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  opacity: 0;
  -webkit-animation: react-confirm-alert-fadeIn 0.5s 0.2s forwards;
  -moz-animation: react-confirm-alert-fadeIn 0.5s 0.2s forwards;
  -o-animation: react-confirm-alert-fadeIn 0.5s 0.2s forwards;
  animation: react-confirm-alert-fadeIn 0.5s 0.2s forwards;
}

.react-confirm-alert-body {
  font-family: Arial, Helvetica, sans-serif;
  width: 400px;
  padding: 30px;
  text-align: left;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 20px 75px rgba(0, 0, 0, 0.13);
  color: #666;
}

.react-confirm-alert-svg {
  position: absolute;
  top: 0;
  left: 0;
}

.react-confirm-alert-body > h1 {
  margin-top: 0;
}

.react-confirm-alert-body > h3 {
  margin: 0;
  font-size: 16px;
}

.react-confirm-alert-button-group {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: flex-start;
  margin-top: 20px;
}

.react-confirm-alert-button-group > button {
  outline: none;
  background: #333;
  border: none;
  display: inline-block;
  padding: 6px 18px;
  color: #eee;
  margin-right: 10px;
  border-radius: 5px;
  font-size: 12px;
  cursor: pointer;
}

@-webkit-keyframes react-confirm-alert-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-moz-keyframes react-confirm-alert-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-o-keyframes react-confirm-alert-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes react-confirm-alert-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.logo-visible {
  opacity: 1;
  transition: opacity 0.3s;
}
.logo-invisible {
  opacity: 0;
  transition: opacity 0.3s;
}

here-avatar {
  height: 100%;
  width: 100%;
}
here-avatar .avatar {
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
here-avatar .avatar .processing,
here-avatar .avatar .initial,
here-avatar .avatar .image {
  display: none;
}
here-avatar .avatar .processing {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
here-avatar .avatar .image {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
here-avatar .avatar .image[src$='/anonymous.svg'] {
  padding: 15%;
}
here-avatar.color-ring .image {
  border-radius: 50%;
  border: 2px solid transparent;
}
.bar-item here-avatar.color-ring > .avatar {
  border: 3px solid var(--primary-background, #12002d);
}

.invite-container {
  min-width: 370px;
}
.invite-container *.onboarding-hidden {
  display: none !important;
}
.invite-container .invite-title {
  text-align: center;
  line-height: 28px;
  font-weight: 800;
  font-size: 14px;
  color: var(--primary-foreground, #6b1be3);
}
.invite-container .invite-content .invite-tab-no-friends-label-section {
  display: none;
  text-align: center;
}
.invite-container .invite-content .invite-tab-no-friends-label-section .better-with-friends-title {
  font-size: 24px;
  color: var(--secondary-background, #6b1be3);
  line-height: 26px;
  margin-bottom: 12px;
  font-weight: 800;
}
.invite-container .invite-content .invite-tab-no-friends-label-section .better-with-friends-subtitle {
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  font-weight: 500;
  color: var(--primary-foreground, #12002d);
}
.invite-container .invite-content .invite-tab-link-section {
  margin-top: 12px;
  padding: 0 20px;
}
.invite-container .invite-content .invite-tab-link-section .board-share-url {
  background: rgba(196, 196, 196, 0.3);
  border-radius: 8px;
  color: black;
  font-size: 0.875rem;
  padding: 11px 21px;
  line-height: 24px;
  width: 100%;
  box-sizing: border-box;
  border: none;
}
.invite-container .invite-content .invite-tab-link-section .board-share-url.url-invalid {
  border: 1px solid #f6335d;
  outline: none;
}
.invite-container .invite-content .invite-tab-link-section .board-share-url.url-valid {
  border: 1px solid #39c360;
  outline: none;
}
.invite-container .invite-content .invite-tab-link-section .input-err {
  display: block;
  text-align: center;
  color: #f6335d;
  font-size: 12px;
}
.invite-container .invite-content .invite-tab-link-section .copy-share-link,
.invite-container .invite-content .invite-tab-link-section .update-share-link {
  width: 100%;
  box-sizing: border-box;
  font-size: 1rem;
  padding: 11px;
  line-height: 24px;
  margin-top: 8px;
  transition-duration: 0.1s;
}
.invite-container .invite-content .invite-tab-link-section .copy-share-link.highlight-default-pulse:hover,
.invite-container .invite-content .invite-tab-link-section .update-share-link.highlight-default-pulse:hover {
  background: var(--secondary-background, #6b1be3);
}
.invite-container .invite-content .invite-tab-link-section .copy-share-link svg,
.invite-container .invite-content .invite-tab-link-section .update-share-link svg {
  margin-right: 8px;
}
.invite-container .invite-content .invite-text-comments {
  color: rgba(1, 1, 1, 0.6);
  font-size: 12px;
  height: 24px;
  margin-top: 8px;
  display: flex;
  align-items: center;
  place-content: center;
}
body.themed .invite-container .invite-content .invite-text-comments {
  color: var(--primary-foreground);
}
.invite-container .invite-content .invite-text-comments a {
  text-decoration: underline;
  color: inherit;
  display: inline;
  margin-left: 4px;
}
.invite-container .invite-content .invite-text-comments a:hover {
  color: var(--secondary-background, #666);
}
.invite-container .invite-content .invite-text-comments .change-url-wrapper {
  margin-left: 4px;
}
.invite-container .invite-content .invite-friends-section {
  display: none;
  background: rgba(0, 0, 0, 0.05);
  margin: 8px;
  border-radius: 8px;
  padding-top: 8px;
}
.invite-container .invite-content .invite-friends-section .invite-friends-label {
  font-weight: 700;
  font-size: 12px;
  color: var(--primary-foreground, #6b1be3);
  opacity: 0.6;
  line-height: 24px;
  text-align: center;
}
.invite-container .invite-content .external-resource-button {
  font-size: 13px;
  font-weight: bold;
  height: 46px;
}
.invite-container .invite-content .external-resource-button .discord-button-icon {
  width: 40px;
  margin-right: 7px;
}
.invite-container .invite-content .share-on-discord-button {
  width: 90%;
  margin: 8px auto;
  background: #5865f2;
  color: white;
  position: relative;
  text-align: left;
}
.invite-container .invite-content .share-on-discord-button .forward-icon {
  width: 28px;
  opacity: 0.7;
  position: absolute;
  right: 6px;
  top: 7px;
}
.invite-container .invite-content .share-on-discord-button span {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: 250px;
}
.invite-container .invite-content .connect-to-discord {
  background: #5865f2;
  color: white;
  padding: 20px 17%;
  position: relative;
}
.invite-container .invite-content .connect-to-discord .message {
  text-align: center;
  margin-bottom: 16px;
  font-weight: bold;
}
.invite-container .invite-content .connect-to-discord .connect-to-discord-button {
  width: 100%;
  background: white;
  color: black;
  justify-content: left;
  padding-left: 18px;
}
.invite-container .invite-content .connect-to-discord .connect-to-discord-button .discord-button-icon rect {
  fill: white;
}
.invite-container .invite-content .connect-to-discord .connect-to-discord-button .discord-button-icon path {
  fill: #5865f2;
}
.invite-container .invite-content .connect-to-discord .close {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 8px;
  right: 8px;
  cursor: pointer;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  text-align: center;
  font-size: 18px;
}
.invite-container .invite-content .integrations {
  display: none;
}
.onboarding-step {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.onboarding-step .welcome-image {
  height: 135px;
}
.onboarding-step .welcome-title {
  color: var(--primary-foreground, #6b1be3);
  font-family: Nunito, Inter, sans-serif;
  font-weight: bolder;
  font-size: 30px;
  text-align: center;
}

.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  animation-delay: 1s;
  z-index: 1000;
}
.loading .dot {
  position: relative;
  width: 0.5em;
  height: 0.5em;
  margin: 0.4em 0.2em;
  border-radius: 50%;
}
.loading .dot::before {
  position: absolute;
  content: '';
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  animation: wave 2s ease-out infinite;
}
.loading .dot:nth-of-type(1) {
  background: #1030a0;
}
.loading .dot:nth-of-type(1)::before {
  animation-delay: 0.2s;
}
.loading .dot:nth-of-type(2) {
  background: #3040a0;
}
.loading .dot:nth-of-type(2)::before {
  animation-delay: 0.4s;
}
.loading .dot:nth-of-type(3) {
  background: #5060a0;
}
.loading .dot:nth-of-type(3)::before {
  animation-delay: 0.6s;
}
.loading .dot:nth-of-type(4) {
  background: #7070a0;
}
.loading .dot:nth-of-type(4)::before {
  animation-delay: 0.8s;
}
.loading .dot:nth-of-type(5) {
  background: #9080a0;
}
.loading .dot:nth-of-type(5)::before {
  animation-delay: 1s;
}
.loading .dot:nth-of-type(6) {
  background: #a080a0;
}
.loading .dot:nth-of-type(6)::before {
  animation-delay: 1.2s;
}
@keyframes wave {
  50%,
  75% {
    transform: scale(2.5);
  }
  80%,
  100% {
    opacity: 0;
  }
}

.users-count-container {
  margin: 0 12px;
}
.users-count-container img {
  height: 16px;
  position: relative;
  top: -2px;
}
.users-count-container .users-count {
  color: white;
}
.users-count-container .users-count.capacity-reached {
  color: #f00;
}
.uk-tooltip.uk-active.users-count-tooltip {
  display: flex;
  align-items: center;
  color: black;
  background-color: white;
  height: 50px;
  width: fit-content;
  border-radius: 25px;
  padding: 10px;
}

body.user-card .invite-menu {
  display: none !important;
}
.users-bar {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px;
  z-index: 10005;
  -webkit-app-region: none;
}
.users-bar.electron-windows {
  top: 15px;
}
.users-bar .users-number-container {
  display: none;
}
.users-bar .invite-button-divider {
  display: none;
  border-right: 1px solid var(--primary-foreground, #606060);
  height: 20px;
  margin: 0 10px;
}
@media (max-width: 1100px) {
  .users-bar .users-list {
    display: none !important;
  }
  .users-bar .invite-button-divider {
    display: block;
  }
  .users-bar .users-number-container {
    margin-left: 15px;
    margin-right: 5px;
    display: flex;
  }
  .users-bar .users-number-container svg {
    margin-right: 5px;
    margin-bottom: 4px;
  }
  .users-bar .users-number-container svg path[fill]:not([fill='none']),
  .users-bar .users-number-container svg circle[fill]:not([fill='none']),
  .users-bar .users-number-container svg g[fill]:not([fill='none']),
  .users-bar .users-number-container svg rect[fill]:not([fill='none']) {
    fill: var(--primary-foreground, white);
  }
  .users-bar .users-number-container svg path[stroke],
  .users-bar .users-number-container svg circle[stroke],
  .users-bar .users-number-container svg g[stroke],
  .users-bar .users-number-container svg rect[stroke] {
    stroke: var(--primary-foreground, white);
  }
  .users-bar .users-number-container .users-number {
    color: var(--primary-foreground, white);
    font-weight: 500;
  }
}
.users-bar .inner-bar {
  display: flex;
  align-items: center;
  background: var(--primary-background, #12002d);
  border-radius: 23px;
  height: 46px;
  padding: 4px;
  box-sizing: border-box;
}
.users-bar .inner-bar .user-bar-divider {
  width: 0;
  height: 23.5px;
  opacity: 0.3;
  border-left: 1px solid var(--primary-foreground, white);
  margin-right: 11px;
  margin-left: 8px;
}
.users-bar .inner-bar .users-list {
  display: flex;
  align-items: center;
}
.users-bar .inner-bar .users-list .settings-button-container .bar-item {
  margin-right: -20px !important;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
}
.users-bar .inner-bar .users-list .settings-button-container .bar-item .avatar {
  border-radius: 50%;
  box-sizing: border-box;
}
.users-bar .inner-bar .users-list div:last-of-type .bar-item {
  margin-right: 0 !important;
}
.users-bar .inner-bar .delimiter {
  height: 80%;
  width: 1px;
  background-color: white;
  opacity: 0.3;
  margin: 0 4px;
}
.users-bar .inner-bar .invite-button,
.users-bar .inner-bar .users-list .presence-icon {
  margin: 0 2px;
}
.users-bar .inner-bar .invite-button {
  background: var(--secondary-background, #6b1be3);
  color: var(--secondary-foreground, white);
  text-align: center;
  cursor: pointer;
  border-radius: 20px;
  height: 32px;
  width: 94px;
  line-height: 32px;
  font-weight: bold;
  transition: transform 0.2s ease-out;
}
.users-bar .inner-bar .invite-button:hover {
  transform: scale(1.05);
}
.users-bar .inner-bar .invite-bar-icon {
  height: 12px;
  margin-right: 6px;
  margin-bottom: 2px;
}
.users-bar .inner-bar .invite-bar-icon path[fill]:not([fill='none']),
.users-bar .inner-bar .invite-bar-icon circle[fill]:not([fill='none']),
.users-bar .inner-bar .invite-bar-icon g[fill]:not([fill='none']),
.users-bar .inner-bar .invite-bar-icon rect[fill]:not([fill='none']) {
  fill: var(--secondary-foreground, white);
}
.users-bar .inner-bar .invite-bar-icon path[stroke],
.users-bar .inner-bar .invite-bar-icon circle[stroke],
.users-bar .inner-bar .invite-bar-icon g[stroke],
.users-bar .inner-bar .invite-bar-icon rect[stroke] {
  stroke: var(--secondary-foreground, white);
}
.users-bar .inner-bar .invite-menu {
  background: var(--primary-background, white);
  right: 10px;
  top: 61px !important;
  left: auto !important;
  padding: 17px 0 0;
  border-radius: 12px;
  width: 409px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}
.users-bar .inner-bar .invite-menu.uk-dropdown-bottom-right {
  margin-top: 18px !important;
}
@media (max-width: 1100px) {
  .users-bar .inner-bar .invite-menu {
    right: 2px;
    top: 52px !important;
  }
  .users-bar .inner-bar .invite-menu::before {
    display: none;
  }
}
.users-bar .inner-bar .notification-count {
  background: #f6335d;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 2px solid #12002d;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-weight: 600;
  font-size: 10px;
  position: absolute;
  top: 3px;
  right: 3px;
}
@media (max-width: 1100px) {
  .users-bar .inner-bar {
    padding: unset;
    background: unset;
    border-radius: 0;
  }
  .users-bar .inner-bar .notification-count {
    top: -6px;
    right: -6px;
  }
}
.users-bar #publicize-room-confirmation {
  width: 350px;
  padding: 20px;
}
.users-bar #publicize-room-confirmation hr {
  border-color: var(--primary-foreground);
}
.users-bar #publicize-room-confirmation .publicize-share-button {
  width: 49%;
  padding: 0;
  height: 46px;
}
.users-bar #publicize-room-confirmation .publicize-twitter-button {
  background-color: #1da1f2;
  color: white;
  border-radius: 10px;
}
.users-bar #publicize-room-confirmation .publicize-button-icon {
  margin-right: 4px;
}
.users-bar #publicize-room-confirmation .invite-share-header {
  vertical-align: text-top;
  margin-left: 4px;
  color: var(--primary-foreground, black);
}
.users-bar #publicize-room-confirmation .invite-share-header-parent {
  margin-bottom: 10px;
}
.users-bar #publicize-room-confirmation .invite-share-header-parent path[fill]:not([fill='none']),
.users-bar #publicize-room-confirmation .invite-share-header-parent circle[fill]:not([fill='none']),
.users-bar #publicize-room-confirmation .invite-share-header-parent g[fill]:not([fill='none']),
.users-bar #publicize-room-confirmation .invite-share-header-parent rect[fill]:not([fill='none']) {
  fill: var(--primary-foreground, #6b1be3);
}
.users-bar #publicize-room-confirmation .invite-share-header-parent path[stroke],
.users-bar #publicize-room-confirmation .invite-share-header-parent circle[stroke],
.users-bar #publicize-room-confirmation .invite-share-header-parent g[stroke],
.users-bar #publicize-room-confirmation .invite-share-header-parent rect[stroke] {
  stroke: var(--primary-foreground, #6b1be3);
}
.users-bar #publicize-room-confirmation .invite-share-subtitle {
  margin: 0 0 10px 0;
  line-height: 1.5;
  color: var(--primary-foreground, black);
}
.users-bar #publicize-room-confirmation .buttons-section {
  display: flex;
  justify-content: space-between;
}
.users-bar #publicize-room-confirmation .publicize-notice-section {
  margin-top: 10px;
}
.users-bar #invite-share-button {
  display: none;
  position: absolute;
}
@media (max-width: 613px) {
  .discord-invite-modal {
    top: 52px !important;
    left: 0 !important;
    right: 0 !important;
    margin: auto;
    min-width: 355px !important;
    max-width: 80%;
  }
  .discord-invite-modal .invite-container {
    min-width: unset;
  }
  .discord-invite-modal .invite-container .invite-text-comments {
    margin-top: 18px;
  }
  .discord-invite-modal .invite-text-comments {
    flex-direction: column;
  }
}
@media (max-width: 1100px) {
  .users-bar {
    padding: 1px 5px;
    margin-top: 10px;
    margin-right: 10px;
    height: 46px;
    background: var(--primary-background, #12002d);
    border-radius: 23px;
  }
  .inner-bar {
    box-shadow: none;
  }
}
.settings-button-container {
  margin-left: 4px;
}
.settings-button-container:first-child {
  margin-left: 0px;
}
.settings-button-container .settings-button {
  cursor: pointer;
}
.settings-button-container .settings-button::before {
  display: none;
  content: '⋯';
  font-size: 23px;
  color: #12002d;
  background-color: white;
  height: 37px;
}
.settings-button-container .settings-button:hover::before {
  display: block;
}

.spaces-gifs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-height: calc(100vh - 200px);
  overflow-y: scroll;
  margin-bottom: 10px;
}
.spaces-gifs .image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  cursor: pointer;
}

.on-air {
  width: 80px;
  text-align: center;
}
.on-air .off-button-container .off-button {
  background-color: #e6465e;
  color: white;
  border: none;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 14px;
  outline: none;
  cursor: pointer;
}
.on-air .on-air-caption {
  text-transform: uppercase;
  color: var(--primary-foreground, white);
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.on-air .on-air-caption .dot {
  display: inline-block;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background-color: #e6465e;
}

here-broadcast-camera-invite .notification.broadcast-camera-invite {
  width: fit-content;
}
here-broadcast-camera-invite .notification.broadcast-camera-invite .left-area {
  padding: 0;
  align-items: center;
}
here-broadcast-camera-invite .notification.broadcast-camera-invite .left-area svg {
  height: 50px;
  width: 50px;
}
here-broadcast-camera-invite .notification.broadcast-camera-invite .left-area svg path[fill]:not([fill='none']),
here-broadcast-camera-invite .notification.broadcast-camera-invite .left-area svg circle[fill]:not([fill='none']),
here-broadcast-camera-invite .notification.broadcast-camera-invite .left-area svg g[fill]:not([fill='none']),
here-broadcast-camera-invite .notification.broadcast-camera-invite .left-area svg rect[fill]:not([fill='none']) {
  fill: var(--secondary-foreground, white);
}
here-broadcast-camera-invite .notification.broadcast-camera-invite .left-area svg path[stroke],
here-broadcast-camera-invite .notification.broadcast-camera-invite .left-area svg circle[stroke],
here-broadcast-camera-invite .notification.broadcast-camera-invite .left-area svg g[stroke],
here-broadcast-camera-invite .notification.broadcast-camera-invite .left-area svg rect[stroke] {
  stroke: var(--secondary-foreground, white);
}

here-broadcast-camera-requests .notification.broadcast-request {
  width: max-content;
}
here-broadcast-camera-requests .notification.broadcast-request .left-area {
  align-items: center;
  background-color: #e5e5e5;
  padding: 0;
}
here-broadcast-camera-requests .notification.broadcast-request .left-area .avatar-container {
  clip-path: circle(50%);
  width: 40px;
  height: 40px;
}

#here-toolbar {
  display: flex;
  align-items: end;
}
#here-toolbar.hidden,
body.user-card #here-toolbar {
  display: none;
}
#room-menu-bar.onboarding-disabled {
  pointer-events: all !important;
  opacity: 1 !important;
  background: var(--primary-background-alpha-50, rgba(18, 0, 45, 0.5));
}
#color-select-dropdown {
  min-width: 270px;
}
.menu-button {
  background-color: transparent;
  position: relative;
  width: 50px;
  height: 28px;
  border-radius: 30px;
  border: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 40px 40px;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.menu-button.games-picker-button {
  padding-bottom: 2px;
}
.menu-button.etc-button {
  display: none;
  justify-content: center;
  align-items: center;
}
.menu-button.etc-button::before,
.menu-button.etc-button::after {
  display: none;
}
.menu-button.etc-button img {
  width: 40%;
}
.menu-button svg path[fill]:not([fill='none']),
.menu-button svg circle[fill]:not([fill='none']),
.menu-button svg g[fill]:not([fill='none']),
.menu-button svg rect[fill]:not([fill='none']) {
  fill: var(--primary-foreground, white);
}
.menu-button svg path[stroke],
.menu-button svg circle[stroke],
.menu-button svg g[stroke],
.menu-button svg rect[stroke] {
  stroke: var(--primary-foreground, white);
}
.menu-button:hover {
  background-color: var(--secondary-background, #6b1be3);
  transform: scale(1.15);
}
.menu-button:hover svg path[fill]:not([fill='none']),
.menu-button:hover svg circle[fill]:not([fill='none']),
.menu-button:hover svg g[fill]:not([fill='none']),
.menu-button:hover svg rect[fill]:not([fill='none']) {
  fill: var(--secondary-foreground, white);
}
.menu-button:hover svg path[stroke],
.menu-button:hover svg circle[stroke],
.menu-button:hover svg g[stroke],
.menu-button:hover svg rect[stroke] {
  stroke: var(--secondary-foreground, white);
}
.menu-button:focus {
  outline: none;
}
.etc-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  justify-items: center;
  align-items: center;
}
.etc-tools-grid .menu-button {
  padding: 0;
  height: 63px;
  width: 100%;
  min-width: 63px;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--primary-foreground, white);
  border-radius: 5px;
}
.etc-tools-grid .menu-button .img-wrapper {
  margin-bottom: 5px;
  height: 29px;
  width: 29px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.etc-tools-grid .menu-button:hover {
  background: var(--secondary-background, #23133b);
  color: var(--secondary-foreground, white);
  transform: none;
}
.etc-tools-grid .screenshare-buttons {
  width: 100%;
  display: none;
}
.etc-tools-grid .screenshare-buttons .screenshare-off-button:hover {
  background-color: #72c55e;
}
#etc-tools-dropdown {
  padding: 15px;
  width: unset !important;
  color: white;
  background: var(--primary-background, #12002d);
}
#add-warp-list {
  display: none;
  padding: 0 10px;
}
#add-warp-items a {
  color: #666;
}
#add-warp-items li:hover {
  background-color: #e0e0e0;
}
.warp-header {
  border-bottom: 1px solid #ddd;
}
#add-warp-container {
  overflow-y: scroll;
  padding-top: 3px;
}
#game-select-dropdown,
#build-tools-dropdown,
#sticker-select,
#file-upload-dropdown,
#room-decoration-select {
  border-radius: 20px;
  background: var(--primary-background, white);
}
#room-decoration-select {
  width: 700px !important;
}
#room-decoration-select .uk-tab {
  flex-wrap: nowrap;
}
@media (max-width: 829px) {
  #room-decoration-select .uk-tab a {
    padding: 5px;
    min-width: unset;
    font-size: 13px;
  }
}
@media (max-width: 560px) {
  #room-decoration-select .uk-tab a {
    font-size: 12px;
  }
}
@media (max-width: 495px) {
  #room-decoration-select .uk-tab a {
    font-size: 10px;
  }
}
#game-select-dropdown,
#add-warp-list,
#build-tools-dropdown {
  width: unset !important;
  min-width: 340px;
}
#game-select-dropdown .game-list,
#add-warp-list .game-list,
#build-tools-dropdown .game-list,
#game-select-dropdown .build-tools-list,
#add-warp-list .build-tools-list,
#build-tools-dropdown .build-tools-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7.5px;
}
#game-select-dropdown .game-list li,
#add-warp-list .game-list li,
#build-tools-dropdown .game-list li,
#game-select-dropdown .build-tools-list li,
#add-warp-list .build-tools-list li,
#build-tools-dropdown .build-tools-list li {
  display: flex;
  justify-content: center;
}
#game-select-dropdown .game-list li a,
#add-warp-list .game-list li a,
#build-tools-dropdown .game-list li a,
#game-select-dropdown .build-tools-list li a,
#add-warp-list .build-tools-list li a,
#build-tools-dropdown .build-tools-list li a {
  height: 120px;
  width: 120px;
  min-height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--primary-foreground, #12002c);
  border-radius: 5px;
}
#game-select-dropdown .game-list li a .emoji,
#add-warp-list .game-list li a .emoji,
#build-tools-dropdown .game-list li a .emoji,
#game-select-dropdown .build-tools-list li a .emoji,
#add-warp-list .build-tools-list li a .emoji,
#build-tools-dropdown .build-tools-list li a .emoji {
  font-size: 24px;
}
#game-select-dropdown .game-list li a:hover,
#add-warp-list .game-list li a:hover,
#build-tools-dropdown .game-list li a:hover,
#game-select-dropdown .build-tools-list li a:hover,
#add-warp-list .build-tools-list li a:hover,
#build-tools-dropdown .build-tools-list li a:hover {
  background: var(--secondary-background, #e0e0e0);
  color: var(--secondary-foreground, inherit);
}
@media (max-width: 946px) {
  #sticker-select {
    left: 0 !important;
    width: 60vw !important;
  }
  #room-decoration-select {
    width: 80vw !important;
  }
  .menu-button.etc-button {
    display: flex;
  }
  .menu-button.etc-button .plus-white {
    display: none;
  }
  .menu-button.etc-button .cross-black {
    width: 15px;
    display: none;
  }
  .menu-button.etc-button.active {
    background: var(--secondary-background, #6b1be3);
  }
  .menu-button.etc-button.active path[fill]:not([fill='none']),
  .menu-button.etc-button.active circle[fill]:not([fill='none']),
  .menu-button.etc-button.active g[fill]:not([fill='none']),
  .menu-button.etc-button.active rect[fill]:not([fill='none']) {
    fill: var(--secondary-foreground, white);
  }
  .menu-button.etc-button.active path[stroke],
  .menu-button.etc-button.active circle[stroke],
  .menu-button.etc-button.active g[stroke],
  .menu-button.etc-button.active rect[stroke] {
    stroke: var(--secondary-foreground, white);
  }
  .menu-button.etc-button.active.highlight-round-pulse::before,
  .menu-button.etc-button.active.highlight-round-pulse::after {
    display: none;
    animation: none;
  }
  .menu-button.etc-button.active .plus-white,
  .menu-button.etc-button.active .etc-white {
    display: none;
  }
  .menu-button.etc-button.active .cross-black {
    display: block;
  }
  .new-element-buttons-divider,
  .feedback-menu-button,
  .build-tools-button,
  .pen-color-indicator-button {
    display: none;
  }
  .etc-tools-grid .feedback-menu-button,
  .etc-tools-grid .build-tools-button,
  .etc-tools-grid .pen-color-indicator-button {
    display: flex;
  }
}
@media (max-width: 815px) {
  .add-drawing-button {
    display: none;
  }
  .etc-tools-grid .add-drawing-button {
    display: flex;
  }
}
@media (max-width: 764px) {
  #sticker-select {
    width: 75vw !important;
  }
  #room-decoration-select {
    width: 80vw !important;
  }
  .games-picker-button {
    display: none;
  }
  .etc-tools-grid .games-picker-button {
    display: flex;
  }
}
@media (max-width: 713px) {
  .new-media-player-button {
    display: none;
  }
  .etc-tools-grid .new-media-player-button {
    display: flex;
  }
}
@media (max-width: 689px) {
  .open-room-decoration-button {
    display: none;
  }
  .etc-tools-grid .open-room-decoration-button {
    display: flex;
  }
}
@media (max-width: 665px) {
  .open-gifs-button {
    display: none;
  }
  .etc-tools-grid .open-gifs-button {
    display: flex;
  }
}
@media (max-width: 613px) {
  .room-menu-bar .new-element-buttons {
    position: static;
  }
  .room-menu-bar .menu-button {
    display: none;
  }
  .room-menu-bar .etc-tools-grid .menu-button,
  .room-menu-bar .etc-tools-grid .screenshare-buttons {
    display: flex;
  }
  .room-menu-bar .etc-tools-grid .menu-button {
    min-height: 90px;
  }
  #game-select-dropdown,
  #etc-tools-dropdown,
  #sticker-select,
  #build-tools-dropdown {
    width: 95% !important;
    left: 2.5% !important;
    right: 2.5% !important;
  }
  #room-decoration-select {
    left: 0 !important;
    width: 98% !important;
  }
  #game-select-dropdown .game-list,
  #build-tools-dropdown .game-list,
  #game-select-dropdown .build-tools-list,
  #build-tools-dropdown .build-tools-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  #game-select-dropdown .game-list li a,
  #build-tools-dropdown .game-list li a,
  #game-select-dropdown .build-tools-list li a,
  #build-tools-dropdown .build-tools-list li a {
    min-height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--primary-foreground, #12002d);
    border-radius: 5px;
  }
  #game-select-dropdown .game-list li a .emoji,
  #build-tools-dropdown .game-list li a .emoji,
  #game-select-dropdown .build-tools-list li a .emoji,
  #build-tools-dropdown .build-tools-list li a .emoji {
    font-size: 24px;
  }
  .menu-button.etc-button {
    display: flex;
  }
  .menu-button.etc-button .etc-white {
    display: none;
  }
  .menu-button.etc-button .plus-white {
    display: block;
  }
  .menu-button.etc-button.onboarding-disabled {
    pointer-events: all !important;
    opacity: 1;
  }
  .menu-button.etc-button::before,
  .menu-button.etc-button::after {
    display: block;
  }
}
#disabled-menu-buttons button img,
#disabled-menu-buttons button .color-indicator,
#disabled-menu-buttons button .font-color-indicator {
  opacity: 0.3;
}
#disabled-menu-buttons .screenshare-buttons .menu-button {
  display: flex;
  justify-content: center;
  align-items: center;
}
div.sticker-select-text-channel {
  width: unset !important;
}
div.sticker-select-text-channel,
div.sticker-select-text-channel-feed {
  background: var(--primary-background, white);
}

.feedback-tabs-content--closed {
  display: none;
}
.feedback-help-buttons .contact-us-item {
  padding: 5px 10px;
  display: grid;
  grid-template-areas: 'icon title' 'icon description';
  grid-template-columns: auto 1fr;
  border-radius: 5px;
  cursor: pointer;
}
.feedback-help-buttons .contact-us-item .contact-us-item-icon-wrapper {
  padding: 20px 20px 20px 0;
  width: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  grid-area: icon;
}
.feedback-help-buttons .contact-us-item .contact-us-item-icon-wrapper .background {
  fill: var(--secondary-background, #e8e8e8) !important;
}
.feedback-help-buttons .contact-us-item .contact-us-item-icon-wrapper path[fill]:not([fill='none']),
.feedback-help-buttons .contact-us-item .contact-us-item-icon-wrapper circle[fill]:not([fill='none']),
.feedback-help-buttons .contact-us-item .contact-us-item-icon-wrapper g[fill]:not([fill='none']),
.feedback-help-buttons .contact-us-item .contact-us-item-icon-wrapper rect[fill]:not([fill='none']) {
  fill: var(--secondary-foreground, #11012a);
}
.feedback-help-buttons .contact-us-item .contact-us-item-icon-wrapper path[stroke],
.feedback-help-buttons .contact-us-item .contact-us-item-icon-wrapper circle[stroke],
.feedback-help-buttons .contact-us-item .contact-us-item-icon-wrapper g[stroke],
.feedback-help-buttons .contact-us-item .contact-us-item-icon-wrapper rect[stroke] {
  stroke: var(--secondary-foreground, #11012a);
}
.feedback-help-buttons .contact-us-item .contact-us-item__title {
  margin: 0;
  display: inline-block;
  grid-area: title;
  align-self: flex-end;
  color: var(--primary-foreground, #6b1be3);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}
.feedback-help-buttons .contact-us-item .contact-us-item__title path[fill]:not([fill='none']),
.feedback-help-buttons .contact-us-item .contact-us-item__title circle[fill]:not([fill='none']),
.feedback-help-buttons .contact-us-item .contact-us-item__title g[fill]:not([fill='none']),
.feedback-help-buttons .contact-us-item .contact-us-item__title rect[fill]:not([fill='none']) {
  fill: var(--primary-foreground, #6b1be3);
}
.feedback-help-buttons .contact-us-item .contact-us-item__title path[stroke],
.feedback-help-buttons .contact-us-item .contact-us-item__title circle[stroke],
.feedback-help-buttons .contact-us-item .contact-us-item__title g[stroke],
.feedback-help-buttons .contact-us-item .contact-us-item__title rect[stroke] {
  stroke: var(--primary-foreground, #6b1be3);
}
.feedback-help-buttons .contact-us-item .contact-us-item__description {
  margin: 0;
  grid-area: description;
  color: var(--primary-foreground, black);
  opacity: 0.9;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}
.feedback-help-buttons .contact-us-item:hover {
  background: var(--secondary-background, #6b1be3);
}
.feedback-help-buttons .contact-us-item:hover .contact-us-item__title {
  color: var(--secondary-foreground, white);
}
.feedback-help-buttons .contact-us-item:hover .contact-us-item__title path[fill]:not([fill='none']),
.feedback-help-buttons .contact-us-item:hover .contact-us-item__title circle[fill]:not([fill='none']),
.feedback-help-buttons .contact-us-item:hover .contact-us-item__title g[fill]:not([fill='none']),
.feedback-help-buttons .contact-us-item:hover .contact-us-item__title rect[fill]:not([fill='none']) {
  fill: var(--secondary-foreground, white);
}
.feedback-help-buttons .contact-us-item:hover .contact-us-item__title path[stroke],
.feedback-help-buttons .contact-us-item:hover .contact-us-item__title circle[stroke],
.feedback-help-buttons .contact-us-item:hover .contact-us-item__title g[stroke],
.feedback-help-buttons .contact-us-item:hover .contact-us-item__title rect[stroke] {
  stroke: var(--secondary-foreground, white);
}
.feedback-help-buttons .contact-us-item:hover .contact-us-item__description {
  color: var(--secondary-foreground, white);
}
.feedback-help-buttons .contact-us-item:hover .contact-us-item-icon-wrapper .background {
  fill: var(--secondary-foreground, #e8e8e8) !important;
}
.feedback-help-buttons .contact-us-item:hover .contact-us-item-icon-wrapper path[fill]:not([fill='none']),
.feedback-help-buttons .contact-us-item:hover .contact-us-item-icon-wrapper circle[fill]:not([fill='none']),
.feedback-help-buttons .contact-us-item:hover .contact-us-item-icon-wrapper g[fill]:not([fill='none']),
.feedback-help-buttons .contact-us-item:hover .contact-us-item-icon-wrapper rect[fill]:not([fill='none']) {
  fill: var(--secondary-background, #11012a);
}
.feedback-help-buttons .contact-us-item:hover .contact-us-item-icon-wrapper path[stroke],
.feedback-help-buttons .contact-us-item:hover .contact-us-item-icon-wrapper circle[stroke],
.feedback-help-buttons .contact-us-item:hover .contact-us-item-icon-wrapper g[stroke],
.feedback-help-buttons .contact-us-item:hover .contact-us-item-icon-wrapper rect[stroke] {
  stroke: var(--secondary-background, #11012a);
}
.feedback-help-buttons hr {
  margin: 0;
  border-color: var(--primary-foreground, #e5e5e5);
}
.feedback-help-buttons .feedback-input-block--closed {
  display: none;
}
.feedback-help-buttons .feedback-response {
  margin: 0 5px;
}
.feedback-help-buttons .feedback-response .feedback-response__text {
  display: inline-block;
}
.feedback-send-button {
  margin-top: 17px;
  margin-bottom: 20px;
  height: 40px;
  width: 100%;
  color: #ffffff;
  font-family: Inter;
  font-size: 1em;
  background-color: #6b1be3;
  border-radius: 12px;
  border: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 40px 40px;
  cursor: pointer;
  opacity: 0.95;
}
.feedback-send-button:hover {
  opacity: 1;
}
.feedback-send-button:focus {
  outline: none;
}
.feedback-textarea {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  padding: 10px;
  border-color: #a1a1a1;
  width: 92%;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 7px;
  resize: none;
  overflow: auto;
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.feedback-textarea:focus {
  border-color: #6b1be3;
}
.feedback-textarea::placeholder {
  color: #a1a1a1;
}
.feedback-error-message {
  color: red;
  margin-top: 4px;
  margin-bottom: 14px;
  text-align: center;
}
.feedback-response__text {
  display: inline-block;
  font-size: 0.95em;
  text-align: center;
  color: black;
}
.invite-us-modal-title {
  font-size: 1.2em !important;
  color: black;
  font-weight: 600;
}
.contact-us-form-content--closed {
  display: none;
}
.contact-us-invite-us-item-cancel-button {
  color: black !important;
  background-color: lightgray !important;
  position: inherit !important;
  padding: 0 30px !important;
}
#contact-us-invite-us-item-confirm-button {
  color: white !important;
  background-color: #6b1be3 !important;
}
.contact-us-purple-button {
  color: white !important;
  background-color: #6b1be3 !important;
}
.feedback-help-buttons--closed {
  display: none;
}
.contact-us-form-content hr {
  margin: 0;
}
.contact-us-form-content .contact-us-form-title-block {
  padding-bottom: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contact-us-form-content .contact-us-form-title-block .contact-us-form__title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #6b1be3;
}
.contact-us-form-content .contact-us-form-title-block .contact-us-form__close-button {
  border: none;
  background-color: inherit;
  cursor: pointer;
  opacity: 0.65;
}
.contact-us-form-content .contact-us-form-title-block .contact-us-form__close-button:hover {
  opacity: 1;
}
.contact-us-form-content .contact-us-form-title-block .contact-us-form__close-button:focus {
  outline: none;
}
.contact-us-form-content .contact-us-form__subtitle {
  margin-top: 20px;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}
.contact-us-form-content .contact-us-form-buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-us-form-content .contact-us-form-buttons .contact-us-form__cancel-button {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #818181;
  text-decoration: underline;
  opacity: 0.75;
  background-color: inherit;
  border: none;
  cursor: pointer;
}
.contact-us-form-content .contact-us-form-buttons .contact-us-form__cancel-button:hover {
  opacity: 1;
}
.contact-us-form-content .contact-us-form-buttons .contact-us-form__cancel-button:focus {
  outline: none;
}
.contact-us-form-content--closed {
  display: none;
}
.feedback-menu-tab .contact-us-form-title-block {
  margin-top: 10px;
}
.feedback-menu-tab .feedback-help-buttons {
  height: 528px;
}
.feedback-menu-tab .contact-us-form-content {
  height: 430px;
}
.feedback-menu-tab .feedback-response {
  margin: -5px 0 0 0;
}
.electron-lobby-feedback-area .feedback-help-buttons .contact-us-item {
  padding: 10px 5px;
  background-color: #5c27a0;
}
.electron-lobby-feedback-area .feedback-help-buttons .contact-us-item-icon-wrapper {
  padding: 0;
  margin-right: 5px;
  opacity: 0.5;
}
.electron-lobby-feedback-area .feedback-help-buttons .contact-us-item__title {
  color: #ffffffe6;
  font-size: 14px;
}
.electron-lobby-feedback-area .feedback-help-buttons .contact-us-item__title::after {
  content: ' ';
  margin-left: 9px;
  height: 8px;
  width: 10px;
  display: inline-block;
  opacity: 0.9;
  background: url(../images/icons/feedback/chevron-white.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.electron-lobby-feedback-area .feedback-help-buttons .contact-us-item__description {
  color: #ffffffbf;
  font-size: 12px;
  line-height: 18px;
}
.electron-lobby-feedback-area .feedback-help-buttons .contact-us-item:hover .contact-us-item-icon-wrapper {
  opacity: 1;
}
.electron-lobby-feedback-area .feedback-help-buttons .contact-us-item:hover .contact-us-item__title {
  color: #ffffff;
}
.electron-lobby-feedback-area .feedback-help-buttons .contact-us-item:hover .contact-us-item__title::after {
  content: ' ';
  margin-left: 9px;
  height: 8px;
  width: 10px;
  display: inline-block;
  opacity: 0.9;
  background: url(../images/icons/feedback/chevron-white.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.electron-lobby-feedback-area .feedback-help-buttons .contact-us-item:hover .contact-us-item__description {
  color: #ffffff;
}
.electron-lobby-feedback-area .feedback-help-buttons hr {
  margin: 4px 0px;
  visibility: hidden;
}
.electron-lobby-feedback-area #contact-us-invite-us-item,
.electron-lobby-feedback-area #contact-us-invite-us-item-confirm,
.electron-lobby-feedback-area #contact-us-invite-us-item-confirm-response {
  display: none;
}
.electron-lobby-feedback-area .contact-us-form-content .contact-us-form-title-block .contact-us-form__title {
  color: #ffffff;
}
.electron-lobby-feedback-area .contact-us-form-content .contact-us-form-title-block .contact-us-form__close-button {
  visibility: hidden;
}
.electron-lobby-feedback-area .contact-us-form-content .contact-us-form__subtitle {
  color: #ffffffb9;
}
.electron-lobby-feedback-area .contact-us-form-content .feedback-textarea {
  width: 100%;
  color: #ffffff80;
  background-color: #ffffff1a;
  border: 1px solid #ffffff33;
}
.electron-lobby-feedback-area .contact-us-form-content .feedback-send-button {
  color: #612cda;
  background-color: #ffffff;
}
.electron-lobby-feedback-area .contact-us-form-content .contact-us-form__cancel-button {
  color: #ffffff;
}

here-camera-lite-mode {
  display: none;
}
here-camera-lite-mode hr,
here-camera-lite-mode #camera-lite-mode-how-to-improve-things {
  display: none;
}
.camera-lite-mode-modal .uk-modal-dialog {
  padding: 3px;
  border-radius: 10px;
  color: #12002d;
  font-variant-numeric: lining-nums tabular-nums;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
}
.camera-lite-mode-modal .uk-modal-header {
  padding: 0px;
  border-radius: 10px;
}
.camera-lite-mode-modal .uk-close {
  color: white;
}
.camera-lite-mode-modal .uk-modal-title {
  display: flex;
  padding: 0;
  font-weight: 700;
  line-height: 24px;
  font-size: 16px;
}
.camera-lite-mode-modal .uk-modal-title img {
  display: inline-flex;
  padding: 15px 10px;
  margin: 0;
  width: 10%;
  border-radius: 10px 0 0 0;
}
.camera-lite-mode-modal .uk-modal-title span {
  display: inline-flex;
  padding: 20px;
  width: 90%;
  border-radius: 0 10px 0 0;
  background-color: #f2f2f2;
}
.camera-lite-mode-modal .uk-modal-title span img {
  padding: 2px 5px 5px 5px;
}
.camera-lite-mode-modal h4 {
  font-weight: 700;
  line-height: 24px;
  /* 150% */
  padding-bottom: 15px;
  font-size: 16px;
}
.camera-lite-mode-modal ul {
  font-weight: 500;
  line-height: 26px;
  /* 162.5% */
  margin-left: 15px;
}
.camera-lite-mode-modal .uk-button-primary {
  color: #fff;
  background-color: #6b1be3;
  border-radius: 10px;
  height: 40px;
  line-height: 20px;
  width: 40%;
  margin: 10px;
}
.camera-lite-mode-modal .uk-button-primary:hover,
.camera-lite-mode-modal .uk-button-primary:focus,
.camera-lite-mode-modal .uk-button-primary:active {
  background-color: #711cf0;
}
#camera-lite-mode-poor-connection-modal .uk-modal-body {
  padding: 30px 70px;
}
#camera-lite-mode-poor-connection-modal .uk-modal-title {
  border-radius: 10px 10px 0 0;
  color: #fff;
}
#camera-lite-mode-poor-connection-modal .uk-modal-title img,
#camera-lite-mode-poor-connection-modal .uk-modal-title span {
  background-color: #f6335d;
}
#camera-lite-mode-ask-lower-bandwidth .uk-modal-dialog,
#camera-lite-mode-ask-turn-on-video .uk-modal-dialog,
#camera-lite-mode-ask-turn-off-video .uk-modal-dialog {
  color: #12002d;
  padding: 10px;
}
#camera-lite-mode-ask-lower-bandwidth .uk-modal-header,
#camera-lite-mode-ask-turn-on-video .uk-modal-header,
#camera-lite-mode-ask-turn-off-video .uk-modal-header {
  background-color: #f2f2f2;
}
#camera-lite-mode-ask-lower-bandwidth .uk-modal-close-outside,
#camera-lite-mode-ask-turn-on-video .uk-modal-close-outside,
#camera-lite-mode-ask-turn-off-video .uk-modal-close-outside {
  border-radius: 50%;
  color: #12002d;
  background-color: #fff;
  padding: 10px;
  top: 25px;
  right: 25px;
}
#camera-lite-mode-ask-lower-bandwidth .uk-modal-title,
#camera-lite-mode-ask-turn-on-video .uk-modal-title,
#camera-lite-mode-ask-turn-off-video .uk-modal-title {
  border-radius: 10px 0 0 10px;
}
#camera-lite-mode-ask-lower-bandwidth .uk-modal-title img,
#camera-lite-mode-ask-turn-on-video .uk-modal-title img,
#camera-lite-mode-ask-turn-off-video .uk-modal-title img {
  border-radius: 10px 0 0 10px;
}
#camera-lite-mode-ask-lower-bandwidth .uk-modal-title span,
#camera-lite-mode-ask-turn-on-video .uk-modal-title span,
#camera-lite-mode-ask-turn-off-video .uk-modal-title span {
  background-color: #f2f2f2;
  border-radius: 0 0 10px 10px;
}
#camera-lite-mode-ask-lower-bandwidth .uk-modal-title > img {
  background-color: #f6a730;
}
#camera-lite-mode-ask-turn-off-video .uk-modal-title > img {
  background-color: #f6335d;
}
#camera-lite-mode-ask-turn-on-video .uk-modal-title > img {
  background-color: #39c360;
}
#camera-lite-mode-ask-lower-bandwidth.details .uk-modal-header,
#camera-lite-mode-ask-turn-on-video.details .uk-modal-header,
#camera-lite-mode-ask-turn-off-video.details .uk-modal-header {
  border-radius: 0px;
}
#camera-lite-mode-ask-lower-bandwidth.details .uk-modal-title img,
#camera-lite-mode-ask-turn-on-video.details .uk-modal-title img,
#camera-lite-mode-ask-turn-off-video.details .uk-modal-title img {
  border-radius: 10px 0 0 0;
}

.feedback-updates {
  overflow: auto;
  height: 425px;
  padding-right: 5px;
}
.new-update-tag {
  margin: 0;
  padding: 2px 6px;
  display: inline-block;
  color: white;
  font-size: 10px;
  font-weight: 600;
  line-height: 22px;
  background-color: #f6335d;
  border-radius: 4px;
}
.update-item {
  padding: 12px 12px 18px 12px;
  text-align: justify;
}
.update-item p {
  margin: 0;
}
.update-item .update-title-block {
  margin: 5px 0;
  display: flex;
  justify-content: space-between;
}
.update-item__image {
  display: none;
}
.update-item__title {
  margin: 0;
  color: var(--primary-foreground, black);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
}
.update-item__date {
  color: var(--primary-foreground, #141414);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}
.update-item__description {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: var(--primary-foreground-alpha-80, rgba(80, 80, 80, 0.8));
}
.update-item__learn-more {
  color: var(--primary-foreground, black);
  text-decoration: underline;
}
.update-item__learn-more:hover {
  color: var(--secondary-foreground, #1e87f0);
}
.update-item:not(:first-child) {
  border-top: 1px solid var(--primary-foreground, #e5e5e5);
}
.electron-lobby-whats-new-area .update-item {
  padding: 18px 0;
  background: inherit;
  border-bottom: 0.25px solid #ffffff40;
  border-radius: 0;
}
.electron-lobby-whats-new-area .update-item .new-update-tag {
  display: none;
}
.electron-lobby-whats-new-area .update-item .update-title-block {
  margin: 9px 0;
}
.electron-lobby-whats-new-area .update-item__image {
  width: 100%;
  display: block;
  border-radius: 5px;
}
.electron-lobby-whats-new-area .update-item__title {
  color: #ffffff;
  font-family: 'Inter Extra Bold';
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  font-feature-settings: 'tnum' on, 'lnum' on;
  opacity: 0.9;
}
.electron-lobby-whats-new-area .update-item__date {
  color: #ffffff;
  font-weight: 400;
  line-height: px;
  font-feature-settings: 'tnum' on, 'lnum' on;
  opacity: 0.5;
}
.electron-lobby-whats-new-area .update-item__description {
  margin-top: 7px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: initial;
  font-feature-settings: 'tnum' on, 'lnum' on;
  opacity: 0.75;
}
.electron-lobby-whats-new-area .update-item__description .feedback-link {
  display: block;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 28px;
}
.electron-lobby-whats-new-area .update-item__description .feedback-link::after {
  content: ' ';
  margin-top: 8px;
  margin-left: 4px;
  position: absolute;
  height: 9px;
  width: 7px;
  display: inline-block;
  opacity: 0.9;
  background: url(../images/icons/feedback/chevron-white.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.electron-lobby-whats-new-area .update-item__learn-more {
  margin-top: 16px;
  width: fit-content;
  display: block;
  color: #ffffff;
  font-size: 13px;
  text-transform: uppercase;
  opacity: 0.9;
  letter-spacing: 0.075rem;
  font-feature-settings: 'tnum' on, 'lnum' on;
  cursor: pointer;
}
.electron-lobby-whats-new-area .update-item__learn-more:hover {
  opacity: 1;
}
.electron-lobby-whats-new-area .update-item__learn-more::after {
  content: '->';
  position: absolute;
  margin-top: -1px;
  margin-left: 4px;
  display: inline-block;
  letter-spacing: normal;
}

.here-audio-icon {
  padding-top: 5px;
  padding-bottom: 10px;
  height: 22px;
  width: auto;
}
.here-audio-slider-wrapper {
  height: 84%;
  width: 33px;
}
.here-audio-slider-master {
  border-radius: 20px;
  padding: 12px 0;
  padding-bottom: 20px;
  height: 200px;
  background-color: #ffffff;
  cursor: pointer;
}
.here-audio-slider-track {
  height: 100%;
  width: 8px;
  position: relative;
  background-color: #ddd;
  margin: auto;
  transform: rotate(180deg);
  border-radius: 20px;
  cursor: pointer;
}
.here-audio-slider {
  height: 100%;
  width: 100%;
  position: relative;
  background-color: #6b1be3;
  border-radius: 20px;
  cursor: pointer;
}

.electron-windows-titlebar {
  position: fixed;
  top: 0;
  height: 20px;
  width: 100%;
  z-index: 100000;
  display: flex;
  justify-content: flex-end;
  background-color: #12002d80;
  -webkit-app-region: drag;
}
.electron-windows-titlebar.hidden {
  display: none;
}
.electron-windows-titlebar .electron-windows-buttons {
  margin-right: 5px;
  display: flex;
}
.electron-windows-titlebar .electron-windows-button {
  border: none;
  background: inherit;
  opacity: 0.75;
  -webkit-app-region: no-drag;
  cursor: pointer;
}
.electron-windows-titlebar .electron-windows-button:hover {
  opacity: 0.9;
}
.electron-windows-titlebar .electron-windows-button:focus {
  outline: none;
}

@keyframes tip-fading-in {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  100% {
    opacity: 1;
  }
}
@keyframes tip-fading-out {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(100px);
  }
}
.room-loading-container {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  background: linear-gradient(42.98deg, #55017d 25.23%, #1901aa 100.55%);
}
.room-loading-container.hidden {
  display: none;
}
.room-loading-container img {
  margin-top: -23%;
  margin-right: -2%;
  width: 35%;
}
.tips-container {
  margin-top: 10px;
}
.tips-container .tip-animation-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 500px;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
}
.tips-container .tip-animation-wrapper.starting {
  animation: tip-fading-in 0.5s ease-in-out;
}
.tips-container .tip-animation-wrapper.finishing {
  animation: tip-fading-out 0.5s ease-in-out;
}
@media (max-width: 615px) {
  .tips-container .tip-animation-wrapper {
    width: 100%;
  }
}
@media (max-width: 875px) {
  .room-loading-container img {
    width: 55%;
  }
  .tips-container .tip-animation-wrapper {
    padding: 0 10px;
    width: unset;
    font-size: 14px;
  }
}
@media (max-width: 516px) {
  .room-loading-container img {
    width: 100%;
  }
  .tips-container .tip-animation-wrapper {
    padding: 0 10px;
    width: unset;
    font-size: 14px;
  }
}

.electron-upsell {
  position: fixed;
  top: 15px;
  right: 0;
  left: 0;
  margin: auto;
  padding: 10px;
  width: fit-content;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #12002d;
  border-radius: 16px;
}
.electron-upsell.hidden {
  display: none;
}
.electron-upsell .title {
  margin: 0;
  padding: 0 17px;
  color: #ffffff;
  font-family: 'Inter';
  font-weight: 500;
}
.electron-upsell .download-link {
  padding: 11px 13px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  border-radius: 100px;
  cursor: pointer;
}
.electron-upsell .download-link .icons {
  display: flex;
  justify-content: space-around;
  align-items: baseline;
  opacity: 0.9;
}
.electron-upsell .download-link .icons img + img {
  margin-left: 9px;
}
.electron-upsell .download-link .text {
  margin-left: 9px;
  color: #12002d;
  font-weight: 500;
}
.electron-upsell .download-link:hover .icons {
  opacity: 1;
}
.electron-upsell .download-link:hover .text {
  text-decoration: underline;
}
.electron-upsell .windows-icon.hidden,
.electron-upsell .mac-icon.hidden {
  display: none;
}
@media (max-width: 962px) {
  .electron-upsell {
    display: none;
  }
}

here-inline-svg {
  display: inline-block;
}

.room-admin {
  position: relative;
}
.room-admin label {
  display: block;
}
.room-admin input[type='checkbox']:checked,
.room-admin input[type='radio']:checked {
  background-color: #6b1be3;
}
.room-admin input[type='checkbox']:checked + .colored-label,
.room-admin input[type='radio']:checked + .colored-label {
  color: #6b1be3;
}
.room-admin input[type='checkbox']:focus,
.room-admin input[type='radio']:focus {
  border-color: #6b1be3;
}
.room-admin .room-url-group {
  margin-top: 14px;
}
.room-admin .room-url-group label {
  position: relative;
}
.room-admin hr {
  margin: 10px 0;
  border-top-color: var(--primary-foreground, #e5e5e5);
}
.room-admin .manage-content-buttons {
  padding-top: 0.5rem;
  display: flex;
  justify-content: space-between;
}
.room-admin .manage-content-buttons button {
  height: 38px;
  padding: 0 22px;
}
.room-admin .link-to-slack,
.room-admin .slack-info {
  display: none;
}
.room-admin .link-to-slack .slack-channel,
.room-admin .slack-info .slack-channel {
  color: #558;
}
.room-admin .discord-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.room-admin .discord-integration-button {
  width: 85%;
  height: 40px;
  background: var(--primary-background, #5865f2);
  color: var(--primary-foreground, white);
  position: relative;
  text-align: left;
  font-weight: bold;
}
.room-admin .discord-integration-button.new-integration {
  background: var(--primary-background, white);
  color: var(--primary-foreground, black);
}
.room-admin .discord-integration-button.new-integration svg path[fill]:not([fill='none']),
.room-admin .discord-integration-button.new-integration svg circle[fill]:not([fill='none']),
.room-admin .discord-integration-button.new-integration svg g[fill]:not([fill='none']),
.room-admin .discord-integration-button.new-integration svg rect[fill]:not([fill='none']) {
  fill: var(--primary-foreground, #5865f2);
}
.room-admin .discord-integration-button.new-integration svg path[stroke],
.room-admin .discord-integration-button.new-integration svg circle[stroke],
.room-admin .discord-integration-button.new-integration svg g[stroke],
.room-admin .discord-integration-button.new-integration svg rect[stroke] {
  stroke: var(--primary-foreground, #5865f2);
}
.room-admin .discord-integration-button svg path[fill]:not([fill='none']),
.room-admin .discord-integration-button svg circle[fill]:not([fill='none']),
.room-admin .discord-integration-button svg g[fill]:not([fill='none']),
.room-admin .discord-integration-button svg rect[fill]:not([fill='none']) {
  fill: var(--primary-foreground, white);
}
.room-admin .discord-integration-button svg path[stroke],
.room-admin .discord-integration-button svg circle[stroke],
.room-admin .discord-integration-button svg g[stroke],
.room-admin .discord-integration-button svg rect[stroke] {
  stroke: var(--primary-foreground, white);
}
.room-admin .discord-integration-button .discord-icon-wrapper {
  padding: 20px 10px;
  width: 30px;
}
.room-admin .discord-integration-button .forward-icon-wrapper {
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.room-admin .discord-integration-button .discord-icon {
  height: 25px;
  margin-left: 5px;
}
.room-admin .discord-integration-button .discord-channel {
  margin-left: 10px;
}
.room-admin .discord-integration-button .forward-icon {
  width: 30px;
  opacity: 0.7;
}
.room-admin .discord-integration-button span {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: 250px;
}
.room-admin .minus-circle-icon-wrapper {
  width: 30px;
  cursor: pointer;
}
.room-admin .minus-circle-icon-wrapper svg path[fill]:not([fill='none']),
.room-admin .minus-circle-icon-wrapper svg circle[fill]:not([fill='none']),
.room-admin .minus-circle-icon-wrapper svg g[fill]:not([fill='none']),
.room-admin .minus-circle-icon-wrapper svg rect[fill]:not([fill='none']) {
  fill: var(--primary-foreground, rgba(180, 180, 180, 0.7));
}
.room-admin .minus-circle-icon-wrapper svg path[stroke],
.room-admin .minus-circle-icon-wrapper svg circle[stroke],
.room-admin .minus-circle-icon-wrapper svg g[stroke],
.room-admin .minus-circle-icon-wrapper svg rect[stroke] {
  stroke: var(--primary-foreground, rgba(180, 180, 180, 0.7));
}
.room-admin .minus-circle-icon-wrapper svg:hover path[fill]:not([fill='none']),
.room-admin .minus-circle-icon-wrapper svg:hover circle[fill]:not([fill='none']),
.room-admin .minus-circle-icon-wrapper svg:hover g[fill]:not([fill='none']),
.room-admin .minus-circle-icon-wrapper svg:hover rect[fill]:not([fill='none']) {
  fill: var(--secondary-foreground-alpha-30, rgba(0, 0, 0, 0.3));
}
.room-admin .minus-circle-icon-wrapper svg:hover path[stroke],
.room-admin .minus-circle-icon-wrapper svg:hover circle[stroke],
.room-admin .minus-circle-icon-wrapper svg:hover g[stroke],
.room-admin .minus-circle-icon-wrapper svg:hover rect[stroke] {
  stroke: var(--secondary-foreground-alpha-30, rgba(0, 0, 0, 0.3));
}
.room-admin .beta-notice {
  font-size: 0.7em;
  background: var(--secondary-background, #ccc);
  text-transform: uppercase;
  font-weight: 500;
  padding: 5px;
  color: var(--secondary-foreground, white);
}
.room-admin .broadcast-section {
  background: var(--primary-background, white);
  color: var(--primary-foreground, black);
  border-radius: 8px;
  padding: 24px 32px;
}
.room-admin .broadcast-section .title-container {
  display: flex;
}
.room-admin .broadcast-section .title-container .title {
  display: inline-block;
  margin: 0 20px 0 10px;
}
.room-admin .broadcast-section .title-container svg {
  height: 24px;
}
.room-admin .broadcast-section .title-container svg path[fill]:not([fill='none']),
.room-admin .broadcast-section .title-container svg circle[fill]:not([fill='none']),
.room-admin .broadcast-section .title-container svg g[fill]:not([fill='none']),
.room-admin .broadcast-section .title-container svg rect[fill]:not([fill='none']) {
  fill: var(--primary-foreground, black);
}
.room-admin .broadcast-section .title-container svg path[stroke],
.room-admin .broadcast-section .title-container svg circle[stroke],
.room-admin .broadcast-section .title-container svg g[stroke],
.room-admin .broadcast-section .title-container svg rect[stroke] {
  stroke: var(--primary-foreground, black);
}
.room-admin .broadcast-section .text {
  margin: 20px 0;
}
.room-admin .broadcast-section .allow-anonymous-viewers {
  margin-bottom: 20px;
}
.room-admin .broadcast-section button {
  padding: 16px 24px;
}
.room-admin .update-room-name-error {
  color: red;
}
.room-admin .update-url-error {
  display: none;
  color: red;
}
.room-admin .update-url-success {
  display: none;
  color: green;
  text-align: center;
}
.room-admin .update-url-button {
  display: none;
  padding-top: 9px;
  padding-bottom: 9px;
  font-size: 1em;
  width: 100%;
}
.room-admin .change-url-button {
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 1em;
  width: 100%;
}
.room-admin .update-url-input {
  padding-left: 10px;
  width: 100%;
  height: 36px;
  box-sizing: border-box;
  font-size: 1.05em;
  text-transform: lowercase;
  margin-bottom: 4px;
}
.room-admin .gray-text {
  color: #808080;
}
.room-admin .update-url-copy {
  position: absolute;
  right: 4px;
  background: none;
  height: 36px;
  width: 36px;
  outline: 0;
  border: 0;
  cursor: pointer;
}
.room-admin .update-url-copy path[fill]:not([fill='none']),
.room-admin .update-url-copy circle[fill]:not([fill='none']),
.room-admin .update-url-copy g[fill]:not([fill='none']),
.room-admin .update-url-copy rect[fill]:not([fill='none']) {
  fill: var(--primary-foreground, #6b1be3);
}
.room-admin .update-url-copy path[stroke],
.room-admin .update-url-copy circle[stroke],
.room-admin .update-url-copy g[stroke],
.room-admin .update-url-copy rect[stroke] {
  stroke: var(--primary-foreground, #6b1be3);
}
.room-admin .update-url-available-icon,
.room-admin .update-url-unavailable-icon {
  display: none;
  position: fixed;
  float: right;
  right: 30px;
  background: none;
  outline: 0;
  border: 0;
}
.room-admin .update-url-available-icon {
  height: 20px;
  width: 20px;
  margin-top: 8px;
}
.room-admin .update-url-unavailable-icon {
  height: 16px;
  width: 16px;
  margin-top: 10px;
}
.room-admin .room-public-group {
  background-color: #6b1be3;
  margin-bottom: 16px;
  border-radius: 12px;
  display: none;
}
.room-admin .room-public-group div {
  padding: 12.5px 16px;
}
.room-admin .room-public-group .room-public-header {
  color: white;
  font-weight: 400;
  display: inline-flex;
  margin: 0;
  margin-left: 10px;
}
.room-admin .room-public-group .room-public-help {
  font-weight: 400;
  display: inline-flex;
  margin: 0;
  float: right;
  color: darkgray;
  text-decoration: underline;
  cursor: pointer;
  display: none;
}
.room-admin .flex-container {
  text-align-last: center;
  justify-content: space-between;
  margin-top: 30px;
  max-width: 1200px;
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
  height: 90px;
}
.room-admin .flex-child {
  color: #9b8f8f;
}
.room-admin .flex-child .gray-section {
  height: 100%;
  border-radius: 5px;
  position: relative;
}
.room-admin .flex-child .option-section-image {
  margin-top: -22px;
  position: absolute;
  width: 100%;
}
.room-admin .flex-child .option-section-image-slash {
  margin-top: -22px;
  position: absolute;
  z-index: 1;
  height: 40px;
  content: url(../images/icons/slash.svg);
  display: none;
  width: 100%;
}
.room-admin .flex-child .permission-section {
  display: inline-block;
  transform: translate(0, 45%);
}
.room-admin .flex-child .permission-section h6 {
  margin-bottom: 6px;
  color: var(--primary-foreground, gray);
  font-weight: 600;
}
.room-admin .flex-child .permission-section .activated {
  color: var(--primary-foreground, #6b1be3);
}
.room-admin .flex-child .permission-section .switch {
  margin: 0 auto;
}
.room-admin .integrations-section {
  color: var(--primary-foreground, black);
}

.background-properties .bg-help img {
  width: 1em;
  height: 1em;
}
.background-properties .option-left,
.background-properties .option-right {
  width: 100%;
  padding: 10px 5px;
  display: inline-block;
}
.background-properties .change-background-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #0005;
  display: none;
}
.background-properties .change-background {
  border: 2px solid white;
  border-radius: 25px;
  height: 50px;
  width: 150px;
  font-size: 1.2em;
  background-color: #00000078;
  margin-left: calc(50% - 150px / 2);
  margin-top: calc(30% - 50px / 2);
  outline: none;
  color: white;
  cursor: pointer;
}
.background-properties :hover .change-background-overlay {
  display: block;
}
.background-properties .bg-scrolling-label path[fill]:not([fill='none']),
.background-properties .bg-scrolling-label circle[fill]:not([fill='none']),
.background-properties .bg-scrolling-label g[fill]:not([fill='none']),
.background-properties .bg-scrolling-label rect[fill]:not([fill='none']) {
  fill: var(--primary-foreground, black);
}
.background-properties .bg-scrolling-label path[stroke],
.background-properties .bg-scrolling-label circle[stroke],
.background-properties .bg-scrolling-label g[stroke],
.background-properties .bg-scrolling-label rect[stroke] {
  stroke: var(--primary-foreground, black);
}
.background-properties .background-preview {
  width: 100%;
  box-sizing: border-box;
  position: relative;
  padding: 30% 20%;
  background-color: #8800fe;
  background-position: 50% 50%;
}
.background-properties .background-preview .bg-pen-indicator {
  background: var(--secondary-background, white);
  border-radius: 50%;
  width: 35px;
  height: 35px;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
.background-properties .background-preview .bg-pen-indicator .bg-pen {
  margin: 7.5px;
  width: 20px;
  height: 20px;
}
.background-properties .background-preview .bg-pen-indicator .bg-pen path[fill]:not([fill='none']),
.background-properties .background-preview .bg-pen-indicator .bg-pen circle[fill]:not([fill='none']),
.background-properties .background-preview .bg-pen-indicator .bg-pen g[fill]:not([fill='none']),
.background-properties .background-preview .bg-pen-indicator .bg-pen rect[fill]:not([fill='none']) {
  fill: var(--secondary-foreground, #6b1be3);
}
.background-properties .background-preview .bg-pen-indicator .bg-pen path[stroke],
.background-properties .background-preview .bg-pen-indicator .bg-pen circle[stroke],
.background-properties .background-preview .bg-pen-indicator .bg-pen g[stroke],
.background-properties .background-preview .bg-pen-indicator .bg-pen rect[stroke] {
  stroke: var(--secondary-foreground, #6b1be3);
}
.background-properties .background-preview .browser-window {
  border: 2px solid #dfe1e5;
  border-radius: 8px;
  position: absolute;
  top: 10px;
  right: 20%;
  left: 20%;
  bottom: 10px;
}
.background-properties .background-preview .browser-window .browser-tab {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: #dfe1e5;
  height: 30px;
}
.background-properties .background-preview .browser-window .browser-tab img {
  height: 30px;
}
.background-properties .faux-canvas-object-1 {
  position: absolute;
  top: 20%;
  left: 20%;
  animation-name: move-fg;
  animation-duration: 8s;
  animation-timing-function: linear;
  animation-direction: alternate;
  animation-iteration-count: infinite;
}
.background-properties .faux-canvas-object-2 {
  position: absolute;
  top: 30%;
  left: 60%;
  animation-name: move-fg;
  animation-duration: 8s;
  animation-timing-function: linear;
  animation-direction: alternate;
  animation-iteration-count: infinite;
}
.background-properties .canvas-movement {
  animation-name: move-bg;
  animation-duration: 8s;
  animation-timing-function: linear;
  animation-direction: alternate;
  animation-iteration-count: infinite;
}
.background-properties .bg-color-select {
  border-radius: 5px;
  border: 1px solid black;
  width: 50px;
  height: 1.5em;
}
.background-properties .bg-color-select[disabled] {
  opacity: 0.5;
}
.background-properties label {
  color: var(--primary-foreground, inherit);
}
.background-properties select {
  display: block;
  width: 100%;
}
.background-properties .disabled {
  color: #ddd;
}
body.themed .background-properties .disabled {
  color: var(--primary-foreground-alpha-50);
}
.background-properties .lower-option-label {
  line-height: 1.5em;
  vertical-align: middle;
  padding-right: 15px;
}
.background-properties input.bg-size {
  width: 75%;
  height: 0.5em;
}
@keyframes move-fg {
  from {
    margin-left: 0;
    margin-top: 0;
  }
  to {
    margin-left: 100px;
    margin-top: 50px;
  }
}
@keyframes move-bg {
  from {
    background-position: calc(50% - 50px) calc(50% - 25px);
  }
  to {
    background-position: calc(50% + 50px) calc(50% + 25px);
  }
}

.notification-section .title {
  display: flex;
  justify-content: space-between;
  padding-top: 4px;
}
.notification-section .title h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-foreground, black);
}
.notification-section .subtitle {
  font-size: 0.9em;
  color: var(--primary-foreground, #868686);
  margin-top: 0;
}
.notification-section path[fill]:not([fill='none']),
.notification-section circle[fill]:not([fill='none']),
.notification-section g[fill]:not([fill='none']),
.notification-section rect[fill]:not([fill='none']) {
  fill: var(--primary-foreground, #6b1be3);
}
.notification-section path[stroke],
.notification-section circle[stroke],
.notification-section g[stroke],
.notification-section rect[stroke] {
  stroke: var(--primary-foreground, #6b1be3);
}

.chat-tab h2 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--primary-foreground, black);
}
.chat-tab hr {
  margin: 10px 0;
  border-top-color: var(--primary-foreground, #e5e5e5);
}
.chat-tab button {
  padding: 0 15px;
  height: 40px;
}
.chat-tab .option-section {
  padding: 14px;
}
.chat-tab .title {
  display: flex;
  justify-content: space-between;
}
.chat-tab .subtitle {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--primary-foreground, #868686);
  margin: 6px 0 0 0;
}
.chat-tab .feed-background-preview-section {
  margin-top: 10px;
  display: flex;
  align-items: flex-start;
}
.chat-tab .feed-background-preview-section .feed-background-preview {
  position: relative;
  width: 120px;
  height: 240px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  margin-right: 25px;
}
.chat-tab .customize-chat-sounds-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
}
.chat-tab .customize-chat-sounds-button img {
  height: 15px;
  width: 19px;
}

.help-tab .tab-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.help-tab .tab-header .tab-content-title-mobile {
  display: none;
}
.help-tab .tab-header .close-room-settings-button {
  display: none;
  font-size: 18px;
  background: inherit;
  border: none;
  cursor: pointer;
}
.help-tab .tab-header .close-room-settings-button:focus {
  outline: none;
}
@media (max-width: 613px) {
  .help-tab .tab-header .tab-content-title {
    padding-left: 10px;
  }
  .help-tab .tab-header .tab-content-title {
    display: none;
  }
  .help-tab .tab-header .tab-content-title-mobile {
    padding: 0;
    display: block;
  }
  .help-tab .tab-header .tab-content-subtitle-mobile {
    display: block;
  }
  .help-tab .tab-header .close-room-settings-button {
    display: block;
  }
}
.help-tab .tab-content-subtitle-mobile {
  padding-left: 10px;
  margin-top: 25px !important;
  display: none;
}
@media (max-width: 613px) {
  .help-tab .tab-content-subtitle-mobile {
    display: block;
    font-size: 15px;
  }
}
.help-tab .notifications-block {
  padding: 20px 10px;
  display: none;
  background-color: #f0f0f0;
  border-radius: 10px;
}
@media (max-width: 613px) {
  .help-tab .notifications-block {
    display: block;
  }
}

.chat-image-preview-modal-body {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.chat-image-preview-image {
  max-height: 75vh;
}

/*! UIkit 3.5.5 | https://www.getuikit.com | (c) 2014 - 2020 YOOtheme | MIT License */
/* ========================================================================
   Component: Base
 ========================================================================== */
/*
 * 1. Set `font-size` to support `rem` units
 *    Not using `font` property because a leading hyphen (e.g. -apple-system) causes the font to break in IE11 and Edge
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Style
 */
html {
  /* 1 */
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 16px;
  font-weight: normal;
  line-height: 1.5;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 3 */
  background: #fff;
  color: #666;
}
/*
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}
/* Links
 ========================================================================== */
/*
 * Remove the outline on focused links when they are also active or hovered
 */
a:active,
a:hover {
  outline: none;
}
/*
 * Style
 */
a,
.uk-link {
  color: #1e87f0;
  text-decoration: none;
  cursor: pointer;
}
a:hover,
.uk-link:hover,
.uk-link-toggle:hover .uk-link,
.uk-link-toggle:focus .uk-link {
  color: #0f6ecd;
  text-decoration: underline;
}
/* Text-level semantics
 ========================================================================== */
/*
 * 1. Add the correct text decoration in Edge.
 * 2. The shorthand declaration `underline dotted` is not supported in Safari.
 */
abbr[title] {
  /* 1 */
  text-decoration: underline dotted;
  /* 2 */
  -webkit-text-decoration-style: dotted;
}
/*
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}
/*
 * 1. Consolas has a better baseline in running text compared to `Courier`
 * 2. Correct the odd `em` font sizing in all browsers.
 * 3. Style
 */
:not(pre) > code,
:not(pre) > kbd,
:not(pre) > samp {
  /* 1 */
  font-family: Consolas, monaco, monospace;
  /* 2 */
  font-size: 0.875rem;
  /* 3 */
  color: #f0506e;
  white-space: nowrap;
  padding: 2px 6px;
  background: #f8f8f8;
}
/*
 * Emphasize
 */
em {
  color: #f0506e;
}
/*
 * Insert
 */
ins {
  background: #ffd;
  color: #666;
  text-decoration: none;
}
/*
 * Mark
 */
mark {
  background: #ffd;
  color: #666;
}
/*
 * Quote
 */
q {
  font-style: italic;
}
/*
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}
/*
 * Prevents `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
/* Embedded content
 ========================================================================== */
/*
 * Remove the gap between embedded content and the bottom of their containers.
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}
/*
 * 1. Add responsiveness.
 * 2. Auto-scale the height. Only needed if `height` attribute is present.
 * 3. Corrects responsive `max-width` behavior if padding and border are used.
 * 4. Exclude SVGs for IE11 because they don't preserve their aspect ratio.
 */
canvas,
img,
video {
  /* 1 */
  max-width: 100%;
  /* 2 */
  height: auto;
  /* 3 */
  box-sizing: border-box;
}
/* 4 */
@supports (display: block) {
  svg {
    max-width: 100%;
    height: auto;
    box-sizing: border-box;
  }
}
/*
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}
/*
 * 1. Fix lazy loading images if parent element is set to `display: inline` and has `overflow: hidden`.
 * 2. Hide `alt` text for lazy loading images.
 * Note: Selector for background while loading img[data-src*='.jpg'][src*='data:image'] { background: grey; }
 */
img:not([src]) {
  /* 1 */
  min-width: 1px;
  /* 2 */
  visibility: hidden;
}
/*
 * Iframe
 * Remove border in all browsers
 */
iframe {
  border: 0;
}
/* Block elements
 ========================================================================== */
/*
 * Margins
 */
p,
ul,
ol,
dl,
pre,
address,
fieldset,
figure {
  margin: 0 0 20px 0;
}
/* Add margin if adjacent element */
* + p,
* + ul,
* + ol,
* + dl,
* + pre,
* + address,
* + fieldset,
* + figure {
  margin-top: 20px;
}
/* Headings
 ========================================================================== */
h1,
.uk-h1,
h2,
.uk-h2,
h3,
.uk-h3,
h4,
.uk-h4,
h5,
.uk-h5,
h6,
.uk-h6,
.uk-heading-small,
.uk-heading-medium,
.uk-heading-large,
.uk-heading-xlarge,
.uk-heading-2xlarge {
  margin: 0 0 20px 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: normal;
  color: #333;
  text-transform: none;
}
/* Add margin if adjacent element */
* + h1,
* + .uk-h1,
* + h2,
* + .uk-h2,
* + h3,
* + .uk-h3,
* + h4,
* + .uk-h4,
* + h5,
* + .uk-h5,
* + h6,
* + .uk-h6,
* + .uk-heading-small,
* + .uk-heading-medium,
* + .uk-heading-large,
* + .uk-heading-xlarge,
* + .uk-heading-2xlarge {
  margin-top: 40px;
}
/*
 * Sizes
 */
h1,
.uk-h1 {
  font-size: 2.23125rem;
  line-height: 1.2;
}
h2,
.uk-h2 {
  font-size: 1.7rem;
  line-height: 1.3;
}
h3,
.uk-h3 {
  font-size: 1.5rem;
  line-height: 1.4;
}
h4,
.uk-h4 {
  font-size: 1.25rem;
  line-height: 1.4;
}
h5,
.uk-h5 {
  font-size: 16px;
  line-height: 1.4;
}
h6,
.uk-h6 {
  font-size: 0.875rem;
  line-height: 1.4;
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  h1,
  .uk-h1 {
    font-size: 2.625rem;
  }
  h2,
  .uk-h2 {
    font-size: 2rem;
  }
}
/* Lists
 ========================================================================== */
ul,
ol {
  padding-left: 30px;
}
/*
 * Reset margin for nested lists
 */
ul > li > ul,
ul > li > ol,
ol > li > ol,
ol > li > ul {
  margin: 0;
}
/* Description lists
 ========================================================================== */
dt {
  font-weight: bold;
}
dd {
  margin-left: 0;
}
/* Horizontal rules
 ========================================================================== */
/*
 * 1. Show the overflow in Chrome, Edge and IE.
 * 2. Add the correct text-align in Edge and IE.
 * 3. Style
 */
hr,
.uk-hr {
  /* 1 */
  overflow: visible;
  /* 2 */
  text-align: inherit;
  /* 3 */
  margin: 0 0 20px 0;
  border: 0;
  border-top: 1px solid #e5e5e5;
}
/* Add margin if adjacent element */
* + hr,
* + .uk-hr {
  margin-top: 20px;
}
/* Address
 ========================================================================== */
address {
  font-style: normal;
}
/* Blockquotes
 ========================================================================== */
blockquote {
  margin: 0 0 20px 0;
  font-size: 1.25rem;
  line-height: 1.5;
  font-style: italic;
  color: #333;
}
/* Add margin if adjacent element */
* + blockquote {
  margin-top: 20px;
}
/*
 * Content
 */
blockquote p:last-of-type {
  margin-bottom: 0;
}
blockquote footer {
  margin-top: 10px;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #666;
}
blockquote footer::before {
  content: "— ";
}
/* Preformatted text
 ========================================================================== */
/*
 * 1. Contain overflow in all browsers.
 */
pre {
  font: 0.875rem / 1.5 Consolas, monaco, monospace;
  color: #666;
  -moz-tab-size: 4;
  tab-size: 4;
  /* 1 */
  overflow: auto;
  padding: 10px;
  border: 1px solid #e5e5e5;
  border-radius: 3px;
  background: #fff;
}
pre code {
  font-family: Consolas, monaco, monospace;
}
/* Selection pseudo-element
 ========================================================================== */
::selection {
  background: #39f;
  color: #fff;
  text-shadow: none;
}
/* HTML5 elements
 ========================================================================== */
/*
 * 1. Add the correct display in Edge, IE 10+, and Firefox.
 * 2. Add the correct display in IE.
 */
details,
main {
  /* 2 */
  display: block;
}
/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}
/*
 * Add the correct display in IE.
 */
template {
  display: none;
}
/* Pass media breakpoints to JS
 ========================================================================== */
/*
 * Breakpoints
 */
.uk-breakpoint-s::before {
  content: '640px';
}
.uk-breakpoint-m::before {
  content: '960px';
}
.uk-breakpoint-l::before {
  content: '1200px';
}
.uk-breakpoint-xl::before {
  content: '1600px';
}
:root {
  --uk-breakpoint-s: 640px;
  --uk-breakpoint-m: 960px;
  --uk-breakpoint-l: 1200px;
  --uk-breakpoint-xl: 1600px;
}
/* ========================================================================
   Component: Link
 ========================================================================== */
/* Muted
 ========================================================================== */
a.uk-link-muted,
.uk-link-muted a {
  color: #999;
}
a.uk-link-muted:hover,
.uk-link-muted a:hover,
.uk-link-toggle:hover .uk-link-muted,
.uk-link-toggle:focus .uk-link-muted {
  color: #666;
}
/* Text
 ========================================================================== */
a.uk-link-text,
.uk-link-text a {
  color: inherit;
}
a.uk-link-text:hover,
.uk-link-text a:hover,
.uk-link-toggle:hover .uk-link-text,
.uk-link-toggle:focus .uk-link-text {
  color: #999;
}
/* Heading
 ========================================================================== */
a.uk-link-heading,
.uk-link-heading a {
  color: inherit;
}
a.uk-link-heading:hover,
.uk-link-heading a:hover,
.uk-link-toggle:hover .uk-link-heading,
.uk-link-toggle:focus .uk-link-heading {
  color: #1e87f0;
  text-decoration: none;
}
/* Reset
 ========================================================================== */
/*
 * `!important` needed to override inverse component
 */
a.uk-link-reset,
.uk-link-reset a {
  color: inherit !important;
  text-decoration: none !important;
}
/* Toggle
 ========================================================================== */
.uk-link-toggle {
  color: inherit !important;
  text-decoration: none !important;
}
.uk-link-toggle:focus {
  outline: none;
}
/* ========================================================================
   Component: Heading
 ========================================================================== */
.uk-heading-small {
  font-size: 2.6rem;
  line-height: 1.2;
}
.uk-heading-medium {
  font-size: 2.8875rem;
  line-height: 1.1;
}
.uk-heading-large {
  font-size: 3.4rem;
  line-height: 1.1;
}
.uk-heading-xlarge {
  font-size: 4rem;
  line-height: 1;
}
.uk-heading-2xlarge {
  font-size: 6rem;
  line-height: 1;
}
/* Tablet Landscape and bigger */
@media (min-width: 960px) {
  .uk-heading-small {
    font-size: 3.25rem;
  }
  .uk-heading-medium {
    font-size: 3.5rem;
  }
  .uk-heading-large {
    font-size: 4rem;
  }
  .uk-heading-xlarge {
    font-size: 6rem;
  }
  .uk-heading-2xlarge {
    font-size: 8rem;
  }
}
/* Laptop and bigger */
@media (min-width: 1200px) {
  .uk-heading-medium {
    font-size: 4rem;
  }
  .uk-heading-large {
    font-size: 6rem;
  }
  .uk-heading-xlarge {
    font-size: 8rem;
  }
  .uk-heading-2xlarge {
    font-size: 11rem;
  }
}
/* Primary
   Deprecated: Use `uk-heading-medium` instead
 ========================================================================== */
/* Tablet landscape and bigger */
/* Desktop and bigger */
/* Hero
   Deprecated: Use `uk-heading-xlarge` instead
 ========================================================================== */
/* Tablet landscape and bigger */
/* Desktop and bigger */
/* Divider
 ========================================================================== */
.uk-heading-divider {
  padding-bottom: calc(5px + 0.1em);
  border-bottom: calc(0.2px + 0.05em) solid #e5e5e5;
}
/* Bullet
 ========================================================================== */
.uk-heading-bullet {
  position: relative;
}
/*
 * 1. Using `inline-block` to make it work with text alignment
 * 2. Center vertically
 * 3. Style
 */
.uk-heading-bullet::before {
  content: "";
  /* 1 */
  display: inline-block;
  /* 2 */
  position: relative;
  top: calc(-0.1 * 1em);
  vertical-align: middle;
  /* 3 */
  height: calc(4px + 0.7em);
  margin-right: calc(5px + 0.2em);
  border-left: calc(5px + 0.1em) solid #e5e5e5;
}
/* Line
 ========================================================================== */
/*
 * Clip the child element
 */
.uk-heading-line {
  overflow: hidden;
}
/*
 * Extra markup is needed to make it work with text align
 */
.uk-heading-line > * {
  display: inline-block;
  position: relative;
}
/*
 * 1. Center vertically
 * 2. Make the element as large as possible. It's clipped by the container.
 * 3. Style
 */
.uk-heading-line > ::before,
.uk-heading-line > ::after {
  content: "";
  /* 1 */
  position: absolute;
  top: calc(50% - ((0.2px + 0.05em) / 2));
  /* 2 */
  width: 2000px;
  /* 3 */
  border-bottom: calc(0.2px + 0.05em) solid #e5e5e5;
}
.uk-heading-line > ::before {
  right: 100%;
  margin-right: calc(5px + 0.3em);
}
.uk-heading-line > ::after {
  left: 100%;
  margin-left: calc(5px + 0.3em);
}
/* ========================================================================
   Component: Divider
 ========================================================================== */
/*
 * 1. Reset default `hr`
 * 2. Set margin if a `div` is used for semantical reason
 */
[class*='uk-divider'] {
  /* 1 */
  border: none;
  /* 2 */
  margin-bottom: 20px;
}
/* Add margin if adjacent element */
* + [class*='uk-divider'] {
  margin-top: 20px;
}
/* Icon
 ========================================================================== */
.uk-divider-icon {
  position: relative;
  height: 20px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22none%22%20stroke%3D%22%23e5e5e5%22%20stroke-width%3D%222%22%20cx%3D%2210%22%20cy%3D%2210%22%20r%3D%227%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.uk-divider-icon::before,
.uk-divider-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  max-width: calc(50% - (50px / 2));
  border-bottom: 1px solid #e5e5e5;
}
.uk-divider-icon::before {
  right: calc(50% + (50px / 2));
  width: 100%;
}
.uk-divider-icon::after {
  left: calc(50% + (50px / 2));
  width: 100%;
}
/* Small
 ========================================================================== */
/*
 * 1. Fix height because of `inline-block`
 * 2. Using ::after and inline-block to make `text-align` work
 */
/* 1 */
.uk-divider-small {
  line-height: 0;
}
/* 2 */
.uk-divider-small::after {
  content: "";
  display: inline-block;
  width: 100px;
  max-width: 100%;
  border-top: 1px solid #e5e5e5;
  vertical-align: top;
}
/* Vertical
 ========================================================================== */
.uk-divider-vertical {
  width: 1px;
  height: 100px;
  margin-left: auto;
  margin-right: auto;
  border-left: 1px solid #e5e5e5;
}
/* ========================================================================
   Component: List
 ========================================================================== */
.uk-list {
  padding: 0;
  list-style: none;
}
/*
 * Remove margin from the last-child
 */
.uk-list > * > :last-child {
  margin-bottom: 0;
}
/*
 * Style
 */
.uk-list > :nth-child(n+2),
.uk-list > * > ul {
  margin-top: 10px;
}
/* Marker modifiers
 * Moving `::marker` inside `::before` to style it differently
 * To style the `::marker` is currently only supported in Firefox and Safari
 ========================================================================== */
.uk-list-disc > *,
.uk-list-circle > *,
.uk-list-square > *,
.uk-list-decimal > *,
.uk-list-hyphen > * {
  padding-left: 30px;
}
/*
 * Type modifiers
 */
.uk-list-decimal {
  counter-reset: decimal;
}
.uk-list-decimal > * {
  counter-increment: decimal;
}
[class*='uk-list'] > ::before {
  content: '';
  position: relative;
  left: -30px;
  width: 30px;
  height: 1.5em;
  margin-bottom: -1.5em;
  display: list-item;
  list-style-position: inside;
  text-align: right;
}
.uk-list-disc > ::before {
  list-style-type: disc;
}
.uk-list-circle > ::before {
  list-style-type: circle;
}
.uk-list-square > ::before {
  list-style-type: square;
}
.uk-list-decimal > ::before {
  content: counter(decimal, decimal) '\200A.\00A0';
}
.uk-list-hyphen > ::before {
  content: '–\00A0\00A0';
}
/*
 * Color modifiers
 */
.uk-list-muted > ::before {
  color: #999 !important;
}
.uk-list-emphasis > ::before {
  color: #333 !important;
}
.uk-list-primary > ::before {
  color: #1e87f0 !important;
}
.uk-list-secondary > ::before {
  color: #222 !important;
}
/* Image bullet modifier
 ========================================================================== */
.uk-list-bullet > * {
  padding-left: 30px;
}
.uk-list-bullet > ::before {
  content: "";
  position: relative;
  left: -30px;
  width: 30px;
  height: 1.5em;
  margin-bottom: -1.5em;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%226%22%20height%3D%226%22%20viewBox%3D%220%200%206%206%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22%23666%22%20cx%3D%223%22%20cy%3D%223%22%20r%3D%223%22%20%2F%3E%0A%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
/* Style modifiers
 ========================================================================== */
/*
 * Divider
 */
.uk-list-divider > :nth-child(n+2) {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #e5e5e5;
}
/*
 * Striped
 */
.uk-list-striped > * {
  padding: 10px 10px;
}
.uk-list-striped > *:nth-of-type(odd) {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}
.uk-list-striped > :nth-of-type(odd) {
  background: #f8f8f8;
}
.uk-list-striped > :nth-child(n+2) {
  margin-top: 0;
}
/* Size modifier
 ========================================================================== */
.uk-list-large > :nth-child(n+2),
.uk-list-large > * > ul {
  margin-top: 20px;
}
.uk-list-collapse > :nth-child(n+2),
.uk-list-collapse > * > ul {
  margin-top: 0;
}
/*
 * Divider
 */
.uk-list-large.uk-list-divider > :nth-child(n+2) {
  margin-top: 20px;
  padding-top: 20px;
}
.uk-list-collapse.uk-list-divider > :nth-child(n+2) {
  margin-top: 0;
  padding-top: 0;
}
/*
 * Striped
 */
.uk-list-large.uk-list-striped > * {
  padding: 20px 10px;
}
.uk-list-collapse.uk-list-striped > * {
  padding-top: 0;
  padding-bottom: 0;
}
.uk-list-large.uk-list-striped > :nth-child(n+2),
.uk-list-collapse.uk-list-striped > :nth-child(n+2) {
  margin-top: 0;
}
/* ========================================================================
   Component: Description list
 ========================================================================== */
/*
 * Term
 */
.uk-description-list > dt {
  color: #333;
  font-size: 0.875rem;
  font-weight: normal;
  text-transform: uppercase;
}
.uk-description-list > dt:nth-child(n+2) {
  margin-top: 20px;
}
/*
 * Description
 */
/* Style modifier
 ========================================================================== */
/*
 * Line
 */
.uk-description-list-divider > dt:nth-child(n+2) {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e5e5e5;
}
/* ========================================================================
   Component: Table
 ========================================================================== */
/*
 * 1. Remove most spacing between table cells.
 * 2. Behave like a block element
 * 3. Style
 */
.uk-table {
  /* 1 */
  border-collapse: collapse;
  border-spacing: 0;
  /* 2 */
  width: 100%;
  /* 3 */
  margin-bottom: 20px;
}
/* Add margin if adjacent element */
* + .uk-table {
  margin-top: 20px;
}
/* Header cell
 ========================================================================== */
/*
 * 1. Style
 */
.uk-table th {
  padding: 16px 12px;
  text-align: left;
  vertical-align: bottom;
  /* 1 */
  font-size: 0.875rem;
  font-weight: normal;
  color: #999;
  text-transform: uppercase;
}
/* Cell
 ========================================================================== */
.uk-table td {
  padding: 16px 12px;
  vertical-align: top;
}
/*
 * Remove margin from the last-child
 */
.uk-table td > :last-child {
  margin-bottom: 0;
}
/* Footer
 ========================================================================== */
.uk-table tfoot {
  font-size: 0.875rem;
}
/* Caption
 ========================================================================== */
.uk-table caption {
  font-size: 0.875rem;
  text-align: left;
  color: #999;
}
/* Alignment modifier
 ========================================================================== */
.uk-table-middle,
.uk-table-middle td {
  vertical-align: middle !important;
}
/* Style modifiers
 ========================================================================== */
/*
 * Divider
 */
.uk-table-divider > tr:not(:first-child),
.uk-table-divider > :not(:first-child) > tr,
.uk-table-divider > :first-child > tr:not(:first-child) {
  border-top: 1px solid #e5e5e5;
}
/*
 * Striped
 */
.uk-table-striped > tr:nth-of-type(odd),
.uk-table-striped tbody tr:nth-of-type(odd) {
  background: #f8f8f8;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}
/*
 * Hover
 */
.uk-table-hover > tr:hover,
.uk-table-hover tbody tr:hover {
  background: #ffd;
}
/* Active state
 ========================================================================== */
.uk-table > tr.uk-active,
.uk-table tbody tr.uk-active {
  background: #ffd;
}
/* Size modifier
 ========================================================================== */
.uk-table-small th,
.uk-table-small td {
  padding: 10px 12px;
}
.uk-table-large th,
.uk-table-large td {
  padding: 22px 12px;
}
/* Justify modifier
 ========================================================================== */
.uk-table-justify th:first-child,
.uk-table-justify td:first-child {
  padding-left: 0;
}
.uk-table-justify th:last-child,
.uk-table-justify td:last-child {
  padding-right: 0;
}
/* Cell size modifier
 ========================================================================== */
.uk-table-shrink {
  width: 1px;
}
.uk-table-expand {
  min-width: 150px;
}
/* Cell link modifier
 ========================================================================== */
/*
 * Does not work with `uk-table-justify` at the moment
 */
.uk-table-link {
  padding: 0 !important;
}
.uk-table-link > a {
  display: block;
  padding: 16px 12px;
}
.uk-table-small .uk-table-link > a {
  padding: 10px 12px;
}
/* Responsive table
 ========================================================================== */
/* Phone landscape and smaller */
@media (max-width: 959px) {
  .uk-table-responsive,
  .uk-table-responsive tbody,
  .uk-table-responsive th,
  .uk-table-responsive td,
  .uk-table-responsive tr {
    display: block;
  }
  .uk-table-responsive thead {
    display: none;
  }
  .uk-table-responsive th,
  .uk-table-responsive td {
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    overflow: visible !important;
    white-space: normal !important;
  }
  .uk-table-responsive th:not(:first-child):not(.uk-table-link),
  .uk-table-responsive td:not(:first-child):not(.uk-table-link),
  .uk-table-responsive .uk-table-link:not(:first-child) > a {
    padding-top: 5px !important;
  }
  .uk-table-responsive th:not(:last-child):not(.uk-table-link),
  .uk-table-responsive td:not(:last-child):not(.uk-table-link),
  .uk-table-responsive .uk-table-link:not(:last-child) > a {
    padding-bottom: 5px !important;
  }
  .uk-table-justify.uk-table-responsive th,
  .uk-table-justify.uk-table-responsive td {
    padding-left: 0;
    padding-right: 0;
  }
}
.uk-table tbody tr {
  transition: background-color 0.1s linear;
}
/* ========================================================================
   Component: Icon
 ========================================================================== */
/*
 * Note: 1. - 7. is required for `button` elements. Needed for Close and Form Icon component.
 * 1. Remove margins in Chrome, Safari and Opera.
 * 2. Remove borders for `button`.
 * 3. Remove border-radius in Chrome.
 * 4. Address `overflow` set to `hidden` in IE.
 * 5. Correct `font` properties and `color` not being inherited for `button`.
 * 6. Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 7. Remove default `button` padding and background color
 * 8. Style
 * 9. Fill all SVG elements with the current text color if no `fill` attribute is set
 * 10. Let the container fit the height of the icon
 */
.uk-icon {
  /* 1 */
  margin: 0;
  /* 2 */
  border: none;
  /* 3 */
  border-radius: 0;
  /* 4 */
  overflow: visible;
  /* 5 */
  font: inherit;
  color: inherit;
  /* 6 */
  text-transform: none;
  /* 7. */
  padding: 0;
  background-color: transparent;
  /* 8 */
  display: inline-block;
  /* 9 */
  fill: currentcolor;
  /* 10 */
  line-height: 0;
}
/* Required for `button`. */
button.uk-icon:not(:disabled) {
  cursor: pointer;
}
/*
 * Remove the inner border and padding in Firefox.
 */
.uk-icon::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/*
 * Set the fill and stroke color of all SVG elements to the current text color
 */
.uk-icon:not(.uk-preserve) [fill*='#']:not(.uk-preserve) {
  fill: currentcolor;
}
.uk-icon:not(.uk-preserve) [stroke*='#']:not(.uk-preserve) {
  stroke: currentcolor;
}
/*
 * Fix Firefox blurry SVG rendering: https://bugzilla.mozilla.org/show_bug.cgi?id=1046835
 */
.uk-icon > * {
  transform: translate(0, 0);
}
/* Image modifier
 ========================================================================== */
/*
 * Display images in icon dimensions
 */
.uk-icon-image {
  width: 20px;
  height: 20px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}
/* Style modifiers
 ========================================================================== */
/*
 * Link
 */
.uk-icon-link {
  color: #999;
}
.uk-icon-link:hover,
.uk-icon-link:focus {
  color: #666;
  outline: none;
}
/* OnClick + Active */
.uk-icon-link:active,
.uk-active > .uk-icon-link {
  color: #595959;
}
/*
 * Button
 * 1. Center icon vertically and horizontally
 */
.uk-icon-button {
  box-sizing: border-box;
  width: 36px;
  height: 36px;
  border-radius: 500px;
  background: #f8f8f8;
  color: #999;
  vertical-align: middle;
  /* 1 */
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: 0.1s ease-in-out;
  transition-property: color, background-color;
}
/* Hover + Focus */
.uk-icon-button:hover,
.uk-icon-button:focus {
  background-color: #ebebeb;
  color: #666;
  outline: none;
}
/* OnClick + Active */
.uk-icon-button:active,
.uk-active > .uk-icon-button {
  background-color: #dfdfdf;
  color: #666;
}
/* ========================================================================
   Component: Form Range
 ========================================================================== */
/*
 * 1. Normalize and defaults
 * 2. Prevent content overflow if a fixed width is used
 * 3. Take the full width
 * 4. Remove default style
 * 5. Remove white background in Chrome
 * 6. Remove padding in IE11
 */
.uk-range {
  /* 1 */
  box-sizing: border-box;
  margin: 0;
  vertical-align: middle;
  /* 2 */
  max-width: 100%;
  /* 3 */
  width: 100%;
  /* 4 */
  -webkit-appearance: none;
  /* 5 */
  background: transparent;
  /* 6 */
  padding: 0;
}
/* Focus */
.uk-range:focus {
  outline: none;
}
.uk-range::-moz-focus-outer {
  border: none;
}
/* IE11 Reset */
.uk-range::-ms-track {
  height: 15px;
  background: transparent;
  border-color: transparent;
  color: transparent;
}
/*
 * Improves consistency of cursor style for clickable elements
 */
.uk-range:not(:disabled)::-webkit-slider-thumb {
  cursor: pointer;
}
.uk-range:not(:disabled)::-moz-range-thumb {
  cursor: pointer;
}
.uk-range:not(:disabled)::-ms-thumb {
  cursor: pointer;
}
/* Thumb
 ========================================================================== */
/*
 * 1. Reset
 * 2. Style
 */
/* Webkit */
.uk-range::-webkit-slider-thumb {
  /* 1 */
  -webkit-appearance: none;
  margin-top: -7px;
  /* 2 */
  height: 15px;
  width: 15px;
  border-radius: 500px;
  background: #fff;
  border: 1px solid #cccccc;
}
/* Firefox */
.uk-range::-moz-range-thumb {
  /* 1 */
  border: none;
  /* 2 */
  height: 15px;
  width: 15px;
  border-radius: 500px;
  background: #fff;
  border: 1px solid #cccccc;
}
/* Edge */
.uk-range::-ms-thumb {
  /* 1 */
  margin-top: 0;
}
/* IE11 */
.uk-range::-ms-thumb {
  /* 1 */
  border: none;
  /* 2 */
  height: 15px;
  width: 15px;
  border-radius: 500px;
  background: #fff;
  border: 1px solid #cccccc;
}
/* Edge + IE11 */
.uk-range::-ms-tooltip {
  display: none;
}
/* Track
 ========================================================================== */
/*
 * 1. Safari doesn't have a focus state. Using active instead.
 */
/* Webkit */
.uk-range::-webkit-slider-runnable-track {
  height: 3px;
  background: #ebebeb;
  border-radius: 500px;
}
.uk-range:focus::-webkit-slider-runnable-track,
.uk-range:active::-webkit-slider-runnable-track {
  background: #d2d2d2;
}
/* Firefox */
.uk-range::-moz-range-track {
  height: 3px;
  background: #ebebeb;
  border-radius: 500px;
}
.uk-range:focus::-moz-range-track {
  background: #d2d2d2;
}
/* Edge */
.uk-range::-ms-fill-lower,
.uk-range::-ms-fill-upper {
  height: 3px;
  background: #ebebeb;
  border-radius: 500px;
}
.uk-range:focus::-ms-fill-lower,
.uk-range:focus::-ms-fill-upper {
  background: #d2d2d2;
}
/* ========================================================================
   Component: Form
 ========================================================================== */
/*
 * 1. Define consistent box sizing.
 *    Default is `content-box` with following exceptions set to `border-box`
 *    `select`, `input[type="checkbox"]` and `input[type="radio"]`
 *    `input[type="search"]` in Chrome, Safari and Opera
 *    `input[type="color"]` in Firefox
 * 2. Address margins set differently in Firefox/IE and Chrome/Safari/Opera.
 * 3. Remove `border-radius` in iOS.
 * 4. Change font properties to `inherit` in all browsers.
 */
.uk-input,
.uk-select,
.uk-textarea,
.uk-radio,
.uk-checkbox {
  /* 1 */
  box-sizing: border-box;
  /* 2 */
  margin: 0;
  /* 3 */
  border-radius: 0;
  /* 4 */
  font: inherit;
}
/*
 * Show the overflow in Edge.
 */
.uk-input {
  overflow: visible;
}
/*
 * Remove the inheritance of text transform in Firefox.
 */
.uk-select {
  text-transform: none;
}
/*
 * 1. Change font properties to `inherit` in all browsers
 * 2. Don't inherit the `font-weight` and use `bold` instead.
 * NOTE: Both declarations don't work in Chrome, Safari and Opera.
 */
.uk-select optgroup {
  /* 1 */
  font: inherit;
  /* 2 */
  font-weight: bold;
}
/*
 * Remove the default vertical scrollbar in IE 10+.
 */
.uk-textarea {
  overflow: auto;
}
/*
 * Remove the inner padding and cancel buttons in Chrome on OS X and Safari on OS X.
 */
.uk-input[type="search"]::-webkit-search-cancel-button,
.uk-input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
.uk-input[type="number"]::-webkit-inner-spin-button,
.uk-input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/*
 * Removes placeholder transparency in Firefox.
 */
.uk-input::-moz-placeholder,
.uk-textarea::-moz-placeholder {
  opacity: 1;
}
/*
 * Improves consistency of cursor style for clickable elements
 */
.uk-radio:not(:disabled),
.uk-checkbox:not(:disabled) {
  cursor: pointer;
}
/*
 * Define consistent border, margin, and padding.
 */
.uk-fieldset {
  border: none;
  margin: 0;
  padding: 0;
}
/* Input, select and textarea
 * Allowed: `text`, `password`, `datetime`, `datetime-local`, `date`,  `month`,
            `time`, `week`, `number`, `email`, `url`, `search`, `tel`, `color`
 * Disallowed: `range`, `radio`, `checkbox`, `file`, `submit`, `reset` and `image`
 ========================================================================== */
/*
 * Remove default style in iOS.
 */
.uk-input,
.uk-textarea {
  -webkit-appearance: none;
}
/*
 * 1. Prevent content overflow if a fixed width is used
 * 2. Take the full width
 * 3. Reset default
 * 4. Style
 */
.uk-input,
.uk-select,
.uk-textarea {
  /* 1 */
  max-width: 100%;
  /* 2 */
  width: 100%;
  /* 3 */
  border: 0 none;
  /* 4 */
  padding: 0 10px;
  background: #fff;
  color: #666;
  border: 1px solid #e5e5e5;
  transition: 0.2s ease-in-out;
  transition-property: color, background-color, border;
}
/*
 * Single-line
 * 1. Allow any element to look like an `input` or `select` element
 * 2. Make sure line-height is not larger than height
 *    Also needed to center the text vertically
 */
.uk-input,
.uk-select:not([multiple]):not([size]) {
  height: 40px;
  vertical-align: middle;
  /* 1 */
  display: inline-block;
}
/* 2 */
.uk-input:not(input),
.uk-select:not(select) {
  line-height: 38px;
}
/*
 * Multi-line
 */
.uk-select[multiple],
.uk-select[size],
.uk-textarea {
  padding-top: 4px;
  padding-bottom: 4px;
  vertical-align: top;
}
/* Focus */
.uk-input:focus,
.uk-select:focus,
.uk-textarea:focus {
  outline: none;
  background-color: #fff;
  color: #666;
  border-color: #1e87f0;
}
/* Disabled */
.uk-input:disabled,
.uk-select:disabled,
.uk-textarea:disabled {
  background-color: #f8f8f8;
  color: #999;
  border-color: #e5e5e5;
}
/*
 * Placeholder
 */
.uk-input::-ms-input-placeholder {
  color: #999 !important;
}
.uk-input::placeholder {
  color: #999;
}
.uk-textarea::-ms-input-placeholder {
  color: #999 !important;
}
.uk-textarea::placeholder {
  color: #999;
}
/* Style modifier (`uk-input`, `uk-select` and `uk-textarea`)
 ========================================================================== */
/*
 * Small
 */
.uk-form-small {
  font-size: 0.875rem;
}
.uk-form-small:not(textarea):not([multiple]):not([size]) {
  height: 30px;
  padding-left: 8px;
  padding-right: 8px;
}
.uk-form-small:not(select):not(input):not(textarea) {
  line-height: 28px;
}
/*
 * Large
 */
.uk-form-large {
  font-size: 1.25rem;
}
.uk-form-large:not(textarea):not([multiple]):not([size]) {
  height: 55px;
  padding-left: 12px;
  padding-right: 12px;
}
.uk-form-large:not(select):not(input):not(textarea) {
  line-height: 53px;
}
/* Style modifier (`uk-input`, `uk-select` and `uk-textarea`)
 ========================================================================== */
/*
 * Error
 */
.uk-form-danger,
.uk-form-danger:focus {
  color: #f0506e;
  border-color: #f0506e;
}
/*
 * Success
 */
.uk-form-success,
.uk-form-success:focus {
  color: #32d296;
  border-color: #32d296;
}
/*
 * Blank
 */
.uk-form-blank {
  background: none;
  border-color: transparent;
}
.uk-form-blank:focus {
  border-color: #e5e5e5;
  border-style: dashed;
}
/* Width modifiers (`uk-input`, `uk-select` and `uk-textarea`)
 ========================================================================== */
/*
 * Fixed widths
 * Different widths for mini sized `input` and `select` elements
 */
input.uk-form-width-xsmall {
  width: 50px;
}
select.uk-form-width-xsmall {
  width: 75px;
}
.uk-form-width-small {
  width: 130px;
}
.uk-form-width-medium {
  width: 200px;
}
.uk-form-width-large {
  width: 500px;
}
/* Select
 ========================================================================== */
/*
 * 1. Remove default style. Also works in Firefox
 * 2. Style
 * 3. Remove default style in IE 10/11
 * 4. Set `color` for options in the select dropdown, because the inherited `color` might be too light.
 */
.uk-select:not([multiple]):not([size]) {
  /* 1 */
  -webkit-appearance: none;
  -moz-appearance: none;
  /* 2 */
  padding-right: 20px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2224%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23666%22%20points%3D%2212%201%209%206%2015%206%22%20%2F%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23666%22%20points%3D%2212%2013%209%208%2015%208%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
  background-repeat: no-repeat;
  background-position: 100% 50%;
}
/* 3 */
.uk-select:not([multiple]):not([size])::-ms-expand {
  display: none;
}
/* 4 */
.uk-select:not([multiple]):not([size]) option {
  color: #444;
}
/*
 * Disabled
 */
.uk-select:not([multiple]):not([size]):disabled {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2224%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23999%22%20points%3D%2212%201%209%206%2015%206%22%20%2F%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23999%22%20points%3D%2212%2013%209%208%2015%208%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
}
/* Datalist
 ========================================================================== */
/*
 * 1. Remove default style in Chrome
 */
.uk-input[list] {
  padding-right: 20px;
  background-repeat: no-repeat;
  background-position: 100% 50%;
}
.uk-input[list]:hover,
.uk-input[list]:focus {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2224%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23666%22%20points%3D%2212%2012%208%206%2016%206%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
}
/* 1 */
.uk-input[list]::-webkit-calendar-picker-indicator {
  display: none;
}
/* Radio and checkbox
 * Note: Does not work in IE11
 ========================================================================== */
/*
 * 1. Style
 * 2. Make box more robust so it clips the child element
 * 3. Vertical alignment
 * 4. Remove default style
 * 5. Fix black background on iOS
 * 6. Center icons
 */
.uk-radio,
.uk-checkbox {
  /* 1 */
  display: inline-block;
  height: 16px;
  width: 16px;
  /* 2 */
  overflow: hidden;
  /* 3 */
  margin-top: -4px;
  vertical-align: middle;
  /* 4 */
  -webkit-appearance: none;
  -moz-appearance: none;
  /* 5 */
  background-color: transparent;
  /* 6 */
  background-repeat: no-repeat;
  background-position: 50% 50%;
  border: 1px solid #cccccc;
  transition: 0.2s ease-in-out;
  transition-property: background-color, border;
}
.uk-radio {
  border-radius: 50%;
}
/* Focus */
.uk-radio:focus,
.uk-checkbox:focus {
  outline: none;
  border-color: #1e87f0;
}
/*
 * Checked
 */
.uk-radio:checked,
.uk-checkbox:checked,
.uk-checkbox:indeterminate {
  background-color: #1e87f0;
  border-color: transparent;
}
/* Focus */
.uk-radio:checked:focus,
.uk-checkbox:checked:focus,
.uk-checkbox:indeterminate:focus {
  background-color: #0e6dcd;
}
/*
 * Icons
 */
.uk-radio:checked {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22%23fff%22%20cx%3D%228%22%20cy%3D%228%22%20r%3D%222%22%20%2F%3E%0A%3C%2Fsvg%3E");
}
.uk-checkbox:checked {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2211%22%20viewBox%3D%220%200%2014%2011%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23fff%22%20points%3D%2212%201%205%207.5%202%205%201%205.5%205%2010%2013%201.5%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
}
.uk-checkbox:indeterminate {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Crect%20fill%3D%22%23fff%22%20x%3D%223%22%20y%3D%228%22%20width%3D%2210%22%20height%3D%221%22%20%2F%3E%0A%3C%2Fsvg%3E");
}
/*
 * Disabled
 */
.uk-radio:disabled,
.uk-checkbox:disabled {
  background-color: #f8f8f8;
  border-color: #e5e5e5;
}
.uk-radio:disabled:checked {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22%23999%22%20cx%3D%228%22%20cy%3D%228%22%20r%3D%222%22%20%2F%3E%0A%3C%2Fsvg%3E");
}
.uk-checkbox:disabled:checked {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2211%22%20viewBox%3D%220%200%2014%2011%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23999%22%20points%3D%2212%201%205%207.5%202%205%201%205.5%205%2010%2013%201.5%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
}
.uk-checkbox:disabled:indeterminate {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Crect%20fill%3D%22%23999%22%20x%3D%223%22%20y%3D%228%22%20width%3D%2210%22%20height%3D%221%22%20%2F%3E%0A%3C%2Fsvg%3E");
}
/* Legend
 ========================================================================== */
/*
 * Legend
 * 1. Behave like block element
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove padding so people aren't caught out if they zero out fieldsets.
 * 4. Style
 */
.uk-legend {
  /* 1 */
  width: 100%;
  /* 2 */
  color: inherit;
  /* 3 */
  padding: 0;
  /* 4 */
  font-size: 1.5rem;
  line-height: 1.4;
}
/* Custom controls
 ========================================================================== */
/*
 * 1. Container fits its content
 * 2. Create position context
 * 3. Prevent content overflow
 * 4. Behave like most inline-block elements
 */
.uk-form-custom {
  /* 1 */
  display: inline-block;
  /* 2 */
  position: relative;
  /* 3 */
  max-width: 100%;
  /* 4 */
  vertical-align: middle;
}
/*
 * 1. Position and resize the form control to always cover its container
 * 2. Required for Firefox for positioning to the left
 * 3. Required for Webkit to make `height` work
 * 4. Hide controle and show cursor
 * 5. Needed for the cursor
 * 6. Clip height caused by 5. Needed for Webkit only
 */
.uk-form-custom select,
.uk-form-custom input[type="file"] {
  /* 1 */
  position: absolute;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  /* 2 */
  left: 0;
  /* 3 */
  -webkit-appearance: none;
  /* 4 */
  opacity: 0;
  cursor: pointer;
}
.uk-form-custom input[type="file"] {
  /* 5 */
  font-size: 500px;
  /* 6 */
  overflow: hidden;
}
/* Label
 ========================================================================== */
.uk-form-label {
  color: #333;
  font-size: 0.875rem;
}
/* Layout
 ========================================================================== */
/*
 * Stacked
 */
.uk-form-stacked .uk-form-label {
  display: block;
  margin-bottom: 5px;
}
/*
 * Horizontal
 */
/* Tablet portrait and smaller */
@media (max-width: 959px) {
  /* Behave like `uk-form-stacked` */
  .uk-form-horizontal .uk-form-label {
    display: block;
    margin-bottom: 5px;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-form-horizontal .uk-form-label {
    width: 200px;
    margin-top: 7px;
    float: left;
  }
  .uk-form-horizontal .uk-form-controls {
    margin-left: 215px;
  }
  /* Better vertical alignment if controls are checkboxes and radio buttons with text */
  .uk-form-horizontal .uk-form-controls-text {
    padding-top: 7px;
  }
}
/* Icons
 ========================================================================== */
/*
 * 1. Set position
 * 2. Set width
 * 3. Center icon vertically and horizontally
 * 4. Style
 */
.uk-form-icon {
  /* 1 */
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  /* 2 */
  width: 40px;
  /* 3 */
  display: inline-flex;
  justify-content: center;
  align-items: center;
  /* 4 */
  color: #999;
}
/*
 * Required for `a`.
 */
.uk-form-icon:hover {
  color: #666;
}
/*
 * Make `input` element clickable through icon, e.g. if it's a `span`
 */
.uk-form-icon:not(a):not(button):not(input) {
  pointer-events: none;
}
/*
 * Input padding
 */
.uk-form-icon:not(.uk-form-icon-flip) ~ .uk-input {
  padding-left: 40px !important;
}
/*
 * Position modifier
 */
.uk-form-icon-flip {
  right: 0;
  left: auto;
}
.uk-form-icon-flip ~ .uk-input {
  padding-right: 40px !important;
}
/* ========================================================================
   Component: Button
 ========================================================================== */
/*
 * 1. Remove margins in Chrome, Safari and Opera.
 * 2. Remove borders for `button`.
 * 3. Address `overflow` set to `hidden` in IE.
 * 4. Correct `font` properties and `color` not being inherited for `button`.
 * 5. Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 6. Remove default style for `input type="submit"`in iOS.
 * 7. Style
 * 8. `line-height` is used to create a height because it also centers the text vertically for `a` elements.
 *    Better would be to use height and flexbox to center the text vertically but flexbox doesn't work in Firefox on `button` elements.
 * 9. Align text if button has a width
 * 10. Required for `a`.
 */
.uk-button {
  /* 1 */
  margin: 0;
  /* 2 */
  border: none;
  /* 3 */
  overflow: visible;
  /* 4 */
  font: inherit;
  color: inherit;
  /* 5 */
  text-transform: none;
  /* 6 */
  -webkit-appearance: none;
  border-radius: 0;
  /* 7 */
  display: inline-block;
  box-sizing: border-box;
  padding: 0 30px;
  vertical-align: middle;
  font-size: 0.875rem;
  /* 8 */
  line-height: 38px;
  /* 9 */
  text-align: center;
  /* 10 */
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.1s ease-in-out;
  transition-property: color, background-color, border-color;
}
.uk-button:not(:disabled) {
  cursor: pointer;
}
/*
 * Remove the inner border and padding in Firefox.
 */
.uk-button::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/* Hover */
.uk-button:hover {
  /* 9 */
  text-decoration: none;
}
/* Focus */
.uk-button:focus {
  outline: none;
}
/* OnClick + Active */
/* Style modifiers
 ========================================================================== */
/*
 * Default
 */
.uk-button-default {
  background-color: transparent;
  color: #333;
  border: 1px solid #e5e5e5;
}
/* Hover + Focus */
.uk-button-default:hover,
.uk-button-default:focus {
  background-color: transparent;
  color: #333;
  border-color: #b2b2b2;
}
/* OnClick + Active */
.uk-button-default:active,
.uk-button-default.uk-active {
  background-color: transparent;
  color: #333;
  border-color: #999999;
}
/*
 * Primary
 */
.uk-button-primary {
  background-color: #1e87f0;
  color: #fff;
  border: 1px solid transparent;
}
/* Hover + Focus */
.uk-button-primary:hover,
.uk-button-primary:focus {
  background-color: #0f7ae5;
  color: #fff;
}
/* OnClick + Active */
.uk-button-primary:active,
.uk-button-primary.uk-active {
  background-color: #0e6dcd;
  color: #fff;
}
/*
 * Secondary
 */
.uk-button-secondary {
  background-color: #222;
  color: #fff;
  border: 1px solid transparent;
}
/* Hover + Focus */
.uk-button-secondary:hover,
.uk-button-secondary:focus {
  background-color: #151515;
  color: #fff;
}
/* OnClick + Active */
.uk-button-secondary:active,
.uk-button-secondary.uk-active {
  background-color: #080808;
  color: #fff;
}
/*
 * Danger
 */
.uk-button-danger {
  background-color: #f0506e;
  color: #fff;
  border: 1px solid transparent;
}
/* Hover + Focus */
.uk-button-danger:hover,
.uk-button-danger:focus {
  background-color: #ee395b;
  color: #fff;
}
/* OnClick + Active */
.uk-button-danger:active,
.uk-button-danger.uk-active {
  background-color: #ec2147;
  color: #fff;
}
/*
 * Disabled
 * The same for all style modifiers
 */
.uk-button-default:disabled,
.uk-button-primary:disabled,
.uk-button-secondary:disabled,
.uk-button-danger:disabled {
  background-color: transparent;
  color: #999;
  border-color: #e5e5e5;
}
/* Size modifiers
 ========================================================================== */
.uk-button-small {
  padding: 0 15px;
  line-height: 28px;
  font-size: 0.875rem;
}
.uk-button-large {
  padding: 0 40px;
  line-height: 53px;
  font-size: 0.875rem;
}
/* Text modifiers
 ========================================================================== */
/*
 * Text
 * 1. Reset
 * 2. Style
 */
.uk-button-text {
  /* 1 */
  padding: 0;
  line-height: 1.5;
  background: none;
  /* 2 */
  color: #333;
  position: relative;
}
.uk-button-text::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 100%;
  border-bottom: 1px solid #333;
  transition: right 0.3s ease-out;
}
/* Hover + Focus */
.uk-button-text:hover,
.uk-button-text:focus {
  color: #333;
}
.uk-button-text:hover::before,
.uk-button-text:focus::before {
  right: 0;
}
/* Disabled */
.uk-button-text:disabled {
  color: #999;
}
.uk-button-text:disabled::before {
  display: none;
}
/*
 * Link
 * 1. Reset
 * 2. Style
 */
.uk-button-link {
  /* 1 */
  padding: 0;
  line-height: 1.5;
  background: none;
  /* 2 */
  color: #1e87f0;
}
/* Hover + Focus */
.uk-button-link:hover,
.uk-button-link:focus {
  color: #0f6ecd;
  text-decoration: underline;
}
/* Disabled */
.uk-button-link:disabled {
  color: #999;
  text-decoration: none;
}
/* Group
 ========================================================================== */
/*
 * 1. Using `flex` instead of `inline-block` to prevent whitespace betweent child elements
 * 2. Behave like button
 * 3. Create position context
 */
.uk-button-group {
  /* 1 */
  display: inline-flex;
  /* 2 */
  vertical-align: middle;
  /* 3 */
  position: relative;
}
/* Group
     ========================================================================== */
/*
     * Collapse border
     */
.uk-button-group > .uk-button:nth-child(n+2),
.uk-button-group > div:nth-child(n+2) .uk-button {
  margin-left: -1px;
}
/*
     * Create position context to superimpose the successor elements border
     * Known issue: If you use an `a` element as button and an icon inside,
     * the active state will not work if you click the icon inside the button
     * Workaround: Just use a `button` or `input` element as button
     */
.uk-button-group .uk-button:hover,
.uk-button-group .uk-button:focus,
.uk-button-group .uk-button:active,
.uk-button-group .uk-button.uk-active {
  position: relative;
  z-index: 1;
}
/* ========================================================================
   Component: Progress
 ========================================================================== */
/*
 * 1. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 * 2. Remove default style
 * 3. Behave like a block element
 * 4. Remove borders in Firefox and Edge
 * 5. Set background color for progress container in Firefox, IE11 and Edge
 * 6. Style
 */
.uk-progress {
  /* 1 */
  vertical-align: baseline;
  /* 2 */
  -webkit-appearance: none;
  -moz-appearance: none;
  /* 3 */
  display: block;
  width: 100%;
  /* 4 */
  border: 0;
  /* 5 */
  background-color: #f8f8f8;
  /* 6 */
  margin-bottom: 20px;
  height: 15px;
  border-radius: 500px;
  overflow: hidden;
}
/* Add margin if adjacent element */
* + .uk-progress {
  margin-top: 20px;
}
/*
 * Remove animated circles for indeterminate state in IE11 and Edge
 */
.uk-progress:indeterminate {
  color: transparent;
}
/*
 * Progress container
 * 2. Remove progress bar for indeterminate state in Firefox
 */
.uk-progress::-webkit-progress-bar {
  background-color: #f8f8f8;
  border-radius: 500px;
  overflow: hidden;
}
/* 2 */
.uk-progress:indeterminate::-moz-progress-bar {
  width: 0;
}
/*
 * Progress bar
 * 1. Remove right border in IE11 and Edge
 */
.uk-progress::-webkit-progress-value {
  background-color: #1e87f0;
  transition: width 0.6s ease;
}
.uk-progress::-moz-progress-bar {
  background-color: #1e87f0;
}
.uk-progress::-ms-fill {
  background-color: #1e87f0;
  transition: width 0.6s ease;
  /* 1 */
  border: 0;
}
/* ========================================================================
   Component: Section
 ========================================================================== */
/*
 * 1. Make it work with `100vh` and height in general
 */
.uk-section {
  display: flow-root;
  box-sizing: border-box;
  /* 1 */
  padding-top: 40px;
  padding-bottom: 40px;
}
/* Desktop and bigger */
@media (min-width: 960px) {
  .uk-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
/*
 * Remove margin from the last-child
 */
.uk-section > :last-child {
  margin-bottom: 0;
}
/* Size modifiers
 ========================================================================== */
/*
 * XSmall
 */
.uk-section-xsmall {
  padding-top: 20px;
  padding-bottom: 20px;
}
/*
 * Small
 */
.uk-section-small {
  padding-top: 40px;
  padding-bottom: 40px;
}
/*
 * Large
 */
.uk-section-large {
  padding-top: 70px;
  padding-bottom: 70px;
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-section-large {
    padding-top: 140px;
    padding-bottom: 140px;
  }
}
/*
 * XLarge
 */
.uk-section-xlarge {
  padding-top: 140px;
  padding-bottom: 140px;
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-section-xlarge {
    padding-top: 210px;
    padding-bottom: 210px;
  }
}
/* Style modifiers
 ========================================================================== */
/*
 * Default
 */
.uk-section-default {
  background: #fff;
}
/*
 * Muted
 */
.uk-section-muted {
  background: #f8f8f8;
}
/*
 * Primary
 */
.uk-section-primary {
  background: #1e87f0;
}
/*
 * Secondary
 */
.uk-section-secondary {
  background: #222;
}
/* Overlap modifier
 ========================================================================== */
/*
 * Reserved modifier to make a section overlap another section with an border image
 * Implemented by the theme
 */
/* ========================================================================
   Component: Container
 ========================================================================== */
/*
 * 1. Box sizing has to be `content-box` so the max-width is always the same and
 *    unaffected by the padding on different breakpoints. It's important for the size modifiers.
 */
.uk-container {
  display: flow-root;
  /* 1 */
  box-sizing: content-box;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
/*
 * Remove margin from the last-child
 */
.uk-container > :last-child {
  margin-bottom: 0;
}
/*
 * Remove padding from nested containers
 */
.uk-container .uk-container {
  padding-left: 0;
  padding-right: 0;
}
/* Size modifier
 ========================================================================== */
.uk-container-xsmall {
  max-width: 750px;
}
.uk-container-small {
  max-width: 900px;
}
.uk-container-large {
  max-width: 1400px;
}
.uk-container-xlarge {
  max-width: 1600px;
}
.uk-container-expand {
  max-width: none;
}
/* Expand modifier
 ========================================================================== */
/*
 * Expand one side only
 */
.uk-container-expand-left {
  margin-left: 0;
}
.uk-container-expand-right {
  margin-right: 0;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-container-expand-left.uk-container-xsmall,
  .uk-container-expand-right.uk-container-xsmall {
    max-width: calc(50% + (750px / 2) - 30px);
  }
  .uk-container-expand-left.uk-container-small,
  .uk-container-expand-right.uk-container-small {
    max-width: calc(50% + (900px / 2) - 30px);
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-container-expand-left,
  .uk-container-expand-right {
    max-width: calc(50% + (1200px / 2) - 40px);
  }
  .uk-container-expand-left.uk-container-xsmall,
  .uk-container-expand-right.uk-container-xsmall {
    max-width: calc(50% + (750px / 2) - 40px);
  }
  .uk-container-expand-left.uk-container-small,
  .uk-container-expand-right.uk-container-small {
    max-width: calc(50% + (900px / 2) - 40px);
  }
  .uk-container-expand-left.uk-container-large,
  .uk-container-expand-right.uk-container-large {
    max-width: calc(50% + (1400px / 2) - 40px);
  }
  .uk-container-expand-left.uk-container-xlarge,
  .uk-container-expand-right.uk-container-xlarge {
    max-width: calc(50% + (1600px / 2) - 40px);
  }
}
/* Item
 ========================================================================== */
/*
 * Utility classes to reset container padding on the left or right side
 * Note: It has to be negative margin on the item, because it's specific to the item.
 */
.uk-container-item-padding-remove-left,
.uk-container-item-padding-remove-right {
  width: calc(100% + 15px);
}
.uk-container-item-padding-remove-left {
  margin-left: -15px;
}
.uk-container-item-padding-remove-right {
  margin-right: -15px;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-container-item-padding-remove-left,
  .uk-container-item-padding-remove-right {
    width: calc(100% + 30px);
  }
  .uk-container-item-padding-remove-left {
    margin-left: -30px;
  }
  .uk-container-item-padding-remove-right {
    margin-right: -30px;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-container-item-padding-remove-left,
  .uk-container-item-padding-remove-right {
    width: calc(100% + 40px);
  }
  .uk-container-item-padding-remove-left {
    margin-left: -40px;
  }
  .uk-container-item-padding-remove-right {
    margin-right: -40px;
  }
}
/* ========================================================================
   Component: Tile
 ========================================================================== */
.uk-tile {
  display: flow-root;
  position: relative;
  box-sizing: border-box;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 40px;
  padding-bottom: 40px;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-tile {
    padding-left: 30px;
    padding-right: 30px;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-tile {
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
/*
 * Remove margin from the last-child
 */
.uk-tile > :last-child {
  margin-bottom: 0;
}
/* Size modifiers
 ========================================================================== */
/*
 * XSmall
 */
.uk-tile-xsmall {
  padding-top: 20px;
  padding-bottom: 20px;
}
/*
 * Small
 */
.uk-tile-small {
  padding-top: 40px;
  padding-bottom: 40px;
}
/*
 * Large
 */
.uk-tile-large {
  padding-top: 70px;
  padding-bottom: 70px;
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-tile-large {
    padding-top: 140px;
    padding-bottom: 140px;
  }
}
/*
 * XLarge
 */
.uk-tile-xlarge {
  padding-top: 140px;
  padding-bottom: 140px;
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-tile-xlarge {
    padding-top: 210px;
    padding-bottom: 210px;
  }
}
/* Style modifiers
 ========================================================================== */
/*
 * Default
 */
.uk-tile-default {
  background: #fff;
}
/*
 * Muted
 */
.uk-tile-muted {
  background: #f8f8f8;
}
/*
 * Primary
 */
.uk-tile-primary {
  background: #1e87f0;
}
/*
 * Secondary
 */
.uk-tile-secondary {
  background: #222;
}
/* ========================================================================
   Component: Card
 ========================================================================== */
.uk-card {
  position: relative;
  box-sizing: border-box;
  transition: box-shadow 0.1s ease-in-out;
}
/* Sections
 ========================================================================== */
.uk-card-body {
  display: flow-root;
  padding: 30px 30px;
}
.uk-card-header {
  display: flow-root;
  padding: 15px 30px;
}
.uk-card-footer {
  display: flow-root;
  padding: 15px 30px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-card-body {
    padding: 40px 40px;
  }
  .uk-card-header {
    padding: 20px 40px;
  }
  .uk-card-footer {
    padding: 20px 40px;
  }
}
/*
 * Remove margin from the last-child
 */
.uk-card-body > :last-child,
.uk-card-header > :last-child,
.uk-card-footer > :last-child {
  margin-bottom: 0;
}
/* Media
 ========================================================================== */
/*
 * Reserved alignment modifier to style the media element, e.g. with `border-radius`
 * Implemented by the theme
 */
/* Title
 ========================================================================== */
.uk-card-title {
  font-size: 1.5rem;
  line-height: 1.4;
}
/* Badge
 ========================================================================== */
.uk-card-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 1;
}
/*
 * Remove margin from adjacent element
 */
.uk-card-badge:first-child + * {
  margin-top: 0;
}
/* Hover modifier
 ========================================================================== */
.uk-card-hover:not(.uk-card-default):not(.uk-card-primary):not(.uk-card-secondary):hover {
  background: #fff;
  box-shadow: 0 14px 25px rgba(0, 0, 0, 0.16);
}
/* Style modifiers
 ========================================================================== */
/*
 * Default
 * Note: Header and Footer are only implemented for the default style
 */
.uk-card-default {
  background: #fff;
  color: #666;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.uk-card-default .uk-card-title {
  color: #333;
}
.uk-card-default.uk-card-hover:hover {
  background-color: #fff;
  box-shadow: 0 14px 25px rgba(0, 0, 0, 0.16);
}
.uk-card-default .uk-card-header {
  border-bottom: 1px solid #e5e5e5;
}
.uk-card-default .uk-card-footer {
  border-top: 1px solid #e5e5e5;
}
/*
 * Primary
 */
.uk-card-primary {
  background: #1e87f0;
  color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.uk-card-primary .uk-card-title {
  color: #fff;
}
.uk-card-primary.uk-card-hover:hover {
  background-color: #1e87f0;
  box-shadow: 0 14px 25px rgba(0, 0, 0, 0.16);
}
/*
 * Secondary
 */
.uk-card-secondary {
  background: #222;
  color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.uk-card-secondary .uk-card-title {
  color: #fff;
}
.uk-card-secondary.uk-card-hover:hover {
  background-color: #222;
  box-shadow: 0 14px 25px rgba(0, 0, 0, 0.16);
}
/* Size modifier
 ========================================================================== */
/*
 * Small
 */
.uk-card-small.uk-card-body,
.uk-card-small .uk-card-body {
  padding: 20px 20px;
}
.uk-card-small .uk-card-header {
  padding: 13px 20px;
}
.uk-card-small .uk-card-footer {
  padding: 13px 20px;
}
/*
 * Large
 */
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-card-large.uk-card-body,
  .uk-card-large .uk-card-body {
    padding: 70px 70px;
  }
  .uk-card-large .uk-card-header {
    padding: 35px 70px;
  }
  .uk-card-large .uk-card-footer {
    padding: 35px 70px;
  }
}
/*
     * Default
     */
.uk-card-body > .uk-nav-default {
  margin-left: -30px;
  margin-right: -30px;
}
.uk-card-body > .uk-nav-default:only-child {
  margin-top: -15px;
  margin-bottom: -15px;
}
.uk-card-body .uk-nav-default > li > a,
.uk-card-body .uk-nav-default .uk-nav-header,
.uk-card-body .uk-nav-default .uk-nav-divider {
  padding-left: 30px;
  padding-right: 30px;
}
.uk-card-body .uk-nav-default .uk-nav-sub {
  padding-left: 45px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-card-body > .uk-nav-default {
    margin-left: -40px;
    margin-right: -40px;
  }
  .uk-card-body > .uk-nav-default:only-child {
    margin-top: -25px;
    margin-bottom: -25px;
  }
  .uk-card-body .uk-nav-default > li > a,
  .uk-card-body .uk-nav-default .uk-nav-header,
  .uk-card-body .uk-nav-default .uk-nav-divider {
    padding-left: 40px;
    padding-right: 40px;
  }
  .uk-card-body .uk-nav-default .uk-nav-sub {
    padding-left: 55px;
  }
}
/*
     * Small
     */
.uk-card-small > .uk-nav-default {
  margin-left: -20px;
  margin-right: -20px;
}
.uk-card-small > .uk-nav-default:only-child {
  margin-top: -5px;
  margin-bottom: -5px;
}
.uk-card-small .uk-nav-default > li > a,
.uk-card-small .uk-nav-default .uk-nav-header,
.uk-card-small .uk-nav-default .uk-nav-divider {
  padding-left: 20px;
  padding-right: 20px;
}
.uk-card-small .uk-nav-default .uk-nav-sub {
  padding-left: 35px;
}
/*
     * Large
     */
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-card-large > .uk-nav-default {
    margin: 0;
  }
  .uk-card-large > .uk-nav-default:only-child {
    margin: 0;
  }
  .uk-card-large .uk-nav-default > li > a,
  .uk-card-large .uk-nav-default .uk-nav-header,
  .uk-card-large .uk-nav-default .uk-nav-divider {
    padding-left: 0;
    padding-right: 0;
  }
  .uk-card-large .uk-nav-default .uk-nav-sub {
    padding-left: 15px;
  }
}
/* ========================================================================
   Component: Close
 ========================================================================== */
/*
 * Adopts `uk-icon`
 */
.uk-close {
  color: #999;
  transition: 0.1s ease-in-out;
  transition-property: color, opacity;
}
/* Hover + Focus */
.uk-close:hover,
.uk-close:focus {
  color: #666;
  outline: none;
}
/* ========================================================================
   Component: Spinner
 ========================================================================== */
/*
 * Adopts `uk-icon`
 */
/* SVG
 ========================================================================== */
.uk-spinner > * {
  animation: uk-spinner-rotate 1.4s linear infinite;
}
@keyframes uk-spinner-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(270deg);
  }
}
/*
 * Circle
 */
.uk-spinner > * > * {
  stroke-dasharray: 88px;
  stroke-dashoffset: 0;
  transform-origin: center;
  animation: uk-spinner-dash 1.4s ease-in-out infinite;
  stroke-width: 1;
  stroke-linecap: round;
}
@keyframes uk-spinner-dash {
  0% {
    stroke-dashoffset: 88px;
  }
  50% {
    stroke-dashoffset: 22px;
    transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 88px;
    transform: rotate(450deg);
  }
}
/* ========================================================================
   Component: Totop
 ========================================================================== */
/*
 * Addopts `uk-icon`
 */
.uk-totop {
  padding: 5px;
  color: #999;
  transition: color 0.1s ease-in-out;
}
/* Hover + Focus */
.uk-totop:hover,
.uk-totop:focus {
  color: #666;
  outline: none;
}
/* OnClick */
.uk-totop:active {
  color: #333;
}
/* ========================================================================
   Component: Marker
 ========================================================================== */
/*
 * Addopts `uk-icon`
 */
.uk-marker {
  padding: 5px;
  background: #222;
  color: #fff;
  border-radius: 500px;
}
/* Hover + Focus */
.uk-marker:hover,
.uk-marker:focus {
  color: #fff;
  outline: none;
}
/* ========================================================================
   Component: Alert
 ========================================================================== */
.uk-alert {
  position: relative;
  margin-bottom: 20px;
  padding: 15px 29px 15px 15px;
  background: #f8f8f8;
  color: #666;
}
/* Add margin if adjacent element */
* + .uk-alert {
  margin-top: 20px;
}
/*
 * Remove margin from the last-child
 */
.uk-alert > :last-child {
  margin-bottom: 0;
}
/* Close
 * Adopts `uk-close`
 ========================================================================== */
.uk-alert-close {
  position: absolute;
  top: 20px;
  right: 15px;
  color: inherit;
  opacity: 0.4;
}
/*
 * Remove margin from adjacent element
 */
.uk-alert-close:first-child + * {
  margin-top: 0;
}
/*
 * Hover + Focus
 */
.uk-alert-close:hover,
.uk-alert-close:focus {
  color: inherit;
  opacity: 0.8;
}
/* Style modifiers
 ========================================================================== */
/*
 * Primary
 */
.uk-alert-primary {
  background: #d8eafc;
  color: #1e87f0;
}
/*
 * Success
 */
.uk-alert-success {
  background: #edfbf6;
  color: #32d296;
}
/*
 * Warning
 */
.uk-alert-warning {
  background: #fff6ee;
  color: #faa05a;
}
/*
 * Danger
 */
.uk-alert-danger {
  background: #fef4f6;
  color: #f0506e;
}
/*
     * Content
     */
.uk-alert h1,
.uk-alert h2,
.uk-alert h3,
.uk-alert h4,
.uk-alert h5,
.uk-alert h6 {
  color: inherit;
}
.uk-alert a:not([class]) {
  color: inherit;
  text-decoration: underline;
}
.uk-alert a:not([class]):hover {
  color: inherit;
  text-decoration: underline;
}
/* ========================================================================
   Component: Placeholder
 ========================================================================== */
.uk-placeholder {
  margin-bottom: 20px;
  padding: 30px 30px;
  background: transparent;
  border: 1px dashed #e5e5e5;
}
/* Add margin if adjacent element */
* + .uk-placeholder {
  margin-top: 20px;
}
/*
 * Remove margin from the last-child
 */
.uk-placeholder > :last-child {
  margin-bottom: 0;
}
/* ========================================================================
   Component: Badge
 ========================================================================== */
/*
 * 1. Style
 * 2. Center child vertically and horizontally
 */
.uk-badge {
  box-sizing: border-box;
  min-width: 22px;
  height: 22px;
  padding: 0 5px;
  border-radius: 500px;
  vertical-align: middle;
  /* 1 */
  background: #1e87f0;
  color: #fff;
  font-size: 0.875rem;
  /* 2 */
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
/*
 * Required for `a`
 */
.uk-badge:hover,
.uk-badge:focus {
  color: #fff;
  text-decoration: none;
  outline: none;
}
/* ========================================================================
   Component: Label
 ========================================================================== */
.uk-label {
  display: inline-block;
  padding: 0 10px;
  background: #1e87f0;
  line-height: 1.5;
  font-size: 0.875rem;
  color: #fff;
  vertical-align: middle;
  white-space: nowrap;
  border-radius: 2px;
  text-transform: uppercase;
}
/* Color modifiers
 ========================================================================== */
/*
 * Success
 */
.uk-label-success {
  background-color: #32d296;
  color: #fff;
}
/*
 * Warning
 */
.uk-label-warning {
  background-color: #faa05a;
  color: #fff;
}
/*
 * Danger
 */
.uk-label-danger {
  background-color: #f0506e;
  color: #fff;
}
/* ========================================================================
   Component: Overlay
 ========================================================================== */
.uk-overlay {
  padding: 30px 30px;
}
/*
 * Remove margin from the last-child
 */
.uk-overlay > :last-child {
  margin-bottom: 0;
}
/* Icon
 ========================================================================== */
/* Style modifiers
 ========================================================================== */
/*
 * Default
 */
.uk-overlay-default {
  background: rgba(255, 255, 255, 0.8);
}
/*
 * Primary
 */
.uk-overlay-primary {
  background: rgba(34, 34, 34, 0.8);
}
/* ========================================================================
   Component: Article
 ========================================================================== */
.uk-article {
  display: flow-root;
}
/*
 * Remove margin from the last-child
 */
.uk-article > :last-child {
  margin-bottom: 0;
}
/* Adjacent sibling
 ========================================================================== */
.uk-article + .uk-article {
  margin-top: 70px;
}
/* Title
 ========================================================================== */
.uk-article-title {
  font-size: 2.23125rem;
  line-height: 1.2;
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-article-title {
    font-size: 2.625rem;
  }
}
/* Meta
 ========================================================================== */
.uk-article-meta {
  font-size: 0.875rem;
  line-height: 1.4;
  color: #999;
}
.uk-article-meta a {
  color: #999;
}
.uk-article-meta a:hover {
  color: #666;
  text-decoration: none;
}
/* ========================================================================
   Component: Comment
 ========================================================================== */
/* Sections
 ========================================================================== */
.uk-comment-body {
  display: flow-root;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.uk-comment-header {
  display: flow-root;
  margin-bottom: 20px;
}
/*
 * Remove margin from the last-child
 */
.uk-comment-body > :last-child,
.uk-comment-header > :last-child {
  margin-bottom: 0;
}
/* Title
 ========================================================================== */
.uk-comment-title {
  font-size: 1.25rem;
  line-height: 1.4;
}
/* Meta
 ========================================================================== */
.uk-comment-meta {
  font-size: 0.875rem;
  line-height: 1.4;
  color: #999;
}
/* Avatar
 ========================================================================== */
/* List
 ========================================================================== */
.uk-comment-list {
  padding: 0;
  list-style: none;
}
/* Adjacent siblings */
.uk-comment-list > :nth-child(n+2) {
  margin-top: 70px;
}
/*
 * Sublists
 * Note: General sibling selector allows reply block between comment and sublist
 */
.uk-comment-list .uk-comment ~ ul {
  margin: 70px 0 0 0;
  padding-left: 30px;
  list-style: none;
}
/* Tablet and bigger */
@media (min-width: 960px) {
  .uk-comment-list .uk-comment ~ ul {
    padding-left: 100px;
  }
}
/* Adjacent siblings */
.uk-comment-list .uk-comment ~ ul > :nth-child(n+2) {
  margin-top: 70px;
}
/* Style modifier
 ========================================================================== */
.uk-comment-primary {
  padding: 30px;
  background-color: #f8f8f8;
}
/* ========================================================================
   Component: Search
 ========================================================================== */
/*
 * 1. Container fits its content
 * 2. Create position context
 * 3. Prevent content overflow
 * 4. Reset `form`
 */
.uk-search {
  /* 1 */
  display: inline-block;
  /* 2 */
  position: relative;
  /* 3 */
  max-width: 100%;
  /* 4 */
  margin: 0;
}
/* Input
 ========================================================================== */
/*
 * Remove the inner padding and cancel buttons in Chrome on OS X and Safari on OS X.
 */
.uk-search-input::-webkit-search-cancel-button,
.uk-search-input::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
 * Removes placeholder transparency in Firefox.
 */
.uk-search-input::-moz-placeholder {
  opacity: 1;
}
/*
 * 1. Define consistent box sizing.
 * 2. Address margins set differently in Firefox/IE and Chrome/Safari/Opera.
 * 3. Remove `border-radius` in iOS.
 * 4. Change font properties to `inherit` in all browsers
 * 5. Show the overflow in Edge.
 * 6. Remove default style in iOS.
 * 7. Vertical alignment
 * 8. Take the full container width
 * 9. Style
 */
.uk-search-input {
  /* 1 */
  box-sizing: border-box;
  /* 2 */
  margin: 0;
  /* 3 */
  border-radius: 0;
  /* 4 */
  font: inherit;
  /* 5 */
  overflow: visible;
  /* 6 */
  -webkit-appearance: none;
  /* 7 */
  vertical-align: middle;
  /* 8 */
  width: 100%;
  /* 9 */
  border: none;
  color: #666;
}
.uk-search-input:focus {
  outline: none;
}
/* Placeholder */
.uk-search-input:-ms-input-placeholder {
  color: #999 !important;
}
.uk-search-input::placeholder {
  color: #999;
}
/* Icon (Adopts `uk-icon`)
 ========================================================================== */
/*
 * Remove default focus style
 */
.uk-search-icon:focus {
  outline: none;
}
/*
 * Position above input
 * 1. Set position
 * 2. Center icon vertically and horizontally
 * 3. Style
 */
.uk-search .uk-search-icon {
  /* 1 */
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  /* 2 */
  display: inline-flex;
  justify-content: center;
  align-items: center;
  /* 3 */
  color: #999;
}
/*
 * Required for `a`.
 */
.uk-search .uk-search-icon:hover {
  color: #999;
}
/*
 * Make `input` element clickable through icon, e.g. if it's a `span`
 */
.uk-search .uk-search-icon:not(a):not(button):not(input) {
  pointer-events: none;
}
/*
 * Position modifier
 */
.uk-search .uk-search-icon-flip {
  right: 0;
  left: auto;
}
/* Default modifier
 ========================================================================== */
.uk-search-default {
  width: 180px;
}
/*
 * Input
 */
.uk-search-default .uk-search-input {
  height: 40px;
  padding-left: 6px;
  padding-right: 6px;
  background: transparent;
  border: 1px solid #e5e5e5;
}
/* Focus */
.uk-search-default .uk-search-input:focus {
  background-color: transparent;
}
/*
 * Icon
 */
.uk-search-default .uk-search-icon {
  width: 40px;
}
.uk-search-default .uk-search-icon:not(.uk-search-icon-flip) ~ .uk-search-input {
  padding-left: 40px;
}
.uk-search-default .uk-search-icon-flip ~ .uk-search-input {
  padding-right: 40px;
}
/* Navbar modifier
 ========================================================================== */
.uk-search-navbar {
  width: 400px;
}
/*
 * Input
 */
.uk-search-navbar .uk-search-input {
  height: 40px;
  background: transparent;
  font-size: 1.5rem;
}
/*
 * Icon
 */
.uk-search-navbar .uk-search-icon {
  width: 40px;
}
.uk-search-navbar .uk-search-icon:not(.uk-search-icon-flip) ~ .uk-search-input {
  padding-left: 40px;
}
.uk-search-navbar .uk-search-icon-flip ~ .uk-search-input {
  padding-right: 40px;
}
/* Large modifier
 ========================================================================== */
.uk-search-large {
  width: 500px;
}
/*
 * Input
 */
.uk-search-large .uk-search-input {
  height: 80px;
  background: transparent;
  font-size: 2.625rem;
}
/*
 * Icon
 */
.uk-search-large .uk-search-icon {
  width: 80px;
}
.uk-search-large .uk-search-icon:not(.uk-search-icon-flip) ~ .uk-search-input {
  padding-left: 80px;
}
.uk-search-large .uk-search-icon-flip ~ .uk-search-input {
  padding-right: 80px;
}
/* Toggle
 ========================================================================== */
.uk-search-toggle {
  color: #999;
}
/* Hover + Focus */
.uk-search-toggle:hover,
.uk-search-toggle:focus {
  color: #666;
}
/* ========================================================================
   Component: Accordion
 ========================================================================== */
.uk-accordion {
  padding: 0;
  list-style: none;
}
/* Item
 ========================================================================== */
.uk-accordion > :nth-child(n+2) {
  margin-top: 20px;
}
/* Title
 ========================================================================== */
.uk-accordion-title {
  display: block;
  font-size: 1.25rem;
  line-height: 1.4;
  color: #333;
  overflow: hidden;
}
.uk-accordion-title::before {
  content: "";
  width: 1.4em;
  height: 1.4em;
  margin-left: 10px;
  float: right;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2213%22%20height%3D%2213%22%20viewBox%3D%220%200%2013%2013%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Crect%20fill%3D%22%23666%22%20width%3D%2213%22%20height%3D%221%22%20x%3D%220%22%20y%3D%226%22%20%2F%3E%0A%20%20%20%20%3Crect%20fill%3D%22%23666%22%20width%3D%221%22%20height%3D%2213%22%20x%3D%226%22%20y%3D%220%22%20%2F%3E%0A%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.uk-open > .uk-accordion-title::before {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2213%22%20height%3D%2213%22%20viewBox%3D%220%200%2013%2013%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Crect%20fill%3D%22%23666%22%20width%3D%2213%22%20height%3D%221%22%20x%3D%220%22%20y%3D%226%22%20%2F%3E%0A%3C%2Fsvg%3E");
}
/* Hover + Focus */
.uk-accordion-title:hover,
.uk-accordion-title:focus {
  color: #666;
  text-decoration: none;
  outline: none;
}
/* Content
 ========================================================================== */
.uk-accordion-content {
  display: flow-root;
  margin-top: 20px;
}
/*
 * Remove margin from the last-child
 */
.uk-accordion-content > :last-child {
  margin-bottom: 0;
}
/* ========================================================================
   Component: Drop
 ========================================================================== */
/*
 * 1. Hide by default
 * 2. Set position
 * 3. Set a default width
 */
.uk-drop {
  /* 1 */
  display: none;
  /* 2 */
  position: absolute;
  z-index: 1020;
  /* 3 */
  box-sizing: border-box;
  width: 300px;
}
/* Show */
.uk-drop.uk-open {
  display: block;
}
/* Direction / Alignment modifiers
 ========================================================================== */
/* Direction */
[class*='uk-drop-top'] {
  margin-top: -20px;
}
[class*='uk-drop-bottom'] {
  margin-top: 20px;
}
[class*='uk-drop-left'] {
  margin-left: -20px;
}
[class*='uk-drop-right'] {
  margin-left: 20px;
}
/* Grid modifiers
 ========================================================================== */
.uk-drop-stack .uk-drop-grid > * {
  width: 100% !important;
}
/* ========================================================================
   Component: Dropdown
 ========================================================================== */
/*
 * 1. Hide by default
 * 2. Set position
 * 3. Set a default width
 * 4. Style
 */
.uk-dropdown {
  /* 1 */
  display: none;
  /* 2 */
  position: absolute;
  z-index: 1020;
  /* 3 */
  box-sizing: border-box;
  min-width: 200px;
  /* 4 */
  padding: 25px;
  background: #fff;
  color: #666;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
}
/* Show */
.uk-dropdown.uk-open {
  display: block;
}
/* Nav
 * Adopts `uk-nav`
 ========================================================================== */
.uk-dropdown-nav {
  white-space: nowrap;
  font-size: 0.875rem;
}
/*
 * Items
 */
.uk-dropdown-nav > li > a {
  color: #999;
}
/* Hover + Focus + Active */
.uk-dropdown-nav > li > a:hover,
.uk-dropdown-nav > li > a:focus,
.uk-dropdown-nav > li.uk-active > a {
  color: #666;
}
/*
 * Header
 */
.uk-dropdown-nav .uk-nav-header {
  color: #333;
}
/*
 * Divider
 */
.uk-dropdown-nav .uk-nav-divider {
  border-top: 1px solid #e5e5e5;
}
/*
 * Sublists
 */
.uk-dropdown-nav .uk-nav-sub a {
  color: #999;
}
.uk-dropdown-nav .uk-nav-sub a:hover,
.uk-dropdown-nav .uk-nav-sub a:focus,
.uk-dropdown-nav .uk-nav-sub li.uk-active > a {
  color: #666;
}
/* Direction / Alignment modifiers
 ========================================================================== */
/* Direction */
[class*='uk-dropdown-top'] {
  margin-top: -10px;
}
[class*='uk-dropdown-bottom'] {
  margin-top: 10px;
}
[class*='uk-dropdown-left'] {
  margin-left: -10px;
}
[class*='uk-dropdown-right'] {
  margin-left: 10px;
}
/* Grid modifiers
 ========================================================================== */
.uk-dropdown-stack .uk-dropdown-grid > * {
  width: 100% !important;
}
/* ========================================================================
   Component: Modal
 ========================================================================== */
/*
 * 1. Hide by default
 * 2. Set position
 * 3. Allow scrolling for the modal dialog
 * 4. Horizontal padding
 * 5. Mask the background page
 * 6. Fade-in transition
 */
.uk-modal {
  /* 1 */
  display: none;
  /* 2 */
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1010;
  /* 3 */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* 4 */
  padding: 15px 15px;
  /* 5 */
  background: rgba(0, 0, 0, 0.6);
  /* 6 */
  opacity: 0;
  transition: opacity 0.15s linear;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-modal {
    padding: 50px 30px;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-modal {
    padding-left: 40px;
    padding-right: 40px;
  }
}
/*
 * Open
 */
.uk-modal.uk-open {
  opacity: 1;
}
/* Page
 ========================================================================== */
/*
 * Prevent scrollbars
 */
.uk-modal-page {
  overflow: hidden;
}
/* Dialog
 ========================================================================== */
/*
 * 1. Create position context for spinner and close button
 * 2. Dimensions
 * 3. Fix `max-width: 100%` not working in combination with flex and responsive images in IE11
 *    `!important` needed to overwrite `uk-width-auto`. See `#modal-media-image` in tests
 * 4. Style
 * 5. Slide-in transition
 */
.uk-modal-dialog {
  /* 1 */
  position: relative;
  /* 2 */
  box-sizing: border-box;
  margin: 0 auto;
  width: 600px;
  /* 3 */
  max-width: calc(100% - 0.01px) !important;
  /* 4 */
  background: #fff;
  /* 5 */
  opacity: 0;
  transform: translateY(-100px);
  transition: 0.3s linear;
  transition-property: opacity, transform;
}
/*
 * Open
 */
.uk-open > .uk-modal-dialog {
  opacity: 1;
  transform: translateY(0);
}
/* Size modifier
 ========================================================================== */
/*
 * Container size
 * Take the same size as the Container component
 */
.uk-modal-container .uk-modal-dialog {
  width: 1200px;
}
/*
 * Full size
 * 1. Remove padding and background from modal
 * 2. Reset all default declarations from modal dialog
 */
/* 1 */
.uk-modal-full {
  padding: 0;
  background: none;
}
/* 2 */
.uk-modal-full .uk-modal-dialog {
  margin: 0;
  width: 100%;
  max-width: 100%;
  transform: translateY(0);
}
/* Sections
 ========================================================================== */
.uk-modal-body {
  display: flow-root;
  padding: 30px 30px;
}
.uk-modal-header {
  display: flow-root;
  padding: 15px 30px;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
}
.uk-modal-footer {
  display: flow-root;
  padding: 15px 30px;
  background: #fff;
  border-top: 1px solid #e5e5e5;
}
/*
 * Remove margin from the last-child
 */
.uk-modal-body > :last-child,
.uk-modal-header > :last-child,
.uk-modal-footer > :last-child {
  margin-bottom: 0;
}
/* Title
 ========================================================================== */
.uk-modal-title {
  font-size: 2rem;
  line-height: 1.3;
}
/* Close
 * Adopts `uk-close`
 ========================================================================== */
[class*='uk-modal-close-'] {
  position: absolute;
  z-index: 1010;
  top: 10px;
  right: 10px;
  padding: 5px;
}
/*
 * Remove margin from adjacent element
 */
[class*='uk-modal-close-']:first-child + * {
  margin-top: 0;
}
/*
 * Hover
 */
/*
 * Default
 */
/*
 * Outside
 * 1. Prevent scrollbar on small devices
 */
.uk-modal-close-outside {
  top: 0;
  /* 1 */
  right: -5px;
  transform: translate(0, -100%);
  color: #ffffff;
}
.uk-modal-close-outside:hover {
  color: #fff;
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  /* 1 */
  .uk-modal-close-outside {
    right: 0;
    transform: translate(100%, -100%);
  }
}
/*
 * Full
 */
.uk-modal-close-full {
  top: 0;
  right: 0;
  padding: 20px;
  background: #fff;
}
/* ========================================================================
   Component: Lightbox
 ========================================================================== */
/*
 * 1. Hide by default
 * 2. Set position
 * 3. Allow scrolling for the modal dialog
 * 4. Horizontal padding
 * 5. Mask the background page
 * 6. Fade-in transition
 * 7. Prevent cancellation of pointer events while dragging
 */
.uk-lightbox {
  /* 1 */
  display: none;
  /* 2 */
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1010;
  /* 5 */
  background: #000;
  /* 6 */
  opacity: 0;
  transition: opacity 0.15s linear;
  /* 7 */
  touch-action: pinch-zoom;
}
/*
 * Open
 * 1. Center child
 * 2. Fade-in
 */
.uk-lightbox.uk-open {
  display: block;
  /* 2 */
  opacity: 1;
}
/* Page
 ========================================================================== */
/*
 * Prevent scrollbars
 */
.uk-lightbox-page {
  overflow: hidden;
}
/* Item
 ========================================================================== */
/*
 * 1. Center child within the viewport
 * 2. Not visible by default
 * 3. Color needed for spinner icon
 * 4. Optimize animation
 * 5. Responsiveness
 *    Using `vh` for `max-height` to fix image proportions after resize in Safari and Opera
 *    Using `vh` and `vw` to make responsive image work in IE11
 * 6. Suppress outline on focus
 */
.uk-lightbox-items > * {
  /* 1 */
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /* 2 */
  display: none;
  justify-content: center;
  align-items: center;
  /* 3 */
  color: rgba(255, 255, 255, 0.7);
  /* 4 */
  will-change: transform, opacity;
}
/* 5 */
.uk-lightbox-items > * > * {
  max-width: 100vw;
  max-height: 100vh;
}
/* 6 */
.uk-lightbox-items > :focus {
  outline: none;
}
.uk-lightbox-items > * > :not(iframe) {
  width: auto;
  height: auto;
}
.uk-lightbox-items > .uk-active {
  display: flex;
}
/* Toolbar
 ========================================================================== */
.uk-lightbox-toolbar {
  padding: 10px 10px;
  background: rgba(0, 0, 0, 0.3);
  color: rgba(255, 255, 255, 0.7);
}
.uk-lightbox-toolbar > * {
  color: rgba(255, 255, 255, 0.7);
}
/* Toolbar Icon (Close)
 ========================================================================== */
.uk-lightbox-toolbar-icon {
  padding: 5px;
  color: rgba(255, 255, 255, 0.7);
}
/*
 * Hover
 */
.uk-lightbox-toolbar-icon:hover {
  color: #fff;
}
/* Button (Slidenav)
 ========================================================================== */
/*
 * 1. Center icon vertically and horizontally
 */
.uk-lightbox-button {
  box-sizing: border-box;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.3);
  color: rgba(255, 255, 255, 0.7);
  /* 1 */
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
/*
 * Hover
 */
.uk-lightbox-button:hover {
  color: #fff;
}
/* Caption
 ========================================================================== */
.uk-lightbox-caption:empty {
  display: none;
}
/* Iframe
 ========================================================================== */
.uk-lightbox-iframe {
  width: 80%;
  height: 80%;
}
/* ========================================================================
   Component: Slideshow
 ========================================================================== */
/*
 * 1. Prevent tab highlighting on iOS.
 */
.uk-slideshow {
  /* 1 */
  -webkit-tap-highlight-color: transparent;
}
/* Items
 ========================================================================== */
/*
 * 1. Create position and stacking context
 * 2. Reset list
 * 3. Clip child elements
 * 4. Prevent displaying the callout information on iOS.
 */
.uk-slideshow-items {
  /* 1 */
  position: relative;
  z-index: 0;
  /* 2 */
  margin: 0;
  padding: 0;
  list-style: none;
  /* 3 */
  overflow: hidden;
  /* 4 */
  -webkit-touch-callout: none;
}
/* Item
 ========================================================================== */
/*
 * 1. Position items above each other
 * 2. Take the full width
 * 3. Clip child elements, e.g. for `uk-cover`
 * 4. Optimize animation
 * 5. Disable horizontal panning gestures in IE11 and Edge
 * 6. Suppress outline on focus
 */
.uk-slideshow-items > * {
  /* 1 */
  position: absolute;
  top: 0;
  left: 0;
  /* 2 */
  right: 0;
  bottom: 0;
  /* 3 */
  overflow: hidden;
  /* 4 */
  will-change: transform, opacity;
  /* 5 */
  touch-action: pan-y;
}
/* 6 */
.uk-slideshow-items > :focus {
  outline: none;
}
/*
 * Hide not active items
 */
.uk-slideshow-items > :not(.uk-active) {
  display: none;
}
/* ========================================================================
   Component: Slider
 ========================================================================== */
/*
 * 1. Prevent tab highlighting on iOS.
 */
.uk-slider {
  /* 1 */
  -webkit-tap-highlight-color: transparent;
}
/* Container
 ========================================================================== */
/*
 * 1. Clip child elements
 */
.uk-slider-container {
  /* 1 */
  overflow: hidden;
}
/* Items
 ========================================================================== */
/*
 * 1. Optimize animation
 * 2. Create a containing block. In Safari it's neither created by `transform` nor `will-change`.
 */
.uk-slider-items {
  /* 1 */
  will-change: transform;
  /* 2 */
  position: relative;
}
/*
 * 1. Reset list style without interfering with grid
 * 2. Prevent displaying the callout information on iOS.
 */
.uk-slider-items:not(.uk-grid) {
  display: flex;
  /* 1 */
  margin: 0;
  padding: 0;
  list-style: none;
  /* 2 */
  -webkit-touch-callout: none;
}
.uk-slider-items.uk-grid {
  flex-wrap: nowrap;
}
/* Item
 ========================================================================== */
/*
 * 1. Let items take content dimensions (0 0 auto)
 * 2. Create position context
 * 3. Disable horizontal panning gestures in IE11 and Edge
 * 4. Suppress outline on focus
 */
.uk-slider-items > * {
  /* 1 */
  flex: none;
  /* 2 */
  position: relative;
  /* 3 */
  touch-action: pan-y;
}
/* 4 */
.uk-slider-items > :focus {
  outline: none;
}
/* ========================================================================
   Component: Sticky
 ========================================================================== */
/*
 * 1. Resolve frame rate issues on devices with lower frame rates by forcing hardware acceleration
 */
.uk-sticky-fixed {
  z-index: 980;
  box-sizing: border-box;
  margin: 0 !important;
  /* 1 */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
/*
 * Faster animations
 */
.uk-sticky[class*='uk-animation-'] {
  animation-duration: 0.2s;
}
.uk-sticky.uk-animation-reverse {
  animation-duration: 0.2s;
}
/* ========================================================================
   Component: Off-canvas
 ========================================================================== */
/*
 * 1. Hide by default
 * 2. Set position
 */
.uk-offcanvas {
  /* 1 */
  display: none;
  /* 2 */
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
}
/*
 * Flip modifier
 */
.uk-offcanvas-flip .uk-offcanvas {
  right: 0;
  left: auto;
}
/* Bar
 ========================================================================== */
/*
 * 1. Set position
 * 2. Size and style
 * 3. Allow scrolling
 */
.uk-offcanvas-bar {
  /* 1 */
  position: absolute;
  top: 0;
  bottom: 0;
  left: -270px;
  /* 2 */
  box-sizing: border-box;
  width: 270px;
  padding: 20px 20px;
  background: #222;
  /* 3 */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-offcanvas-bar {
    left: -350px;
    width: 350px;
    padding: 40px 40px;
  }
}
/* Flip modifier */
.uk-offcanvas-flip .uk-offcanvas-bar {
  left: auto;
  right: -270px;
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-offcanvas-flip .uk-offcanvas-bar {
    right: -350px;
  }
}
/*
 * Open
 */
.uk-open > .uk-offcanvas-bar {
  left: 0;
}
.uk-offcanvas-flip .uk-open > .uk-offcanvas-bar {
  left: auto;
  right: 0;
}
/*
 * Slide Animation (Used in slide and push mode)
 */
.uk-offcanvas-bar-animation {
  transition: left 0.3s ease-out;
}
.uk-offcanvas-flip .uk-offcanvas-bar-animation {
  transition-property: right;
}
/*
 * Reveal Animation
 * 1. Set position
 * 2. Clip the bar
 * 3. Animation
 * 4. Reset position
 */
.uk-offcanvas-reveal {
  /* 1 */
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  /* 2 */
  width: 0;
  overflow: hidden;
  /* 3 */
  transition: width 0.3s ease-out;
}
.uk-offcanvas-reveal .uk-offcanvas-bar {
  /* 4 */
  left: 0;
}
.uk-offcanvas-flip .uk-offcanvas-reveal .uk-offcanvas-bar {
  /* 4 */
  left: auto;
  right: 0;
}
.uk-open > .uk-offcanvas-reveal {
  width: 270px;
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-open > .uk-offcanvas-reveal {
    width: 350px;
  }
}
/*
 * Flip modifier
 */
.uk-offcanvas-flip .uk-offcanvas-reveal {
  right: 0;
  left: auto;
}
/* Close
 * Adopts `uk-close`
 ========================================================================== */
.uk-offcanvas-close {
  position: absolute;
  z-index: 1000;
  top: 20px;
  right: 20px;
  padding: 5px;
}
/* Overlay
 ========================================================================== */
/*
 * Overlay the whole page. Needed for the `::before`
 * 1. Using `100vw` so no modification is needed when off-canvas is flipped
 * 2. Allow for closing with swipe gesture on devices with pointer events.
 */
.uk-offcanvas-overlay {
  /* 1 */
  width: 100vw;
  /* 2 */
  touch-action: none;
}
/*
 * 1. Mask the whole page
 * 2. Fade-in transition
 */
.uk-offcanvas-overlay::before {
  /* 1 */
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.1);
  /* 2 */
  opacity: 0;
  transition: opacity 0.15s linear;
}
.uk-offcanvas-overlay.uk-open::before {
  opacity: 1;
}
/* Prevent scrolling
 ========================================================================== */
/*
 * Prevent horizontal scrollbar when the content is slide-out
 * Has to be on the `html` element too to make it work on the `body`
 */
.uk-offcanvas-page,
.uk-offcanvas-container {
  overflow-x: hidden;
}
/* Container
 ========================================================================== */
/*
 * Prepare slide-out animation (Used in reveal and push mode)
 * Using `position: left` instead of `transform` because position `fixed` elements like sticky navbars
 * lose their fixed state and behaves like `absolute` within a transformed container
 * 1. Provide a fixed width and prevent shrinking
 */
.uk-offcanvas-container {
  position: relative;
  left: 0;
  transition: left 0.3s ease-out;
  /* 1 */
  box-sizing: border-box;
  width: 100%;
}
/*
 * Activate slide-out animation
 */
:not(.uk-offcanvas-flip).uk-offcanvas-container-animation {
  left: 270px;
}
.uk-offcanvas-flip.uk-offcanvas-container-animation {
  left: -270px;
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  :not(.uk-offcanvas-flip).uk-offcanvas-container-animation {
    left: 350px;
  }
  .uk-offcanvas-flip.uk-offcanvas-container-animation {
    left: -350px;
  }
}
/* ========================================================================
   Component: Switcher
 ========================================================================== */
/*
 * Reset list
 */
.uk-switcher {
  margin: 0;
  padding: 0;
  list-style: none;
}
/* Items
 ========================================================================== */
/*
 * Hide not active items
 */
.uk-switcher > :not(.uk-active) {
  display: none;
}
/*
 * Remove margin from the last-child
 */
.uk-switcher > * > :last-child {
  margin-bottom: 0;
}
/* ========================================================================
   Component: Leader
 ========================================================================== */
.uk-leader {
  overflow: hidden;
}
/*
 * 1. Place element in text flow
 * 2. Never break into a new line
 * 3. Get a string back with as many repeating characters to fill the container
 * 4. Prevent wrapping. Overflowing characters will be clipped by the container
 */
.uk-leader-fill::after {
  /* 1 */
  display: inline-block;
  margin-left: 15px;
  /* 2 */
  width: 0;
  /* 3 */
  content: attr(data-fill);
  /* 4 */
  white-space: nowrap;
}
/*
 * Hide if media does not match
 */
.uk-leader-fill.uk-leader-hide::after {
  display: none;
}
/*
 * Pass fill character to JS
 */
.uk-leader-fill-content::before {
  content: '.';
}
:root {
  --uk-leader-fill-content: .;
}
/* ========================================================================
   Component: Notification
 ========================================================================== */
/*
 * 1. Set position
 * 2. Dimensions
 */
.uk-notification {
  /* 1 */
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1040;
  /* 2 */
  box-sizing: border-box;
  width: 350px;
}
/* Position modifiers
========================================================================== */
.uk-notification-top-right,
.uk-notification-bottom-right {
  left: auto;
  right: 10px;
}
.uk-notification-top-center,
.uk-notification-bottom-center {
  left: 50%;
  margin-left: -175px;
}
.uk-notification-bottom-left,
.uk-notification-bottom-right,
.uk-notification-bottom-center {
  top: auto;
  bottom: 10px;
}
/* Responsiveness
========================================================================== */
/* Phones portrait and smaller */
@media (max-width: 639px) {
  .uk-notification {
    left: 10px;
    right: 10px;
    width: auto;
    margin: 0;
  }
}
/* Message
========================================================================== */
.uk-notification-message {
  position: relative;
  padding: 15px;
  background: #f8f8f8;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.4;
  cursor: pointer;
}
* + .uk-notification-message {
  margin-top: 10px;
}
/* Close
 * Adopts `uk-close`
 ========================================================================== */
.uk-notification-close {
  display: none;
  position: absolute;
  top: 20px;
  right: 15px;
}
.uk-notification-message:hover .uk-notification-close {
  display: block;
}
/* Style modifiers
 ========================================================================== */
/*
 * Primary
 */
.uk-notification-message-primary {
  color: #1e87f0;
}
/*
 * Success
 */
.uk-notification-message-success {
  color: #32d296;
}
/*
 * Warning
 */
.uk-notification-message-warning {
  color: #faa05a;
}
/*
 * Danger
 */
.uk-notification-message-danger {
  color: #f0506e;
}
/* ========================================================================
   Component: Tooltip
 ========================================================================== */
/*
 * 1. Hide by default
 * 2. Position
 * 3. Remove tooltip from document flow to keep the UIkit container from changing its size when injected into the document initially
 * 4. Dimensions
 * 5. Style
 */
.uk-tooltip {
  /* 1 */
  display: none;
  /* 2 */
  position: absolute;
  z-index: 1030;
  /* 3 */
  top: 0;
  /* 4 */
  box-sizing: border-box;
  max-width: 200px;
  padding: 3px 6px;
  /* 5 */
  background: #666;
  border-radius: 2px;
  color: #fff;
  font-size: 12px;
}
/* Show */
.uk-tooltip.uk-active {
  display: block;
}
/* Direction / Alignment modifiers
 ========================================================================== */
/* Direction */
[class*='uk-tooltip-top'] {
  margin-top: -10px;
}
[class*='uk-tooltip-bottom'] {
  margin-top: 10px;
}
[class*='uk-tooltip-left'] {
  margin-left: -10px;
}
[class*='uk-tooltip-right'] {
  margin-left: 10px;
}
/* ========================================================================
   Component: Sortable
 ========================================================================== */
.uk-sortable {
  position: relative;
}
/*
 * Remove margin from the last-child
 */
.uk-sortable > :last-child {
  margin-bottom: 0;
}
/* Drag
 ========================================================================== */
.uk-sortable-drag {
  position: fixed !important;
  z-index: 1050 !important;
  pointer-events: none;
}
/* Placeholder
 ========================================================================== */
.uk-sortable-placeholder {
  opacity: 0;
  pointer-events: none;
}
/* Empty modifier
 ========================================================================== */
.uk-sortable-empty {
  min-height: 50px;
}
/* Handle
 ========================================================================== */
/* Hover */
.uk-sortable-handle:hover {
  cursor: move;
}
/* ========================================================================
   Component: Countdown
 ========================================================================== */
/* Item
 ========================================================================== */
/* Number
 ========================================================================== */
/*
 * 1. Make numbers all of the same size to prevent jumping. Must be supported by the font.
 * 2. Style
 */
.uk-countdown-number {
  /* 1 */
  font-variant-numeric: tabular-nums;
  /* 2 */
  font-size: 2rem;
  line-height: 0.8;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-countdown-number {
    font-size: 4rem;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-countdown-number {
    font-size: 6rem;
  }
}
/* Separator
 ========================================================================== */
.uk-countdown-separator {
  font-size: 1rem;
  line-height: 1.6;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-countdown-separator {
    font-size: 2rem;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-countdown-separator {
    font-size: 3rem;
  }
}
/* Label
 ========================================================================== */
/* ========================================================================
   Component: Grid
 ========================================================================== */
/*
 * 1. Allow cells to wrap into the next line
 * 2. Reset list
 */
.uk-grid {
  display: flex;
  /* 1 */
  flex-wrap: wrap;
  /* 2 */
  margin: 0;
  padding: 0;
  list-style: none;
}
/*
 * Grid cell
 * Note: Space is allocated solely based on content dimensions, but shrinks: 0 1 auto
 * Reset margin for e.g. paragraphs
 */
.uk-grid > * {
  margin: 0;
}
/*
 * Remove margin from the last-child
 */
.uk-grid > * > :last-child {
  margin-bottom: 0;
}
/* Gutter
 ========================================================================== */
/*
 * Default
 */
/* Horizontal */
.uk-grid {
  margin-left: -30px;
}
.uk-grid > * {
  padding-left: 30px;
}
/* Vertical */
.uk-grid + .uk-grid,
.uk-grid > .uk-grid-margin,
* + .uk-grid-margin {
  margin-top: 30px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  /* Horizontal */
  .uk-grid {
    margin-left: -40px;
  }
  .uk-grid > * {
    padding-left: 40px;
  }
  /* Vertical */
  .uk-grid + .uk-grid,
  .uk-grid > .uk-grid-margin,
  * + .uk-grid-margin {
    margin-top: 40px;
  }
}
/*
 * Small
 */
/* Horizontal */
.uk-grid-small,
.uk-grid-column-small {
  margin-left: -15px;
}
.uk-grid-small > *,
.uk-grid-column-small > * {
  padding-left: 15px;
}
/* Vertical */
.uk-grid + .uk-grid-small,
.uk-grid + .uk-grid-row-small,
.uk-grid-small > .uk-grid-margin,
.uk-grid-row-small > .uk-grid-margin,
* + .uk-grid-margin-small {
  margin-top: 15px;
}
/*
 * Medium
 */
/* Horizontal */
.uk-grid-medium,
.uk-grid-column-medium {
  margin-left: -30px;
}
.uk-grid-medium > *,
.uk-grid-column-medium > * {
  padding-left: 30px;
}
/* Vertical */
.uk-grid + .uk-grid-medium,
.uk-grid + .uk-grid-row-medium,
.uk-grid-medium > .uk-grid-margin,
.uk-grid-row-medium > .uk-grid-margin,
* + .uk-grid-margin-medium {
  margin-top: 30px;
}
/*
 * Large
 */
/* Horizontal */
.uk-grid-large,
.uk-grid-column-large {
  margin-left: -40px;
}
.uk-grid-large > *,
.uk-grid-column-large > * {
  padding-left: 40px;
}
/* Vertical */
.uk-grid + .uk-grid-large,
.uk-grid + .uk-grid-row-large,
.uk-grid-large > .uk-grid-margin,
.uk-grid-row-large > .uk-grid-margin,
* + .uk-grid-margin-large {
  margin-top: 40px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  /* Horizontal */
  .uk-grid-large,
  .uk-grid-column-large {
    margin-left: -70px;
  }
  .uk-grid-large > *,
  .uk-grid-column-large > * {
    padding-left: 70px;
  }
  /* Vertical */
  .uk-grid + .uk-grid-large,
  .uk-grid + .uk-grid-row-large,
  .uk-grid-large > .uk-grid-margin,
  .uk-grid-row-large > .uk-grid-margin,
  * + .uk-grid-margin-large {
    margin-top: 70px;
  }
}
/*
 * Collapse
 */
/* Horizontal */
.uk-grid-collapse,
.uk-grid-column-collapse {
  margin-left: 0;
}
.uk-grid-collapse > *,
.uk-grid-column-collapse > * {
  padding-left: 0;
}
/* Vertical */
.uk-grid + .uk-grid-collapse,
.uk-grid + .uk-grid-row-collapse,
.uk-grid-collapse > .uk-grid-margin,
.uk-grid-row-collapse > .uk-grid-margin {
  margin-top: 0;
}
/* Divider
 ========================================================================== */
.uk-grid-divider > * {
  position: relative;
}
.uk-grid-divider > :not(.uk-first-column)::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  border-left: 1px solid #e5e5e5;
}
/* Vertical */
.uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  border-top: 1px solid #e5e5e5;
}
/*
 * Default
 */
/* Horizontal */
.uk-grid-divider {
  margin-left: -60px;
}
.uk-grid-divider > * {
  padding-left: 60px;
}
.uk-grid-divider > :not(.uk-first-column)::before {
  left: 30px;
}
/* Vertical */
.uk-grid-divider.uk-grid-stack > .uk-grid-margin {
  margin-top: 60px;
}
.uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
  top: -30px;
  left: 60px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  /* Horizontal */
  .uk-grid-divider {
    margin-left: -80px;
  }
  .uk-grid-divider > * {
    padding-left: 80px;
  }
  .uk-grid-divider > :not(.uk-first-column)::before {
    left: 40px;
  }
  /* Vertical */
  .uk-grid-divider.uk-grid-stack > .uk-grid-margin {
    margin-top: 80px;
  }
  .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
    top: -40px;
    left: 80px;
  }
}
/*
 * Small
 */
/* Horizontal */
.uk-grid-divider.uk-grid-small,
.uk-grid-divider.uk-grid-column-small {
  margin-left: -30px;
}
.uk-grid-divider.uk-grid-small > *,
.uk-grid-divider.uk-grid-column-small > * {
  padding-left: 30px;
}
.uk-grid-divider.uk-grid-small > :not(.uk-first-column)::before,
.uk-grid-divider.uk-grid-column-small > :not(.uk-first-column)::before {
  left: 15px;
}
/* Vertical */
.uk-grid-divider.uk-grid-small.uk-grid-stack > .uk-grid-margin,
.uk-grid-divider.uk-grid-row-small.uk-grid-stack > .uk-grid-margin {
  margin-top: 30px;
}
.uk-grid-divider.uk-grid-small.uk-grid-stack > .uk-grid-margin::before {
  top: -15px;
  left: 30px;
}
.uk-grid-divider.uk-grid-row-small.uk-grid-stack > .uk-grid-margin::before {
  top: -15px;
}
.uk-grid-divider.uk-grid-column-small.uk-grid-stack > .uk-grid-margin::before {
  left: 30px;
}
/*
 * Medium
 */
/* Horizontal */
.uk-grid-divider.uk-grid-medium,
.uk-grid-divider.uk-grid-column-medium {
  margin-left: -60px;
}
.uk-grid-divider.uk-grid-medium > *,
.uk-grid-divider.uk-grid-column-medium > * {
  padding-left: 60px;
}
.uk-grid-divider.uk-grid-medium > :not(.uk-first-column)::before,
.uk-grid-divider.uk-grid-column-medium > :not(.uk-first-column)::before {
  left: 30px;
}
/* Vertical */
.uk-grid-divider.uk-grid-medium.uk-grid-stack > .uk-grid-margin,
.uk-grid-divider.uk-grid-row-medium.uk-grid-stack > .uk-grid-margin {
  margin-top: 60px;
}
.uk-grid-divider.uk-grid-medium.uk-grid-stack > .uk-grid-margin::before {
  top: -30px;
  left: 60px;
}
.uk-grid-divider.uk-grid-row-medium.uk-grid-stack > .uk-grid-margin::before {
  top: -30px;
}
.uk-grid-divider.uk-grid-column-medium.uk-grid-stack > .uk-grid-margin::before {
  left: 60px;
}
/*
 * Large
 */
/* Horizontal */
.uk-grid-divider.uk-grid-large,
.uk-grid-divider.uk-grid-column-large {
  margin-left: -80px;
}
.uk-grid-divider.uk-grid-large > *,
.uk-grid-divider.uk-grid-column-large > * {
  padding-left: 80px;
}
.uk-grid-divider.uk-grid-large > :not(.uk-first-column)::before,
.uk-grid-divider.uk-grid-column-large > :not(.uk-first-column)::before {
  left: 40px;
}
/* Vertical */
.uk-grid-divider.uk-grid-large.uk-grid-stack > .uk-grid-margin,
.uk-grid-divider.uk-grid-row-large.uk-grid-stack > .uk-grid-margin {
  margin-top: 80px;
}
.uk-grid-divider.uk-grid-large.uk-grid-stack > .uk-grid-margin::before {
  top: -40px;
  left: 80px;
}
.uk-grid-divider.uk-grid-row-large.uk-grid-stack > .uk-grid-margin::before {
  top: -40px;
}
.uk-grid-divider.uk-grid-column-large.uk-grid-stack > .uk-grid-margin::before {
  left: 80px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  /* Horizontal */
  .uk-grid-divider.uk-grid-large,
  .uk-grid-divider.uk-grid-column-large {
    margin-left: -140px;
  }
  .uk-grid-divider.uk-grid-large > *,
  .uk-grid-divider.uk-grid-column-large > * {
    padding-left: 140px;
  }
  .uk-grid-divider.uk-grid-large > :not(.uk-first-column)::before,
  .uk-grid-divider.uk-grid-column-large > :not(.uk-first-column)::before {
    left: 70px;
  }
  /* Vertical */
  .uk-grid-divider.uk-grid-large.uk-grid-stack > .uk-grid-margin,
  .uk-grid-divider.uk-grid-row-large.uk-grid-stack > .uk-grid-margin {
    margin-top: 140px;
  }
  .uk-grid-divider.uk-grid-large.uk-grid-stack > .uk-grid-margin::before {
    top: -70px;
    left: 140px;
  }
  .uk-grid-divider.uk-grid-row-large.uk-grid-stack > .uk-grid-margin::before {
    top: -70px;
  }
  .uk-grid-divider.uk-grid-column-large.uk-grid-stack > .uk-grid-margin::before {
    left: 140px;
  }
}
/* Match child of a grid cell
 ========================================================================== */
/*
 * Behave like a block element
 * 1. Wrap into the next line
 * 2. Take the full width, at least 100%. Only if no class from the Width component is set.
 * 3. Expand width even if larger than 100%, e.g. because of negative margin (Needed for nested grids)
 */
.uk-grid-match > *,
.uk-grid-item-match {
  display: flex;
  /* 1 */
  flex-wrap: wrap;
}
.uk-grid-match > * > :not([class*='uk-width']),
.uk-grid-item-match > :not([class*='uk-width']) {
  /* 2 */
  box-sizing: border-box;
  width: 100%;
  /* 3 */
  flex: auto;
}
/* ========================================================================
   Component: Nav
 ========================================================================== */
/*
 * Reset
 * 1. Prepare lists
 * 2. Prepare links
 * 3. Remove default focus style
 */
/* 1 */
.uk-nav,
.uk-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
/* 2 */
.uk-nav li > a {
  display: block;
  text-decoration: none;
}
/* 3 */
.uk-nav li > a:focus {
  outline: none;
}
/*
 * Items
 * Must target `a` elements to exclude other elements (e.g. lists)
 */
.uk-nav > li > a {
  padding: 5px 0;
}
/* Sublists
 ========================================================================== */
/*
 * Level 2
 * `ul` needed for higher specificity to override padding
 */
ul.uk-nav-sub {
  padding: 5px 0 5px 15px;
}
/*
 * Level 3 and deeper
 */
.uk-nav-sub ul {
  padding-left: 15px;
}
/*
 * Items
 */
.uk-nav-sub a {
  padding: 2px 0;
}
/* Parent icon modifier
 ========================================================================== */
.uk-nav-parent-icon > .uk-parent > a::after {
  content: "";
  width: 1.5em;
  height: 1.5em;
  float: right;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2214%22%20viewBox%3D%220%200%2014%2014%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolyline%20fill%3D%22none%22%20stroke%3D%22%23666%22%20stroke-width%3D%221.1%22%20points%3D%2210%201%204%207%2010%2013%22%20%2F%3E%0A%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.uk-nav-parent-icon > .uk-parent.uk-open > a::after {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2214%22%20viewBox%3D%220%200%2014%2014%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolyline%20fill%3D%22none%22%20stroke%3D%22%23666%22%20stroke-width%3D%221.1%22%20points%3D%221%204%207%2010%2013%204%22%20%2F%3E%0A%3C%2Fsvg%3E");
}
/* Header
 ========================================================================== */
.uk-nav-header {
  padding: 5px 0;
  text-transform: uppercase;
  font-size: 0.875rem;
}
.uk-nav-header:not(:first-child) {
  margin-top: 20px;
}
/* Divider
 ========================================================================== */
.uk-nav-divider {
  margin: 5px 0;
}
/* Default modifier
 ========================================================================== */
.uk-nav-default {
  font-size: 0.875rem;
}
/*
 * Items
 */
.uk-nav-default > li > a {
  color: #999;
}
/* Hover + Focus */
.uk-nav-default > li > a:hover,
.uk-nav-default > li > a:focus {
  color: #666;
}
/* Active */
.uk-nav-default > li.uk-active > a {
  color: #333;
}
/*
 * Header
 */
.uk-nav-default .uk-nav-header {
  color: #333;
}
/*
 * Divider
 */
.uk-nav-default .uk-nav-divider {
  border-top: 1px solid #e5e5e5;
}
/*
 * Sublists
 */
.uk-nav-default .uk-nav-sub a {
  color: #999;
}
.uk-nav-default .uk-nav-sub a:hover,
.uk-nav-default .uk-nav-sub a:focus {
  color: #666;
}
.uk-nav-default .uk-nav-sub li.uk-active > a {
  color: #333;
}
/* Primary modifier
 ========================================================================== */
/*
 * Items
 */
.uk-nav-primary > li > a {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #999;
}
/* Hover + Focus */
.uk-nav-primary > li > a:hover,
.uk-nav-primary > li > a:focus {
  color: #666;
}
/* Active */
.uk-nav-primary > li.uk-active > a {
  color: #333;
}
/*
 * Header
 */
.uk-nav-primary .uk-nav-header {
  color: #333;
}
/*
 * Divider
 */
.uk-nav-primary .uk-nav-divider {
  border-top: 1px solid #e5e5e5;
}
/*
 * Sublists
 */
.uk-nav-primary .uk-nav-sub a {
  color: #999;
}
.uk-nav-primary .uk-nav-sub a:hover,
.uk-nav-primary .uk-nav-sub a:focus {
  color: #666;
}
.uk-nav-primary .uk-nav-sub li.uk-active > a {
  color: #333;
}
/* Alignment modifier
 ========================================================================== */
.uk-nav-center {
  text-align: center;
}
/* Sublists */
.uk-nav-center .uk-nav-sub,
.uk-nav-center .uk-nav-sub ul {
  padding-left: 0;
}
/* Parent icon modifier  */
.uk-nav-center.uk-nav-parent-icon > .uk-parent > a::after {
  position: absolute;
}
/* ========================================================================
   Component: Navbar
 ========================================================================== */
/*
 * 1. Create position context to center navbar group
 */
.uk-navbar {
  display: flex;
  /* 1 */
  position: relative;
}
/* Container
 ========================================================================== */
.uk-navbar-container:not(.uk-navbar-transparent) {
  background: #f8f8f8;
}
/*
 * Remove pseudo elements created by micro clearfix as precaution (if Container component is used)
 */
.uk-navbar-container > ::before,
.uk-navbar-container > ::after {
  display: none !important;
}
/* Groups
 ========================================================================== */
/*
 * 1. Align navs and items vertically if they have a different height
 * 2. Note: IE 11 requires an extra `div` which affects the center selector
 */
.uk-navbar-left,
.uk-navbar-right,
.uk-navbar-center,
.uk-navbar-center-left > *,
.uk-navbar-center-right > * {
  display: flex;
  /* 1 */
  align-items: center;
}
/*
 * Horizontal alignment
 * 1. Create position context for centered navbar with sub groups (left/right)
 * 2. Fix text wrapping if content is larger than 50% of the container.
 * 3. Needed for dropdowns because a new position context is created
 *    `z-index` must be smaller than off-canvas
 * 4. Align sub groups for centered navbar
 */
.uk-navbar-right {
  margin-left: auto;
}
.uk-navbar-center:only-child {
  margin-left: auto;
  margin-right: auto;
  /* 1 */
  position: relative;
}
.uk-navbar-center:not(:only-child) {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* 2 */
  width: max-content;
  box-sizing: border-box;
  /* 3 */
  z-index: 990;
}
/* 4 */
.uk-navbar-center-left,
.uk-navbar-center-right {
  position: absolute;
  top: 0;
}
.uk-navbar-center-left {
  right: 100%;
}
.uk-navbar-center-right {
  left: 100%;
}
[class*='uk-navbar-center-'] {
  width: max-content;
  box-sizing: border-box;
}
/* Nav
 ========================================================================== */
/*
 * 1. Reset list
 */
.uk-navbar-nav {
  display: flex;
  /* 1 */
  margin: 0;
  padding: 0;
  list-style: none;
}
/*
 * Allow items to wrap into the next line
 * Only not `absolute` positioned groups
 */
.uk-navbar-left,
.uk-navbar-right,
.uk-navbar-center:only-child {
  flex-wrap: wrap;
}
/*
 * Items
 * 1. Center content vertically and horizontally
 * 2. Dimensions
 * 3. Style
 * 4. Required for `a`
 */
.uk-navbar-nav > li > a,
.uk-navbar-item,
.uk-navbar-toggle {
  /* 1 */
  display: flex;
  justify-content: center;
  align-items: center;
  /* 2 */
  box-sizing: border-box;
  min-height: 80px;
  padding: 0 15px;
  /* 3 */
  font-size: 0.875rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  /* 4 */
  text-decoration: none;
}
/*
 * Nav items
 */
.uk-navbar-nav > li > a {
  color: #999;
  text-transform: uppercase;
  transition: 0.1s ease-in-out;
  transition-property: color, background-color;
}
/*
 * Hover
 * Apply hover style also to focus state and if dropdown is opened
 */
.uk-navbar-nav > li:hover > a,
.uk-navbar-nav > li > a:focus,
.uk-navbar-nav > li > a.uk-open {
  color: #666;
  outline: none;
}
/* OnClick */
.uk-navbar-nav > li > a:active {
  color: #333;
}
/* Active */
.uk-navbar-nav > li.uk-active > a {
  color: #333;
}
/* Item
 ========================================================================== */
.uk-navbar-item {
  color: #666;
}
/* Toggle
 ========================================================================== */
.uk-navbar-toggle {
  color: #999;
}
.uk-navbar-toggle:hover,
.uk-navbar-toggle:focus,
.uk-navbar-toggle.uk-open {
  color: #666;
  outline: none;
  text-decoration: none;
}
/*
 * Icon
 * Adopts `uk-icon`
 */
/* Hover + Focus */
/* Subtitle
 ========================================================================== */
.uk-navbar-subtitle {
  font-size: 0.875rem;
}
/* Style modifiers
 ========================================================================== */
/* Dropdown
 ========================================================================== */
/*
 * Adopts `uk-dropdown`
 * 1. Hide by default
 * 2. Set position
 * 3. Set a default width
 * 4. Style
 */
.uk-navbar-dropdown {
  /* 1 */
  display: none;
  /* 2 */
  position: absolute;
  z-index: 1020;
  /* 3 */
  box-sizing: border-box;
  width: 200px;
  /* 4 */
  padding: 25px;
  background: #fff;
  color: #666;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
}
/* Show */
.uk-navbar-dropdown.uk-open {
  display: block;
}
/*
 * Direction / Alignment modifiers
 */
/* Direction */
[class*='uk-navbar-dropdown-top'] {
  margin-top: -15px;
}
[class*='uk-navbar-dropdown-bottom'] {
  margin-top: 15px;
}
[class*='uk-navbar-dropdown-left'] {
  margin-left: -15px;
}
[class*='uk-navbar-dropdown-right'] {
  margin-left: 15px;
}
/*
 * Grid
 * Adopts `uk-grid`
 */
/* Gutter Horizontal */
.uk-navbar-dropdown-grid {
  margin-left: -50px;
}
.uk-navbar-dropdown-grid > * {
  padding-left: 50px;
}
/* Gutter Vertical */
.uk-navbar-dropdown-grid > .uk-grid-margin {
  margin-top: 50px;
}
/* Stack */
.uk-navbar-dropdown-stack .uk-navbar-dropdown-grid > * {
  width: 100% !important;
}
/*
 * Width modifier
 */
.uk-navbar-dropdown-width-2:not(.uk-navbar-dropdown-stack) {
  width: 400px;
}
.uk-navbar-dropdown-width-3:not(.uk-navbar-dropdown-stack) {
  width: 600px;
}
.uk-navbar-dropdown-width-4:not(.uk-navbar-dropdown-stack) {
  width: 800px;
}
.uk-navbar-dropdown-width-5:not(.uk-navbar-dropdown-stack) {
  width: 1000px;
}
/*
 * Dropbar modifier
 */
.uk-navbar-dropdown-dropbar {
  margin-top: 0;
  margin-bottom: 0;
  box-shadow: none;
}
/* Dropdown Nav
 * Adopts `uk-nav`
 ========================================================================== */
.uk-navbar-dropdown-nav {
  font-size: 0.875rem;
}
/*
 * Items
 */
.uk-navbar-dropdown-nav > li > a {
  color: #999;
}
/* Hover + Focus */
.uk-navbar-dropdown-nav > li > a:hover,
.uk-navbar-dropdown-nav > li > a:focus {
  color: #666;
}
/* Active */
.uk-navbar-dropdown-nav > li.uk-active > a {
  color: #333;
}
/*
 * Header
 */
.uk-navbar-dropdown-nav .uk-nav-header {
  color: #333;
}
/*
 * Divider
 */
.uk-navbar-dropdown-nav .uk-nav-divider {
  border-top: 1px solid #e5e5e5;
}
/*
 * Sublists
 */
.uk-navbar-dropdown-nav .uk-nav-sub a {
  color: #999;
}
.uk-navbar-dropdown-nav .uk-nav-sub a:hover,
.uk-navbar-dropdown-nav .uk-nav-sub a:focus {
  color: #666;
}
.uk-navbar-dropdown-nav .uk-nav-sub li.uk-active > a {
  color: #333;
}
/* Dropbar
 ========================================================================== */
.uk-navbar-dropbar {
  background: #fff;
}
/*
 * Slide modifier
 */
.uk-navbar-dropbar-slide {
  position: absolute;
  z-index: 980;
  left: 0;
  right: 0;
  box-shadow: 0 5px 7px rgba(0, 0, 0, 0.05);
}
/*
     * Navbar
     */
.uk-navbar-container > .uk-container .uk-navbar-left {
  margin-left: -15px;
  margin-right: -15px;
}
.uk-navbar-container > .uk-container .uk-navbar-right {
  margin-right: -15px;
}
/*
     * Grid Divider
     */
.uk-navbar-dropdown-grid > * {
  position: relative;
}
.uk-navbar-dropdown-grid > :not(.uk-first-column)::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 25px;
  border-left: 1px solid #e5e5e5;
}
/* Vertical */
.uk-navbar-dropdown-grid.uk-grid-stack > .uk-grid-margin::before {
  content: "";
  position: absolute;
  top: -25px;
  left: 50px;
  right: 0;
  border-top: 1px solid #e5e5e5;
}
/* ========================================================================
   Component: Subnav
 ========================================================================== */
/*
 * 1. Allow items to wrap into the next line
 * 2. Gutter
 * 3. Reset list
 */
.uk-subnav {
  display: flex;
  /* 1 */
  flex-wrap: wrap;
  /* 2 */
  margin-left: -20px;
  /* 3 */
  padding: 0;
  list-style: none;
}
/*
 * 1. Space is allocated solely based on content dimensions: 0 0 auto
 * 2. Gutter
 * 3. Create position context for dropdowns
 */
.uk-subnav > * {
  /* 1 */
  flex: none;
  /* 2 */
  padding-left: 20px;
  /* 3 */
  position: relative;
}
/* Items
 ========================================================================== */
/*
 * Items must target `a` elements to exclude other elements (e.g. dropdowns)
 * Using `:first-child` instead of `a` to support `span` elements for text
 * 1. Prevent gap if child element is `inline-block`, e.g. an icon
 * 2. Style
 */
.uk-subnav > * > :first-child {
  /* 1 */
  display: block;
  /* 2 */
  color: #999;
  font-size: 0.875rem;
  text-transform: uppercase;
  transition: 0.1s ease-in-out;
  transition-property: color, background-color;
}
/* Hover + Focus */
.uk-subnav > * > a:hover,
.uk-subnav > * > a:focus {
  color: #666;
  text-decoration: none;
  outline: none;
}
/* Active */
.uk-subnav > .uk-active > a {
  color: #333;
}
/* Divider modifier
 ========================================================================== */
/*
 * Set gutter 
 */
.uk-subnav-divider {
  margin-left: -41px;
}
/*
 * Align items and divider vertically
 */
.uk-subnav-divider > * {
  display: flex;
  align-items: center;
}
/*
 * Divider
 * 1. `nth-child` makes it also work without JS if it's only one row
 */
.uk-subnav-divider > ::before {
  content: "";
  height: 1.5em;
  margin-left: 0px;
  margin-right: 20px;
  border-left: 1px solid transparent;
}
/* 1 */
.uk-subnav-divider > :nth-child(n+2):not(.uk-first-column)::before {
  border-left-color: #e5e5e5;
}
/* Pill modifier
 ========================================================================== */
.uk-subnav-pill > * > :first-child {
  padding: 5px 10px;
  background: transparent;
  color: #999;
}
/* Hover + Focus */
.uk-subnav-pill > * > a:hover,
.uk-subnav-pill > * > a:focus {
  background-color: #f8f8f8;
  color: #666;
}
/* OnClick */
.uk-subnav-pill > * > a:active {
  background-color: #f8f8f8;
  color: #666;
}
/* Active */
.uk-subnav-pill > .uk-active > a {
  background-color: #1e87f0;
  color: #fff;
}
/* Disabled
 * The same for all style modifiers
 ========================================================================== */
.uk-subnav > .uk-disabled > a {
  color: #999;
}
/* ========================================================================
   Component: Breadcrumb
 ========================================================================== */
/*
 * 1. Allow items to wrap into the next line
 * 2. Reset list
 */
.uk-breadcrumb {
  display: flex;
  /* 1 */
  flex-wrap: wrap;
  /* 2 */
  padding: 0;
  list-style: none;
}
/*
 * Space is allocated solely based on content dimensions: 0 0 auto
 */
.uk-breadcrumb > * {
  flex: none;
}
/* Items
 ========================================================================== */
.uk-breadcrumb > * > * {
  display: inline-block;
  font-size: 0.875rem;
  color: #999;
}
/* Hover + Focus */
.uk-breadcrumb > * > :hover,
.uk-breadcrumb > * > :focus {
  color: #666;
  text-decoration: none;
}
/* Disabled */
/* Active */
.uk-breadcrumb > :last-child > span,
.uk-breadcrumb > :last-child > a:not([href]) {
  color: #666;
}
/*
 * Divider
 * `nth-child` makes it also work without JS if it's only one row
 */
.uk-breadcrumb > :nth-child(n+2):not(.uk-first-column)::before {
  content: "/";
  display: inline-block;
  margin: 0 20px;
  font-size: 0.875rem;
  color: #999;
}
/* ========================================================================
   Component: Pagination
 ========================================================================== */
/*
 * 1. Allow items to wrap into the next line
 * 2. Gutter
 * 3. Reset list
 */
.uk-pagination {
  display: flex;
  /* 1 */
  flex-wrap: wrap;
  /* 2 */
  margin-left: -20px;
  /* 3 */
  padding: 0;
  list-style: none;
}
/*
 * 1. Space is allocated solely based on content dimensions: 0 0 auto
 * 2. Gutter
 * 3. Create position context for dropdowns
 */
.uk-pagination > * {
  /* 1 */
  flex: none;
  /* 2 */
  padding-left: 20px;
  /* 3 */
  position: relative;
}
/* Items
 ========================================================================== */
/*
 * 1. Prevent gap if child element is `inline-block`, e.g. an icon
 * 2. Style
 */
.uk-pagination > * > * {
  /* 1 */
  display: block;
  /* 2 */
  color: #999;
  transition: color 0.1s ease-in-out;
}
/* Hover + Focus */
.uk-pagination > * > :hover,
.uk-pagination > * > :focus {
  color: #666;
  text-decoration: none;
}
/* Active */
.uk-pagination > .uk-active > * {
  color: #666;
}
/* Disabled */
.uk-pagination > .uk-disabled > * {
  color: #999;
}
/* ========================================================================
   Component: Tab
 ========================================================================== */
/*
 * 1. Allow items to wrap into the next line
 * 2. Gutter
 * 3. Reset list
 */
.uk-tab {
  display: flex;
  /* 1 */
  flex-wrap: wrap;
  /* 2 */
  margin-left: -20px;
  /* 3 */
  padding: 0;
  list-style: none;
  position: relative;
}
.uk-tab::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 0;
  border-bottom: 1px solid #e5e5e5;
}
/*
 * 1. Space is allocated solely based on content dimensions: 0 0 auto
 * 2. Gutter
 * 3. Create position context for dropdowns
 */
.uk-tab > * {
  /* 1 */
  flex: none;
  /* 2 */
  padding-left: 20px;
  /* 3 */
  position: relative;
}
/* Items
 ========================================================================== */
/*
 * Items must target `a` elements to exclude other elements (e.g. dropdowns)
 * 1. Center text if a width is set
 * 2. Style
 */
.uk-tab > * > a {
  /* 1 */
  display: block;
  text-align: center;
  /* 2 */
  padding: 5px 10px;
  color: #999;
  border-bottom: 1px solid transparent;
  font-size: 0.875rem;
  text-transform: uppercase;
  transition: color 0.1s ease-in-out;
}
/* Hover + Focus */
.uk-tab > * > a:hover,
.uk-tab > * > a:focus {
  color: #666;
  text-decoration: none;
}
/* Active */
.uk-tab > .uk-active > a {
  color: #333;
  border-color: #1e87f0;
}
/* Disabled */
.uk-tab > .uk-disabled > a {
  color: #999;
}
/* Position modifier
 ========================================================================== */
/*
 * Bottom
 */
.uk-tab-bottom::before {
  top: 0;
  bottom: auto;
}
.uk-tab-bottom > * > a {
  border-top: 1px solid transparent;
  border-bottom: none;
}
/*
 * Left + Right
 * 1. Reset Gutter
 */
.uk-tab-left,
.uk-tab-right {
  flex-direction: column;
  /* 1 */
  margin-left: 0;
}
/* 1 */
.uk-tab-left > *,
.uk-tab-right > * {
  padding-left: 0;
}
.uk-tab-left::before {
  top: 0;
  bottom: 0;
  left: auto;
  right: 0;
  border-left: 1px solid #e5e5e5;
  border-bottom: none;
}
.uk-tab-right::before {
  top: 0;
  bottom: 0;
  left: 0;
  right: auto;
  border-left: 1px solid #e5e5e5;
  border-bottom: none;
}
.uk-tab-left > * > a {
  text-align: left;
  border-right: 1px solid transparent;
  border-bottom: none;
}
.uk-tab-right > * > a {
  text-align: left;
  border-left: 1px solid transparent;
  border-bottom: none;
}
.uk-tab .uk-dropdown {
  margin-left: 30px;
}
/* ========================================================================
   Component: Slidenav
 ========================================================================== */
/*
 * Adopts `uk-icon`
 */
.uk-slidenav {
  padding: 5px 10px;
  color: rgba(102, 102, 102, 0.5);
  transition: color 0.1s ease-in-out;
}
/* Hover + Focus */
.uk-slidenav:hover,
.uk-slidenav:focus {
  color: rgba(102, 102, 102, 0.9);
  outline: none;
}
/* OnClick */
.uk-slidenav:active {
  color: rgba(102, 102, 102, 0.5);
}
/* Icon modifier
 ========================================================================== */
/*
 * Previous
 */
/*
 * Next
 */
/* Size modifier
 ========================================================================== */
.uk-slidenav-large {
  padding: 10px 10px;
}
/* Container
 ========================================================================== */
.uk-slidenav-container {
  display: flex;
}
/* ========================================================================
   Component: Dotnav
 ========================================================================== */
/*
 * 1. Allow items to wrap into the next line
 * 2. Reset list
 * 3. Gutter
 */
.uk-dotnav {
  display: flex;
  /* 1 */
  flex-wrap: wrap;
  /* 2 */
  margin: 0;
  padding: 0;
  list-style: none;
  /* 3 */
  margin-left: -12px;
}
/*
 * 1. Space is allocated solely based on content dimensions: 0 0 auto
 * 2. Gutter
 */
.uk-dotnav > * {
  /* 1 */
  flex: none;
  /* 2 */
  padding-left: 12px;
}
/* Items
 ========================================================================== */
/*
 * Items
 * 1. Hide text if present
 */
.uk-dotnav > * > * {
  display: block;
  box-sizing: border-box;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: transparent;
  /* 1 */
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  border: 1px solid rgba(102, 102, 102, 0.4);
  transition: 0.2s ease-in-out;
  transition-property: background-color, border-color;
}
/* Hover + Focus */
.uk-dotnav > * > :hover,
.uk-dotnav > * > :focus {
  background-color: rgba(102, 102, 102, 0.6);
  outline: none;
  border-color: transparent;
}
/* OnClick */
.uk-dotnav > * > :active {
  background-color: rgba(102, 102, 102, 0.2);
  border-color: transparent;
}
/* Active */
.uk-dotnav > .uk-active > * {
  background-color: rgba(102, 102, 102, 0.6);
  border-color: transparent;
}
/* Modifier: 'uk-dotnav-vertical'
 ========================================================================== */
/*
 * 1. Change direction
 * 2. Gutter
 */
.uk-dotnav-vertical {
  /* 1 */
  flex-direction: column;
  /* 2 */
  margin-left: 0;
  margin-top: -12px;
}
/* 2 */
.uk-dotnav-vertical > * {
  padding-left: 0;
  padding-top: 12px;
}
/* ========================================================================
   Component: Thumbnav
 ========================================================================== */
/*
 * 1. Allow items to wrap into the next line
 * 2. Reset list
 * 3. Gutter
 */
.uk-thumbnav {
  display: flex;
  /* 1 */
  flex-wrap: wrap;
  /* 2 */
  margin: 0;
  padding: 0;
  list-style: none;
  /* 3 */
  margin-left: -15px;
}
/*
 * Space is allocated based on content dimensions, but shrinks: 0 1 auto
 * 1. Gutter
 */
.uk-thumbnav > * {
  /* 1 */
  padding-left: 15px;
}
/* Items
 ========================================================================== */
/*
 * Items
 */
.uk-thumbnav > * > * {
  display: inline-block;
  position: relative;
}
.uk-thumbnav > * > *::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.4);
  transition: background-color 0.1s ease-in-out;
}
/* Hover + Focus */
.uk-thumbnav > * > :hover,
.uk-thumbnav > * > :focus {
  outline: none;
}
.uk-thumbnav > * > :hover::after,
.uk-thumbnav > * > :focus::after {
  background-color: transparent;
}
/* Active */
.uk-thumbnav > .uk-active > *::after {
  background-color: transparent;
}
/* Modifier: 'uk-thumbnav-vertical'
 ========================================================================== */
/*
 * 1. Change direction
 * 2. Gutter
 */
.uk-thumbnav-vertical {
  /* 1 */
  flex-direction: column;
  /* 2 */
  margin-left: 0;
  margin-top: -15px;
}
/* 2 */
.uk-thumbnav-vertical > * {
  padding-left: 0;
  padding-top: 15px;
}
/* ========================================================================
   Component: Iconnav
 ========================================================================== */
/*
 * 1. Allow items to wrap into the next line
 * 2. Reset list
 * 3. Gutter
 */
.uk-iconnav {
  display: flex;
  /* 1 */
  flex-wrap: wrap;
  /* 2 */
  margin: 0;
  padding: 0;
  list-style: none;
  /* 3 */
  margin-left: -10px;
}
/*
 * Space is allocated based on content dimensions, but shrinks: 0 1 auto
 * 1. Gutter
 */
.uk-iconnav > * {
  /* 1 */
  padding-left: 10px;
}
/* Items
 ========================================================================== */
/*
 * Items must target `a` elements to exclude other elements (e.g. dropdowns)
 * 1. Prevent gap if child element is `inline-block`, e.g. an icon
 * 2. Style
 */
.uk-iconnav > * > a {
  /* 1 */
  display: block;
  /* 2 */
  color: #999;
}
/* Hover + Focus */
.uk-iconnav > * > a:hover,
.uk-iconnav > * > a:focus {
  color: #666;
  outline: none;
}
/* Active */
.uk-iconnav > .uk-active > a {
  color: #666;
}
/* Modifier: 'uk-iconnav-vertical'
 ========================================================================== */
/*
 * 1. Change direction
 * 2. Gutter
 */
.uk-iconnav-vertical {
  /* 1 */
  flex-direction: column;
  /* 2 */
  margin-left: 0;
  margin-top: -10px;
}
/* 2 */
.uk-iconnav-vertical > * {
  padding-left: 0;
  padding-top: 10px;
}
/* ========================================================================
   Component: Animation
 ========================================================================== */
[class*='uk-animation-'] {
  animation-duration: 0.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: both;
}
/* Animations
 ========================================================================== */
/*
 * Fade
 */
.uk-animation-fade {
  animation-name: uk-fade;
  animation-duration: 0.8s;
  animation-timing-function: linear;
}
/*
 * Scale
 */
.uk-animation-scale-up {
  animation-name: uk-fade-scale-02;
}
.uk-animation-scale-down {
  animation-name: uk-fade-scale-18;
}
/*
 * Slide
 */
.uk-animation-slide-top {
  animation-name: uk-fade-top;
}
.uk-animation-slide-bottom {
  animation-name: uk-fade-bottom;
}
.uk-animation-slide-left {
  animation-name: uk-fade-left;
}
.uk-animation-slide-right {
  animation-name: uk-fade-right;
}
/*
 * Slide Small
 */
.uk-animation-slide-top-small {
  animation-name: uk-fade-top-small;
}
.uk-animation-slide-bottom-small {
  animation-name: uk-fade-bottom-small;
}
.uk-animation-slide-left-small {
  animation-name: uk-fade-left-small;
}
.uk-animation-slide-right-small {
  animation-name: uk-fade-right-small;
}
/*
 * Slide Medium
 */
.uk-animation-slide-top-medium {
  animation-name: uk-fade-top-medium;
}
.uk-animation-slide-bottom-medium {
  animation-name: uk-fade-bottom-medium;
}
.uk-animation-slide-left-medium {
  animation-name: uk-fade-left-medium;
}
.uk-animation-slide-right-medium {
  animation-name: uk-fade-right-medium;
}
/*
 * Kenburns
 */
.uk-animation-kenburns {
  animation-name: uk-scale-kenburns;
  animation-duration: 15s;
}
/*
 * Shake
 */
.uk-animation-shake {
  animation-name: uk-shake;
}
/*
 * SVG Stroke
 * The `--uk-animation-stroke` custom property contains the longest path length.
 * Set it manually or use `uk-svg="stroke-animation: true"` to set it automatically.
 * All strokes are animated by the same pace and doesn't end simultaneously.
 * To end simultaneously, `pathLength="1"` could be used, but it's not working in Safari yet.
 */
.uk-animation-stroke {
  animation-name: uk-stroke;
  stroke-dasharray: var(--uk-animation-stroke);
  animation-duration: 2s;
}
/* Direction modifier
 ========================================================================== */
.uk-animation-reverse {
  animation-direction: reverse;
  animation-timing-function: ease-in;
}
/* Duration modifier
 ========================================================================== */
.uk-animation-fast {
  animation-duration: 0.1s;
}
/* Toggle (Hover + Focus)
========================================================================== */
/*
 * The toggle is triggered on touch devices using `:focus` and tabindex
 */
.uk-animation-toggle:not(:hover):not(:focus) [class*='uk-animation-'] {
  animation-name: none;
}
/*
 * 1. Prevent tab highlighting on iOS.
 */
.uk-animation-toggle {
  /* 1 */
  -webkit-tap-highlight-color: transparent;
}
/*
 * Remove outline for `tabindex`
 */
.uk-animation-toggle:focus {
  outline: none;
}
/* Keyframes used by animation classes
 ========================================================================== */
/*
 * Fade
 */
@keyframes uk-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*
 * Slide Top
 */
@keyframes uk-fade-top {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*
 * Slide Bottom
 */
@keyframes uk-fade-bottom {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*
 * Slide Left
 */
@keyframes uk-fade-left {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/*
 * Slide Right
 */
@keyframes uk-fade-right {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/*
 * Slide Top Small
 */
@keyframes uk-fade-top-small {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*
 * Slide Bottom Small
 */
@keyframes uk-fade-bottom-small {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*
 * Slide Left Small
 */
@keyframes uk-fade-left-small {
  0% {
    opacity: 0;
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/*
 * Slide Right Small
 */
@keyframes uk-fade-right-small {
  0% {
    opacity: 0;
    transform: translateX(10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/*
 * Slide Top Medium
 */
@keyframes uk-fade-top-medium {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*
 * Slide Bottom Medium
 */
@keyframes uk-fade-bottom-medium {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*
 * Slide Left Medium
 */
@keyframes uk-fade-left-medium {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/*
 * Slide Right Medium
 */
@keyframes uk-fade-right-medium {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/*
 * Scale Up
 */
@keyframes uk-fade-scale-02 {
  0% {
    opacity: 0;
    transform: scale(0.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/*
 * Scale Down
 */
@keyframes uk-fade-scale-18 {
  0% {
    opacity: 0;
    transform: scale(1.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/*
 * Kenburns
 */
@keyframes uk-scale-kenburns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
/*
 * Shake
 */
@keyframes uk-shake {
  0%,
  100% {
    transform: translateX(0);
  }
  10% {
    transform: translateX(-9px);
  }
  20% {
    transform: translateX(8px);
  }
  30% {
    transform: translateX(-7px);
  }
  40% {
    transform: translateX(6px);
  }
  50% {
    transform: translateX(-5px);
  }
  60% {
    transform: translateX(4px);
  }
  70% {
    transform: translateX(-3px);
  }
  80% {
    transform: translateX(2px);
  }
  90% {
    transform: translateX(-1px);
  }
}
/*
 * Stroke
 */
@keyframes uk-stroke {
  0% {
    stroke-dashoffset: var(--uk-animation-stroke);
  }
  100% {
    stroke-dashoffset: 0;
  }
}
/* ========================================================================
   Component: Width
 ========================================================================== */
/* Equal child widths
 ========================================================================== */
[class*='uk-child-width'] > * {
  box-sizing: border-box;
  width: 100%;
}
.uk-child-width-1-2 > * {
  width: 50%;
}
.uk-child-width-1-3 > * {
  width: calc(100% * 1 / 3.001);
}
.uk-child-width-1-4 > * {
  width: 25%;
}
.uk-child-width-1-5 > * {
  width: 20%;
}
.uk-child-width-1-6 > * {
  width: calc(100% * 1 / 6.001);
}
.uk-child-width-auto > * {
  width: auto;
}
/*
 * 1. Reset the `min-width`, which is set to auto by default, because
 *    flex items won't shrink below their minimum intrinsic content size.
 *    Using `1px` instead of `0`, so items still wrap into the next line,
 *    if they have zero width and padding and the predecessor is 100% wide.
 */
.uk-child-width-expand > :not([class*='uk-width']) {
  flex: 1;
  /* 1 */
  min-width: 1px;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-child-width-1-1\@s > * {
    width: 100%;
  }
  .uk-child-width-1-2\@s > * {
    width: 50%;
  }
  .uk-child-width-1-3\@s > * {
    width: calc(100% * 1 / 3.001);
  }
  .uk-child-width-1-4\@s > * {
    width: 25%;
  }
  .uk-child-width-1-5\@s > * {
    width: 20%;
  }
  .uk-child-width-1-6\@s > * {
    width: calc(100% * 1 / 6.001);
  }
  .uk-child-width-auto\@s > * {
    width: auto;
  }
  .uk-child-width-expand\@s > :not([class*='uk-width']) {
    flex: 1;
    min-width: 1px;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-child-width-1-1\@m > * {
    width: 100%;
  }
  .uk-child-width-1-2\@m > * {
    width: 50%;
  }
  .uk-child-width-1-3\@m > * {
    width: calc(100% * 1 / 3.001);
  }
  .uk-child-width-1-4\@m > * {
    width: 25%;
  }
  .uk-child-width-1-5\@m > * {
    width: 20%;
  }
  .uk-child-width-1-6\@m > * {
    width: calc(100% * 1 / 6.001);
  }
  .uk-child-width-auto\@m > * {
    width: auto;
  }
  .uk-child-width-expand\@m > :not([class*='uk-width']) {
    flex: 1;
    min-width: 1px;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-child-width-1-1\@l > * {
    width: 100%;
  }
  .uk-child-width-1-2\@l > * {
    width: 50%;
  }
  .uk-child-width-1-3\@l > * {
    width: calc(100% * 1 / 3.001);
  }
  .uk-child-width-1-4\@l > * {
    width: 25%;
  }
  .uk-child-width-1-5\@l > * {
    width: 20%;
  }
  .uk-child-width-1-6\@l > * {
    width: calc(100% * 1 / 6.001);
  }
  .uk-child-width-auto\@l > * {
    width: auto;
  }
  .uk-child-width-expand\@l > :not([class*='uk-width']) {
    flex: 1;
    min-width: 1px;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .uk-child-width-1-1\@xl > * {
    width: 100%;
  }
  .uk-child-width-1-2\@xl > * {
    width: 50%;
  }
  .uk-child-width-1-3\@xl > * {
    width: calc(100% * 1 / 3.001);
  }
  .uk-child-width-1-4\@xl > * {
    width: 25%;
  }
  .uk-child-width-1-5\@xl > * {
    width: 20%;
  }
  .uk-child-width-1-6\@xl > * {
    width: calc(100% * 1 / 6.001);
  }
  .uk-child-width-auto\@xl > * {
    width: auto;
  }
  .uk-child-width-expand\@xl > :not([class*='uk-width']) {
    flex: 1;
    min-width: 1px;
  }
}
/* Single Widths
 ========================================================================== */
/*
 * 1. `max-width` is needed for the pixel-based classes
 */
[class*='uk-width'] {
  box-sizing: border-box;
  width: 100%;
  /* 1 */
  max-width: 100%;
}
/* Halves */
.uk-width-1-2 {
  width: 50%;
}
/* Thirds */
.uk-width-1-3 {
  width: calc(100% * 1 / 3.001);
}
.uk-width-2-3 {
  width: calc(100% * 2 / 3.001);
}
/* Quarters */
.uk-width-1-4 {
  width: 25%;
}
.uk-width-3-4 {
  width: 75%;
}
/* Fifths */
.uk-width-1-5 {
  width: 20%;
}
.uk-width-2-5 {
  width: 40%;
}
.uk-width-3-5 {
  width: 60%;
}
.uk-width-4-5 {
  width: 80%;
}
/* Sixths */
.uk-width-1-6 {
  width: calc(100% * 1 / 6.001);
}
.uk-width-5-6 {
  width: calc(100% * 5 / 6.001);
}
/* Pixel */
.uk-width-small {
  width: 150px;
}
.uk-width-medium {
  width: 300px;
}
.uk-width-large {
  width: 450px;
}
.uk-width-xlarge {
  width: 600px;
}
.uk-width-2xlarge {
  width: 750px;
}
/* Auto */
.uk-width-auto {
  width: auto;
}
/* Expand */
.uk-width-expand {
  flex: 1;
  min-width: 1px;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  /* Whole */
  .uk-width-1-1\@s {
    width: 100%;
  }
  /* Halves */
  .uk-width-1-2\@s {
    width: 50%;
  }
  /* Thirds */
  .uk-width-1-3\@s {
    width: calc(100% * 1 / 3.001);
  }
  .uk-width-2-3\@s {
    width: calc(100% * 2 / 3.001);
  }
  /* Quarters */
  .uk-width-1-4\@s {
    width: 25%;
  }
  .uk-width-3-4\@s {
    width: 75%;
  }
  /* Fifths */
  .uk-width-1-5\@s {
    width: 20%;
  }
  .uk-width-2-5\@s {
    width: 40%;
  }
  .uk-width-3-5\@s {
    width: 60%;
  }
  .uk-width-4-5\@s {
    width: 80%;
  }
  /* Sixths */
  .uk-width-1-6\@s {
    width: calc(100% * 1 / 6.001);
  }
  .uk-width-5-6\@s {
    width: calc(100% * 5 / 6.001);
  }
  /* Pixel */
  .uk-width-small\@s {
    width: 150px;
  }
  .uk-width-medium\@s {
    width: 300px;
  }
  .uk-width-large\@s {
    width: 450px;
  }
  .uk-width-xlarge\@s {
    width: 600px;
  }
  .uk-width-2xlarge\@s {
    width: 750px;
  }
  /* Auto */
  .uk-width-auto\@s {
    width: auto;
  }
  /* Expand */
  .uk-width-expand\@s {
    flex: 1;
    min-width: 1px;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  /* Whole */
  .uk-width-1-1\@m {
    width: 100%;
  }
  /* Halves */
  .uk-width-1-2\@m {
    width: 50%;
  }
  /* Thirds */
  .uk-width-1-3\@m {
    width: calc(100% * 1 / 3.001);
  }
  .uk-width-2-3\@m {
    width: calc(100% * 2 / 3.001);
  }
  /* Quarters */
  .uk-width-1-4\@m {
    width: 25%;
  }
  .uk-width-3-4\@m {
    width: 75%;
  }
  /* Fifths */
  .uk-width-1-5\@m {
    width: 20%;
  }
  .uk-width-2-5\@m {
    width: 40%;
  }
  .uk-width-3-5\@m {
    width: 60%;
  }
  .uk-width-4-5\@m {
    width: 80%;
  }
  /* Sixths */
  .uk-width-1-6\@m {
    width: calc(100% * 1 / 6.001);
  }
  .uk-width-5-6\@m {
    width: calc(100% * 5 / 6.001);
  }
  /* Pixel */
  .uk-width-small\@m {
    width: 150px;
  }
  .uk-width-medium\@m {
    width: 300px;
  }
  .uk-width-large\@m {
    width: 450px;
  }
  .uk-width-xlarge\@m {
    width: 600px;
  }
  .uk-width-2xlarge\@m {
    width: 750px;
  }
  /* Auto */
  .uk-width-auto\@m {
    width: auto;
  }
  /* Expand */
  .uk-width-expand\@m {
    flex: 1;
    min-width: 1px;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  /* Whole */
  .uk-width-1-1\@l {
    width: 100%;
  }
  /* Halves */
  .uk-width-1-2\@l {
    width: 50%;
  }
  /* Thirds */
  .uk-width-1-3\@l {
    width: calc(100% * 1 / 3.001);
  }
  .uk-width-2-3\@l {
    width: calc(100% * 2 / 3.001);
  }
  /* Quarters */
  .uk-width-1-4\@l {
    width: 25%;
  }
  .uk-width-3-4\@l {
    width: 75%;
  }
  /* Fifths */
  .uk-width-1-5\@l {
    width: 20%;
  }
  .uk-width-2-5\@l {
    width: 40%;
  }
  .uk-width-3-5\@l {
    width: 60%;
  }
  .uk-width-4-5\@l {
    width: 80%;
  }
  /* Sixths */
  .uk-width-1-6\@l {
    width: calc(100% * 1 / 6.001);
  }
  .uk-width-5-6\@l {
    width: calc(100% * 5 / 6.001);
  }
  /* Pixel */
  .uk-width-small\@l {
    width: 150px;
  }
  .uk-width-medium\@l {
    width: 300px;
  }
  .uk-width-large\@l {
    width: 450px;
  }
  .uk-width-xlarge\@l {
    width: 600px;
  }
  .uk-width-2xlarge\@l {
    width: 750px;
  }
  /* Auto */
  .uk-width-auto\@l {
    width: auto;
  }
  /* Expand */
  .uk-width-expand\@l {
    flex: 1;
    min-width: 1px;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  /* Whole */
  .uk-width-1-1\@xl {
    width: 100%;
  }
  /* Halves */
  .uk-width-1-2\@xl {
    width: 50%;
  }
  /* Thirds */
  .uk-width-1-3\@xl {
    width: calc(100% * 1 / 3.001);
  }
  .uk-width-2-3\@xl {
    width: calc(100% * 2 / 3.001);
  }
  /* Quarters */
  .uk-width-1-4\@xl {
    width: 25%;
  }
  .uk-width-3-4\@xl {
    width: 75%;
  }
  /* Fifths */
  .uk-width-1-5\@xl {
    width: 20%;
  }
  .uk-width-2-5\@xl {
    width: 40%;
  }
  .uk-width-3-5\@xl {
    width: 60%;
  }
  .uk-width-4-5\@xl {
    width: 80%;
  }
  /* Sixths */
  .uk-width-1-6\@xl {
    width: calc(100% * 1 / 6.001);
  }
  .uk-width-5-6\@xl {
    width: calc(100% * 5 / 6.001);
  }
  /* Pixel */
  .uk-width-small\@xl {
    width: 150px;
  }
  .uk-width-medium\@xl {
    width: 300px;
  }
  .uk-width-large\@xl {
    width: 450px;
  }
  .uk-width-xlarge\@xl {
    width: 600px;
  }
  .uk-width-2xlarge\@xl {
    width: 750px;
  }
  /* Auto */
  .uk-width-auto\@xl {
    width: auto;
  }
  /* Expand */
  .uk-width-expand\@xl {
    flex: 1;
    min-width: 1px;
  }
}
/* ========================================================================
   Component: Height
 ========================================================================== */
[class*='uk-height'] {
  box-sizing: border-box;
}
/*
 * Only works if parent element has a height set
 */
.uk-height-1-1 {
  height: 100%;
}
/*
 * Useful to create image teasers
 */
.uk-height-viewport {
  min-height: 100vh;
}
/*
 * Pixel
 * Useful for `overflow: auto`
 */
.uk-height-small {
  height: 150px;
}
.uk-height-medium {
  height: 300px;
}
.uk-height-large {
  height: 450px;
}
.uk-height-max-small {
  max-height: 150px;
}
.uk-height-max-medium {
  max-height: 300px;
}
.uk-height-max-large {
  max-height: 450px;
}
/* ========================================================================
   Component: Text
 ========================================================================== */
/* Style modifiers
 ========================================================================== */
.uk-text-lead {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #333;
}
.uk-text-meta {
  font-size: 0.875rem;
  line-height: 1.4;
  color: #999;
}
.uk-text-meta a {
  color: #999;
}
.uk-text-meta a:hover {
  color: #666;
  text-decoration: none;
}
/* Size modifiers
 ========================================================================== */
.uk-text-small {
  font-size: 0.875rem;
  line-height: 1.5;
}
.uk-text-large {
  font-size: 1.5rem;
  line-height: 1.5;
}
.uk-text-default {
  font-size: 16px;
  line-height: 1.5;
}
/* Weight modifier
 ========================================================================== */
.uk-text-light {
  font-weight: 300;
}
.uk-text-normal {
  font-weight: 400;
}
.uk-text-bold {
  font-weight: 700;
}
.uk-text-lighter {
  font-weight: lighter;
}
.uk-text-bolder {
  font-weight: bolder;
}
/* Style modifier
 ========================================================================== */
.uk-text-italic {
  font-style: italic;
}
/* Transform modifier
 ========================================================================== */
.uk-text-capitalize {
  text-transform: capitalize !important;
}
.uk-text-uppercase {
  text-transform: uppercase !important;
}
.uk-text-lowercase {
  text-transform: lowercase !important;
}
/* Color modifiers
 ========================================================================== */
.uk-text-muted {
  color: #999 !important;
}
.uk-text-emphasis {
  color: #333 !important;
}
.uk-text-primary {
  color: #1e87f0 !important;
}
.uk-text-secondary {
  color: #222 !important;
}
.uk-text-success {
  color: #32d296 !important;
}
.uk-text-warning {
  color: #faa05a !important;
}
.uk-text-danger {
  color: #f0506e !important;
}
/* Background modifier
 ========================================================================== */
/*
 * 1. The background clips to the foreground text. Works in Chrome, Firefox, Safari, Edge and Opera
 *    Default color is set to transparent
 * 2. Container fits the text
 * 3. Fallback color for IE11
 */
.uk-text-background {
  /* 1 */
  -webkit-background-clip: text;
  /* 2 */
  display: inline-block;
  /* 3 */
  color: #1e87f0 !important;
}
@supports (-webkit-background-clip: text) {
  .uk-text-background {
    background-color: #1e87f0;
    color: transparent !important;
  }
}
/* Alignment modifiers
 ========================================================================== */
.uk-text-left {
  text-align: left !important;
}
.uk-text-right {
  text-align: right !important;
}
.uk-text-center {
  text-align: center !important;
}
.uk-text-justify {
  text-align: justify !important;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-text-left\@s {
    text-align: left !important;
  }
  .uk-text-right\@s {
    text-align: right !important;
  }
  .uk-text-center\@s {
    text-align: center !important;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-text-left\@m {
    text-align: left !important;
  }
  .uk-text-right\@m {
    text-align: right !important;
  }
  .uk-text-center\@m {
    text-align: center !important;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-text-left\@l {
    text-align: left !important;
  }
  .uk-text-right\@l {
    text-align: right !important;
  }
  .uk-text-center\@l {
    text-align: center !important;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .uk-text-left\@xl {
    text-align: left !important;
  }
  .uk-text-right\@xl {
    text-align: right !important;
  }
  .uk-text-center\@xl {
    text-align: center !important;
  }
}
/*
 * Vertical
 */
.uk-text-top {
  vertical-align: top !important;
}
.uk-text-middle {
  vertical-align: middle !important;
}
.uk-text-bottom {
  vertical-align: bottom !important;
}
.uk-text-baseline {
  vertical-align: baseline !important;
}
/* Wrap modifiers
 ========================================================================== */
/*
 * Prevent text from wrapping onto multiple lines
 */
.uk-text-nowrap {
  white-space: nowrap;
}
/*
 * 1. Make sure a max-width is set after which truncation can occur
 * 2. Prevent text from wrapping onto multiple lines, and truncate with an ellipsis
 * 3. Fix for table cells
 */
.uk-text-truncate {
  /* 1 */
  max-width: 100%;
  /* 2 */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 2 */
th.uk-text-truncate,
td.uk-text-truncate {
  max-width: 0;
}
/*
 * 1. Wrap long words onto the next line and break them if they are too long to fit
 * 2. Legacy `word-wrap` as fallback for `overflow-wrap`
 * 3. Fix `overflow-wrap` which doesn't work with table cells in Chrome, Opera, IE11 and Edge
 *    Must use `break-all` to support IE11 and Edge
 * Note: Not using `hyphens: auto;` because it hyphenates text even if not needed
 */
.uk-text-break {
  /* 1 */
  overflow-wrap: break-word;
  /* 2 */
  word-wrap: break-word;
}
/* 3 */
th.uk-text-break,
td.uk-text-break {
  word-break: break-all;
}
/* ========================================================================
   Component: Column
 ========================================================================== */
[class*='uk-column-'] {
  column-gap: 30px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  [class*='uk-column-'] {
    column-gap: 40px;
  }
}
/*
 * Fix image 1px line wrapping into the next column in Chrome
 */
[class*='uk-column-'] img {
  transform: translate3d(0, 0, 0);
}
/* Divider
 ========================================================================== */
/*
 * 1. Double the column gap
 */
.uk-column-divider {
  column-rule: 1px solid #e5e5e5;
  /* 1 */
  column-gap: 60px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-column-divider {
    column-gap: 80px;
  }
}
/* Width modifiers
 ========================================================================== */
.uk-column-1-2 {
  column-count: 2;
}
.uk-column-1-3 {
  column-count: 3;
}
.uk-column-1-4 {
  column-count: 4;
}
.uk-column-1-5 {
  column-count: 5;
}
.uk-column-1-6 {
  column-count: 6;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-column-1-2\@s {
    column-count: 2;
  }
  .uk-column-1-3\@s {
    column-count: 3;
  }
  .uk-column-1-4\@s {
    column-count: 4;
  }
  .uk-column-1-5\@s {
    column-count: 5;
  }
  .uk-column-1-6\@s {
    column-count: 6;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-column-1-2\@m {
    column-count: 2;
  }
  .uk-column-1-3\@m {
    column-count: 3;
  }
  .uk-column-1-4\@m {
    column-count: 4;
  }
  .uk-column-1-5\@m {
    column-count: 5;
  }
  .uk-column-1-6\@m {
    column-count: 6;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-column-1-2\@l {
    column-count: 2;
  }
  .uk-column-1-3\@l {
    column-count: 3;
  }
  .uk-column-1-4\@l {
    column-count: 4;
  }
  .uk-column-1-5\@l {
    column-count: 5;
  }
  .uk-column-1-6\@l {
    column-count: 6;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .uk-column-1-2\@xl {
    column-count: 2;
  }
  .uk-column-1-3\@xl {
    column-count: 3;
  }
  .uk-column-1-4\@xl {
    column-count: 4;
  }
  .uk-column-1-5\@xl {
    column-count: 5;
  }
  .uk-column-1-6\@xl {
    column-count: 6;
  }
}
/* Make element span across all columns
 * Does not work in Firefox yet
 ========================================================================== */
.uk-column-span {
  column-span: all;
}
/* ========================================================================
   Component: Cover
 ========================================================================== */
/*
 * Works with iframes and embedded content
 * 1. Reset responsiveness for embedded content
 * 2. Center object
 * Note: Percent values on the `top` property only works if this element
 *       is absolute positioned or if the container has a height
 */
.uk-cover {
  /* 1 */
  max-width: none;
  /* 2 */
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
iframe.uk-cover {
  pointer-events: none;
}
/* Container
 ========================================================================== */
/*
 * 1. Parent container which clips resized object
 * 2. Needed if the child is positioned absolute. See note above
 */
.uk-cover-container {
  /* 1 */
  overflow: hidden;
  /* 2 */
  position: relative;
}
/* ========================================================================
   Component: Background
 ========================================================================== */
/* Color
 ========================================================================== */
.uk-background-default {
  background-color: #fff;
}
.uk-background-muted {
  background-color: #f8f8f8;
}
.uk-background-primary {
  background-color: #1e87f0;
}
.uk-background-secondary {
  background-color: #222;
}
/* Size
 ========================================================================== */
.uk-background-cover,
.uk-background-contain {
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.uk-background-cover {
  background-size: cover;
}
.uk-background-contain {
  background-size: contain;
}
/* Position
 ========================================================================== */
.uk-background-top-left {
  background-position: 0 0;
}
.uk-background-top-center {
  background-position: 50% 0;
}
.uk-background-top-right {
  background-position: 100% 0;
}
.uk-background-center-left {
  background-position: 0 50%;
}
.uk-background-center-center {
  background-position: 50% 50%;
}
.uk-background-center-right {
  background-position: 100% 50%;
}
.uk-background-bottom-left {
  background-position: 0 100%;
}
.uk-background-bottom-center {
  background-position: 50% 100%;
}
.uk-background-bottom-right {
  background-position: 100% 100%;
}
/* Repeat
 ========================================================================== */
.uk-background-norepeat {
  background-repeat: no-repeat;
}
/* Attachment
 ========================================================================== */
/*
 * 1. Fix bug introduced in Chrome 67: the background image is not visible if any element on the page uses `translate3d`
 */
.uk-background-fixed {
  background-attachment: fixed;
  /* 1 */
  backface-visibility: hidden;
}
/*
 * Exclude touch devices because `fixed` doesn't work on iOS and Android
 */
@media (pointer: coarse) {
  .uk-background-fixed {
    background-attachment: scroll;
  }
}
/* Image
 ========================================================================== */
/* Phone portrait and smaller */
@media (max-width: 639px) {
  .uk-background-image\@s {
    background-image: none !important;
  }
}
/* Phone landscape and smaller */
@media (max-width: 959px) {
  .uk-background-image\@m {
    background-image: none !important;
  }
}
/* Tablet landscape and smaller */
@media (max-width: 1199px) {
  .uk-background-image\@l {
    background-image: none !important;
  }
}
/* Desktop and smaller */
@media (max-width: 1599px) {
  .uk-background-image\@xl {
    background-image: none !important;
  }
}
/* Blend modes
 ========================================================================== */
.uk-background-blend-multiply {
  background-blend-mode: multiply;
}
.uk-background-blend-screen {
  background-blend-mode: screen;
}
.uk-background-blend-overlay {
  background-blend-mode: overlay;
}
.uk-background-blend-darken {
  background-blend-mode: darken;
}
.uk-background-blend-lighten {
  background-blend-mode: lighten;
}
.uk-background-blend-color-dodge {
  background-blend-mode: color-dodge;
}
.uk-background-blend-color-burn {
  background-blend-mode: color-burn;
}
.uk-background-blend-hard-light {
  background-blend-mode: hard-light;
}
.uk-background-blend-soft-light {
  background-blend-mode: soft-light;
}
.uk-background-blend-difference {
  background-blend-mode: difference;
}
.uk-background-blend-exclusion {
  background-blend-mode: exclusion;
}
.uk-background-blend-hue {
  background-blend-mode: hue;
}
.uk-background-blend-saturation {
  background-blend-mode: saturation;
}
.uk-background-blend-color {
  background-blend-mode: color;
}
.uk-background-blend-luminosity {
  background-blend-mode: luminosity;
}
/* ========================================================================
   Component: Align
 ========================================================================== */
/*
 * Default
 */
[class*='uk-align'] {
  display: block;
  margin-bottom: 30px;
}
* + [class*='uk-align'] {
  margin-top: 30px;
}
/*
 * Center
 */
.uk-align-center {
  margin-left: auto;
  margin-right: auto;
}
/*
 * Left/Right
 */
.uk-align-left {
  margin-top: 0;
  margin-right: 30px;
  float: left;
}
.uk-align-right {
  margin-top: 0;
  margin-left: 30px;
  float: right;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-align-left\@s {
    margin-top: 0;
    margin-right: 30px;
    float: left;
  }
  .uk-align-right\@s {
    margin-top: 0;
    margin-left: 30px;
    float: right;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-align-left\@m {
    margin-top: 0;
    margin-right: 30px;
    float: left;
  }
  .uk-align-right\@m {
    margin-top: 0;
    margin-left: 30px;
    float: right;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-align-left\@l {
    margin-top: 0;
    float: left;
  }
  .uk-align-right\@l {
    margin-top: 0;
    float: right;
  }
  .uk-align-left,
  .uk-align-left\@s,
  .uk-align-left\@m,
  .uk-align-left\@l {
    margin-right: 40px;
  }
  .uk-align-right,
  .uk-align-right\@s,
  .uk-align-right\@m,
  .uk-align-right\@l {
    margin-left: 40px;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .uk-align-left\@xl {
    margin-top: 0;
    margin-right: 40px;
    float: left;
  }
  .uk-align-right\@xl {
    margin-top: 0;
    margin-left: 40px;
    float: right;
  }
}
/* ========================================================================
   Component: SVG
 ========================================================================== */
/*
 * 1. Fill all SVG elements with the current text color if no `fill` attribute is set
 * 2. Set the fill and stroke color of all SVG elements to the current text color
 */
/* 1 */
.uk-svg,
.uk-svg:not(.uk-preserve) [fill*='#']:not(.uk-preserve) {
  fill: currentcolor;
}
.uk-svg:not(.uk-preserve) [stroke*='#']:not(.uk-preserve) {
  stroke: currentcolor;
}
/*
 * Fix Firefox blurry SVG rendering: https://bugzilla.mozilla.org/show_bug.cgi?id=1046835
 */
.uk-svg {
  transform: translate(0, 0);
}
/* ========================================================================
   Component: Utility
 ========================================================================== */
/* Panel
 ========================================================================== */
.uk-panel {
  display: flow-root;
  position: relative;
  box-sizing: border-box;
}
/*
 * Remove margin from the last-child
 */
.uk-panel > :last-child {
  margin-bottom: 0;
}
/*
 * Scrollable
 */
.uk-panel-scrollable {
  height: 170px;
  padding: 10px;
  border: 1px solid #e5e5e5;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  resize: both;
}
/* Clearfix
 ========================================================================== */
/*
 * 1. `table-cell` is used with `::before` because `table` creates a 1px gap when it becomes a flex item, only in Webkit
 * 2. `table` is used again with `::after` because `clear` only works with block elements.
 * Note: `display: block` with `overflow: hidden` is currently not working in the latest Safari
 */
/* 1 */
.uk-clearfix::before {
  content: "";
  display: table-cell;
}
/* 2 */
.uk-clearfix::after {
  content: "";
  display: table;
  clear: both;
}
/* Float
 ========================================================================== */
/*
 * 1. Prevent content overflow
 */
.uk-float-left {
  float: left;
}
.uk-float-right {
  float: right;
}
/* 1 */
[class*='uk-float-'] {
  max-width: 100%;
}
/* Overfow
 ========================================================================== */
.uk-overflow-hidden {
  overflow: hidden;
}
/*
 * Enable scrollbars if content is clipped
 * Note: Firefox ignores `padding-bottom` for the scrollable overflow https://bugzilla.mozilla.org/show_bug.cgi?id=748518
 */
.uk-overflow-auto {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.uk-overflow-auto > :last-child {
  margin-bottom: 0;
}
/* Resize
 ========================================================================== */
.uk-resize {
  resize: both;
}
.uk-resize-vertical {
  resize: vertical;
}
/* Display
 ========================================================================== */
.uk-display-block {
  display: block !important;
}
.uk-display-inline {
  display: inline !important;
}
.uk-display-inline-block {
  display: inline-block !important;
}
/* Inline
 ========================================================================== */
/*
 * 1. Container fits its content
 * 2. Create position context
 * 3. Prevent content overflow
 * 4. Behave like most inline-block elements
 * 5. Force hardware acceleration without creating a new stacking context
 *    to fix 1px glitch when combined with overlays and transitions in Webkit
 * 6. Clip child elements
 */
[class*='uk-inline'] {
  /* 1 */
  display: inline-block;
  /* 2 */
  position: relative;
  /* 3 */
  max-width: 100%;
  /* 4 */
  vertical-align: middle;
  /* 5 */
  -webkit-backface-visibility: hidden;
}
.uk-inline-clip {
  /* 6 */
  overflow: hidden;
}
/* Responsive objects
 ========================================================================== */
/*
 * Preserve original dimensions
 * Because `img, `video`, `canvas` and  `audio` are already responsive by default, see Base component
 */
.uk-preserve-width,
.uk-preserve-width canvas,
.uk-preserve-width img,
.uk-preserve-width svg,
.uk-preserve-width video {
  max-width: none;
}
/*
 * Responsiveness
 * Corrects `max-width` and `max-height` behavior if padding and border are used
 */
.uk-responsive-width,
.uk-responsive-height {
  box-sizing: border-box;
}
/*
 * 1. Set a maximum width. `important` needed to override `uk-preserve-width img`
 * 2. Auto scale the height. Only needed if `height` attribute is present
 */
.uk-responsive-width {
  /* 1 */
  max-width: 100% !important;
  /* 2 */
  height: auto;
}
/*
 * 1. Set a maximum height. Only works if the parent element has a fixed height
 * 2. Auto scale the width. Only needed if `width` attribute is present
 * 3. Reset max-width, which `img, `video`, `canvas` and  `audio` already have by default
 */
.uk-responsive-height {
  /* 1 */
  max-height: 100%;
  /* 2 */
  width: auto;
  /* 3 */
  max-width: none;
}
/* Border
 ========================================================================== */
.uk-border-circle {
  border-radius: 50%;
}
.uk-border-pill {
  border-radius: 500px;
}
.uk-border-rounded {
  border-radius: 5px;
}
/*
 * Fix `overflow: hidden` to be ignored with border-radius and CSS transforms in Webkit
 */
.uk-inline-clip[class*='uk-border-'] {
  -webkit-transform: translateZ(0);
}
/* Box-shadow
 ========================================================================== */
.uk-box-shadow-small {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.uk-box-shadow-medium {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.uk-box-shadow-large {
  box-shadow: 0 14px 25px rgba(0, 0, 0, 0.16);
}
.uk-box-shadow-xlarge {
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.16);
}
/*
 * Hover
 */
[class*='uk-box-shadow-hover'] {
  transition: box-shadow 0.1s ease-in-out;
}
.uk-box-shadow-hover-small:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.uk-box-shadow-hover-medium:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.uk-box-shadow-hover-large:hover {
  box-shadow: 0 14px 25px rgba(0, 0, 0, 0.16);
}
.uk-box-shadow-hover-xlarge:hover {
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.16);
}
/* Box-shadow bottom
 ========================================================================== */
/*
 * 1. Set position.
 * 2. Set style
 * 3. Blur doesn't work on pseudo elements with negative `z-index` in Edge.
 *    Solved by using `before` and add position context to child elements.
 */
@supports (filter: blur(0)) {
  .uk-box-shadow-bottom {
    display: inline-block;
    position: relative;
    max-width: 100%;
    vertical-align: middle;
  }
  .uk-box-shadow-bottom::before {
    content: '';
    /* 1 */
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    /* 2 */
    height: 30px;
    border-radius: 100%;
    background: #444;
    filter: blur(20px);
  }
  /* 3 */
  .uk-box-shadow-bottom > * {
    position: relative;
  }
}
/* Drop cap
 ========================================================================== */
/*
 * 1. Firefox doesn't apply `::first-letter` if the first letter is inside child elements
 *    https://bugzilla.mozilla.org/show_bug.cgi?id=214004
 * 2. In Firefox, a floating `::first-letter` doesn't have a line box and there for no `line-height`
 *    https://bugzilla.mozilla.org/show_bug.cgi?id=317933
 * 3. Caused by 1.: Edge creates two nested `::first-letter` containers, one for each selector
 *    This doubles the `font-size` exponential when using the `em` unit.
 */
.uk-dropcap::first-letter,
.uk-dropcap > p:first-of-type::first-letter {
  display: block;
  margin-right: 10px;
  float: left;
  font-size: 4.5em;
  line-height: 1;
  margin-bottom: -2px;
}
/* 2 */
@-moz-document url-prefix() {
  .uk-dropcap::first-letter,
  .uk-dropcap > p:first-of-type::first-letter {
    margin-top: 1.1%;
  }
}
/* 3 */
@supports (-ms-ime-align: auto) {
  .uk-dropcap > p:first-of-type::first-letter {
    font-size: 1em;
  }
}
/* Logo
 ========================================================================== */
/*
 * 1. Required for `a`
 */
.uk-logo {
  font-size: 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  color: #666;
  /* 1 */
  text-decoration: none;
}
/* Hover + Focus */
.uk-logo:hover,
.uk-logo:focus {
  color: #666;
  outline: none;
  /* 1 */
  text-decoration: none;
}
.uk-logo-inverse {
  display: none;
}
/* Disabled State
 ========================================================================== */
.uk-disabled {
  pointer-events: none;
}
/* Drag State
 ========================================================================== */
/*
 * 1. Needed if moving over elements with have their own cursor on hover, e.g. links or buttons
 * 2. Fix dragging over iframes
 */
.uk-drag,
.uk-drag * {
  cursor: move;
}
/* 2 */
.uk-drag iframe {
  pointer-events: none;
}
/* Dragover State
 ========================================================================== */
/*
 * Create a box-shadow when dragging a file over the upload area
 */
.uk-dragover {
  box-shadow: 0 0 20px rgba(100, 100, 100, 0.3);
}
/* Blend modes
 ========================================================================== */
.uk-blend-multiply {
  mix-blend-mode: multiply;
}
.uk-blend-screen {
  mix-blend-mode: screen;
}
.uk-blend-overlay {
  mix-blend-mode: overlay;
}
.uk-blend-darken {
  mix-blend-mode: darken;
}
.uk-blend-lighten {
  mix-blend-mode: lighten;
}
.uk-blend-color-dodge {
  mix-blend-mode: color-dodge;
}
.uk-blend-color-burn {
  mix-blend-mode: color-burn;
}
.uk-blend-hard-light {
  mix-blend-mode: hard-light;
}
.uk-blend-soft-light {
  mix-blend-mode: soft-light;
}
.uk-blend-difference {
  mix-blend-mode: difference;
}
.uk-blend-exclusion {
  mix-blend-mode: exclusion;
}
.uk-blend-hue {
  mix-blend-mode: hue;
}
.uk-blend-saturation {
  mix-blend-mode: saturation;
}
.uk-blend-color {
  mix-blend-mode: color;
}
.uk-blend-luminosity {
  mix-blend-mode: luminosity;
}
/* Transform
========================================================================== */
.uk-transform-center {
  transform: translate(-50%, -50%);
}
/* Transform Origin
========================================================================== */
.uk-transform-origin-top-left {
  transform-origin: 0 0;
}
.uk-transform-origin-top-center {
  transform-origin: 50% 0;
}
.uk-transform-origin-top-right {
  transform-origin: 100% 0;
}
.uk-transform-origin-center-left {
  transform-origin: 0 50%;
}
.uk-transform-origin-center-right {
  transform-origin: 100% 50%;
}
.uk-transform-origin-bottom-left {
  transform-origin: 0 100%;
}
.uk-transform-origin-bottom-center {
  transform-origin: 50% 100%;
}
.uk-transform-origin-bottom-right {
  transform-origin: 100% 100%;
}
/* ========================================================================
   Component: Flex
 ========================================================================== */
.uk-flex {
  display: flex;
}
.uk-flex-inline {
  display: inline-flex;
}
/*
 * Remove pseudo elements created by micro clearfix as precaution
 */
.uk-flex::before,
.uk-flex::after,
.uk-flex-inline::before,
.uk-flex-inline::after {
  display: none;
}
/* Alignment
 ========================================================================== */
/*
 * Align items along the main axis of the current line of the flex container
 * Row: Horizontal
 */
.uk-flex-left {
  justify-content: flex-start;
}
.uk-flex-center {
  justify-content: center;
}
.uk-flex-right {
  justify-content: flex-end;
}
.uk-flex-between {
  justify-content: space-between;
}
.uk-flex-around {
  justify-content: space-around;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-flex-left\@s {
    justify-content: flex-start;
  }
  .uk-flex-center\@s {
    justify-content: center;
  }
  .uk-flex-right\@s {
    justify-content: flex-end;
  }
  .uk-flex-between\@s {
    justify-content: space-between;
  }
  .uk-flex-around\@s {
    justify-content: space-around;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-flex-left\@m {
    justify-content: flex-start;
  }
  .uk-flex-center\@m {
    justify-content: center;
  }
  .uk-flex-right\@m {
    justify-content: flex-end;
  }
  .uk-flex-between\@m {
    justify-content: space-between;
  }
  .uk-flex-around\@m {
    justify-content: space-around;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-flex-left\@l {
    justify-content: flex-start;
  }
  .uk-flex-center\@l {
    justify-content: center;
  }
  .uk-flex-right\@l {
    justify-content: flex-end;
  }
  .uk-flex-between\@l {
    justify-content: space-between;
  }
  .uk-flex-around\@l {
    justify-content: space-around;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .uk-flex-left\@xl {
    justify-content: flex-start;
  }
  .uk-flex-center\@xl {
    justify-content: center;
  }
  .uk-flex-right\@xl {
    justify-content: flex-end;
  }
  .uk-flex-between\@xl {
    justify-content: space-between;
  }
  .uk-flex-around\@xl {
    justify-content: space-around;
  }
}
/*
 * Align items in the cross axis of the current line of the flex container
 * Row: Vertical
 */
.uk-flex-stretch {
  align-items: stretch;
}
.uk-flex-top {
  align-items: flex-start;
}
.uk-flex-middle {
  align-items: center;
}
.uk-flex-bottom {
  align-items: flex-end;
}
/* Direction
 ========================================================================== */
.uk-flex-row {
  flex-direction: row;
}
.uk-flex-row-reverse {
  flex-direction: row-reverse;
}
.uk-flex-column {
  flex-direction: column;
}
.uk-flex-column-reverse {
  flex-direction: column-reverse;
}
/* Wrap
 ========================================================================== */
.uk-flex-nowrap {
  flex-wrap: nowrap;
}
.uk-flex-wrap {
  flex-wrap: wrap;
}
.uk-flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}
/*
 * Aligns items within the flex container when there is extra space in the cross-axis
 * Only works if there is more than one line of flex items
 */
.uk-flex-wrap-stretch {
  align-content: stretch;
}
.uk-flex-wrap-top {
  align-content: flex-start;
}
.uk-flex-wrap-middle {
  align-content: center;
}
.uk-flex-wrap-bottom {
  align-content: flex-end;
}
.uk-flex-wrap-between {
  align-content: space-between;
}
.uk-flex-wrap-around {
  align-content: space-around;
}
/* Item ordering
 ========================================================================== */
/*
 * Default is 0
 */
.uk-flex-first {
  order: -1;
}
.uk-flex-last {
  order: 99;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-flex-first\@s {
    order: -1;
  }
  .uk-flex-last\@s {
    order: 99;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-flex-first\@m {
    order: -1;
  }
  .uk-flex-last\@m {
    order: 99;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-flex-first\@l {
    order: -1;
  }
  .uk-flex-last\@l {
    order: 99;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .uk-flex-first\@xl {
    order: -1;
  }
  .uk-flex-last\@xl {
    order: 99;
  }
}
/* Item dimensions
 ========================================================================== */
/*
 * Initial: 0 1 auto
 * Content dimensions, but shrinks
 */
/*
 * No Flex: 0 0 auto
 * Content dimensions
 */
.uk-flex-none {
  flex: none;
}
/*
 * Relative Flex: 1 1 auto
 * Space is allocated considering content
 */
.uk-flex-auto {
  flex: auto;
}
/*
 * Absolute Flex: 1 1 0%
 * Space is allocated solely based on flex
 */
.uk-flex-1 {
  flex: 1;
}
/* ========================================================================
   Component: Margin
 ========================================================================== */
/*
 * Default
 */
.uk-margin {
  margin-bottom: 20px;
}
* + .uk-margin {
  margin-top: 20px !important;
}
.uk-margin-top {
  margin-top: 20px !important;
}
.uk-margin-bottom {
  margin-bottom: 20px !important;
}
.uk-margin-left {
  margin-left: 20px !important;
}
.uk-margin-right {
  margin-right: 20px !important;
}
/* Small
 ========================================================================== */
.uk-margin-small {
  margin-bottom: 10px;
}
* + .uk-margin-small {
  margin-top: 10px !important;
}
.uk-margin-small-top {
  margin-top: 10px !important;
}
.uk-margin-small-bottom {
  margin-bottom: 10px !important;
}
.uk-margin-small-left {
  margin-left: 10px !important;
}
.uk-margin-small-right {
  margin-right: 10px !important;
}
/* Medium
 ========================================================================== */
.uk-margin-medium {
  margin-bottom: 40px;
}
* + .uk-margin-medium {
  margin-top: 40px !important;
}
.uk-margin-medium-top {
  margin-top: 40px !important;
}
.uk-margin-medium-bottom {
  margin-bottom: 40px !important;
}
.uk-margin-medium-left {
  margin-left: 40px !important;
}
.uk-margin-medium-right {
  margin-right: 40px !important;
}
/* Large
 ========================================================================== */
.uk-margin-large {
  margin-bottom: 40px;
}
* + .uk-margin-large {
  margin-top: 40px !important;
}
.uk-margin-large-top {
  margin-top: 40px !important;
}
.uk-margin-large-bottom {
  margin-bottom: 40px !important;
}
.uk-margin-large-left {
  margin-left: 40px !important;
}
.uk-margin-large-right {
  margin-right: 40px !important;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-margin-large {
    margin-bottom: 70px;
  }
  * + .uk-margin-large {
    margin-top: 70px !important;
  }
  .uk-margin-large-top {
    margin-top: 70px !important;
  }
  .uk-margin-large-bottom {
    margin-bottom: 70px !important;
  }
  .uk-margin-large-left {
    margin-left: 70px !important;
  }
  .uk-margin-large-right {
    margin-right: 70px !important;
  }
}
/* XLarge
 ========================================================================== */
.uk-margin-xlarge {
  margin-bottom: 70px;
}
* + .uk-margin-xlarge {
  margin-top: 70px !important;
}
.uk-margin-xlarge-top {
  margin-top: 70px !important;
}
.uk-margin-xlarge-bottom {
  margin-bottom: 70px !important;
}
.uk-margin-xlarge-left {
  margin-left: 70px !important;
}
.uk-margin-xlarge-right {
  margin-right: 70px !important;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-margin-xlarge {
    margin-bottom: 140px;
  }
  * + .uk-margin-xlarge {
    margin-top: 140px !important;
  }
  .uk-margin-xlarge-top {
    margin-top: 140px !important;
  }
  .uk-margin-xlarge-bottom {
    margin-bottom: 140px !important;
  }
  .uk-margin-xlarge-left {
    margin-left: 140px !important;
  }
  .uk-margin-xlarge-right {
    margin-right: 140px !important;
  }
}
/* Auto
 ========================================================================== */
.uk-margin-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}
.uk-margin-auto-top {
  margin-top: auto !important;
}
.uk-margin-auto-bottom {
  margin-bottom: auto !important;
}
.uk-margin-auto-left {
  margin-left: auto !important;
}
.uk-margin-auto-right {
  margin-right: auto !important;
}
.uk-margin-auto-vertical {
  margin-top: auto !important;
  margin-bottom: auto !important;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-margin-auto\@s {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .uk-margin-auto-left\@s {
    margin-left: auto !important;
  }
  .uk-margin-auto-right\@s {
    margin-right: auto !important;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-margin-auto\@m {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .uk-margin-auto-left\@m {
    margin-left: auto !important;
  }
  .uk-margin-auto-right\@m {
    margin-right: auto !important;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-margin-auto\@l {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .uk-margin-auto-left\@l {
    margin-left: auto !important;
  }
  .uk-margin-auto-right\@l {
    margin-right: auto !important;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .uk-margin-auto\@xl {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .uk-margin-auto-left\@xl {
    margin-left: auto !important;
  }
  .uk-margin-auto-right\@xl {
    margin-right: auto !important;
  }
}
/* Remove
 ========================================================================== */
.uk-margin-remove {
  margin: 0 !important;
}
.uk-margin-remove-top {
  margin-top: 0 !important;
}
.uk-margin-remove-bottom {
  margin-bottom: 0 !important;
}
.uk-margin-remove-left {
  margin-left: 0 !important;
}
.uk-margin-remove-right {
  margin-right: 0 !important;
}
.uk-margin-remove-vertical {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.uk-margin-remove-adjacent + *,
.uk-margin-remove-first-child > :first-child {
  margin-top: 0 !important;
}
.uk-margin-remove-last-child > :last-child {
  margin-bottom: 0 !important;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-margin-remove-left\@s {
    margin-left: 0 !important;
  }
  .uk-margin-remove-right\@s {
    margin-right: 0 !important;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-margin-remove-left\@m {
    margin-left: 0 !important;
  }
  .uk-margin-remove-right\@m {
    margin-right: 0 !important;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-margin-remove-left\@l {
    margin-left: 0 !important;
  }
  .uk-margin-remove-right\@l {
    margin-right: 0 !important;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .uk-margin-remove-left\@xl {
    margin-left: 0 !important;
  }
  .uk-margin-remove-right\@xl {
    margin-right: 0 !important;
  }
}
/* ========================================================================
   Component: Padding
 ========================================================================== */
.uk-padding {
  padding: 30px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-padding {
    padding: 40px;
  }
}
/* Small
 ========================================================================== */
.uk-padding-small {
  padding: 15px;
}
/* Large
 ========================================================================== */
.uk-padding-large {
  padding: 30px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-padding-large {
    padding: 70px;
  }
}
/* Remove
 ========================================================================== */
.uk-padding-remove {
  padding: 0 !important;
}
.uk-padding-remove-top {
  padding-top: 0 !important;
}
.uk-padding-remove-bottom {
  padding-bottom: 0 !important;
}
.uk-padding-remove-left {
  padding-left: 0 !important;
}
.uk-padding-remove-right {
  padding-right: 0 !important;
}
.uk-padding-remove-vertical {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.uk-padding-remove-horizontal {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
/* ========================================================================
   Component: Position
 ========================================================================== */
/* Directions
 ========================================================================== */
/*
 * 1. Prevent content overflow if `max-width: 100%` is used inside position container.
 */
[class*='uk-position-top'],
[class*='uk-position-bottom'],
[class*='uk-position-left'],
[class*='uk-position-right'],
[class*='uk-position-center'] {
  position: absolute !important;
  /* 1 */
  max-width: 100%;
}
/* Edges
 ========================================================================== */
/* Don't use `width: 100%` because it is wrong if the parent has padding. */
.uk-position-top {
  top: 0;
  left: 0;
  right: 0;
}
.uk-position-bottom {
  bottom: 0;
  left: 0;
  right: 0;
}
.uk-position-left {
  top: 0;
  bottom: 0;
  left: 0;
}
.uk-position-right {
  top: 0;
  bottom: 0;
  right: 0;
}
/* Corners
 ========================================================================== */
.uk-position-top-left {
  top: 0;
  left: 0;
}
.uk-position-top-right {
  top: 0;
  right: 0;
}
.uk-position-bottom-left {
  bottom: 0;
  left: 0;
}
.uk-position-bottom-right {
  bottom: 0;
  right: 0;
}
/*
 * Center
 * 1. Fix text wrapping if content is larger than 50% of the container.
 */
.uk-position-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* 1 */
  width: max-content;
  max-width: 100%;
  box-sizing: border-box;
}
/* Vertical */
[class*='uk-position-center-left'],
[class*='uk-position-center-right'] {
  top: 50%;
  transform: translateY(-50%);
}
.uk-position-center-left {
  left: 0;
}
.uk-position-center-right {
  right: 0;
}
.uk-position-center-left-out {
  right: 100%;
  width: max-content;
}
.uk-position-center-right-out {
  left: 100%;
  width: max-content;
}
/* Horizontal */
.uk-position-top-center,
.uk-position-bottom-center {
  left: 50%;
  transform: translateX(-50%);
  /* 1 */
  width: max-content;
  max-width: 100%;
  box-sizing: border-box;
}
.uk-position-top-center {
  top: 0;
}
.uk-position-bottom-center {
  bottom: 0;
}
/* Cover
 ========================================================================== */
.uk-position-cover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
/* Utility
 ========================================================================== */
.uk-position-relative {
  position: relative !important;
}
.uk-position-absolute {
  position: absolute !important;
}
.uk-position-fixed {
  position: fixed !important;
}
.uk-position-z-index {
  z-index: 1;
}
/* Margin modifier
 ========================================================================== */
/*
 * Small
 */
.uk-position-small {
  max-width: calc(100% - (15px * 2));
  margin: 15px;
}
.uk-position-small.uk-position-center {
  transform: translate(-50%, -50%) translate(-15px, -15px);
}
.uk-position-small[class*='uk-position-center-left'],
.uk-position-small[class*='uk-position-center-right'] {
  transform: translateY(-50%) translateY(-15px);
}
.uk-position-small.uk-position-top-center,
.uk-position-small.uk-position-bottom-center {
  transform: translateX(-50%) translateX(-15px);
}
/*
 * Medium
 */
.uk-position-medium {
  max-width: calc(100% - (30px * 2));
  margin: 30px;
}
.uk-position-medium.uk-position-center {
  transform: translate(-50%, -50%) translate(-30px, -30px);
}
.uk-position-medium[class*='uk-position-center-left'],
.uk-position-medium[class*='uk-position-center-right'] {
  transform: translateY(-50%) translateY(-30px);
}
.uk-position-medium.uk-position-top-center,
.uk-position-medium.uk-position-bottom-center {
  transform: translateX(-50%) translateX(-30px);
}
/*
 * Large
 */
.uk-position-large {
  max-width: calc(100% - (30px * 2));
  margin: 30px;
}
.uk-position-large.uk-position-center {
  transform: translate(-50%, -50%) translate(-30px, -30px);
}
.uk-position-large[class*='uk-position-center-left'],
.uk-position-large[class*='uk-position-center-right'] {
  transform: translateY(-50%) translateY(-30px);
}
.uk-position-large.uk-position-top-center,
.uk-position-large.uk-position-bottom-center {
  transform: translateX(-50%) translateX(-30px);
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-position-large {
    max-width: calc(100% - (50px * 2));
    margin: 50px;
  }
  .uk-position-large.uk-position-center {
    transform: translate(-50%, -50%) translate(-50px, -50px);
  }
  .uk-position-large[class*='uk-position-center-left'],
  .uk-position-large[class*='uk-position-center-right'] {
    transform: translateY(-50%) translateY(-50px);
  }
  .uk-position-large.uk-position-top-center,
  .uk-position-large.uk-position-bottom-center {
    transform: translateX(-50%) translateX(-50px);
  }
}
/* ========================================================================
   Component: Transition
 ========================================================================== */
/* Toggle (Hover + Focus)
 ========================================================================== */
/*
 * 1. Prevent tab highlighting on iOS.
 */
.uk-transition-toggle {
  /* 1 */
  -webkit-tap-highlight-color: transparent;
}
/*
 * Remove outline for `tabindex`
 */
.uk-transition-toggle:focus {
  outline: none;
}
/* Transitions
 ========================================================================== */
/*
 * The toggle is triggered on touch devices by two methods:
 * 1. Using `:focus` and tabindex
 * 2. Using `:hover` and a `touchstart` event listener registered on the document
 *    (Doesn't work on Surface touch devices)
 *
 * Note: Transitions don't work with `uk-postion-center-*` classes because they also use `transform`,
 *       therefore it's recommended to use an extra `div` for the transition.
 */
.uk-transition-fade,
[class*='uk-transition-scale'],
[class*='uk-transition-slide'] {
  transition: 0.3s ease-out;
  transition-property: opacity, transform, filter;
  opacity: 0;
}
/*
 * Fade
 */
.uk-transition-toggle:hover .uk-transition-fade,
.uk-transition-toggle:focus .uk-transition-fade,
.uk-transition-active.uk-active .uk-transition-fade {
  opacity: 1;
}
/*
 * Scale
 */
.uk-transition-scale-up {
  transform: scale(1, 1);
}
.uk-transition-scale-down {
  transform: scale(1.1, 1.1);
}
/* Show */
.uk-transition-toggle:hover .uk-transition-scale-up,
.uk-transition-toggle:focus .uk-transition-scale-up,
.uk-transition-active.uk-active .uk-transition-scale-up {
  opacity: 1;
  transform: scale(1.1, 1.1);
}
.uk-transition-toggle:hover .uk-transition-scale-down,
.uk-transition-toggle:focus .uk-transition-scale-down,
.uk-transition-active.uk-active .uk-transition-scale-down {
  opacity: 1;
  transform: scale(1, 1);
}
/*
 * Slide
 */
.uk-transition-slide-top {
  transform: translateY(-100%);
}
.uk-transition-slide-bottom {
  transform: translateY(100%);
}
.uk-transition-slide-left {
  transform: translateX(-100%);
}
.uk-transition-slide-right {
  transform: translateX(100%);
}
.uk-transition-slide-top-small {
  transform: translateY(-10px);
}
.uk-transition-slide-bottom-small {
  transform: translateY(10px);
}
.uk-transition-slide-left-small {
  transform: translateX(-10px);
}
.uk-transition-slide-right-small {
  transform: translateX(10px);
}
.uk-transition-slide-top-medium {
  transform: translateY(-50px);
}
.uk-transition-slide-bottom-medium {
  transform: translateY(50px);
}
.uk-transition-slide-left-medium {
  transform: translateX(-50px);
}
.uk-transition-slide-right-medium {
  transform: translateX(50px);
}
/* Show */
.uk-transition-toggle:hover [class*='uk-transition-slide'],
.uk-transition-toggle:focus [class*='uk-transition-slide'],
.uk-transition-active.uk-active [class*='uk-transition-slide'] {
  opacity: 1;
  transform: translate(0, 0);
}
/* Opacity modifier
 ========================================================================== */
.uk-transition-opaque {
  opacity: 1;
}
/* Duration modifiers
 ========================================================================== */
.uk-transition-slow {
  transition-duration: 0.7s;
}
/* ========================================================================
   Component: Visibility
 ========================================================================== */
/*
 * Hidden
 * `hidden` attribute also set here to make it stronger
 */
[hidden],
.uk-hidden {
  display: none !important;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-hidden\@s {
    display: none !important;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-hidden\@m {
    display: none !important;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-hidden\@l {
    display: none !important;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .uk-hidden\@xl {
    display: none !important;
  }
}
/*
 * Visible
 */
/* Phone portrait and smaller */
@media (max-width: 639px) {
  .uk-visible\@s {
    display: none !important;
  }
}
/* Phone landscape and smaller */
@media (max-width: 959px) {
  .uk-visible\@m {
    display: none !important;
  }
}
/* Tablet landscape and smaller */
@media (max-width: 1199px) {
  .uk-visible\@l {
    display: none !important;
  }
}
/* Desktop and smaller */
@media (max-width: 1599px) {
  .uk-visible\@xl {
    display: none !important;
  }
}
/* Visibility
 ========================================================================== */
.uk-invisible {
  visibility: hidden !important;
}
/* Toggle (Hover + Focus)
 ========================================================================== */
/*
 * Hidden
 * 1. The toggle is triggered on touch devices using `:focus` and tabindex
 * 2. The target stays visible if any element within receives focus through keyboard
 *    Doesn't work in Edge, yet.
 * 3. Can't use `display: none` nor `visibility: hidden` because both are not focusable.
 *
 */
/* 1 + 2 */
.uk-visible-toggle:not(:hover):not(:focus) .uk-hidden-hover:not(:focus-within) {
  /* 3 */
  position: absolute !important;
  width: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
}
/*
 * Invisible
 */
/* 1 + 2 */
.uk-visible-toggle:not(:hover):not(:focus) .uk-invisible-hover:not(:focus-within) {
  /* 3 */
  opacity: 0 !important;
}
/*
 * 1. Prevent tab highlighting on iOS.
 */
.uk-visible-toggle {
  /* 1 */
  -webkit-tap-highlight-color: transparent;
}
/*
 * Remove outline for `tabindex`
 */
.uk-visible-toggle:focus {
  outline: none;
}
/* Touch
 ========================================================================== */
/*
 * Hide if primary pointing device has limited accuracy, e.g. a touch screen.
 * Works on mobile browsers: Safari, Chrome and Android browser
 */
@media (pointer: coarse) {
  .uk-hidden-touch {
    display: none !important;
  }
}
/*
 * Hide if primary pointing device is accurate, e.g. mouse.
 * 1. Fallback for IE11 and Firefox, because `pointer` is not supported
 * 2. Reset if supported
 */
/* 1 */
.uk-hidden-notouch {
  display: none !important;
}
@media (pointer: coarse) {
  .uk-hidden-notouch {
    display: block !important;
  }
}
/* ========================================================================
   Component: Inverse
 ========================================================================== */
/*
 * Implemented class depends on the general theme color
 * `uk-light` is for light colors on dark backgrounds
 * `uk-dark` is or dark colors on light backgrounds
 */
.uk-light,
.uk-section-primary:not(.uk-preserve-color),
.uk-section-secondary:not(.uk-preserve-color),
.uk-tile-primary:not(.uk-preserve-color),
.uk-tile-secondary:not(.uk-preserve-color),
.uk-card-primary.uk-card-body,
.uk-card-primary > :not([class*='uk-card-media']),
.uk-card-secondary.uk-card-body,
.uk-card-secondary > :not([class*='uk-card-media']),
.uk-overlay-primary,
.uk-offcanvas-bar {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light a,
.uk-light .uk-link,
.uk-section-primary:not(.uk-preserve-color) a,
.uk-section-primary:not(.uk-preserve-color) .uk-link,
.uk-section-secondary:not(.uk-preserve-color) a,
.uk-section-secondary:not(.uk-preserve-color) .uk-link,
.uk-tile-primary:not(.uk-preserve-color) a,
.uk-tile-primary:not(.uk-preserve-color) .uk-link,
.uk-tile-secondary:not(.uk-preserve-color) a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-link,
.uk-card-primary.uk-card-body a,
.uk-card-primary.uk-card-body .uk-link,
.uk-card-primary > :not([class*='uk-card-media']) a,
.uk-card-primary > :not([class*='uk-card-media']) .uk-link,
.uk-card-secondary.uk-card-body a,
.uk-card-secondary.uk-card-body .uk-link,
.uk-card-secondary > :not([class*='uk-card-media']) a,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-link,
.uk-overlay-primary a,
.uk-overlay-primary .uk-link,
.uk-offcanvas-bar a,
.uk-offcanvas-bar .uk-link {
  color: #fff;
}
.uk-light a:hover,
.uk-light .uk-link:hover,
.uk-section-primary:not(.uk-preserve-color) a:hover,
.uk-section-primary:not(.uk-preserve-color) .uk-link:hover,
.uk-section-secondary:not(.uk-preserve-color) a:hover,
.uk-section-secondary:not(.uk-preserve-color) .uk-link:hover,
.uk-tile-primary:not(.uk-preserve-color) a:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-link:hover,
.uk-tile-secondary:not(.uk-preserve-color) a:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-link:hover,
.uk-card-primary.uk-card-body a:hover,
.uk-card-primary.uk-card-body .uk-link:hover,
.uk-card-primary > :not([class*='uk-card-media']) a:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-link:hover,
.uk-card-secondary.uk-card-body a:hover,
.uk-card-secondary.uk-card-body .uk-link:hover,
.uk-card-secondary > :not([class*='uk-card-media']) a:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-link:hover,
.uk-overlay-primary a:hover,
.uk-overlay-primary .uk-link:hover,
.uk-offcanvas-bar a:hover,
.uk-offcanvas-bar .uk-link:hover {
  color: #fff;
}
.uk-light :not(pre) > code,
.uk-light :not(pre) > kbd,
.uk-light :not(pre) > samp,
.uk-section-primary:not(.uk-preserve-color) :not(pre) > code,
.uk-section-primary:not(.uk-preserve-color) :not(pre) > kbd,
.uk-section-primary:not(.uk-preserve-color) :not(pre) > samp,
.uk-section-secondary:not(.uk-preserve-color) :not(pre) > code,
.uk-section-secondary:not(.uk-preserve-color) :not(pre) > kbd,
.uk-section-secondary:not(.uk-preserve-color) :not(pre) > samp,
.uk-tile-primary:not(.uk-preserve-color) :not(pre) > code,
.uk-tile-primary:not(.uk-preserve-color) :not(pre) > kbd,
.uk-tile-primary:not(.uk-preserve-color) :not(pre) > samp,
.uk-tile-secondary:not(.uk-preserve-color) :not(pre) > code,
.uk-tile-secondary:not(.uk-preserve-color) :not(pre) > kbd,
.uk-tile-secondary:not(.uk-preserve-color) :not(pre) > samp,
.uk-card-primary.uk-card-body :not(pre) > code,
.uk-card-primary.uk-card-body :not(pre) > kbd,
.uk-card-primary.uk-card-body :not(pre) > samp,
.uk-card-primary > :not([class*='uk-card-media']) :not(pre) > code,
.uk-card-primary > :not([class*='uk-card-media']) :not(pre) > kbd,
.uk-card-primary > :not([class*='uk-card-media']) :not(pre) > samp,
.uk-card-secondary.uk-card-body :not(pre) > code,
.uk-card-secondary.uk-card-body :not(pre) > kbd,
.uk-card-secondary.uk-card-body :not(pre) > samp,
.uk-card-secondary > :not([class*='uk-card-media']) :not(pre) > code,
.uk-card-secondary > :not([class*='uk-card-media']) :not(pre) > kbd,
.uk-card-secondary > :not([class*='uk-card-media']) :not(pre) > samp,
.uk-overlay-primary :not(pre) > code,
.uk-overlay-primary :not(pre) > kbd,
.uk-overlay-primary :not(pre) > samp,
.uk-offcanvas-bar :not(pre) > code,
.uk-offcanvas-bar :not(pre) > kbd,
.uk-offcanvas-bar :not(pre) > samp {
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.1);
}
.uk-light em,
.uk-section-primary:not(.uk-preserve-color) em,
.uk-section-secondary:not(.uk-preserve-color) em,
.uk-tile-primary:not(.uk-preserve-color) em,
.uk-tile-secondary:not(.uk-preserve-color) em,
.uk-card-primary.uk-card-body em,
.uk-card-primary > :not([class*='uk-card-media']) em,
.uk-card-secondary.uk-card-body em,
.uk-card-secondary > :not([class*='uk-card-media']) em,
.uk-overlay-primary em,
.uk-offcanvas-bar em {
  color: #fff;
}
.uk-light h1,
.uk-light .uk-h1,
.uk-light h2,
.uk-light .uk-h2,
.uk-light h3,
.uk-light .uk-h3,
.uk-light h4,
.uk-light .uk-h4,
.uk-light h5,
.uk-light .uk-h5,
.uk-light h6,
.uk-light .uk-h6,
.uk-light .uk-heading-small,
.uk-light .uk-heading-medium,
.uk-light .uk-heading-large,
.uk-light .uk-heading-xlarge,
.uk-light .uk-heading-2xlarge,
.uk-section-primary:not(.uk-preserve-color) h1,
.uk-section-primary:not(.uk-preserve-color) .uk-h1,
.uk-section-primary:not(.uk-preserve-color) h2,
.uk-section-primary:not(.uk-preserve-color) .uk-h2,
.uk-section-primary:not(.uk-preserve-color) h3,
.uk-section-primary:not(.uk-preserve-color) .uk-h3,
.uk-section-primary:not(.uk-preserve-color) h4,
.uk-section-primary:not(.uk-preserve-color) .uk-h4,
.uk-section-primary:not(.uk-preserve-color) h5,
.uk-section-primary:not(.uk-preserve-color) .uk-h5,
.uk-section-primary:not(.uk-preserve-color) h6,
.uk-section-primary:not(.uk-preserve-color) .uk-h6,
.uk-section-primary:not(.uk-preserve-color) .uk-heading-small,
.uk-section-primary:not(.uk-preserve-color) .uk-heading-medium,
.uk-section-primary:not(.uk-preserve-color) .uk-heading-large,
.uk-section-primary:not(.uk-preserve-color) .uk-heading-xlarge,
.uk-section-primary:not(.uk-preserve-color) .uk-heading-2xlarge,
.uk-section-secondary:not(.uk-preserve-color) h1,
.uk-section-secondary:not(.uk-preserve-color) .uk-h1,
.uk-section-secondary:not(.uk-preserve-color) h2,
.uk-section-secondary:not(.uk-preserve-color) .uk-h2,
.uk-section-secondary:not(.uk-preserve-color) h3,
.uk-section-secondary:not(.uk-preserve-color) .uk-h3,
.uk-section-secondary:not(.uk-preserve-color) h4,
.uk-section-secondary:not(.uk-preserve-color) .uk-h4,
.uk-section-secondary:not(.uk-preserve-color) h5,
.uk-section-secondary:not(.uk-preserve-color) .uk-h5,
.uk-section-secondary:not(.uk-preserve-color) h6,
.uk-section-secondary:not(.uk-preserve-color) .uk-h6,
.uk-section-secondary:not(.uk-preserve-color) .uk-heading-small,
.uk-section-secondary:not(.uk-preserve-color) .uk-heading-medium,
.uk-section-secondary:not(.uk-preserve-color) .uk-heading-large,
.uk-section-secondary:not(.uk-preserve-color) .uk-heading-xlarge,
.uk-section-secondary:not(.uk-preserve-color) .uk-heading-2xlarge,
.uk-tile-primary:not(.uk-preserve-color) h1,
.uk-tile-primary:not(.uk-preserve-color) .uk-h1,
.uk-tile-primary:not(.uk-preserve-color) h2,
.uk-tile-primary:not(.uk-preserve-color) .uk-h2,
.uk-tile-primary:not(.uk-preserve-color) h3,
.uk-tile-primary:not(.uk-preserve-color) .uk-h3,
.uk-tile-primary:not(.uk-preserve-color) h4,
.uk-tile-primary:not(.uk-preserve-color) .uk-h4,
.uk-tile-primary:not(.uk-preserve-color) h5,
.uk-tile-primary:not(.uk-preserve-color) .uk-h5,
.uk-tile-primary:not(.uk-preserve-color) h6,
.uk-tile-primary:not(.uk-preserve-color) .uk-h6,
.uk-tile-primary:not(.uk-preserve-color) .uk-heading-small,
.uk-tile-primary:not(.uk-preserve-color) .uk-heading-medium,
.uk-tile-primary:not(.uk-preserve-color) .uk-heading-large,
.uk-tile-primary:not(.uk-preserve-color) .uk-heading-xlarge,
.uk-tile-primary:not(.uk-preserve-color) .uk-heading-2xlarge,
.uk-tile-secondary:not(.uk-preserve-color) h1,
.uk-tile-secondary:not(.uk-preserve-color) .uk-h1,
.uk-tile-secondary:not(.uk-preserve-color) h2,
.uk-tile-secondary:not(.uk-preserve-color) .uk-h2,
.uk-tile-secondary:not(.uk-preserve-color) h3,
.uk-tile-secondary:not(.uk-preserve-color) .uk-h3,
.uk-tile-secondary:not(.uk-preserve-color) h4,
.uk-tile-secondary:not(.uk-preserve-color) .uk-h4,
.uk-tile-secondary:not(.uk-preserve-color) h5,
.uk-tile-secondary:not(.uk-preserve-color) .uk-h5,
.uk-tile-secondary:not(.uk-preserve-color) h6,
.uk-tile-secondary:not(.uk-preserve-color) .uk-h6,
.uk-tile-secondary:not(.uk-preserve-color) .uk-heading-small,
.uk-tile-secondary:not(.uk-preserve-color) .uk-heading-medium,
.uk-tile-secondary:not(.uk-preserve-color) .uk-heading-large,
.uk-tile-secondary:not(.uk-preserve-color) .uk-heading-xlarge,
.uk-tile-secondary:not(.uk-preserve-color) .uk-heading-2xlarge,
.uk-card-primary.uk-card-body h1,
.uk-card-primary.uk-card-body .uk-h1,
.uk-card-primary.uk-card-body h2,
.uk-card-primary.uk-card-body .uk-h2,
.uk-card-primary.uk-card-body h3,
.uk-card-primary.uk-card-body .uk-h3,
.uk-card-primary.uk-card-body h4,
.uk-card-primary.uk-card-body .uk-h4,
.uk-card-primary.uk-card-body h5,
.uk-card-primary.uk-card-body .uk-h5,
.uk-card-primary.uk-card-body h6,
.uk-card-primary.uk-card-body .uk-h6,
.uk-card-primary.uk-card-body .uk-heading-small,
.uk-card-primary.uk-card-body .uk-heading-medium,
.uk-card-primary.uk-card-body .uk-heading-large,
.uk-card-primary.uk-card-body .uk-heading-xlarge,
.uk-card-primary.uk-card-body .uk-heading-2xlarge,
.uk-card-primary > :not([class*='uk-card-media']) h1,
.uk-card-primary > :not([class*='uk-card-media']) .uk-h1,
.uk-card-primary > :not([class*='uk-card-media']) h2,
.uk-card-primary > :not([class*='uk-card-media']) .uk-h2,
.uk-card-primary > :not([class*='uk-card-media']) h3,
.uk-card-primary > :not([class*='uk-card-media']) .uk-h3,
.uk-card-primary > :not([class*='uk-card-media']) h4,
.uk-card-primary > :not([class*='uk-card-media']) .uk-h4,
.uk-card-primary > :not([class*='uk-card-media']) h5,
.uk-card-primary > :not([class*='uk-card-media']) .uk-h5,
.uk-card-primary > :not([class*='uk-card-media']) h6,
.uk-card-primary > :not([class*='uk-card-media']) .uk-h6,
.uk-card-primary > :not([class*='uk-card-media']) .uk-heading-small,
.uk-card-primary > :not([class*='uk-card-media']) .uk-heading-medium,
.uk-card-primary > :not([class*='uk-card-media']) .uk-heading-large,
.uk-card-primary > :not([class*='uk-card-media']) .uk-heading-xlarge,
.uk-card-primary > :not([class*='uk-card-media']) .uk-heading-2xlarge,
.uk-card-secondary.uk-card-body h1,
.uk-card-secondary.uk-card-body .uk-h1,
.uk-card-secondary.uk-card-body h2,
.uk-card-secondary.uk-card-body .uk-h2,
.uk-card-secondary.uk-card-body h3,
.uk-card-secondary.uk-card-body .uk-h3,
.uk-card-secondary.uk-card-body h4,
.uk-card-secondary.uk-card-body .uk-h4,
.uk-card-secondary.uk-card-body h5,
.uk-card-secondary.uk-card-body .uk-h5,
.uk-card-secondary.uk-card-body h6,
.uk-card-secondary.uk-card-body .uk-h6,
.uk-card-secondary.uk-card-body .uk-heading-small,
.uk-card-secondary.uk-card-body .uk-heading-medium,
.uk-card-secondary.uk-card-body .uk-heading-large,
.uk-card-secondary.uk-card-body .uk-heading-xlarge,
.uk-card-secondary.uk-card-body .uk-heading-2xlarge,
.uk-card-secondary > :not([class*='uk-card-media']) h1,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-h1,
.uk-card-secondary > :not([class*='uk-card-media']) h2,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-h2,
.uk-card-secondary > :not([class*='uk-card-media']) h3,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-h3,
.uk-card-secondary > :not([class*='uk-card-media']) h4,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-h4,
.uk-card-secondary > :not([class*='uk-card-media']) h5,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-h5,
.uk-card-secondary > :not([class*='uk-card-media']) h6,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-h6,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-heading-small,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-heading-medium,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-heading-large,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-heading-xlarge,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-heading-2xlarge,
.uk-overlay-primary h1,
.uk-overlay-primary .uk-h1,
.uk-overlay-primary h2,
.uk-overlay-primary .uk-h2,
.uk-overlay-primary h3,
.uk-overlay-primary .uk-h3,
.uk-overlay-primary h4,
.uk-overlay-primary .uk-h4,
.uk-overlay-primary h5,
.uk-overlay-primary .uk-h5,
.uk-overlay-primary h6,
.uk-overlay-primary .uk-h6,
.uk-overlay-primary .uk-heading-small,
.uk-overlay-primary .uk-heading-medium,
.uk-overlay-primary .uk-heading-large,
.uk-overlay-primary .uk-heading-xlarge,
.uk-overlay-primary .uk-heading-2xlarge,
.uk-offcanvas-bar h1,
.uk-offcanvas-bar .uk-h1,
.uk-offcanvas-bar h2,
.uk-offcanvas-bar .uk-h2,
.uk-offcanvas-bar h3,
.uk-offcanvas-bar .uk-h3,
.uk-offcanvas-bar h4,
.uk-offcanvas-bar .uk-h4,
.uk-offcanvas-bar h5,
.uk-offcanvas-bar .uk-h5,
.uk-offcanvas-bar h6,
.uk-offcanvas-bar .uk-h6,
.uk-offcanvas-bar .uk-heading-small,
.uk-offcanvas-bar .uk-heading-medium,
.uk-offcanvas-bar .uk-heading-large,
.uk-offcanvas-bar .uk-heading-xlarge,
.uk-offcanvas-bar .uk-heading-2xlarge {
  color: #fff;
}
.uk-light blockquote,
.uk-section-primary:not(.uk-preserve-color) blockquote,
.uk-section-secondary:not(.uk-preserve-color) blockquote,
.uk-tile-primary:not(.uk-preserve-color) blockquote,
.uk-tile-secondary:not(.uk-preserve-color) blockquote,
.uk-card-primary.uk-card-body blockquote,
.uk-card-primary > :not([class*='uk-card-media']) blockquote,
.uk-card-secondary.uk-card-body blockquote,
.uk-card-secondary > :not([class*='uk-card-media']) blockquote,
.uk-overlay-primary blockquote,
.uk-offcanvas-bar blockquote {
  color: #fff;
}
.uk-light blockquote footer,
.uk-section-primary:not(.uk-preserve-color) blockquote footer,
.uk-section-secondary:not(.uk-preserve-color) blockquote footer,
.uk-tile-primary:not(.uk-preserve-color) blockquote footer,
.uk-tile-secondary:not(.uk-preserve-color) blockquote footer,
.uk-card-primary.uk-card-body blockquote footer,
.uk-card-primary > :not([class*='uk-card-media']) blockquote footer,
.uk-card-secondary.uk-card-body blockquote footer,
.uk-card-secondary > :not([class*='uk-card-media']) blockquote footer,
.uk-overlay-primary blockquote footer,
.uk-offcanvas-bar blockquote footer {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light hr,
.uk-light .uk-hr,
.uk-section-primary:not(.uk-preserve-color) hr,
.uk-section-primary:not(.uk-preserve-color) .uk-hr,
.uk-section-secondary:not(.uk-preserve-color) hr,
.uk-section-secondary:not(.uk-preserve-color) .uk-hr,
.uk-tile-primary:not(.uk-preserve-color) hr,
.uk-tile-primary:not(.uk-preserve-color) .uk-hr,
.uk-tile-secondary:not(.uk-preserve-color) hr,
.uk-tile-secondary:not(.uk-preserve-color) .uk-hr,
.uk-card-primary.uk-card-body hr,
.uk-card-primary.uk-card-body .uk-hr,
.uk-card-primary > :not([class*='uk-card-media']) hr,
.uk-card-primary > :not([class*='uk-card-media']) .uk-hr,
.uk-card-secondary.uk-card-body hr,
.uk-card-secondary.uk-card-body .uk-hr,
.uk-card-secondary > :not([class*='uk-card-media']) hr,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-hr,
.uk-overlay-primary hr,
.uk-overlay-primary .uk-hr,
.uk-offcanvas-bar hr,
.uk-offcanvas-bar .uk-hr {
  border-top-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-link-muted,
.uk-light .uk-link-muted a,
.uk-section-primary:not(.uk-preserve-color) .uk-link-muted,
.uk-section-primary:not(.uk-preserve-color) .uk-link-muted a,
.uk-section-secondary:not(.uk-preserve-color) .uk-link-muted,
.uk-section-secondary:not(.uk-preserve-color) .uk-link-muted a,
.uk-tile-primary:not(.uk-preserve-color) .uk-link-muted,
.uk-tile-primary:not(.uk-preserve-color) .uk-link-muted a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-link-muted,
.uk-tile-secondary:not(.uk-preserve-color) .uk-link-muted a,
.uk-card-primary.uk-card-body .uk-link-muted,
.uk-card-primary.uk-card-body .uk-link-muted a,
.uk-card-primary > :not([class*='uk-card-media']) .uk-link-muted,
.uk-card-primary > :not([class*='uk-card-media']) .uk-link-muted a,
.uk-card-secondary.uk-card-body .uk-link-muted,
.uk-card-secondary.uk-card-body .uk-link-muted a,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-link-muted,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-link-muted a,
.uk-overlay-primary .uk-link-muted,
.uk-overlay-primary .uk-link-muted a,
.uk-offcanvas-bar .uk-link-muted,
.uk-offcanvas-bar .uk-link-muted a {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-link-muted:hover,
.uk-light .uk-link-muted a:hover,
.uk-section-primary:not(.uk-preserve-color) .uk-link-muted:hover,
.uk-section-primary:not(.uk-preserve-color) .uk-link-muted a:hover,
.uk-section-secondary:not(.uk-preserve-color) .uk-link-muted:hover,
.uk-section-secondary:not(.uk-preserve-color) .uk-link-muted a:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-link-muted:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-link-muted a:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-link-muted:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-link-muted a:hover,
.uk-card-primary.uk-card-body .uk-link-muted:hover,
.uk-card-primary.uk-card-body .uk-link-muted a:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-link-muted:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-link-muted a:hover,
.uk-card-secondary.uk-card-body .uk-link-muted:hover,
.uk-card-secondary.uk-card-body .uk-link-muted a:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-link-muted:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-link-muted a:hover,
.uk-overlay-primary .uk-link-muted:hover,
.uk-overlay-primary .uk-link-muted a:hover,
.uk-offcanvas-bar .uk-link-muted:hover,
.uk-offcanvas-bar .uk-link-muted a:hover {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-link-text:hover,
.uk-light .uk-link-text a:hover,
.uk-section-primary:not(.uk-preserve-color) .uk-link-text:hover,
.uk-section-primary:not(.uk-preserve-color) .uk-link-text a:hover,
.uk-section-secondary:not(.uk-preserve-color) .uk-link-text:hover,
.uk-section-secondary:not(.uk-preserve-color) .uk-link-text a:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-link-text:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-link-text a:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-link-text:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-link-text a:hover,
.uk-card-primary.uk-card-body .uk-link-text:hover,
.uk-card-primary.uk-card-body .uk-link-text a:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-link-text:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-link-text a:hover,
.uk-card-secondary.uk-card-body .uk-link-text:hover,
.uk-card-secondary.uk-card-body .uk-link-text a:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-link-text:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-link-text a:hover,
.uk-overlay-primary .uk-link-text:hover,
.uk-overlay-primary .uk-link-text a:hover,
.uk-offcanvas-bar .uk-link-text:hover,
.uk-offcanvas-bar .uk-link-text a:hover {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-link-heading:hover,
.uk-light .uk-link-heading a:hover,
.uk-section-primary:not(.uk-preserve-color) .uk-link-heading:hover,
.uk-section-primary:not(.uk-preserve-color) .uk-link-heading a:hover,
.uk-section-secondary:not(.uk-preserve-color) .uk-link-heading:hover,
.uk-section-secondary:not(.uk-preserve-color) .uk-link-heading a:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-link-heading:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-link-heading a:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-link-heading:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-link-heading a:hover,
.uk-card-primary.uk-card-body .uk-link-heading:hover,
.uk-card-primary.uk-card-body .uk-link-heading a:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-link-heading:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-link-heading a:hover,
.uk-card-secondary.uk-card-body .uk-link-heading:hover,
.uk-card-secondary.uk-card-body .uk-link-heading a:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-link-heading:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-link-heading a:hover,
.uk-overlay-primary .uk-link-heading:hover,
.uk-overlay-primary .uk-link-heading a:hover,
.uk-offcanvas-bar .uk-link-heading:hover,
.uk-offcanvas-bar .uk-link-heading a:hover {
  color: #fff;
}
.uk-light .uk-heading-divider,
.uk-section-primary:not(.uk-preserve-color) .uk-heading-divider,
.uk-section-secondary:not(.uk-preserve-color) .uk-heading-divider,
.uk-tile-primary:not(.uk-preserve-color) .uk-heading-divider,
.uk-tile-secondary:not(.uk-preserve-color) .uk-heading-divider,
.uk-card-primary.uk-card-body .uk-heading-divider,
.uk-card-primary > :not([class*='uk-card-media']) .uk-heading-divider,
.uk-card-secondary.uk-card-body .uk-heading-divider,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-heading-divider,
.uk-overlay-primary .uk-heading-divider,
.uk-offcanvas-bar .uk-heading-divider {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-heading-bullet::before,
.uk-section-primary:not(.uk-preserve-color) .uk-heading-bullet::before,
.uk-section-secondary:not(.uk-preserve-color) .uk-heading-bullet::before,
.uk-tile-primary:not(.uk-preserve-color) .uk-heading-bullet::before,
.uk-tile-secondary:not(.uk-preserve-color) .uk-heading-bullet::before,
.uk-card-primary.uk-card-body .uk-heading-bullet::before,
.uk-card-primary > :not([class*='uk-card-media']) .uk-heading-bullet::before,
.uk-card-secondary.uk-card-body .uk-heading-bullet::before,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-heading-bullet::before,
.uk-overlay-primary .uk-heading-bullet::before,
.uk-offcanvas-bar .uk-heading-bullet::before {
  border-left-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-heading-line > ::before,
.uk-light .uk-heading-line > ::after,
.uk-section-primary:not(.uk-preserve-color) .uk-heading-line > ::before,
.uk-section-primary:not(.uk-preserve-color) .uk-heading-line > ::after,
.uk-section-secondary:not(.uk-preserve-color) .uk-heading-line > ::before,
.uk-section-secondary:not(.uk-preserve-color) .uk-heading-line > ::after,
.uk-tile-primary:not(.uk-preserve-color) .uk-heading-line > ::before,
.uk-tile-primary:not(.uk-preserve-color) .uk-heading-line > ::after,
.uk-tile-secondary:not(.uk-preserve-color) .uk-heading-line > ::before,
.uk-tile-secondary:not(.uk-preserve-color) .uk-heading-line > ::after,
.uk-card-primary.uk-card-body .uk-heading-line > ::before,
.uk-card-primary.uk-card-body .uk-heading-line > ::after,
.uk-card-primary > :not([class*='uk-card-media']) .uk-heading-line > ::before,
.uk-card-primary > :not([class*='uk-card-media']) .uk-heading-line > ::after,
.uk-card-secondary.uk-card-body .uk-heading-line > ::before,
.uk-card-secondary.uk-card-body .uk-heading-line > ::after,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-heading-line > ::before,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-heading-line > ::after,
.uk-overlay-primary .uk-heading-line > ::before,
.uk-overlay-primary .uk-heading-line > ::after,
.uk-offcanvas-bar .uk-heading-line > ::before,
.uk-offcanvas-bar .uk-heading-line > ::after {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-divider-icon,
.uk-section-primary:not(.uk-preserve-color) .uk-divider-icon,
.uk-section-secondary:not(.uk-preserve-color) .uk-divider-icon,
.uk-tile-primary:not(.uk-preserve-color) .uk-divider-icon,
.uk-tile-secondary:not(.uk-preserve-color) .uk-divider-icon,
.uk-card-primary.uk-card-body .uk-divider-icon,
.uk-card-primary > :not([class*='uk-card-media']) .uk-divider-icon,
.uk-card-secondary.uk-card-body .uk-divider-icon,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-divider-icon,
.uk-overlay-primary .uk-divider-icon,
.uk-offcanvas-bar .uk-divider-icon {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22none%22%20stroke%3D%22rgba%28255,%20255,%20255,%200.2%29%22%20stroke-width%3D%222%22%20cx%3D%2210%22%20cy%3D%2210%22%20r%3D%227%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
}
.uk-light .uk-divider-icon::before,
.uk-light .uk-divider-icon::after,
.uk-section-primary:not(.uk-preserve-color) .uk-divider-icon::before,
.uk-section-primary:not(.uk-preserve-color) .uk-divider-icon::after,
.uk-section-secondary:not(.uk-preserve-color) .uk-divider-icon::before,
.uk-section-secondary:not(.uk-preserve-color) .uk-divider-icon::after,
.uk-tile-primary:not(.uk-preserve-color) .uk-divider-icon::before,
.uk-tile-primary:not(.uk-preserve-color) .uk-divider-icon::after,
.uk-tile-secondary:not(.uk-preserve-color) .uk-divider-icon::before,
.uk-tile-secondary:not(.uk-preserve-color) .uk-divider-icon::after,
.uk-card-primary.uk-card-body .uk-divider-icon::before,
.uk-card-primary.uk-card-body .uk-divider-icon::after,
.uk-card-primary > :not([class*='uk-card-media']) .uk-divider-icon::before,
.uk-card-primary > :not([class*='uk-card-media']) .uk-divider-icon::after,
.uk-card-secondary.uk-card-body .uk-divider-icon::before,
.uk-card-secondary.uk-card-body .uk-divider-icon::after,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-divider-icon::before,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-divider-icon::after,
.uk-overlay-primary .uk-divider-icon::before,
.uk-overlay-primary .uk-divider-icon::after,
.uk-offcanvas-bar .uk-divider-icon::before,
.uk-offcanvas-bar .uk-divider-icon::after {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-divider-small::after,
.uk-section-primary:not(.uk-preserve-color) .uk-divider-small::after,
.uk-section-secondary:not(.uk-preserve-color) .uk-divider-small::after,
.uk-tile-primary:not(.uk-preserve-color) .uk-divider-small::after,
.uk-tile-secondary:not(.uk-preserve-color) .uk-divider-small::after,
.uk-card-primary.uk-card-body .uk-divider-small::after,
.uk-card-primary > :not([class*='uk-card-media']) .uk-divider-small::after,
.uk-card-secondary.uk-card-body .uk-divider-small::after,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-divider-small::after,
.uk-overlay-primary .uk-divider-small::after,
.uk-offcanvas-bar .uk-divider-small::after {
  border-top-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-divider-vertical,
.uk-section-primary:not(.uk-preserve-color) .uk-divider-vertical,
.uk-section-secondary:not(.uk-preserve-color) .uk-divider-vertical,
.uk-tile-primary:not(.uk-preserve-color) .uk-divider-vertical,
.uk-tile-secondary:not(.uk-preserve-color) .uk-divider-vertical,
.uk-card-primary.uk-card-body .uk-divider-vertical,
.uk-card-primary > :not([class*='uk-card-media']) .uk-divider-vertical,
.uk-card-secondary.uk-card-body .uk-divider-vertical,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-divider-vertical,
.uk-overlay-primary .uk-divider-vertical,
.uk-offcanvas-bar .uk-divider-vertical {
  border-left-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-list-muted > ::before,
.uk-section-primary:not(.uk-preserve-color) .uk-list-muted > ::before,
.uk-section-secondary:not(.uk-preserve-color) .uk-list-muted > ::before,
.uk-tile-primary:not(.uk-preserve-color) .uk-list-muted > ::before,
.uk-tile-secondary:not(.uk-preserve-color) .uk-list-muted > ::before,
.uk-card-primary.uk-card-body .uk-list-muted > ::before,
.uk-card-primary > :not([class*='uk-card-media']) .uk-list-muted > ::before,
.uk-card-secondary.uk-card-body .uk-list-muted > ::before,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-list-muted > ::before,
.uk-overlay-primary .uk-list-muted > ::before,
.uk-offcanvas-bar .uk-list-muted > ::before {
  color: rgba(255, 255, 255, 0.5) !important;
}
.uk-light .uk-list-emphasis > ::before,
.uk-section-primary:not(.uk-preserve-color) .uk-list-emphasis > ::before,
.uk-section-secondary:not(.uk-preserve-color) .uk-list-emphasis > ::before,
.uk-tile-primary:not(.uk-preserve-color) .uk-list-emphasis > ::before,
.uk-tile-secondary:not(.uk-preserve-color) .uk-list-emphasis > ::before,
.uk-card-primary.uk-card-body .uk-list-emphasis > ::before,
.uk-card-primary > :not([class*='uk-card-media']) .uk-list-emphasis > ::before,
.uk-card-secondary.uk-card-body .uk-list-emphasis > ::before,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-list-emphasis > ::before,
.uk-overlay-primary .uk-list-emphasis > ::before,
.uk-offcanvas-bar .uk-list-emphasis > ::before {
  color: #fff !important;
}
.uk-light .uk-list-primary > ::before,
.uk-section-primary:not(.uk-preserve-color) .uk-list-primary > ::before,
.uk-section-secondary:not(.uk-preserve-color) .uk-list-primary > ::before,
.uk-tile-primary:not(.uk-preserve-color) .uk-list-primary > ::before,
.uk-tile-secondary:not(.uk-preserve-color) .uk-list-primary > ::before,
.uk-card-primary.uk-card-body .uk-list-primary > ::before,
.uk-card-primary > :not([class*='uk-card-media']) .uk-list-primary > ::before,
.uk-card-secondary.uk-card-body .uk-list-primary > ::before,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-list-primary > ::before,
.uk-overlay-primary .uk-list-primary > ::before,
.uk-offcanvas-bar .uk-list-primary > ::before {
  color: #fff !important;
}
.uk-light .uk-list-secondary > ::before,
.uk-section-primary:not(.uk-preserve-color) .uk-list-secondary > ::before,
.uk-section-secondary:not(.uk-preserve-color) .uk-list-secondary > ::before,
.uk-tile-primary:not(.uk-preserve-color) .uk-list-secondary > ::before,
.uk-tile-secondary:not(.uk-preserve-color) .uk-list-secondary > ::before,
.uk-card-primary.uk-card-body .uk-list-secondary > ::before,
.uk-card-primary > :not([class*='uk-card-media']) .uk-list-secondary > ::before,
.uk-card-secondary.uk-card-body .uk-list-secondary > ::before,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-list-secondary > ::before,
.uk-overlay-primary .uk-list-secondary > ::before,
.uk-offcanvas-bar .uk-list-secondary > ::before {
  color: #fff !important;
}
.uk-light .uk-list-bullet > ::before,
.uk-section-primary:not(.uk-preserve-color) .uk-list-bullet > ::before,
.uk-section-secondary:not(.uk-preserve-color) .uk-list-bullet > ::before,
.uk-tile-primary:not(.uk-preserve-color) .uk-list-bullet > ::before,
.uk-tile-secondary:not(.uk-preserve-color) .uk-list-bullet > ::before,
.uk-card-primary.uk-card-body .uk-list-bullet > ::before,
.uk-card-primary > :not([class*='uk-card-media']) .uk-list-bullet > ::before,
.uk-card-secondary.uk-card-body .uk-list-bullet > ::before,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-list-bullet > ::before,
.uk-overlay-primary .uk-list-bullet > ::before,
.uk-offcanvas-bar .uk-list-bullet > ::before {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%226%22%20height%3D%226%22%20viewBox%3D%220%200%206%206%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22rgba%28255,%20255,%20255,%200.7%29%22%20cx%3D%223%22%20cy%3D%223%22%20r%3D%223%22%20%2F%3E%0A%3C%2Fsvg%3E");
}
.uk-light .uk-list-divider > :nth-child(n+2),
.uk-section-primary:not(.uk-preserve-color) .uk-list-divider > :nth-child(n+2),
.uk-section-secondary:not(.uk-preserve-color) .uk-list-divider > :nth-child(n+2),
.uk-tile-primary:not(.uk-preserve-color) .uk-list-divider > :nth-child(n+2),
.uk-tile-secondary:not(.uk-preserve-color) .uk-list-divider > :nth-child(n+2),
.uk-card-primary.uk-card-body .uk-list-divider > :nth-child(n+2),
.uk-card-primary > :not([class*='uk-card-media']) .uk-list-divider > :nth-child(n+2),
.uk-card-secondary.uk-card-body .uk-list-divider > :nth-child(n+2),
.uk-card-secondary > :not([class*='uk-card-media']) .uk-list-divider > :nth-child(n+2),
.uk-overlay-primary .uk-list-divider > :nth-child(n+2),
.uk-offcanvas-bar .uk-list-divider > :nth-child(n+2) {
  border-top-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-list-striped > *:nth-of-type(odd),
.uk-section-primary:not(.uk-preserve-color) .uk-list-striped > *:nth-of-type(odd),
.uk-section-secondary:not(.uk-preserve-color) .uk-list-striped > *:nth-of-type(odd),
.uk-tile-primary:not(.uk-preserve-color) .uk-list-striped > *:nth-of-type(odd),
.uk-tile-secondary:not(.uk-preserve-color) .uk-list-striped > *:nth-of-type(odd),
.uk-card-primary.uk-card-body .uk-list-striped > *:nth-of-type(odd),
.uk-card-primary > :not([class*='uk-card-media']) .uk-list-striped > *:nth-of-type(odd),
.uk-card-secondary.uk-card-body .uk-list-striped > *:nth-of-type(odd),
.uk-card-secondary > :not([class*='uk-card-media']) .uk-list-striped > *:nth-of-type(odd),
.uk-overlay-primary .uk-list-striped > *:nth-of-type(odd),
.uk-offcanvas-bar .uk-list-striped > *:nth-of-type(odd) {
  border-top-color: rgba(255, 255, 255, 0.2);
  border-bottom-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-list-striped > :nth-of-type(odd),
.uk-section-primary:not(.uk-preserve-color) .uk-list-striped > :nth-of-type(odd),
.uk-section-secondary:not(.uk-preserve-color) .uk-list-striped > :nth-of-type(odd),
.uk-tile-primary:not(.uk-preserve-color) .uk-list-striped > :nth-of-type(odd),
.uk-tile-secondary:not(.uk-preserve-color) .uk-list-striped > :nth-of-type(odd),
.uk-card-primary.uk-card-body .uk-list-striped > :nth-of-type(odd),
.uk-card-primary > :not([class*='uk-card-media']) .uk-list-striped > :nth-of-type(odd),
.uk-card-secondary.uk-card-body .uk-list-striped > :nth-of-type(odd),
.uk-card-secondary > :not([class*='uk-card-media']) .uk-list-striped > :nth-of-type(odd),
.uk-overlay-primary .uk-list-striped > :nth-of-type(odd),
.uk-offcanvas-bar .uk-list-striped > :nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.1);
}
.uk-light .uk-table th,
.uk-section-primary:not(.uk-preserve-color) .uk-table th,
.uk-section-secondary:not(.uk-preserve-color) .uk-table th,
.uk-tile-primary:not(.uk-preserve-color) .uk-table th,
.uk-tile-secondary:not(.uk-preserve-color) .uk-table th,
.uk-card-primary.uk-card-body .uk-table th,
.uk-card-primary > :not([class*='uk-card-media']) .uk-table th,
.uk-card-secondary.uk-card-body .uk-table th,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-table th,
.uk-overlay-primary .uk-table th,
.uk-offcanvas-bar .uk-table th {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-table caption,
.uk-section-primary:not(.uk-preserve-color) .uk-table caption,
.uk-section-secondary:not(.uk-preserve-color) .uk-table caption,
.uk-tile-primary:not(.uk-preserve-color) .uk-table caption,
.uk-tile-secondary:not(.uk-preserve-color) .uk-table caption,
.uk-card-primary.uk-card-body .uk-table caption,
.uk-card-primary > :not([class*='uk-card-media']) .uk-table caption,
.uk-card-secondary.uk-card-body .uk-table caption,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-table caption,
.uk-overlay-primary .uk-table caption,
.uk-offcanvas-bar .uk-table caption {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-table > tr.uk-active,
.uk-light .uk-table tbody tr.uk-active,
.uk-section-primary:not(.uk-preserve-color) .uk-table > tr.uk-active,
.uk-section-primary:not(.uk-preserve-color) .uk-table tbody tr.uk-active,
.uk-section-secondary:not(.uk-preserve-color) .uk-table > tr.uk-active,
.uk-section-secondary:not(.uk-preserve-color) .uk-table tbody tr.uk-active,
.uk-tile-primary:not(.uk-preserve-color) .uk-table > tr.uk-active,
.uk-tile-primary:not(.uk-preserve-color) .uk-table tbody tr.uk-active,
.uk-tile-secondary:not(.uk-preserve-color) .uk-table > tr.uk-active,
.uk-tile-secondary:not(.uk-preserve-color) .uk-table tbody tr.uk-active,
.uk-card-primary.uk-card-body .uk-table > tr.uk-active,
.uk-card-primary.uk-card-body .uk-table tbody tr.uk-active,
.uk-card-primary > :not([class*='uk-card-media']) .uk-table > tr.uk-active,
.uk-card-primary > :not([class*='uk-card-media']) .uk-table tbody tr.uk-active,
.uk-card-secondary.uk-card-body .uk-table > tr.uk-active,
.uk-card-secondary.uk-card-body .uk-table tbody tr.uk-active,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-table > tr.uk-active,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-table tbody tr.uk-active,
.uk-overlay-primary .uk-table > tr.uk-active,
.uk-overlay-primary .uk-table tbody tr.uk-active,
.uk-offcanvas-bar .uk-table > tr.uk-active,
.uk-offcanvas-bar .uk-table tbody tr.uk-active {
  background: rgba(255, 255, 255, 0.08);
}
.uk-light .uk-table-divider > tr:not(:first-child),
.uk-light .uk-table-divider > :not(:first-child) > tr,
.uk-light .uk-table-divider > :first-child > tr:not(:first-child),
.uk-section-primary:not(.uk-preserve-color) .uk-table-divider > tr:not(:first-child),
.uk-section-primary:not(.uk-preserve-color) .uk-table-divider > :not(:first-child) > tr,
.uk-section-primary:not(.uk-preserve-color) .uk-table-divider > :first-child > tr:not(:first-child),
.uk-section-secondary:not(.uk-preserve-color) .uk-table-divider > tr:not(:first-child),
.uk-section-secondary:not(.uk-preserve-color) .uk-table-divider > :not(:first-child) > tr,
.uk-section-secondary:not(.uk-preserve-color) .uk-table-divider > :first-child > tr:not(:first-child),
.uk-tile-primary:not(.uk-preserve-color) .uk-table-divider > tr:not(:first-child),
.uk-tile-primary:not(.uk-preserve-color) .uk-table-divider > :not(:first-child) > tr,
.uk-tile-primary:not(.uk-preserve-color) .uk-table-divider > :first-child > tr:not(:first-child),
.uk-tile-secondary:not(.uk-preserve-color) .uk-table-divider > tr:not(:first-child),
.uk-tile-secondary:not(.uk-preserve-color) .uk-table-divider > :not(:first-child) > tr,
.uk-tile-secondary:not(.uk-preserve-color) .uk-table-divider > :first-child > tr:not(:first-child),
.uk-card-primary.uk-card-body .uk-table-divider > tr:not(:first-child),
.uk-card-primary.uk-card-body .uk-table-divider > :not(:first-child) > tr,
.uk-card-primary.uk-card-body .uk-table-divider > :first-child > tr:not(:first-child),
.uk-card-primary > :not([class*='uk-card-media']) .uk-table-divider > tr:not(:first-child),
.uk-card-primary > :not([class*='uk-card-media']) .uk-table-divider > :not(:first-child) > tr,
.uk-card-primary > :not([class*='uk-card-media']) .uk-table-divider > :first-child > tr:not(:first-child),
.uk-card-secondary.uk-card-body .uk-table-divider > tr:not(:first-child),
.uk-card-secondary.uk-card-body .uk-table-divider > :not(:first-child) > tr,
.uk-card-secondary.uk-card-body .uk-table-divider > :first-child > tr:not(:first-child),
.uk-card-secondary > :not([class*='uk-card-media']) .uk-table-divider > tr:not(:first-child),
.uk-card-secondary > :not([class*='uk-card-media']) .uk-table-divider > :not(:first-child) > tr,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-table-divider > :first-child > tr:not(:first-child),
.uk-overlay-primary .uk-table-divider > tr:not(:first-child),
.uk-overlay-primary .uk-table-divider > :not(:first-child) > tr,
.uk-overlay-primary .uk-table-divider > :first-child > tr:not(:first-child),
.uk-offcanvas-bar .uk-table-divider > tr:not(:first-child),
.uk-offcanvas-bar .uk-table-divider > :not(:first-child) > tr,
.uk-offcanvas-bar .uk-table-divider > :first-child > tr:not(:first-child) {
  border-top-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-table-striped > tr:nth-of-type(odd),
.uk-light .uk-table-striped tbody tr:nth-of-type(odd),
.uk-section-primary:not(.uk-preserve-color) .uk-table-striped > tr:nth-of-type(odd),
.uk-section-primary:not(.uk-preserve-color) .uk-table-striped tbody tr:nth-of-type(odd),
.uk-section-secondary:not(.uk-preserve-color) .uk-table-striped > tr:nth-of-type(odd),
.uk-section-secondary:not(.uk-preserve-color) .uk-table-striped tbody tr:nth-of-type(odd),
.uk-tile-primary:not(.uk-preserve-color) .uk-table-striped > tr:nth-of-type(odd),
.uk-tile-primary:not(.uk-preserve-color) .uk-table-striped tbody tr:nth-of-type(odd),
.uk-tile-secondary:not(.uk-preserve-color) .uk-table-striped > tr:nth-of-type(odd),
.uk-tile-secondary:not(.uk-preserve-color) .uk-table-striped tbody tr:nth-of-type(odd),
.uk-card-primary.uk-card-body .uk-table-striped > tr:nth-of-type(odd),
.uk-card-primary.uk-card-body .uk-table-striped tbody tr:nth-of-type(odd),
.uk-card-primary > :not([class*='uk-card-media']) .uk-table-striped > tr:nth-of-type(odd),
.uk-card-primary > :not([class*='uk-card-media']) .uk-table-striped tbody tr:nth-of-type(odd),
.uk-card-secondary.uk-card-body .uk-table-striped > tr:nth-of-type(odd),
.uk-card-secondary.uk-card-body .uk-table-striped tbody tr:nth-of-type(odd),
.uk-card-secondary > :not([class*='uk-card-media']) .uk-table-striped > tr:nth-of-type(odd),
.uk-card-secondary > :not([class*='uk-card-media']) .uk-table-striped tbody tr:nth-of-type(odd),
.uk-overlay-primary .uk-table-striped > tr:nth-of-type(odd),
.uk-overlay-primary .uk-table-striped tbody tr:nth-of-type(odd),
.uk-offcanvas-bar .uk-table-striped > tr:nth-of-type(odd),
.uk-offcanvas-bar .uk-table-striped tbody tr:nth-of-type(odd) {
  background: rgba(255, 255, 255, 0.1);
  border-top-color: rgba(255, 255, 255, 0.2);
  border-bottom-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-table-hover > tr:hover,
.uk-light .uk-table-hover tbody tr:hover,
.uk-section-primary:not(.uk-preserve-color) .uk-table-hover > tr:hover,
.uk-section-primary:not(.uk-preserve-color) .uk-table-hover tbody tr:hover,
.uk-section-secondary:not(.uk-preserve-color) .uk-table-hover > tr:hover,
.uk-section-secondary:not(.uk-preserve-color) .uk-table-hover tbody tr:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-table-hover > tr:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-table-hover tbody tr:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-table-hover > tr:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-table-hover tbody tr:hover,
.uk-card-primary.uk-card-body .uk-table-hover > tr:hover,
.uk-card-primary.uk-card-body .uk-table-hover tbody tr:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-table-hover > tr:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-table-hover tbody tr:hover,
.uk-card-secondary.uk-card-body .uk-table-hover > tr:hover,
.uk-card-secondary.uk-card-body .uk-table-hover tbody tr:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-table-hover > tr:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-table-hover tbody tr:hover,
.uk-overlay-primary .uk-table-hover > tr:hover,
.uk-overlay-primary .uk-table-hover tbody tr:hover,
.uk-offcanvas-bar .uk-table-hover > tr:hover,
.uk-offcanvas-bar .uk-table-hover tbody tr:hover {
  background: rgba(255, 255, 255, 0.08);
}
.uk-light .uk-icon-link,
.uk-section-primary:not(.uk-preserve-color) .uk-icon-link,
.uk-section-secondary:not(.uk-preserve-color) .uk-icon-link,
.uk-tile-primary:not(.uk-preserve-color) .uk-icon-link,
.uk-tile-secondary:not(.uk-preserve-color) .uk-icon-link,
.uk-card-primary.uk-card-body .uk-icon-link,
.uk-card-primary > :not([class*='uk-card-media']) .uk-icon-link,
.uk-card-secondary.uk-card-body .uk-icon-link,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-icon-link,
.uk-overlay-primary .uk-icon-link,
.uk-offcanvas-bar .uk-icon-link {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-icon-link:hover,
.uk-light .uk-icon-link:focus,
.uk-section-primary:not(.uk-preserve-color) .uk-icon-link:hover,
.uk-section-primary:not(.uk-preserve-color) .uk-icon-link:focus,
.uk-section-secondary:not(.uk-preserve-color) .uk-icon-link:hover,
.uk-section-secondary:not(.uk-preserve-color) .uk-icon-link:focus,
.uk-tile-primary:not(.uk-preserve-color) .uk-icon-link:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-icon-link:focus,
.uk-tile-secondary:not(.uk-preserve-color) .uk-icon-link:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-icon-link:focus,
.uk-card-primary.uk-card-body .uk-icon-link:hover,
.uk-card-primary.uk-card-body .uk-icon-link:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-icon-link:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-icon-link:focus,
.uk-card-secondary.uk-card-body .uk-icon-link:hover,
.uk-card-secondary.uk-card-body .uk-icon-link:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-icon-link:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-icon-link:focus,
.uk-overlay-primary .uk-icon-link:hover,
.uk-overlay-primary .uk-icon-link:focus,
.uk-offcanvas-bar .uk-icon-link:hover,
.uk-offcanvas-bar .uk-icon-link:focus {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-icon-link:active,
.uk-light .uk-active > .uk-icon-link,
.uk-section-primary:not(.uk-preserve-color) .uk-icon-link:active,
.uk-section-primary:not(.uk-preserve-color) .uk-active > .uk-icon-link,
.uk-section-secondary:not(.uk-preserve-color) .uk-icon-link:active,
.uk-section-secondary:not(.uk-preserve-color) .uk-active > .uk-icon-link,
.uk-tile-primary:not(.uk-preserve-color) .uk-icon-link:active,
.uk-tile-primary:not(.uk-preserve-color) .uk-active > .uk-icon-link,
.uk-tile-secondary:not(.uk-preserve-color) .uk-icon-link:active,
.uk-tile-secondary:not(.uk-preserve-color) .uk-active > .uk-icon-link,
.uk-card-primary.uk-card-body .uk-icon-link:active,
.uk-card-primary.uk-card-body .uk-active > .uk-icon-link,
.uk-card-primary > :not([class*='uk-card-media']) .uk-icon-link:active,
.uk-card-primary > :not([class*='uk-card-media']) .uk-active > .uk-icon-link,
.uk-card-secondary.uk-card-body .uk-icon-link:active,
.uk-card-secondary.uk-card-body .uk-active > .uk-icon-link,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-icon-link:active,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-active > .uk-icon-link,
.uk-overlay-primary .uk-icon-link:active,
.uk-overlay-primary .uk-active > .uk-icon-link,
.uk-offcanvas-bar .uk-icon-link:active,
.uk-offcanvas-bar .uk-active > .uk-icon-link {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-icon-button,
.uk-section-primary:not(.uk-preserve-color) .uk-icon-button,
.uk-section-secondary:not(.uk-preserve-color) .uk-icon-button,
.uk-tile-primary:not(.uk-preserve-color) .uk-icon-button,
.uk-tile-secondary:not(.uk-preserve-color) .uk-icon-button,
.uk-card-primary.uk-card-body .uk-icon-button,
.uk-card-primary > :not([class*='uk-card-media']) .uk-icon-button,
.uk-card-secondary.uk-card-body .uk-icon-button,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-icon-button,
.uk-overlay-primary .uk-icon-button,
.uk-offcanvas-bar .uk-icon-button {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-icon-button:hover,
.uk-light .uk-icon-button:focus,
.uk-section-primary:not(.uk-preserve-color) .uk-icon-button:hover,
.uk-section-primary:not(.uk-preserve-color) .uk-icon-button:focus,
.uk-section-secondary:not(.uk-preserve-color) .uk-icon-button:hover,
.uk-section-secondary:not(.uk-preserve-color) .uk-icon-button:focus,
.uk-tile-primary:not(.uk-preserve-color) .uk-icon-button:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-icon-button:focus,
.uk-tile-secondary:not(.uk-preserve-color) .uk-icon-button:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-icon-button:focus,
.uk-card-primary.uk-card-body .uk-icon-button:hover,
.uk-card-primary.uk-card-body .uk-icon-button:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-icon-button:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-icon-button:focus,
.uk-card-secondary.uk-card-body .uk-icon-button:hover,
.uk-card-secondary.uk-card-body .uk-icon-button:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-icon-button:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-icon-button:focus,
.uk-overlay-primary .uk-icon-button:hover,
.uk-overlay-primary .uk-icon-button:focus,
.uk-offcanvas-bar .uk-icon-button:hover,
.uk-offcanvas-bar .uk-icon-button:focus {
  background-color: rgba(242, 242, 242, 0.1);
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-icon-button:active,
.uk-section-primary:not(.uk-preserve-color) .uk-icon-button:active,
.uk-section-secondary:not(.uk-preserve-color) .uk-icon-button:active,
.uk-tile-primary:not(.uk-preserve-color) .uk-icon-button:active,
.uk-tile-secondary:not(.uk-preserve-color) .uk-icon-button:active,
.uk-card-primary.uk-card-body .uk-icon-button:active,
.uk-card-primary > :not([class*='uk-card-media']) .uk-icon-button:active,
.uk-card-secondary.uk-card-body .uk-icon-button:active,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-icon-button:active,
.uk-overlay-primary .uk-icon-button:active,
.uk-offcanvas-bar .uk-icon-button:active {
  background-color: rgba(230, 230, 230, 0.1);
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-input,
.uk-light .uk-select,
.uk-light .uk-textarea,
.uk-section-primary:not(.uk-preserve-color) .uk-input,
.uk-section-primary:not(.uk-preserve-color) .uk-select,
.uk-section-primary:not(.uk-preserve-color) .uk-textarea,
.uk-section-secondary:not(.uk-preserve-color) .uk-input,
.uk-section-secondary:not(.uk-preserve-color) .uk-select,
.uk-section-secondary:not(.uk-preserve-color) .uk-textarea,
.uk-tile-primary:not(.uk-preserve-color) .uk-input,
.uk-tile-primary:not(.uk-preserve-color) .uk-select,
.uk-tile-primary:not(.uk-preserve-color) .uk-textarea,
.uk-tile-secondary:not(.uk-preserve-color) .uk-input,
.uk-tile-secondary:not(.uk-preserve-color) .uk-select,
.uk-tile-secondary:not(.uk-preserve-color) .uk-textarea,
.uk-card-primary.uk-card-body .uk-input,
.uk-card-primary.uk-card-body .uk-select,
.uk-card-primary.uk-card-body .uk-textarea,
.uk-card-primary > :not([class*='uk-card-media']) .uk-input,
.uk-card-primary > :not([class*='uk-card-media']) .uk-select,
.uk-card-primary > :not([class*='uk-card-media']) .uk-textarea,
.uk-card-secondary.uk-card-body .uk-input,
.uk-card-secondary.uk-card-body .uk-select,
.uk-card-secondary.uk-card-body .uk-textarea,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-input,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-select,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-textarea,
.uk-overlay-primary .uk-input,
.uk-overlay-primary .uk-select,
.uk-overlay-primary .uk-textarea,
.uk-offcanvas-bar .uk-input,
.uk-offcanvas-bar .uk-select,
.uk-offcanvas-bar .uk-textarea {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  background-clip: padding-box;
  border-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-input:focus,
.uk-light .uk-select:focus,
.uk-light .uk-textarea:focus,
.uk-section-primary:not(.uk-preserve-color) .uk-input:focus,
.uk-section-primary:not(.uk-preserve-color) .uk-select:focus,
.uk-section-primary:not(.uk-preserve-color) .uk-textarea:focus,
.uk-section-secondary:not(.uk-preserve-color) .uk-input:focus,
.uk-section-secondary:not(.uk-preserve-color) .uk-select:focus,
.uk-section-secondary:not(.uk-preserve-color) .uk-textarea:focus,
.uk-tile-primary:not(.uk-preserve-color) .uk-input:focus,
.uk-tile-primary:not(.uk-preserve-color) .uk-select:focus,
.uk-tile-primary:not(.uk-preserve-color) .uk-textarea:focus,
.uk-tile-secondary:not(.uk-preserve-color) .uk-input:focus,
.uk-tile-secondary:not(.uk-preserve-color) .uk-select:focus,
.uk-tile-secondary:not(.uk-preserve-color) .uk-textarea:focus,
.uk-card-primary.uk-card-body .uk-input:focus,
.uk-card-primary.uk-card-body .uk-select:focus,
.uk-card-primary.uk-card-body .uk-textarea:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-input:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-select:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-textarea:focus,
.uk-card-secondary.uk-card-body .uk-input:focus,
.uk-card-secondary.uk-card-body .uk-select:focus,
.uk-card-secondary.uk-card-body .uk-textarea:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-input:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-select:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-textarea:focus,
.uk-overlay-primary .uk-input:focus,
.uk-overlay-primary .uk-select:focus,
.uk-overlay-primary .uk-textarea:focus,
.uk-offcanvas-bar .uk-input:focus,
.uk-offcanvas-bar .uk-select:focus,
.uk-offcanvas-bar .uk-textarea:focus {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-input::-ms-input-placeholder,
.uk-section-primary:not(.uk-preserve-color) .uk-input::-ms-input-placeholder,
.uk-section-secondary:not(.uk-preserve-color) .uk-input::-ms-input-placeholder,
.uk-tile-primary:not(.uk-preserve-color) .uk-input::-ms-input-placeholder,
.uk-tile-secondary:not(.uk-preserve-color) .uk-input::-ms-input-placeholder,
.uk-card-primary.uk-card-body .uk-input::-ms-input-placeholder,
.uk-card-primary > :not([class*='uk-card-media']) .uk-input::-ms-input-placeholder,
.uk-card-secondary.uk-card-body .uk-input::-ms-input-placeholder,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-input::-ms-input-placeholder,
.uk-overlay-primary .uk-input::-ms-input-placeholder,
.uk-offcanvas-bar .uk-input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}
.uk-light .uk-input::placeholder,
.uk-section-primary:not(.uk-preserve-color) .uk-input::placeholder,
.uk-section-secondary:not(.uk-preserve-color) .uk-input::placeholder,
.uk-tile-primary:not(.uk-preserve-color) .uk-input::placeholder,
.uk-tile-secondary:not(.uk-preserve-color) .uk-input::placeholder,
.uk-card-primary.uk-card-body .uk-input::placeholder,
.uk-card-primary > :not([class*='uk-card-media']) .uk-input::placeholder,
.uk-card-secondary.uk-card-body .uk-input::placeholder,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-input::placeholder,
.uk-overlay-primary .uk-input::placeholder,
.uk-offcanvas-bar .uk-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-textarea::-ms-input-placeholder,
.uk-section-primary:not(.uk-preserve-color) .uk-textarea::-ms-input-placeholder,
.uk-section-secondary:not(.uk-preserve-color) .uk-textarea::-ms-input-placeholder,
.uk-tile-primary:not(.uk-preserve-color) .uk-textarea::-ms-input-placeholder,
.uk-tile-secondary:not(.uk-preserve-color) .uk-textarea::-ms-input-placeholder,
.uk-card-primary.uk-card-body .uk-textarea::-ms-input-placeholder,
.uk-card-primary > :not([class*='uk-card-media']) .uk-textarea::-ms-input-placeholder,
.uk-card-secondary.uk-card-body .uk-textarea::-ms-input-placeholder,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-textarea::-ms-input-placeholder,
.uk-overlay-primary .uk-textarea::-ms-input-placeholder,
.uk-offcanvas-bar .uk-textarea::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}
.uk-light .uk-textarea::placeholder,
.uk-section-primary:not(.uk-preserve-color) .uk-textarea::placeholder,
.uk-section-secondary:not(.uk-preserve-color) .uk-textarea::placeholder,
.uk-tile-primary:not(.uk-preserve-color) .uk-textarea::placeholder,
.uk-tile-secondary:not(.uk-preserve-color) .uk-textarea::placeholder,
.uk-card-primary.uk-card-body .uk-textarea::placeholder,
.uk-card-primary > :not([class*='uk-card-media']) .uk-textarea::placeholder,
.uk-card-secondary.uk-card-body .uk-textarea::placeholder,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-textarea::placeholder,
.uk-overlay-primary .uk-textarea::placeholder,
.uk-offcanvas-bar .uk-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-select:not([multiple]):not([size]),
.uk-section-primary:not(.uk-preserve-color) .uk-select:not([multiple]):not([size]),
.uk-section-secondary:not(.uk-preserve-color) .uk-select:not([multiple]):not([size]),
.uk-tile-primary:not(.uk-preserve-color) .uk-select:not([multiple]):not([size]),
.uk-tile-secondary:not(.uk-preserve-color) .uk-select:not([multiple]):not([size]),
.uk-card-primary.uk-card-body .uk-select:not([multiple]):not([size]),
.uk-card-primary > :not([class*='uk-card-media']) .uk-select:not([multiple]):not([size]),
.uk-card-secondary.uk-card-body .uk-select:not([multiple]):not([size]),
.uk-card-secondary > :not([class*='uk-card-media']) .uk-select:not([multiple]):not([size]),
.uk-overlay-primary .uk-select:not([multiple]):not([size]),
.uk-offcanvas-bar .uk-select:not([multiple]):not([size]) {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2224%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22rgba%28255,%20255,%20255,%200.7%29%22%20points%3D%2212%201%209%206%2015%206%22%20%2F%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22rgba%28255,%20255,%20255,%200.7%29%22%20points%3D%2212%2013%209%208%2015%208%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
}
.uk-light .uk-input[list]:hover,
.uk-light .uk-input[list]:focus,
.uk-section-primary:not(.uk-preserve-color) .uk-input[list]:hover,
.uk-section-primary:not(.uk-preserve-color) .uk-input[list]:focus,
.uk-section-secondary:not(.uk-preserve-color) .uk-input[list]:hover,
.uk-section-secondary:not(.uk-preserve-color) .uk-input[list]:focus,
.uk-tile-primary:not(.uk-preserve-color) .uk-input[list]:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-input[list]:focus,
.uk-tile-secondary:not(.uk-preserve-color) .uk-input[list]:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-input[list]:focus,
.uk-card-primary.uk-card-body .uk-input[list]:hover,
.uk-card-primary.uk-card-body .uk-input[list]:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-input[list]:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-input[list]:focus,
.uk-card-secondary.uk-card-body .uk-input[list]:hover,
.uk-card-secondary.uk-card-body .uk-input[list]:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-input[list]:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-input[list]:focus,
.uk-overlay-primary .uk-input[list]:hover,
.uk-overlay-primary .uk-input[list]:focus,
.uk-offcanvas-bar .uk-input[list]:hover,
.uk-offcanvas-bar .uk-input[list]:focus {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2224%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22rgba%28255,%20255,%20255,%200.7%29%22%20points%3D%2212%2012%208%206%2016%206%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
}
.uk-light .uk-radio,
.uk-light .uk-checkbox,
.uk-section-primary:not(.uk-preserve-color) .uk-radio,
.uk-section-primary:not(.uk-preserve-color) .uk-checkbox,
.uk-section-secondary:not(.uk-preserve-color) .uk-radio,
.uk-section-secondary:not(.uk-preserve-color) .uk-checkbox,
.uk-tile-primary:not(.uk-preserve-color) .uk-radio,
.uk-tile-primary:not(.uk-preserve-color) .uk-checkbox,
.uk-tile-secondary:not(.uk-preserve-color) .uk-radio,
.uk-tile-secondary:not(.uk-preserve-color) .uk-checkbox,
.uk-card-primary.uk-card-body .uk-radio,
.uk-card-primary.uk-card-body .uk-checkbox,
.uk-card-primary > :not([class*='uk-card-media']) .uk-radio,
.uk-card-primary > :not([class*='uk-card-media']) .uk-checkbox,
.uk-card-secondary.uk-card-body .uk-radio,
.uk-card-secondary.uk-card-body .uk-checkbox,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-radio,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-checkbox,
.uk-overlay-primary .uk-radio,
.uk-overlay-primary .uk-checkbox,
.uk-offcanvas-bar .uk-radio,
.uk-offcanvas-bar .uk-checkbox {
  background-color: rgba(242, 242, 242, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-radio:focus,
.uk-light .uk-checkbox:focus,
.uk-section-primary:not(.uk-preserve-color) .uk-radio:focus,
.uk-section-primary:not(.uk-preserve-color) .uk-checkbox:focus,
.uk-section-secondary:not(.uk-preserve-color) .uk-radio:focus,
.uk-section-secondary:not(.uk-preserve-color) .uk-checkbox:focus,
.uk-tile-primary:not(.uk-preserve-color) .uk-radio:focus,
.uk-tile-primary:not(.uk-preserve-color) .uk-checkbox:focus,
.uk-tile-secondary:not(.uk-preserve-color) .uk-radio:focus,
.uk-tile-secondary:not(.uk-preserve-color) .uk-checkbox:focus,
.uk-card-primary.uk-card-body .uk-radio:focus,
.uk-card-primary.uk-card-body .uk-checkbox:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-radio:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-checkbox:focus,
.uk-card-secondary.uk-card-body .uk-radio:focus,
.uk-card-secondary.uk-card-body .uk-checkbox:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-radio:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-checkbox:focus,
.uk-overlay-primary .uk-radio:focus,
.uk-overlay-primary .uk-checkbox:focus,
.uk-offcanvas-bar .uk-radio:focus,
.uk-offcanvas-bar .uk-checkbox:focus {
  border-color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-radio:checked,
.uk-light .uk-checkbox:checked,
.uk-light .uk-checkbox:indeterminate,
.uk-section-primary:not(.uk-preserve-color) .uk-radio:checked,
.uk-section-primary:not(.uk-preserve-color) .uk-checkbox:checked,
.uk-section-primary:not(.uk-preserve-color) .uk-checkbox:indeterminate,
.uk-section-secondary:not(.uk-preserve-color) .uk-radio:checked,
.uk-section-secondary:not(.uk-preserve-color) .uk-checkbox:checked,
.uk-section-secondary:not(.uk-preserve-color) .uk-checkbox:indeterminate,
.uk-tile-primary:not(.uk-preserve-color) .uk-radio:checked,
.uk-tile-primary:not(.uk-preserve-color) .uk-checkbox:checked,
.uk-tile-primary:not(.uk-preserve-color) .uk-checkbox:indeterminate,
.uk-tile-secondary:not(.uk-preserve-color) .uk-radio:checked,
.uk-tile-secondary:not(.uk-preserve-color) .uk-checkbox:checked,
.uk-tile-secondary:not(.uk-preserve-color) .uk-checkbox:indeterminate,
.uk-card-primary.uk-card-body .uk-radio:checked,
.uk-card-primary.uk-card-body .uk-checkbox:checked,
.uk-card-primary.uk-card-body .uk-checkbox:indeterminate,
.uk-card-primary > :not([class*='uk-card-media']) .uk-radio:checked,
.uk-card-primary > :not([class*='uk-card-media']) .uk-checkbox:checked,
.uk-card-primary > :not([class*='uk-card-media']) .uk-checkbox:indeterminate,
.uk-card-secondary.uk-card-body .uk-radio:checked,
.uk-card-secondary.uk-card-body .uk-checkbox:checked,
.uk-card-secondary.uk-card-body .uk-checkbox:indeterminate,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-radio:checked,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-checkbox:checked,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-checkbox:indeterminate,
.uk-overlay-primary .uk-radio:checked,
.uk-overlay-primary .uk-checkbox:checked,
.uk-overlay-primary .uk-checkbox:indeterminate,
.uk-offcanvas-bar .uk-radio:checked,
.uk-offcanvas-bar .uk-checkbox:checked,
.uk-offcanvas-bar .uk-checkbox:indeterminate {
  background-color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-radio:checked:focus,
.uk-light .uk-checkbox:checked:focus,
.uk-light .uk-checkbox:indeterminate:focus,
.uk-section-primary:not(.uk-preserve-color) .uk-radio:checked:focus,
.uk-section-primary:not(.uk-preserve-color) .uk-checkbox:checked:focus,
.uk-section-primary:not(.uk-preserve-color) .uk-checkbox:indeterminate:focus,
.uk-section-secondary:not(.uk-preserve-color) .uk-radio:checked:focus,
.uk-section-secondary:not(.uk-preserve-color) .uk-checkbox:checked:focus,
.uk-section-secondary:not(.uk-preserve-color) .uk-checkbox:indeterminate:focus,
.uk-tile-primary:not(.uk-preserve-color) .uk-radio:checked:focus,
.uk-tile-primary:not(.uk-preserve-color) .uk-checkbox:checked:focus,
.uk-tile-primary:not(.uk-preserve-color) .uk-checkbox:indeterminate:focus,
.uk-tile-secondary:not(.uk-preserve-color) .uk-radio:checked:focus,
.uk-tile-secondary:not(.uk-preserve-color) .uk-checkbox:checked:focus,
.uk-tile-secondary:not(.uk-preserve-color) .uk-checkbox:indeterminate:focus,
.uk-card-primary.uk-card-body .uk-radio:checked:focus,
.uk-card-primary.uk-card-body .uk-checkbox:checked:focus,
.uk-card-primary.uk-card-body .uk-checkbox:indeterminate:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-radio:checked:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-checkbox:checked:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-checkbox:indeterminate:focus,
.uk-card-secondary.uk-card-body .uk-radio:checked:focus,
.uk-card-secondary.uk-card-body .uk-checkbox:checked:focus,
.uk-card-secondary.uk-card-body .uk-checkbox:indeterminate:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-radio:checked:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-checkbox:checked:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-checkbox:indeterminate:focus,
.uk-overlay-primary .uk-radio:checked:focus,
.uk-overlay-primary .uk-checkbox:checked:focus,
.uk-overlay-primary .uk-checkbox:indeterminate:focus,
.uk-offcanvas-bar .uk-radio:checked:focus,
.uk-offcanvas-bar .uk-checkbox:checked:focus,
.uk-offcanvas-bar .uk-checkbox:indeterminate:focus {
  background-color: #e6e6e6;
}
.uk-light .uk-radio:checked,
.uk-section-primary:not(.uk-preserve-color) .uk-radio:checked,
.uk-section-secondary:not(.uk-preserve-color) .uk-radio:checked,
.uk-tile-primary:not(.uk-preserve-color) .uk-radio:checked,
.uk-tile-secondary:not(.uk-preserve-color) .uk-radio:checked,
.uk-card-primary.uk-card-body .uk-radio:checked,
.uk-card-primary > :not([class*='uk-card-media']) .uk-radio:checked,
.uk-card-secondary.uk-card-body .uk-radio:checked,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-radio:checked,
.uk-overlay-primary .uk-radio:checked,
.uk-offcanvas-bar .uk-radio:checked {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22%23666%22%20cx%3D%228%22%20cy%3D%228%22%20r%3D%222%22%20%2F%3E%0A%3C%2Fsvg%3E");
}
.uk-light .uk-checkbox:checked,
.uk-section-primary:not(.uk-preserve-color) .uk-checkbox:checked,
.uk-section-secondary:not(.uk-preserve-color) .uk-checkbox:checked,
.uk-tile-primary:not(.uk-preserve-color) .uk-checkbox:checked,
.uk-tile-secondary:not(.uk-preserve-color) .uk-checkbox:checked,
.uk-card-primary.uk-card-body .uk-checkbox:checked,
.uk-card-primary > :not([class*='uk-card-media']) .uk-checkbox:checked,
.uk-card-secondary.uk-card-body .uk-checkbox:checked,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-checkbox:checked,
.uk-overlay-primary .uk-checkbox:checked,
.uk-offcanvas-bar .uk-checkbox:checked {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2211%22%20viewBox%3D%220%200%2014%2011%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23666%22%20points%3D%2212%201%205%207.5%202%205%201%205.5%205%2010%2013%201.5%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
}
.uk-light .uk-checkbox:indeterminate,
.uk-section-primary:not(.uk-preserve-color) .uk-checkbox:indeterminate,
.uk-section-secondary:not(.uk-preserve-color) .uk-checkbox:indeterminate,
.uk-tile-primary:not(.uk-preserve-color) .uk-checkbox:indeterminate,
.uk-tile-secondary:not(.uk-preserve-color) .uk-checkbox:indeterminate,
.uk-card-primary.uk-card-body .uk-checkbox:indeterminate,
.uk-card-primary > :not([class*='uk-card-media']) .uk-checkbox:indeterminate,
.uk-card-secondary.uk-card-body .uk-checkbox:indeterminate,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-checkbox:indeterminate,
.uk-overlay-primary .uk-checkbox:indeterminate,
.uk-offcanvas-bar .uk-checkbox:indeterminate {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Crect%20fill%3D%22%23666%22%20x%3D%223%22%20y%3D%228%22%20width%3D%2210%22%20height%3D%221%22%20%2F%3E%0A%3C%2Fsvg%3E");
}
.uk-light .uk-form-label,
.uk-section-primary:not(.uk-preserve-color) .uk-form-label,
.uk-section-secondary:not(.uk-preserve-color) .uk-form-label,
.uk-tile-primary:not(.uk-preserve-color) .uk-form-label,
.uk-tile-secondary:not(.uk-preserve-color) .uk-form-label,
.uk-card-primary.uk-card-body .uk-form-label,
.uk-card-primary > :not([class*='uk-card-media']) .uk-form-label,
.uk-card-secondary.uk-card-body .uk-form-label,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-form-label,
.uk-overlay-primary .uk-form-label,
.uk-offcanvas-bar .uk-form-label {
  color: #fff;
}
.uk-light .uk-form-icon,
.uk-section-primary:not(.uk-preserve-color) .uk-form-icon,
.uk-section-secondary:not(.uk-preserve-color) .uk-form-icon,
.uk-tile-primary:not(.uk-preserve-color) .uk-form-icon,
.uk-tile-secondary:not(.uk-preserve-color) .uk-form-icon,
.uk-card-primary.uk-card-body .uk-form-icon,
.uk-card-primary > :not([class*='uk-card-media']) .uk-form-icon,
.uk-card-secondary.uk-card-body .uk-form-icon,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-form-icon,
.uk-overlay-primary .uk-form-icon,
.uk-offcanvas-bar .uk-form-icon {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-form-icon:hover,
.uk-section-primary:not(.uk-preserve-color) .uk-form-icon:hover,
.uk-section-secondary:not(.uk-preserve-color) .uk-form-icon:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-form-icon:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-form-icon:hover,
.uk-card-primary.uk-card-body .uk-form-icon:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-form-icon:hover,
.uk-card-secondary.uk-card-body .uk-form-icon:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-form-icon:hover,
.uk-overlay-primary .uk-form-icon:hover,
.uk-offcanvas-bar .uk-form-icon:hover {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-button-default,
.uk-section-primary:not(.uk-preserve-color) .uk-button-default,
.uk-section-secondary:not(.uk-preserve-color) .uk-button-default,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-default,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-default,
.uk-card-primary.uk-card-body .uk-button-default,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-default,
.uk-card-secondary.uk-card-body .uk-button-default,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-default,
.uk-overlay-primary .uk-button-default,
.uk-offcanvas-bar .uk-button-default {
  background-color: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-button-default:hover,
.uk-light .uk-button-default:focus,
.uk-section-primary:not(.uk-preserve-color) .uk-button-default:hover,
.uk-section-primary:not(.uk-preserve-color) .uk-button-default:focus,
.uk-section-secondary:not(.uk-preserve-color) .uk-button-default:hover,
.uk-section-secondary:not(.uk-preserve-color) .uk-button-default:focus,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-default:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-default:focus,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-default:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-default:focus,
.uk-card-primary.uk-card-body .uk-button-default:hover,
.uk-card-primary.uk-card-body .uk-button-default:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-default:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-default:focus,
.uk-card-secondary.uk-card-body .uk-button-default:hover,
.uk-card-secondary.uk-card-body .uk-button-default:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-default:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-default:focus,
.uk-overlay-primary .uk-button-default:hover,
.uk-overlay-primary .uk-button-default:focus,
.uk-offcanvas-bar .uk-button-default:hover,
.uk-offcanvas-bar .uk-button-default:focus {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}
.uk-light .uk-button-default:active,
.uk-light .uk-button-default.uk-active,
.uk-section-primary:not(.uk-preserve-color) .uk-button-default:active,
.uk-section-primary:not(.uk-preserve-color) .uk-button-default.uk-active,
.uk-section-secondary:not(.uk-preserve-color) .uk-button-default:active,
.uk-section-secondary:not(.uk-preserve-color) .uk-button-default.uk-active,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-default:active,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-default.uk-active,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-default:active,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-default.uk-active,
.uk-card-primary.uk-card-body .uk-button-default:active,
.uk-card-primary.uk-card-body .uk-button-default.uk-active,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-default:active,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-default.uk-active,
.uk-card-secondary.uk-card-body .uk-button-default:active,
.uk-card-secondary.uk-card-body .uk-button-default.uk-active,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-default:active,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-default.uk-active,
.uk-overlay-primary .uk-button-default:active,
.uk-overlay-primary .uk-button-default.uk-active,
.uk-offcanvas-bar .uk-button-default:active,
.uk-offcanvas-bar .uk-button-default.uk-active {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}
.uk-light .uk-button-primary,
.uk-section-primary:not(.uk-preserve-color) .uk-button-primary,
.uk-section-secondary:not(.uk-preserve-color) .uk-button-primary,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-primary,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-primary,
.uk-card-primary.uk-card-body .uk-button-primary,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-primary,
.uk-card-secondary.uk-card-body .uk-button-primary,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-primary,
.uk-overlay-primary .uk-button-primary,
.uk-offcanvas-bar .uk-button-primary {
  background-color: #fff;
  color: #666;
}
.uk-light .uk-button-primary:hover,
.uk-light .uk-button-primary:focus,
.uk-section-primary:not(.uk-preserve-color) .uk-button-primary:hover,
.uk-section-primary:not(.uk-preserve-color) .uk-button-primary:focus,
.uk-section-secondary:not(.uk-preserve-color) .uk-button-primary:hover,
.uk-section-secondary:not(.uk-preserve-color) .uk-button-primary:focus,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-primary:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-primary:focus,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-primary:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-primary:focus,
.uk-card-primary.uk-card-body .uk-button-primary:hover,
.uk-card-primary.uk-card-body .uk-button-primary:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-primary:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-primary:focus,
.uk-card-secondary.uk-card-body .uk-button-primary:hover,
.uk-card-secondary.uk-card-body .uk-button-primary:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-primary:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-primary:focus,
.uk-overlay-primary .uk-button-primary:hover,
.uk-overlay-primary .uk-button-primary:focus,
.uk-offcanvas-bar .uk-button-primary:hover,
.uk-offcanvas-bar .uk-button-primary:focus {
  background-color: #f2f2f2;
  color: #666;
}
.uk-light .uk-button-primary:active,
.uk-light .uk-button-primary.uk-active,
.uk-section-primary:not(.uk-preserve-color) .uk-button-primary:active,
.uk-section-primary:not(.uk-preserve-color) .uk-button-primary.uk-active,
.uk-section-secondary:not(.uk-preserve-color) .uk-button-primary:active,
.uk-section-secondary:not(.uk-preserve-color) .uk-button-primary.uk-active,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-primary:active,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-primary.uk-active,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-primary:active,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-primary.uk-active,
.uk-card-primary.uk-card-body .uk-button-primary:active,
.uk-card-primary.uk-card-body .uk-button-primary.uk-active,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-primary:active,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-primary.uk-active,
.uk-card-secondary.uk-card-body .uk-button-primary:active,
.uk-card-secondary.uk-card-body .uk-button-primary.uk-active,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-primary:active,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-primary.uk-active,
.uk-overlay-primary .uk-button-primary:active,
.uk-overlay-primary .uk-button-primary.uk-active,
.uk-offcanvas-bar .uk-button-primary:active,
.uk-offcanvas-bar .uk-button-primary.uk-active {
  background-color: #e6e6e6;
  color: #666;
}
.uk-light .uk-button-secondary,
.uk-section-primary:not(.uk-preserve-color) .uk-button-secondary,
.uk-section-secondary:not(.uk-preserve-color) .uk-button-secondary,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-secondary,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-secondary,
.uk-card-primary.uk-card-body .uk-button-secondary,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-secondary,
.uk-card-secondary.uk-card-body .uk-button-secondary,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-secondary,
.uk-overlay-primary .uk-button-secondary,
.uk-offcanvas-bar .uk-button-secondary {
  background-color: #fff;
  color: #666;
}
.uk-light .uk-button-secondary:hover,
.uk-light .uk-button-secondary:focus,
.uk-section-primary:not(.uk-preserve-color) .uk-button-secondary:hover,
.uk-section-primary:not(.uk-preserve-color) .uk-button-secondary:focus,
.uk-section-secondary:not(.uk-preserve-color) .uk-button-secondary:hover,
.uk-section-secondary:not(.uk-preserve-color) .uk-button-secondary:focus,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-secondary:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-secondary:focus,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-secondary:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-secondary:focus,
.uk-card-primary.uk-card-body .uk-button-secondary:hover,
.uk-card-primary.uk-card-body .uk-button-secondary:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-secondary:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-secondary:focus,
.uk-card-secondary.uk-card-body .uk-button-secondary:hover,
.uk-card-secondary.uk-card-body .uk-button-secondary:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-secondary:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-secondary:focus,
.uk-overlay-primary .uk-button-secondary:hover,
.uk-overlay-primary .uk-button-secondary:focus,
.uk-offcanvas-bar .uk-button-secondary:hover,
.uk-offcanvas-bar .uk-button-secondary:focus {
  background-color: #f2f2f2;
  color: #666;
}
.uk-light .uk-button-secondary:active,
.uk-light .uk-button-secondary.uk-active,
.uk-section-primary:not(.uk-preserve-color) .uk-button-secondary:active,
.uk-section-primary:not(.uk-preserve-color) .uk-button-secondary.uk-active,
.uk-section-secondary:not(.uk-preserve-color) .uk-button-secondary:active,
.uk-section-secondary:not(.uk-preserve-color) .uk-button-secondary.uk-active,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-secondary:active,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-secondary.uk-active,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-secondary:active,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-secondary.uk-active,
.uk-card-primary.uk-card-body .uk-button-secondary:active,
.uk-card-primary.uk-card-body .uk-button-secondary.uk-active,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-secondary:active,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-secondary.uk-active,
.uk-card-secondary.uk-card-body .uk-button-secondary:active,
.uk-card-secondary.uk-card-body .uk-button-secondary.uk-active,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-secondary:active,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-secondary.uk-active,
.uk-overlay-primary .uk-button-secondary:active,
.uk-overlay-primary .uk-button-secondary.uk-active,
.uk-offcanvas-bar .uk-button-secondary:active,
.uk-offcanvas-bar .uk-button-secondary.uk-active {
  background-color: #e6e6e6;
  color: #666;
}
.uk-light .uk-button-text,
.uk-section-primary:not(.uk-preserve-color) .uk-button-text,
.uk-section-secondary:not(.uk-preserve-color) .uk-button-text,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-text,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-text,
.uk-card-primary.uk-card-body .uk-button-text,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-text,
.uk-card-secondary.uk-card-body .uk-button-text,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-text,
.uk-overlay-primary .uk-button-text,
.uk-offcanvas-bar .uk-button-text {
  color: #fff;
}
.uk-light .uk-button-text::before,
.uk-section-primary:not(.uk-preserve-color) .uk-button-text::before,
.uk-section-secondary:not(.uk-preserve-color) .uk-button-text::before,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-text::before,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-text::before,
.uk-card-primary.uk-card-body .uk-button-text::before,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-text::before,
.uk-card-secondary.uk-card-body .uk-button-text::before,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-text::before,
.uk-overlay-primary .uk-button-text::before,
.uk-offcanvas-bar .uk-button-text::before {
  border-bottom-color: #fff;
}
.uk-light .uk-button-text:hover,
.uk-light .uk-button-text:focus,
.uk-section-primary:not(.uk-preserve-color) .uk-button-text:hover,
.uk-section-primary:not(.uk-preserve-color) .uk-button-text:focus,
.uk-section-secondary:not(.uk-preserve-color) .uk-button-text:hover,
.uk-section-secondary:not(.uk-preserve-color) .uk-button-text:focus,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-text:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-text:focus,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-text:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-text:focus,
.uk-card-primary.uk-card-body .uk-button-text:hover,
.uk-card-primary.uk-card-body .uk-button-text:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-text:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-text:focus,
.uk-card-secondary.uk-card-body .uk-button-text:hover,
.uk-card-secondary.uk-card-body .uk-button-text:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-text:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-text:focus,
.uk-overlay-primary .uk-button-text:hover,
.uk-overlay-primary .uk-button-text:focus,
.uk-offcanvas-bar .uk-button-text:hover,
.uk-offcanvas-bar .uk-button-text:focus {
  color: #fff;
}
.uk-light .uk-button-text:disabled,
.uk-section-primary:not(.uk-preserve-color) .uk-button-text:disabled,
.uk-section-secondary:not(.uk-preserve-color) .uk-button-text:disabled,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-text:disabled,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-text:disabled,
.uk-card-primary.uk-card-body .uk-button-text:disabled,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-text:disabled,
.uk-card-secondary.uk-card-body .uk-button-text:disabled,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-text:disabled,
.uk-overlay-primary .uk-button-text:disabled,
.uk-offcanvas-bar .uk-button-text:disabled {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-button-link,
.uk-section-primary:not(.uk-preserve-color) .uk-button-link,
.uk-section-secondary:not(.uk-preserve-color) .uk-button-link,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-link,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-link,
.uk-card-primary.uk-card-body .uk-button-link,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-link,
.uk-card-secondary.uk-card-body .uk-button-link,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-link,
.uk-overlay-primary .uk-button-link,
.uk-offcanvas-bar .uk-button-link {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-button-link:hover,
.uk-light .uk-button-link:focus,
.uk-section-primary:not(.uk-preserve-color) .uk-button-link:hover,
.uk-section-primary:not(.uk-preserve-color) .uk-button-link:focus,
.uk-section-secondary:not(.uk-preserve-color) .uk-button-link:hover,
.uk-section-secondary:not(.uk-preserve-color) .uk-button-link:focus,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-link:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-link:focus,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-link:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-link:focus,
.uk-card-primary.uk-card-body .uk-button-link:hover,
.uk-card-primary.uk-card-body .uk-button-link:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-link:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-link:focus,
.uk-card-secondary.uk-card-body .uk-button-link:hover,
.uk-card-secondary.uk-card-body .uk-button-link:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-link:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-link:focus,
.uk-overlay-primary .uk-button-link:hover,
.uk-overlay-primary .uk-button-link:focus,
.uk-offcanvas-bar .uk-button-link:hover,
.uk-offcanvas-bar .uk-button-link:focus {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-close,
.uk-section-primary:not(.uk-preserve-color) .uk-close,
.uk-section-secondary:not(.uk-preserve-color) .uk-close,
.uk-tile-primary:not(.uk-preserve-color) .uk-close,
.uk-tile-secondary:not(.uk-preserve-color) .uk-close,
.uk-card-primary.uk-card-body .uk-close,
.uk-card-primary > :not([class*='uk-card-media']) .uk-close,
.uk-card-secondary.uk-card-body .uk-close,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-close,
.uk-overlay-primary .uk-close,
.uk-offcanvas-bar .uk-close {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-close:hover,
.uk-light .uk-close:focus,
.uk-section-primary:not(.uk-preserve-color) .uk-close:hover,
.uk-section-primary:not(.uk-preserve-color) .uk-close:focus,
.uk-section-secondary:not(.uk-preserve-color) .uk-close:hover,
.uk-section-secondary:not(.uk-preserve-color) .uk-close:focus,
.uk-tile-primary:not(.uk-preserve-color) .uk-close:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-close:focus,
.uk-tile-secondary:not(.uk-preserve-color) .uk-close:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-close:focus,
.uk-card-primary.uk-card-body .uk-close:hover,
.uk-card-primary.uk-card-body .uk-close:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-close:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-close:focus,
.uk-card-secondary.uk-card-body .uk-close:hover,
.uk-card-secondary.uk-card-body .uk-close:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-close:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-close:focus,
.uk-overlay-primary .uk-close:hover,
.uk-overlay-primary .uk-close:focus,
.uk-offcanvas-bar .uk-close:hover,
.uk-offcanvas-bar .uk-close:focus {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-totop,
.uk-section-primary:not(.uk-preserve-color) .uk-totop,
.uk-section-secondary:not(.uk-preserve-color) .uk-totop,
.uk-tile-primary:not(.uk-preserve-color) .uk-totop,
.uk-tile-secondary:not(.uk-preserve-color) .uk-totop,
.uk-card-primary.uk-card-body .uk-totop,
.uk-card-primary > :not([class*='uk-card-media']) .uk-totop,
.uk-card-secondary.uk-card-body .uk-totop,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-totop,
.uk-overlay-primary .uk-totop,
.uk-offcanvas-bar .uk-totop {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-totop:hover,
.uk-light .uk-totop:focus,
.uk-section-primary:not(.uk-preserve-color) .uk-totop:hover,
.uk-section-primary:not(.uk-preserve-color) .uk-totop:focus,
.uk-section-secondary:not(.uk-preserve-color) .uk-totop:hover,
.uk-section-secondary:not(.uk-preserve-color) .uk-totop:focus,
.uk-tile-primary:not(.uk-preserve-color) .uk-totop:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-totop:focus,
.uk-tile-secondary:not(.uk-preserve-color) .uk-totop:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-totop:focus,
.uk-card-primary.uk-card-body .uk-totop:hover,
.uk-card-primary.uk-card-body .uk-totop:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-totop:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-totop:focus,
.uk-card-secondary.uk-card-body .uk-totop:hover,
.uk-card-secondary.uk-card-body .uk-totop:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-totop:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-totop:focus,
.uk-overlay-primary .uk-totop:hover,
.uk-overlay-primary .uk-totop:focus,
.uk-offcanvas-bar .uk-totop:hover,
.uk-offcanvas-bar .uk-totop:focus {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-totop:active,
.uk-section-primary:not(.uk-preserve-color) .uk-totop:active,
.uk-section-secondary:not(.uk-preserve-color) .uk-totop:active,
.uk-tile-primary:not(.uk-preserve-color) .uk-totop:active,
.uk-tile-secondary:not(.uk-preserve-color) .uk-totop:active,
.uk-card-primary.uk-card-body .uk-totop:active,
.uk-card-primary > :not([class*='uk-card-media']) .uk-totop:active,
.uk-card-secondary.uk-card-body .uk-totop:active,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-totop:active,
.uk-overlay-primary .uk-totop:active,
.uk-offcanvas-bar .uk-totop:active {
  color: #fff;
}
.uk-light .uk-marker,
.uk-section-primary:not(.uk-preserve-color) .uk-marker,
.uk-section-secondary:not(.uk-preserve-color) .uk-marker,
.uk-tile-primary:not(.uk-preserve-color) .uk-marker,
.uk-tile-secondary:not(.uk-preserve-color) .uk-marker,
.uk-card-primary.uk-card-body .uk-marker,
.uk-card-primary > :not([class*='uk-card-media']) .uk-marker,
.uk-card-secondary.uk-card-body .uk-marker,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-marker,
.uk-overlay-primary .uk-marker,
.uk-offcanvas-bar .uk-marker {
  background: #f8f8f8;
  color: #666;
}
.uk-light .uk-marker:hover,
.uk-light .uk-marker:focus,
.uk-section-primary:not(.uk-preserve-color) .uk-marker:hover,
.uk-section-primary:not(.uk-preserve-color) .uk-marker:focus,
.uk-section-secondary:not(.uk-preserve-color) .uk-marker:hover,
.uk-section-secondary:not(.uk-preserve-color) .uk-marker:focus,
.uk-tile-primary:not(.uk-preserve-color) .uk-marker:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-marker:focus,
.uk-tile-secondary:not(.uk-preserve-color) .uk-marker:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-marker:focus,
.uk-card-primary.uk-card-body .uk-marker:hover,
.uk-card-primary.uk-card-body .uk-marker:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-marker:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-marker:focus,
.uk-card-secondary.uk-card-body .uk-marker:hover,
.uk-card-secondary.uk-card-body .uk-marker:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-marker:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-marker:focus,
.uk-overlay-primary .uk-marker:hover,
.uk-overlay-primary .uk-marker:focus,
.uk-offcanvas-bar .uk-marker:hover,
.uk-offcanvas-bar .uk-marker:focus {
  color: #666;
}
.uk-light .uk-badge,
.uk-section-primary:not(.uk-preserve-color) .uk-badge,
.uk-section-secondary:not(.uk-preserve-color) .uk-badge,
.uk-tile-primary:not(.uk-preserve-color) .uk-badge,
.uk-tile-secondary:not(.uk-preserve-color) .uk-badge,
.uk-card-primary.uk-card-body .uk-badge,
.uk-card-primary > :not([class*='uk-card-media']) .uk-badge,
.uk-card-secondary.uk-card-body .uk-badge,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-badge,
.uk-overlay-primary .uk-badge,
.uk-offcanvas-bar .uk-badge {
  background-color: #fff;
  color: #666;
}
.uk-light .uk-badge:hover,
.uk-light .uk-badge:focus,
.uk-section-primary:not(.uk-preserve-color) .uk-badge:hover,
.uk-section-primary:not(.uk-preserve-color) .uk-badge:focus,
.uk-section-secondary:not(.uk-preserve-color) .uk-badge:hover,
.uk-section-secondary:not(.uk-preserve-color) .uk-badge:focus,
.uk-tile-primary:not(.uk-preserve-color) .uk-badge:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-badge:focus,
.uk-tile-secondary:not(.uk-preserve-color) .uk-badge:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-badge:focus,
.uk-card-primary.uk-card-body .uk-badge:hover,
.uk-card-primary.uk-card-body .uk-badge:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-badge:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-badge:focus,
.uk-card-secondary.uk-card-body .uk-badge:hover,
.uk-card-secondary.uk-card-body .uk-badge:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-badge:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-badge:focus,
.uk-overlay-primary .uk-badge:hover,
.uk-overlay-primary .uk-badge:focus,
.uk-offcanvas-bar .uk-badge:hover,
.uk-offcanvas-bar .uk-badge:focus {
  color: #666;
}
.uk-light .uk-label,
.uk-section-primary:not(.uk-preserve-color) .uk-label,
.uk-section-secondary:not(.uk-preserve-color) .uk-label,
.uk-tile-primary:not(.uk-preserve-color) .uk-label,
.uk-tile-secondary:not(.uk-preserve-color) .uk-label,
.uk-card-primary.uk-card-body .uk-label,
.uk-card-primary > :not([class*='uk-card-media']) .uk-label,
.uk-card-secondary.uk-card-body .uk-label,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-label,
.uk-overlay-primary .uk-label,
.uk-offcanvas-bar .uk-label {
  background-color: #fff;
  color: #666;
}
.uk-light .uk-article-meta,
.uk-section-primary:not(.uk-preserve-color) .uk-article-meta,
.uk-section-secondary:not(.uk-preserve-color) .uk-article-meta,
.uk-tile-primary:not(.uk-preserve-color) .uk-article-meta,
.uk-tile-secondary:not(.uk-preserve-color) .uk-article-meta,
.uk-card-primary.uk-card-body .uk-article-meta,
.uk-card-primary > :not([class*='uk-card-media']) .uk-article-meta,
.uk-card-secondary.uk-card-body .uk-article-meta,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-article-meta,
.uk-overlay-primary .uk-article-meta,
.uk-offcanvas-bar .uk-article-meta {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-search-input,
.uk-section-primary:not(.uk-preserve-color) .uk-search-input,
.uk-section-secondary:not(.uk-preserve-color) .uk-search-input,
.uk-tile-primary:not(.uk-preserve-color) .uk-search-input,
.uk-tile-secondary:not(.uk-preserve-color) .uk-search-input,
.uk-card-primary.uk-card-body .uk-search-input,
.uk-card-primary > :not([class*='uk-card-media']) .uk-search-input,
.uk-card-secondary.uk-card-body .uk-search-input,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-search-input,
.uk-overlay-primary .uk-search-input,
.uk-offcanvas-bar .uk-search-input {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-search-input:-ms-input-placeholder,
.uk-section-primary:not(.uk-preserve-color) .uk-search-input:-ms-input-placeholder,
.uk-section-secondary:not(.uk-preserve-color) .uk-search-input:-ms-input-placeholder,
.uk-tile-primary:not(.uk-preserve-color) .uk-search-input:-ms-input-placeholder,
.uk-tile-secondary:not(.uk-preserve-color) .uk-search-input:-ms-input-placeholder,
.uk-card-primary.uk-card-body .uk-search-input:-ms-input-placeholder,
.uk-card-primary > :not([class*='uk-card-media']) .uk-search-input:-ms-input-placeholder,
.uk-card-secondary.uk-card-body .uk-search-input:-ms-input-placeholder,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-search-input:-ms-input-placeholder,
.uk-overlay-primary .uk-search-input:-ms-input-placeholder,
.uk-offcanvas-bar .uk-search-input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}
.uk-light .uk-search-input::placeholder,
.uk-section-primary:not(.uk-preserve-color) .uk-search-input::placeholder,
.uk-section-secondary:not(.uk-preserve-color) .uk-search-input::placeholder,
.uk-tile-primary:not(.uk-preserve-color) .uk-search-input::placeholder,
.uk-tile-secondary:not(.uk-preserve-color) .uk-search-input::placeholder,
.uk-card-primary.uk-card-body .uk-search-input::placeholder,
.uk-card-primary > :not([class*='uk-card-media']) .uk-search-input::placeholder,
.uk-card-secondary.uk-card-body .uk-search-input::placeholder,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-search-input::placeholder,
.uk-overlay-primary .uk-search-input::placeholder,
.uk-offcanvas-bar .uk-search-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-search .uk-search-icon,
.uk-section-primary:not(.uk-preserve-color) .uk-search .uk-search-icon,
.uk-section-secondary:not(.uk-preserve-color) .uk-search .uk-search-icon,
.uk-tile-primary:not(.uk-preserve-color) .uk-search .uk-search-icon,
.uk-tile-secondary:not(.uk-preserve-color) .uk-search .uk-search-icon,
.uk-card-primary.uk-card-body .uk-search .uk-search-icon,
.uk-card-primary > :not([class*='uk-card-media']) .uk-search .uk-search-icon,
.uk-card-secondary.uk-card-body .uk-search .uk-search-icon,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-search .uk-search-icon,
.uk-overlay-primary .uk-search .uk-search-icon,
.uk-offcanvas-bar .uk-search .uk-search-icon {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-search .uk-search-icon:hover,
.uk-section-primary:not(.uk-preserve-color) .uk-search .uk-search-icon:hover,
.uk-section-secondary:not(.uk-preserve-color) .uk-search .uk-search-icon:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-search .uk-search-icon:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-search .uk-search-icon:hover,
.uk-card-primary.uk-card-body .uk-search .uk-search-icon:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-search .uk-search-icon:hover,
.uk-card-secondary.uk-card-body .uk-search .uk-search-icon:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-search .uk-search-icon:hover,
.uk-overlay-primary .uk-search .uk-search-icon:hover,
.uk-offcanvas-bar .uk-search .uk-search-icon:hover {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-search-default .uk-search-input,
.uk-section-primary:not(.uk-preserve-color) .uk-search-default .uk-search-input,
.uk-section-secondary:not(.uk-preserve-color) .uk-search-default .uk-search-input,
.uk-tile-primary:not(.uk-preserve-color) .uk-search-default .uk-search-input,
.uk-tile-secondary:not(.uk-preserve-color) .uk-search-default .uk-search-input,
.uk-card-primary.uk-card-body .uk-search-default .uk-search-input,
.uk-card-primary > :not([class*='uk-card-media']) .uk-search-default .uk-search-input,
.uk-card-secondary.uk-card-body .uk-search-default .uk-search-input,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-search-default .uk-search-input,
.uk-overlay-primary .uk-search-default .uk-search-input,
.uk-offcanvas-bar .uk-search-default .uk-search-input {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-search-default .uk-search-input:focus,
.uk-section-primary:not(.uk-preserve-color) .uk-search-default .uk-search-input:focus,
.uk-section-secondary:not(.uk-preserve-color) .uk-search-default .uk-search-input:focus,
.uk-tile-primary:not(.uk-preserve-color) .uk-search-default .uk-search-input:focus,
.uk-tile-secondary:not(.uk-preserve-color) .uk-search-default .uk-search-input:focus,
.uk-card-primary.uk-card-body .uk-search-default .uk-search-input:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-search-default .uk-search-input:focus,
.uk-card-secondary.uk-card-body .uk-search-default .uk-search-input:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-search-default .uk-search-input:focus,
.uk-overlay-primary .uk-search-default .uk-search-input:focus,
.uk-offcanvas-bar .uk-search-default .uk-search-input:focus {
  background-color: transparent;
}
.uk-light .uk-search-navbar .uk-search-input,
.uk-section-primary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input,
.uk-section-secondary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input,
.uk-tile-primary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input,
.uk-tile-secondary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input,
.uk-card-primary.uk-card-body .uk-search-navbar .uk-search-input,
.uk-card-primary > :not([class*='uk-card-media']) .uk-search-navbar .uk-search-input,
.uk-card-secondary.uk-card-body .uk-search-navbar .uk-search-input,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-search-navbar .uk-search-input,
.uk-overlay-primary .uk-search-navbar .uk-search-input,
.uk-offcanvas-bar .uk-search-navbar .uk-search-input {
  background-color: transparent;
}
.uk-light .uk-search-large .uk-search-input,
.uk-section-primary:not(.uk-preserve-color) .uk-search-large .uk-search-input,
.uk-section-secondary:not(.uk-preserve-color) .uk-search-large .uk-search-input,
.uk-tile-primary:not(.uk-preserve-color) .uk-search-large .uk-search-input,
.uk-tile-secondary:not(.uk-preserve-color) .uk-search-large .uk-search-input,
.uk-card-primary.uk-card-body .uk-search-large .uk-search-input,
.uk-card-primary > :not([class*='uk-card-media']) .uk-search-large .uk-search-input,
.uk-card-secondary.uk-card-body .uk-search-large .uk-search-input,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-search-large .uk-search-input,
.uk-overlay-primary .uk-search-large .uk-search-input,
.uk-offcanvas-bar .uk-search-large .uk-search-input {
  background-color: transparent;
}
.uk-light .uk-search-toggle,
.uk-section-primary:not(.uk-preserve-color) .uk-search-toggle,
.uk-section-secondary:not(.uk-preserve-color) .uk-search-toggle,
.uk-tile-primary:not(.uk-preserve-color) .uk-search-toggle,
.uk-tile-secondary:not(.uk-preserve-color) .uk-search-toggle,
.uk-card-primary.uk-card-body .uk-search-toggle,
.uk-card-primary > :not([class*='uk-card-media']) .uk-search-toggle,
.uk-card-secondary.uk-card-body .uk-search-toggle,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-search-toggle,
.uk-overlay-primary .uk-search-toggle,
.uk-offcanvas-bar .uk-search-toggle {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-search-toggle:hover,
.uk-light .uk-search-toggle:focus,
.uk-section-primary:not(.uk-preserve-color) .uk-search-toggle:hover,
.uk-section-primary:not(.uk-preserve-color) .uk-search-toggle:focus,
.uk-section-secondary:not(.uk-preserve-color) .uk-search-toggle:hover,
.uk-section-secondary:not(.uk-preserve-color) .uk-search-toggle:focus,
.uk-tile-primary:not(.uk-preserve-color) .uk-search-toggle:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-search-toggle:focus,
.uk-tile-secondary:not(.uk-preserve-color) .uk-search-toggle:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-search-toggle:focus,
.uk-card-primary.uk-card-body .uk-search-toggle:hover,
.uk-card-primary.uk-card-body .uk-search-toggle:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-search-toggle:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-search-toggle:focus,
.uk-card-secondary.uk-card-body .uk-search-toggle:hover,
.uk-card-secondary.uk-card-body .uk-search-toggle:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-search-toggle:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-search-toggle:focus,
.uk-overlay-primary .uk-search-toggle:hover,
.uk-overlay-primary .uk-search-toggle:focus,
.uk-offcanvas-bar .uk-search-toggle:hover,
.uk-offcanvas-bar .uk-search-toggle:focus {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-accordion-title,
.uk-section-primary:not(.uk-preserve-color) .uk-accordion-title,
.uk-section-secondary:not(.uk-preserve-color) .uk-accordion-title,
.uk-tile-primary:not(.uk-preserve-color) .uk-accordion-title,
.uk-tile-secondary:not(.uk-preserve-color) .uk-accordion-title,
.uk-card-primary.uk-card-body .uk-accordion-title,
.uk-card-primary > :not([class*='uk-card-media']) .uk-accordion-title,
.uk-card-secondary.uk-card-body .uk-accordion-title,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-accordion-title,
.uk-overlay-primary .uk-accordion-title,
.uk-offcanvas-bar .uk-accordion-title {
  color: #fff;
}
.uk-light .uk-accordion-title:hover,
.uk-light .uk-accordion-title:focus,
.uk-section-primary:not(.uk-preserve-color) .uk-accordion-title:hover,
.uk-section-primary:not(.uk-preserve-color) .uk-accordion-title:focus,
.uk-section-secondary:not(.uk-preserve-color) .uk-accordion-title:hover,
.uk-section-secondary:not(.uk-preserve-color) .uk-accordion-title:focus,
.uk-tile-primary:not(.uk-preserve-color) .uk-accordion-title:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-accordion-title:focus,
.uk-tile-secondary:not(.uk-preserve-color) .uk-accordion-title:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-accordion-title:focus,
.uk-card-primary.uk-card-body .uk-accordion-title:hover,
.uk-card-primary.uk-card-body .uk-accordion-title:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-accordion-title:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-accordion-title:focus,
.uk-card-secondary.uk-card-body .uk-accordion-title:hover,
.uk-card-secondary.uk-card-body .uk-accordion-title:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-accordion-title:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-accordion-title:focus,
.uk-overlay-primary .uk-accordion-title:hover,
.uk-overlay-primary .uk-accordion-title:focus,
.uk-offcanvas-bar .uk-accordion-title:hover,
.uk-offcanvas-bar .uk-accordion-title:focus {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-grid-divider > :not(.uk-first-column)::before,
.uk-section-primary:not(.uk-preserve-color) .uk-grid-divider > :not(.uk-first-column)::before,
.uk-section-secondary:not(.uk-preserve-color) .uk-grid-divider > :not(.uk-first-column)::before,
.uk-tile-primary:not(.uk-preserve-color) .uk-grid-divider > :not(.uk-first-column)::before,
.uk-tile-secondary:not(.uk-preserve-color) .uk-grid-divider > :not(.uk-first-column)::before,
.uk-card-primary.uk-card-body .uk-grid-divider > :not(.uk-first-column)::before,
.uk-card-primary > :not([class*='uk-card-media']) .uk-grid-divider > :not(.uk-first-column)::before,
.uk-card-secondary.uk-card-body .uk-grid-divider > :not(.uk-first-column)::before,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-grid-divider > :not(.uk-first-column)::before,
.uk-overlay-primary .uk-grid-divider > :not(.uk-first-column)::before,
.uk-offcanvas-bar .uk-grid-divider > :not(.uk-first-column)::before {
  border-left-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before,
.uk-section-primary:not(.uk-preserve-color) .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before,
.uk-section-secondary:not(.uk-preserve-color) .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before,
.uk-tile-primary:not(.uk-preserve-color) .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before,
.uk-tile-secondary:not(.uk-preserve-color) .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before,
.uk-card-primary.uk-card-body .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before,
.uk-card-primary > :not([class*='uk-card-media']) .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before,
.uk-card-secondary.uk-card-body .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before,
.uk-overlay-primary .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before,
.uk-offcanvas-bar .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
  border-top-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-nav-parent-icon > .uk-parent > a::after,
.uk-section-primary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent > a::after,
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent > a::after,
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent > a::after,
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent > a::after,
.uk-card-primary.uk-card-body .uk-nav-parent-icon > .uk-parent > a::after,
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-parent-icon > .uk-parent > a::after,
.uk-card-secondary.uk-card-body .uk-nav-parent-icon > .uk-parent > a::after,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-parent-icon > .uk-parent > a::after,
.uk-overlay-primary .uk-nav-parent-icon > .uk-parent > a::after,
.uk-offcanvas-bar .uk-nav-parent-icon > .uk-parent > a::after {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2214%22%20viewBox%3D%220%200%2014%2014%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolyline%20fill%3D%22none%22%20stroke%3D%22rgba%28255,%20255,%20255,%200.7%29%22%20stroke-width%3D%221.1%22%20points%3D%2210%201%204%207%2010%2013%22%20%2F%3E%0A%3C%2Fsvg%3E");
}
.uk-light .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
.uk-section-primary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
.uk-card-primary.uk-card-body .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
.uk-card-secondary.uk-card-body .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
.uk-overlay-primary .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
.uk-offcanvas-bar .uk-nav-parent-icon > .uk-parent.uk-open > a::after {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2214%22%20viewBox%3D%220%200%2014%2014%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolyline%20fill%3D%22none%22%20stroke%3D%22rgba%28255,%20255,%20255,%200.7%29%22%20stroke-width%3D%221.1%22%20points%3D%221%204%207%2010%2013%204%22%20%2F%3E%0A%3C%2Fsvg%3E");
}
.uk-light .uk-nav-default > li > a,
.uk-section-primary:not(.uk-preserve-color) .uk-nav-default > li > a,
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-default > li > a,
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-default > li > a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-default > li > a,
.uk-card-primary.uk-card-body .uk-nav-default > li > a,
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-default > li > a,
.uk-card-secondary.uk-card-body .uk-nav-default > li > a,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-default > li > a,
.uk-overlay-primary .uk-nav-default > li > a,
.uk-offcanvas-bar .uk-nav-default > li > a {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-nav-default > li > a:hover,
.uk-light .uk-nav-default > li > a:focus,
.uk-section-primary:not(.uk-preserve-color) .uk-nav-default > li > a:hover,
.uk-section-primary:not(.uk-preserve-color) .uk-nav-default > li > a:focus,
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-default > li > a:hover,
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-default > li > a:focus,
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-default > li > a:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-default > li > a:focus,
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-default > li > a:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-default > li > a:focus,
.uk-card-primary.uk-card-body .uk-nav-default > li > a:hover,
.uk-card-primary.uk-card-body .uk-nav-default > li > a:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-default > li > a:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-default > li > a:focus,
.uk-card-secondary.uk-card-body .uk-nav-default > li > a:hover,
.uk-card-secondary.uk-card-body .uk-nav-default > li > a:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-default > li > a:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-default > li > a:focus,
.uk-overlay-primary .uk-nav-default > li > a:hover,
.uk-overlay-primary .uk-nav-default > li > a:focus,
.uk-offcanvas-bar .uk-nav-default > li > a:hover,
.uk-offcanvas-bar .uk-nav-default > li > a:focus {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-nav-default > li.uk-active > a,
.uk-section-primary:not(.uk-preserve-color) .uk-nav-default > li.uk-active > a,
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-default > li.uk-active > a,
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-default > li.uk-active > a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-default > li.uk-active > a,
.uk-card-primary.uk-card-body .uk-nav-default > li.uk-active > a,
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-default > li.uk-active > a,
.uk-card-secondary.uk-card-body .uk-nav-default > li.uk-active > a,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-default > li.uk-active > a,
.uk-overlay-primary .uk-nav-default > li.uk-active > a,
.uk-offcanvas-bar .uk-nav-default > li.uk-active > a {
  color: #fff;
}
.uk-light .uk-nav-default .uk-nav-header,
.uk-section-primary:not(.uk-preserve-color) .uk-nav-default .uk-nav-header,
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-default .uk-nav-header,
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-default .uk-nav-header,
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-default .uk-nav-header,
.uk-card-primary.uk-card-body .uk-nav-default .uk-nav-header,
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-default .uk-nav-header,
.uk-card-secondary.uk-card-body .uk-nav-default .uk-nav-header,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-default .uk-nav-header,
.uk-overlay-primary .uk-nav-default .uk-nav-header,
.uk-offcanvas-bar .uk-nav-default .uk-nav-header {
  color: #fff;
}
.uk-light .uk-nav-default .uk-nav-divider,
.uk-section-primary:not(.uk-preserve-color) .uk-nav-default .uk-nav-divider,
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-default .uk-nav-divider,
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-default .uk-nav-divider,
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-default .uk-nav-divider,
.uk-card-primary.uk-card-body .uk-nav-default .uk-nav-divider,
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-default .uk-nav-divider,
.uk-card-secondary.uk-card-body .uk-nav-default .uk-nav-divider,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-default .uk-nav-divider,
.uk-overlay-primary .uk-nav-default .uk-nav-divider,
.uk-offcanvas-bar .uk-nav-default .uk-nav-divider {
  border-top-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-nav-default .uk-nav-sub a,
.uk-section-primary:not(.uk-preserve-color) .uk-nav-default .uk-nav-sub a,
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-default .uk-nav-sub a,
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-default .uk-nav-sub a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-default .uk-nav-sub a,
.uk-card-primary.uk-card-body .uk-nav-default .uk-nav-sub a,
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-default .uk-nav-sub a,
.uk-card-secondary.uk-card-body .uk-nav-default .uk-nav-sub a,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-default .uk-nav-sub a,
.uk-overlay-primary .uk-nav-default .uk-nav-sub a,
.uk-offcanvas-bar .uk-nav-default .uk-nav-sub a {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-nav-default .uk-nav-sub a:hover,
.uk-light .uk-nav-default .uk-nav-sub a:focus,
.uk-section-primary:not(.uk-preserve-color) .uk-nav-default .uk-nav-sub a:hover,
.uk-section-primary:not(.uk-preserve-color) .uk-nav-default .uk-nav-sub a:focus,
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-default .uk-nav-sub a:hover,
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-default .uk-nav-sub a:focus,
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-default .uk-nav-sub a:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-default .uk-nav-sub a:focus,
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-default .uk-nav-sub a:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-default .uk-nav-sub a:focus,
.uk-card-primary.uk-card-body .uk-nav-default .uk-nav-sub a:hover,
.uk-card-primary.uk-card-body .uk-nav-default .uk-nav-sub a:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-default .uk-nav-sub a:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-default .uk-nav-sub a:focus,
.uk-card-secondary.uk-card-body .uk-nav-default .uk-nav-sub a:hover,
.uk-card-secondary.uk-card-body .uk-nav-default .uk-nav-sub a:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-default .uk-nav-sub a:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-default .uk-nav-sub a:focus,
.uk-overlay-primary .uk-nav-default .uk-nav-sub a:hover,
.uk-overlay-primary .uk-nav-default .uk-nav-sub a:focus,
.uk-offcanvas-bar .uk-nav-default .uk-nav-sub a:hover,
.uk-offcanvas-bar .uk-nav-default .uk-nav-sub a:focus {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-nav-default .uk-nav-sub li.uk-active > a,
.uk-section-primary:not(.uk-preserve-color) .uk-nav-default .uk-nav-sub li.uk-active > a,
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-default .uk-nav-sub li.uk-active > a,
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-default .uk-nav-sub li.uk-active > a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-default .uk-nav-sub li.uk-active > a,
.uk-card-primary.uk-card-body .uk-nav-default .uk-nav-sub li.uk-active > a,
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-default .uk-nav-sub li.uk-active > a,
.uk-card-secondary.uk-card-body .uk-nav-default .uk-nav-sub li.uk-active > a,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-default .uk-nav-sub li.uk-active > a,
.uk-overlay-primary .uk-nav-default .uk-nav-sub li.uk-active > a,
.uk-offcanvas-bar .uk-nav-default .uk-nav-sub li.uk-active > a {
  color: #fff;
}
.uk-light .uk-nav-primary > li > a,
.uk-section-primary:not(.uk-preserve-color) .uk-nav-primary > li > a,
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-primary > li > a,
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-primary > li > a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-primary > li > a,
.uk-card-primary.uk-card-body .uk-nav-primary > li > a,
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-primary > li > a,
.uk-card-secondary.uk-card-body .uk-nav-primary > li > a,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-primary > li > a,
.uk-overlay-primary .uk-nav-primary > li > a,
.uk-offcanvas-bar .uk-nav-primary > li > a {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-nav-primary > li > a:hover,
.uk-light .uk-nav-primary > li > a:focus,
.uk-section-primary:not(.uk-preserve-color) .uk-nav-primary > li > a:hover,
.uk-section-primary:not(.uk-preserve-color) .uk-nav-primary > li > a:focus,
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-primary > li > a:hover,
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-primary > li > a:focus,
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-primary > li > a:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-primary > li > a:focus,
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-primary > li > a:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-primary > li > a:focus,
.uk-card-primary.uk-card-body .uk-nav-primary > li > a:hover,
.uk-card-primary.uk-card-body .uk-nav-primary > li > a:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-primary > li > a:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-primary > li > a:focus,
.uk-card-secondary.uk-card-body .uk-nav-primary > li > a:hover,
.uk-card-secondary.uk-card-body .uk-nav-primary > li > a:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-primary > li > a:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-primary > li > a:focus,
.uk-overlay-primary .uk-nav-primary > li > a:hover,
.uk-overlay-primary .uk-nav-primary > li > a:focus,
.uk-offcanvas-bar .uk-nav-primary > li > a:hover,
.uk-offcanvas-bar .uk-nav-primary > li > a:focus {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-nav-primary > li.uk-active > a,
.uk-section-primary:not(.uk-preserve-color) .uk-nav-primary > li.uk-active > a,
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-primary > li.uk-active > a,
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-primary > li.uk-active > a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-primary > li.uk-active > a,
.uk-card-primary.uk-card-body .uk-nav-primary > li.uk-active > a,
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-primary > li.uk-active > a,
.uk-card-secondary.uk-card-body .uk-nav-primary > li.uk-active > a,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-primary > li.uk-active > a,
.uk-overlay-primary .uk-nav-primary > li.uk-active > a,
.uk-offcanvas-bar .uk-nav-primary > li.uk-active > a {
  color: #fff;
}
.uk-light .uk-nav-primary .uk-nav-header,
.uk-section-primary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-header,
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-header,
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-header,
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-header,
.uk-card-primary.uk-card-body .uk-nav-primary .uk-nav-header,
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-primary .uk-nav-header,
.uk-card-secondary.uk-card-body .uk-nav-primary .uk-nav-header,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-primary .uk-nav-header,
.uk-overlay-primary .uk-nav-primary .uk-nav-header,
.uk-offcanvas-bar .uk-nav-primary .uk-nav-header {
  color: #fff;
}
.uk-light .uk-nav-primary .uk-nav-divider,
.uk-section-primary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-divider,
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-divider,
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-divider,
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-divider,
.uk-card-primary.uk-card-body .uk-nav-primary .uk-nav-divider,
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-primary .uk-nav-divider,
.uk-card-secondary.uk-card-body .uk-nav-primary .uk-nav-divider,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-primary .uk-nav-divider,
.uk-overlay-primary .uk-nav-primary .uk-nav-divider,
.uk-offcanvas-bar .uk-nav-primary .uk-nav-divider {
  border-top-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-nav-primary .uk-nav-sub a,
.uk-section-primary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-sub a,
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-sub a,
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-sub a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-sub a,
.uk-card-primary.uk-card-body .uk-nav-primary .uk-nav-sub a,
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-primary .uk-nav-sub a,
.uk-card-secondary.uk-card-body .uk-nav-primary .uk-nav-sub a,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-primary .uk-nav-sub a,
.uk-overlay-primary .uk-nav-primary .uk-nav-sub a,
.uk-offcanvas-bar .uk-nav-primary .uk-nav-sub a {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-nav-primary .uk-nav-sub a:hover,
.uk-light .uk-nav-primary .uk-nav-sub a:focus,
.uk-section-primary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-sub a:hover,
.uk-section-primary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-sub a:focus,
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-sub a:hover,
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-sub a:focus,
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-sub a:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-sub a:focus,
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-sub a:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-sub a:focus,
.uk-card-primary.uk-card-body .uk-nav-primary .uk-nav-sub a:hover,
.uk-card-primary.uk-card-body .uk-nav-primary .uk-nav-sub a:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-primary .uk-nav-sub a:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-primary .uk-nav-sub a:focus,
.uk-card-secondary.uk-card-body .uk-nav-primary .uk-nav-sub a:hover,
.uk-card-secondary.uk-card-body .uk-nav-primary .uk-nav-sub a:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-primary .uk-nav-sub a:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-primary .uk-nav-sub a:focus,
.uk-overlay-primary .uk-nav-primary .uk-nav-sub a:hover,
.uk-overlay-primary .uk-nav-primary .uk-nav-sub a:focus,
.uk-offcanvas-bar .uk-nav-primary .uk-nav-sub a:hover,
.uk-offcanvas-bar .uk-nav-primary .uk-nav-sub a:focus {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-nav-primary .uk-nav-sub li.uk-active > a,
.uk-section-primary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-sub li.uk-active > a,
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-sub li.uk-active > a,
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-sub li.uk-active > a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-sub li.uk-active > a,
.uk-card-primary.uk-card-body .uk-nav-primary .uk-nav-sub li.uk-active > a,
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-primary .uk-nav-sub li.uk-active > a,
.uk-card-secondary.uk-card-body .uk-nav-primary .uk-nav-sub li.uk-active > a,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-primary .uk-nav-sub li.uk-active > a,
.uk-overlay-primary .uk-nav-primary .uk-nav-sub li.uk-active > a,
.uk-offcanvas-bar .uk-nav-primary .uk-nav-sub li.uk-active > a {
  color: #fff;
}
.uk-light .uk-navbar-nav > li > a,
.uk-section-primary:not(.uk-preserve-color) .uk-navbar-nav > li > a,
.uk-section-secondary:not(.uk-preserve-color) .uk-navbar-nav > li > a,
.uk-tile-primary:not(.uk-preserve-color) .uk-navbar-nav > li > a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-navbar-nav > li > a,
.uk-card-primary.uk-card-body .uk-navbar-nav > li > a,
.uk-card-primary > :not([class*='uk-card-media']) .uk-navbar-nav > li > a,
.uk-card-secondary.uk-card-body .uk-navbar-nav > li > a,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-navbar-nav > li > a,
.uk-overlay-primary .uk-navbar-nav > li > a,
.uk-offcanvas-bar .uk-navbar-nav > li > a {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-navbar-nav > li:hover > a,
.uk-light .uk-navbar-nav > li > a:focus,
.uk-light .uk-navbar-nav > li > a.uk-open,
.uk-section-primary:not(.uk-preserve-color) .uk-navbar-nav > li:hover > a,
.uk-section-primary:not(.uk-preserve-color) .uk-navbar-nav > li > a:focus,
.uk-section-primary:not(.uk-preserve-color) .uk-navbar-nav > li > a.uk-open,
.uk-section-secondary:not(.uk-preserve-color) .uk-navbar-nav > li:hover > a,
.uk-section-secondary:not(.uk-preserve-color) .uk-navbar-nav > li > a:focus,
.uk-section-secondary:not(.uk-preserve-color) .uk-navbar-nav > li > a.uk-open,
.uk-tile-primary:not(.uk-preserve-color) .uk-navbar-nav > li:hover > a,
.uk-tile-primary:not(.uk-preserve-color) .uk-navbar-nav > li > a:focus,
.uk-tile-primary:not(.uk-preserve-color) .uk-navbar-nav > li > a.uk-open,
.uk-tile-secondary:not(.uk-preserve-color) .uk-navbar-nav > li:hover > a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-navbar-nav > li > a:focus,
.uk-tile-secondary:not(.uk-preserve-color) .uk-navbar-nav > li > a.uk-open,
.uk-card-primary.uk-card-body .uk-navbar-nav > li:hover > a,
.uk-card-primary.uk-card-body .uk-navbar-nav > li > a:focus,
.uk-card-primary.uk-card-body .uk-navbar-nav > li > a.uk-open,
.uk-card-primary > :not([class*='uk-card-media']) .uk-navbar-nav > li:hover > a,
.uk-card-primary > :not([class*='uk-card-media']) .uk-navbar-nav > li > a:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-navbar-nav > li > a.uk-open,
.uk-card-secondary.uk-card-body .uk-navbar-nav > li:hover > a,
.uk-card-secondary.uk-card-body .uk-navbar-nav > li > a:focus,
.uk-card-secondary.uk-card-body .uk-navbar-nav > li > a.uk-open,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-navbar-nav > li:hover > a,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-navbar-nav > li > a:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-navbar-nav > li > a.uk-open,
.uk-overlay-primary .uk-navbar-nav > li:hover > a,
.uk-overlay-primary .uk-navbar-nav > li > a:focus,
.uk-overlay-primary .uk-navbar-nav > li > a.uk-open,
.uk-offcanvas-bar .uk-navbar-nav > li:hover > a,
.uk-offcanvas-bar .uk-navbar-nav > li > a:focus,
.uk-offcanvas-bar .uk-navbar-nav > li > a.uk-open {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-navbar-nav > li > a:active,
.uk-section-primary:not(.uk-preserve-color) .uk-navbar-nav > li > a:active,
.uk-section-secondary:not(.uk-preserve-color) .uk-navbar-nav > li > a:active,
.uk-tile-primary:not(.uk-preserve-color) .uk-navbar-nav > li > a:active,
.uk-tile-secondary:not(.uk-preserve-color) .uk-navbar-nav > li > a:active,
.uk-card-primary.uk-card-body .uk-navbar-nav > li > a:active,
.uk-card-primary > :not([class*='uk-card-media']) .uk-navbar-nav > li > a:active,
.uk-card-secondary.uk-card-body .uk-navbar-nav > li > a:active,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-navbar-nav > li > a:active,
.uk-overlay-primary .uk-navbar-nav > li > a:active,
.uk-offcanvas-bar .uk-navbar-nav > li > a:active {
  color: #fff;
}
.uk-light .uk-navbar-nav > li.uk-active > a,
.uk-section-primary:not(.uk-preserve-color) .uk-navbar-nav > li.uk-active > a,
.uk-section-secondary:not(.uk-preserve-color) .uk-navbar-nav > li.uk-active > a,
.uk-tile-primary:not(.uk-preserve-color) .uk-navbar-nav > li.uk-active > a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-navbar-nav > li.uk-active > a,
.uk-card-primary.uk-card-body .uk-navbar-nav > li.uk-active > a,
.uk-card-primary > :not([class*='uk-card-media']) .uk-navbar-nav > li.uk-active > a,
.uk-card-secondary.uk-card-body .uk-navbar-nav > li.uk-active > a,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-navbar-nav > li.uk-active > a,
.uk-overlay-primary .uk-navbar-nav > li.uk-active > a,
.uk-offcanvas-bar .uk-navbar-nav > li.uk-active > a {
  color: #fff;
}
.uk-light .uk-navbar-item,
.uk-section-primary:not(.uk-preserve-color) .uk-navbar-item,
.uk-section-secondary:not(.uk-preserve-color) .uk-navbar-item,
.uk-tile-primary:not(.uk-preserve-color) .uk-navbar-item,
.uk-tile-secondary:not(.uk-preserve-color) .uk-navbar-item,
.uk-card-primary.uk-card-body .uk-navbar-item,
.uk-card-primary > :not([class*='uk-card-media']) .uk-navbar-item,
.uk-card-secondary.uk-card-body .uk-navbar-item,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-navbar-item,
.uk-overlay-primary .uk-navbar-item,
.uk-offcanvas-bar .uk-navbar-item {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-navbar-toggle,
.uk-section-primary:not(.uk-preserve-color) .uk-navbar-toggle,
.uk-section-secondary:not(.uk-preserve-color) .uk-navbar-toggle,
.uk-tile-primary:not(.uk-preserve-color) .uk-navbar-toggle,
.uk-tile-secondary:not(.uk-preserve-color) .uk-navbar-toggle,
.uk-card-primary.uk-card-body .uk-navbar-toggle,
.uk-card-primary > :not([class*='uk-card-media']) .uk-navbar-toggle,
.uk-card-secondary.uk-card-body .uk-navbar-toggle,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-navbar-toggle,
.uk-overlay-primary .uk-navbar-toggle,
.uk-offcanvas-bar .uk-navbar-toggle {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-navbar-toggle:hover,
.uk-light .uk-navbar-toggle:focus,
.uk-light .uk-navbar-toggle.uk-open,
.uk-section-primary:not(.uk-preserve-color) .uk-navbar-toggle:hover,
.uk-section-primary:not(.uk-preserve-color) .uk-navbar-toggle:focus,
.uk-section-primary:not(.uk-preserve-color) .uk-navbar-toggle.uk-open,
.uk-section-secondary:not(.uk-preserve-color) .uk-navbar-toggle:hover,
.uk-section-secondary:not(.uk-preserve-color) .uk-navbar-toggle:focus,
.uk-section-secondary:not(.uk-preserve-color) .uk-navbar-toggle.uk-open,
.uk-tile-primary:not(.uk-preserve-color) .uk-navbar-toggle:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-navbar-toggle:focus,
.uk-tile-primary:not(.uk-preserve-color) .uk-navbar-toggle.uk-open,
.uk-tile-secondary:not(.uk-preserve-color) .uk-navbar-toggle:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-navbar-toggle:focus,
.uk-tile-secondary:not(.uk-preserve-color) .uk-navbar-toggle.uk-open,
.uk-card-primary.uk-card-body .uk-navbar-toggle:hover,
.uk-card-primary.uk-card-body .uk-navbar-toggle:focus,
.uk-card-primary.uk-card-body .uk-navbar-toggle.uk-open,
.uk-card-primary > :not([class*='uk-card-media']) .uk-navbar-toggle:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-navbar-toggle:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-navbar-toggle.uk-open,
.uk-card-secondary.uk-card-body .uk-navbar-toggle:hover,
.uk-card-secondary.uk-card-body .uk-navbar-toggle:focus,
.uk-card-secondary.uk-card-body .uk-navbar-toggle.uk-open,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-navbar-toggle:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-navbar-toggle:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-navbar-toggle.uk-open,
.uk-overlay-primary .uk-navbar-toggle:hover,
.uk-overlay-primary .uk-navbar-toggle:focus,
.uk-overlay-primary .uk-navbar-toggle.uk-open,
.uk-offcanvas-bar .uk-navbar-toggle:hover,
.uk-offcanvas-bar .uk-navbar-toggle:focus,
.uk-offcanvas-bar .uk-navbar-toggle.uk-open {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-subnav > * > :first-child,
.uk-section-primary:not(.uk-preserve-color) .uk-subnav > * > :first-child,
.uk-section-secondary:not(.uk-preserve-color) .uk-subnav > * > :first-child,
.uk-tile-primary:not(.uk-preserve-color) .uk-subnav > * > :first-child,
.uk-tile-secondary:not(.uk-preserve-color) .uk-subnav > * > :first-child,
.uk-card-primary.uk-card-body .uk-subnav > * > :first-child,
.uk-card-primary > :not([class*='uk-card-media']) .uk-subnav > * > :first-child,
.uk-card-secondary.uk-card-body .uk-subnav > * > :first-child,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-subnav > * > :first-child,
.uk-overlay-primary .uk-subnav > * > :first-child,
.uk-offcanvas-bar .uk-subnav > * > :first-child {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-subnav > * > a:hover,
.uk-light .uk-subnav > * > a:focus,
.uk-section-primary:not(.uk-preserve-color) .uk-subnav > * > a:hover,
.uk-section-primary:not(.uk-preserve-color) .uk-subnav > * > a:focus,
.uk-section-secondary:not(.uk-preserve-color) .uk-subnav > * > a:hover,
.uk-section-secondary:not(.uk-preserve-color) .uk-subnav > * > a:focus,
.uk-tile-primary:not(.uk-preserve-color) .uk-subnav > * > a:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-subnav > * > a:focus,
.uk-tile-secondary:not(.uk-preserve-color) .uk-subnav > * > a:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-subnav > * > a:focus,
.uk-card-primary.uk-card-body .uk-subnav > * > a:hover,
.uk-card-primary.uk-card-body .uk-subnav > * > a:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-subnav > * > a:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-subnav > * > a:focus,
.uk-card-secondary.uk-card-body .uk-subnav > * > a:hover,
.uk-card-secondary.uk-card-body .uk-subnav > * > a:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-subnav > * > a:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-subnav > * > a:focus,
.uk-overlay-primary .uk-subnav > * > a:hover,
.uk-overlay-primary .uk-subnav > * > a:focus,
.uk-offcanvas-bar .uk-subnav > * > a:hover,
.uk-offcanvas-bar .uk-subnav > * > a:focus {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-subnav > .uk-active > a,
.uk-section-primary:not(.uk-preserve-color) .uk-subnav > .uk-active > a,
.uk-section-secondary:not(.uk-preserve-color) .uk-subnav > .uk-active > a,
.uk-tile-primary:not(.uk-preserve-color) .uk-subnav > .uk-active > a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-subnav > .uk-active > a,
.uk-card-primary.uk-card-body .uk-subnav > .uk-active > a,
.uk-card-primary > :not([class*='uk-card-media']) .uk-subnav > .uk-active > a,
.uk-card-secondary.uk-card-body .uk-subnav > .uk-active > a,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-subnav > .uk-active > a,
.uk-overlay-primary .uk-subnav > .uk-active > a,
.uk-offcanvas-bar .uk-subnav > .uk-active > a {
  color: #fff;
}
.uk-light .uk-subnav-divider > :nth-child(n+2):not(.uk-first-column)::before,
.uk-section-primary:not(.uk-preserve-color) .uk-subnav-divider > :nth-child(n+2):not(.uk-first-column)::before,
.uk-section-secondary:not(.uk-preserve-color) .uk-subnav-divider > :nth-child(n+2):not(.uk-first-column)::before,
.uk-tile-primary:not(.uk-preserve-color) .uk-subnav-divider > :nth-child(n+2):not(.uk-first-column)::before,
.uk-tile-secondary:not(.uk-preserve-color) .uk-subnav-divider > :nth-child(n+2):not(.uk-first-column)::before,
.uk-card-primary.uk-card-body .uk-subnav-divider > :nth-child(n+2):not(.uk-first-column)::before,
.uk-card-primary > :not([class*='uk-card-media']) .uk-subnav-divider > :nth-child(n+2):not(.uk-first-column)::before,
.uk-card-secondary.uk-card-body .uk-subnav-divider > :nth-child(n+2):not(.uk-first-column)::before,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-subnav-divider > :nth-child(n+2):not(.uk-first-column)::before,
.uk-overlay-primary .uk-subnav-divider > :nth-child(n+2):not(.uk-first-column)::before,
.uk-offcanvas-bar .uk-subnav-divider > :nth-child(n+2):not(.uk-first-column)::before {
  border-left-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-subnav-pill > * > :first-child,
.uk-section-primary:not(.uk-preserve-color) .uk-subnav-pill > * > :first-child,
.uk-section-secondary:not(.uk-preserve-color) .uk-subnav-pill > * > :first-child,
.uk-tile-primary:not(.uk-preserve-color) .uk-subnav-pill > * > :first-child,
.uk-tile-secondary:not(.uk-preserve-color) .uk-subnav-pill > * > :first-child,
.uk-card-primary.uk-card-body .uk-subnav-pill > * > :first-child,
.uk-card-primary > :not([class*='uk-card-media']) .uk-subnav-pill > * > :first-child,
.uk-card-secondary.uk-card-body .uk-subnav-pill > * > :first-child,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-subnav-pill > * > :first-child,
.uk-overlay-primary .uk-subnav-pill > * > :first-child,
.uk-offcanvas-bar .uk-subnav-pill > * > :first-child {
  background-color: transparent;
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-subnav-pill > * > a:hover,
.uk-light .uk-subnav-pill > * > a:focus,
.uk-section-primary:not(.uk-preserve-color) .uk-subnav-pill > * > a:hover,
.uk-section-primary:not(.uk-preserve-color) .uk-subnav-pill > * > a:focus,
.uk-section-secondary:not(.uk-preserve-color) .uk-subnav-pill > * > a:hover,
.uk-section-secondary:not(.uk-preserve-color) .uk-subnav-pill > * > a:focus,
.uk-tile-primary:not(.uk-preserve-color) .uk-subnav-pill > * > a:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-subnav-pill > * > a:focus,
.uk-tile-secondary:not(.uk-preserve-color) .uk-subnav-pill > * > a:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-subnav-pill > * > a:focus,
.uk-card-primary.uk-card-body .uk-subnav-pill > * > a:hover,
.uk-card-primary.uk-card-body .uk-subnav-pill > * > a:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-subnav-pill > * > a:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-subnav-pill > * > a:focus,
.uk-card-secondary.uk-card-body .uk-subnav-pill > * > a:hover,
.uk-card-secondary.uk-card-body .uk-subnav-pill > * > a:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-subnav-pill > * > a:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-subnav-pill > * > a:focus,
.uk-overlay-primary .uk-subnav-pill > * > a:hover,
.uk-overlay-primary .uk-subnav-pill > * > a:focus,
.uk-offcanvas-bar .uk-subnav-pill > * > a:hover,
.uk-offcanvas-bar .uk-subnav-pill > * > a:focus {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-subnav-pill > * > a:active,
.uk-section-primary:not(.uk-preserve-color) .uk-subnav-pill > * > a:active,
.uk-section-secondary:not(.uk-preserve-color) .uk-subnav-pill > * > a:active,
.uk-tile-primary:not(.uk-preserve-color) .uk-subnav-pill > * > a:active,
.uk-tile-secondary:not(.uk-preserve-color) .uk-subnav-pill > * > a:active,
.uk-card-primary.uk-card-body .uk-subnav-pill > * > a:active,
.uk-card-primary > :not([class*='uk-card-media']) .uk-subnav-pill > * > a:active,
.uk-card-secondary.uk-card-body .uk-subnav-pill > * > a:active,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-subnav-pill > * > a:active,
.uk-overlay-primary .uk-subnav-pill > * > a:active,
.uk-offcanvas-bar .uk-subnav-pill > * > a:active {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-subnav-pill > .uk-active > a,
.uk-section-primary:not(.uk-preserve-color) .uk-subnav-pill > .uk-active > a,
.uk-section-secondary:not(.uk-preserve-color) .uk-subnav-pill > .uk-active > a,
.uk-tile-primary:not(.uk-preserve-color) .uk-subnav-pill > .uk-active > a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-subnav-pill > .uk-active > a,
.uk-card-primary.uk-card-body .uk-subnav-pill > .uk-active > a,
.uk-card-primary > :not([class*='uk-card-media']) .uk-subnav-pill > .uk-active > a,
.uk-card-secondary.uk-card-body .uk-subnav-pill > .uk-active > a,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-subnav-pill > .uk-active > a,
.uk-overlay-primary .uk-subnav-pill > .uk-active > a,
.uk-offcanvas-bar .uk-subnav-pill > .uk-active > a {
  background-color: #fff;
  color: #666;
}
.uk-light .uk-subnav > .uk-disabled > a,
.uk-section-primary:not(.uk-preserve-color) .uk-subnav > .uk-disabled > a,
.uk-section-secondary:not(.uk-preserve-color) .uk-subnav > .uk-disabled > a,
.uk-tile-primary:not(.uk-preserve-color) .uk-subnav > .uk-disabled > a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-subnav > .uk-disabled > a,
.uk-card-primary.uk-card-body .uk-subnav > .uk-disabled > a,
.uk-card-primary > :not([class*='uk-card-media']) .uk-subnav > .uk-disabled > a,
.uk-card-secondary.uk-card-body .uk-subnav > .uk-disabled > a,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-subnav > .uk-disabled > a,
.uk-overlay-primary .uk-subnav > .uk-disabled > a,
.uk-offcanvas-bar .uk-subnav > .uk-disabled > a {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-breadcrumb > * > *,
.uk-section-primary:not(.uk-preserve-color) .uk-breadcrumb > * > *,
.uk-section-secondary:not(.uk-preserve-color) .uk-breadcrumb > * > *,
.uk-tile-primary:not(.uk-preserve-color) .uk-breadcrumb > * > *,
.uk-tile-secondary:not(.uk-preserve-color) .uk-breadcrumb > * > *,
.uk-card-primary.uk-card-body .uk-breadcrumb > * > *,
.uk-card-primary > :not([class*='uk-card-media']) .uk-breadcrumb > * > *,
.uk-card-secondary.uk-card-body .uk-breadcrumb > * > *,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-breadcrumb > * > *,
.uk-overlay-primary .uk-breadcrumb > * > *,
.uk-offcanvas-bar .uk-breadcrumb > * > * {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-breadcrumb > * > :hover,
.uk-light .uk-breadcrumb > * > :focus,
.uk-section-primary:not(.uk-preserve-color) .uk-breadcrumb > * > :hover,
.uk-section-primary:not(.uk-preserve-color) .uk-breadcrumb > * > :focus,
.uk-section-secondary:not(.uk-preserve-color) .uk-breadcrumb > * > :hover,
.uk-section-secondary:not(.uk-preserve-color) .uk-breadcrumb > * > :focus,
.uk-tile-primary:not(.uk-preserve-color) .uk-breadcrumb > * > :hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-breadcrumb > * > :focus,
.uk-tile-secondary:not(.uk-preserve-color) .uk-breadcrumb > * > :hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-breadcrumb > * > :focus,
.uk-card-primary.uk-card-body .uk-breadcrumb > * > :hover,
.uk-card-primary.uk-card-body .uk-breadcrumb > * > :focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-breadcrumb > * > :hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-breadcrumb > * > :focus,
.uk-card-secondary.uk-card-body .uk-breadcrumb > * > :hover,
.uk-card-secondary.uk-card-body .uk-breadcrumb > * > :focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-breadcrumb > * > :hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-breadcrumb > * > :focus,
.uk-overlay-primary .uk-breadcrumb > * > :hover,
.uk-overlay-primary .uk-breadcrumb > * > :focus,
.uk-offcanvas-bar .uk-breadcrumb > * > :hover,
.uk-offcanvas-bar .uk-breadcrumb > * > :focus {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-breadcrumb > :last-child > *,
.uk-section-primary:not(.uk-preserve-color) .uk-breadcrumb > :last-child > *,
.uk-section-secondary:not(.uk-preserve-color) .uk-breadcrumb > :last-child > *,
.uk-tile-primary:not(.uk-preserve-color) .uk-breadcrumb > :last-child > *,
.uk-tile-secondary:not(.uk-preserve-color) .uk-breadcrumb > :last-child > *,
.uk-card-primary.uk-card-body .uk-breadcrumb > :last-child > *,
.uk-card-primary > :not([class*='uk-card-media']) .uk-breadcrumb > :last-child > *,
.uk-card-secondary.uk-card-body .uk-breadcrumb > :last-child > *,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-breadcrumb > :last-child > *,
.uk-overlay-primary .uk-breadcrumb > :last-child > *,
.uk-offcanvas-bar .uk-breadcrumb > :last-child > * {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-breadcrumb > :nth-child(n+2):not(.uk-first-column)::before,
.uk-section-primary:not(.uk-preserve-color) .uk-breadcrumb > :nth-child(n+2):not(.uk-first-column)::before,
.uk-section-secondary:not(.uk-preserve-color) .uk-breadcrumb > :nth-child(n+2):not(.uk-first-column)::before,
.uk-tile-primary:not(.uk-preserve-color) .uk-breadcrumb > :nth-child(n+2):not(.uk-first-column)::before,
.uk-tile-secondary:not(.uk-preserve-color) .uk-breadcrumb > :nth-child(n+2):not(.uk-first-column)::before,
.uk-card-primary.uk-card-body .uk-breadcrumb > :nth-child(n+2):not(.uk-first-column)::before,
.uk-card-primary > :not([class*='uk-card-media']) .uk-breadcrumb > :nth-child(n+2):not(.uk-first-column)::before,
.uk-card-secondary.uk-card-body .uk-breadcrumb > :nth-child(n+2):not(.uk-first-column)::before,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-breadcrumb > :nth-child(n+2):not(.uk-first-column)::before,
.uk-overlay-primary .uk-breadcrumb > :nth-child(n+2):not(.uk-first-column)::before,
.uk-offcanvas-bar .uk-breadcrumb > :nth-child(n+2):not(.uk-first-column)::before {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-pagination > * > *,
.uk-section-primary:not(.uk-preserve-color) .uk-pagination > * > *,
.uk-section-secondary:not(.uk-preserve-color) .uk-pagination > * > *,
.uk-tile-primary:not(.uk-preserve-color) .uk-pagination > * > *,
.uk-tile-secondary:not(.uk-preserve-color) .uk-pagination > * > *,
.uk-card-primary.uk-card-body .uk-pagination > * > *,
.uk-card-primary > :not([class*='uk-card-media']) .uk-pagination > * > *,
.uk-card-secondary.uk-card-body .uk-pagination > * > *,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-pagination > * > *,
.uk-overlay-primary .uk-pagination > * > *,
.uk-offcanvas-bar .uk-pagination > * > * {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-pagination > * > :hover,
.uk-light .uk-pagination > * > :focus,
.uk-section-primary:not(.uk-preserve-color) .uk-pagination > * > :hover,
.uk-section-primary:not(.uk-preserve-color) .uk-pagination > * > :focus,
.uk-section-secondary:not(.uk-preserve-color) .uk-pagination > * > :hover,
.uk-section-secondary:not(.uk-preserve-color) .uk-pagination > * > :focus,
.uk-tile-primary:not(.uk-preserve-color) .uk-pagination > * > :hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-pagination > * > :focus,
.uk-tile-secondary:not(.uk-preserve-color) .uk-pagination > * > :hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-pagination > * > :focus,
.uk-card-primary.uk-card-body .uk-pagination > * > :hover,
.uk-card-primary.uk-card-body .uk-pagination > * > :focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-pagination > * > :hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-pagination > * > :focus,
.uk-card-secondary.uk-card-body .uk-pagination > * > :hover,
.uk-card-secondary.uk-card-body .uk-pagination > * > :focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-pagination > * > :hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-pagination > * > :focus,
.uk-overlay-primary .uk-pagination > * > :hover,
.uk-overlay-primary .uk-pagination > * > :focus,
.uk-offcanvas-bar .uk-pagination > * > :hover,
.uk-offcanvas-bar .uk-pagination > * > :focus {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-pagination > .uk-active > *,
.uk-section-primary:not(.uk-preserve-color) .uk-pagination > .uk-active > *,
.uk-section-secondary:not(.uk-preserve-color) .uk-pagination > .uk-active > *,
.uk-tile-primary:not(.uk-preserve-color) .uk-pagination > .uk-active > *,
.uk-tile-secondary:not(.uk-preserve-color) .uk-pagination > .uk-active > *,
.uk-card-primary.uk-card-body .uk-pagination > .uk-active > *,
.uk-card-primary > :not([class*='uk-card-media']) .uk-pagination > .uk-active > *,
.uk-card-secondary.uk-card-body .uk-pagination > .uk-active > *,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-pagination > .uk-active > *,
.uk-overlay-primary .uk-pagination > .uk-active > *,
.uk-offcanvas-bar .uk-pagination > .uk-active > * {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-pagination > .uk-disabled > *,
.uk-section-primary:not(.uk-preserve-color) .uk-pagination > .uk-disabled > *,
.uk-section-secondary:not(.uk-preserve-color) .uk-pagination > .uk-disabled > *,
.uk-tile-primary:not(.uk-preserve-color) .uk-pagination > .uk-disabled > *,
.uk-tile-secondary:not(.uk-preserve-color) .uk-pagination > .uk-disabled > *,
.uk-card-primary.uk-card-body .uk-pagination > .uk-disabled > *,
.uk-card-primary > :not([class*='uk-card-media']) .uk-pagination > .uk-disabled > *,
.uk-card-secondary.uk-card-body .uk-pagination > .uk-disabled > *,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-pagination > .uk-disabled > *,
.uk-overlay-primary .uk-pagination > .uk-disabled > *,
.uk-offcanvas-bar .uk-pagination > .uk-disabled > * {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-tab::before,
.uk-section-primary:not(.uk-preserve-color) .uk-tab::before,
.uk-section-secondary:not(.uk-preserve-color) .uk-tab::before,
.uk-tile-primary:not(.uk-preserve-color) .uk-tab::before,
.uk-tile-secondary:not(.uk-preserve-color) .uk-tab::before,
.uk-card-primary.uk-card-body .uk-tab::before,
.uk-card-primary > :not([class*='uk-card-media']) .uk-tab::before,
.uk-card-secondary.uk-card-body .uk-tab::before,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-tab::before,
.uk-overlay-primary .uk-tab::before,
.uk-offcanvas-bar .uk-tab::before {
  border-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-tab > * > a,
.uk-section-primary:not(.uk-preserve-color) .uk-tab > * > a,
.uk-section-secondary:not(.uk-preserve-color) .uk-tab > * > a,
.uk-tile-primary:not(.uk-preserve-color) .uk-tab > * > a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-tab > * > a,
.uk-card-primary.uk-card-body .uk-tab > * > a,
.uk-card-primary > :not([class*='uk-card-media']) .uk-tab > * > a,
.uk-card-secondary.uk-card-body .uk-tab > * > a,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-tab > * > a,
.uk-overlay-primary .uk-tab > * > a,
.uk-offcanvas-bar .uk-tab > * > a {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-tab > * > a:hover,
.uk-light .uk-tab > * > a:focus,
.uk-section-primary:not(.uk-preserve-color) .uk-tab > * > a:hover,
.uk-section-primary:not(.uk-preserve-color) .uk-tab > * > a:focus,
.uk-section-secondary:not(.uk-preserve-color) .uk-tab > * > a:hover,
.uk-section-secondary:not(.uk-preserve-color) .uk-tab > * > a:focus,
.uk-tile-primary:not(.uk-preserve-color) .uk-tab > * > a:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-tab > * > a:focus,
.uk-tile-secondary:not(.uk-preserve-color) .uk-tab > * > a:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-tab > * > a:focus,
.uk-card-primary.uk-card-body .uk-tab > * > a:hover,
.uk-card-primary.uk-card-body .uk-tab > * > a:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-tab > * > a:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-tab > * > a:focus,
.uk-card-secondary.uk-card-body .uk-tab > * > a:hover,
.uk-card-secondary.uk-card-body .uk-tab > * > a:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-tab > * > a:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-tab > * > a:focus,
.uk-overlay-primary .uk-tab > * > a:hover,
.uk-overlay-primary .uk-tab > * > a:focus,
.uk-offcanvas-bar .uk-tab > * > a:hover,
.uk-offcanvas-bar .uk-tab > * > a:focus {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-tab > .uk-active > a,
.uk-section-primary:not(.uk-preserve-color) .uk-tab > .uk-active > a,
.uk-section-secondary:not(.uk-preserve-color) .uk-tab > .uk-active > a,
.uk-tile-primary:not(.uk-preserve-color) .uk-tab > .uk-active > a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-tab > .uk-active > a,
.uk-card-primary.uk-card-body .uk-tab > .uk-active > a,
.uk-card-primary > :not([class*='uk-card-media']) .uk-tab > .uk-active > a,
.uk-card-secondary.uk-card-body .uk-tab > .uk-active > a,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-tab > .uk-active > a,
.uk-overlay-primary .uk-tab > .uk-active > a,
.uk-offcanvas-bar .uk-tab > .uk-active > a {
  color: #fff;
  border-color: #fff;
}
.uk-light .uk-tab > .uk-disabled > a,
.uk-section-primary:not(.uk-preserve-color) .uk-tab > .uk-disabled > a,
.uk-section-secondary:not(.uk-preserve-color) .uk-tab > .uk-disabled > a,
.uk-tile-primary:not(.uk-preserve-color) .uk-tab > .uk-disabled > a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-tab > .uk-disabled > a,
.uk-card-primary.uk-card-body .uk-tab > .uk-disabled > a,
.uk-card-primary > :not([class*='uk-card-media']) .uk-tab > .uk-disabled > a,
.uk-card-secondary.uk-card-body .uk-tab > .uk-disabled > a,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-tab > .uk-disabled > a,
.uk-overlay-primary .uk-tab > .uk-disabled > a,
.uk-offcanvas-bar .uk-tab > .uk-disabled > a {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-slidenav,
.uk-section-primary:not(.uk-preserve-color) .uk-slidenav,
.uk-section-secondary:not(.uk-preserve-color) .uk-slidenav,
.uk-tile-primary:not(.uk-preserve-color) .uk-slidenav,
.uk-tile-secondary:not(.uk-preserve-color) .uk-slidenav,
.uk-card-primary.uk-card-body .uk-slidenav,
.uk-card-primary > :not([class*='uk-card-media']) .uk-slidenav,
.uk-card-secondary.uk-card-body .uk-slidenav,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-slidenav,
.uk-overlay-primary .uk-slidenav,
.uk-offcanvas-bar .uk-slidenav {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-slidenav:hover,
.uk-light .uk-slidenav:focus,
.uk-section-primary:not(.uk-preserve-color) .uk-slidenav:hover,
.uk-section-primary:not(.uk-preserve-color) .uk-slidenav:focus,
.uk-section-secondary:not(.uk-preserve-color) .uk-slidenav:hover,
.uk-section-secondary:not(.uk-preserve-color) .uk-slidenav:focus,
.uk-tile-primary:not(.uk-preserve-color) .uk-slidenav:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-slidenav:focus,
.uk-tile-secondary:not(.uk-preserve-color) .uk-slidenav:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-slidenav:focus,
.uk-card-primary.uk-card-body .uk-slidenav:hover,
.uk-card-primary.uk-card-body .uk-slidenav:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-slidenav:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-slidenav:focus,
.uk-card-secondary.uk-card-body .uk-slidenav:hover,
.uk-card-secondary.uk-card-body .uk-slidenav:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-slidenav:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-slidenav:focus,
.uk-overlay-primary .uk-slidenav:hover,
.uk-overlay-primary .uk-slidenav:focus,
.uk-offcanvas-bar .uk-slidenav:hover,
.uk-offcanvas-bar .uk-slidenav:focus {
  color: rgba(255, 255, 255, 0.95);
}
.uk-light .uk-slidenav:active,
.uk-section-primary:not(.uk-preserve-color) .uk-slidenav:active,
.uk-section-secondary:not(.uk-preserve-color) .uk-slidenav:active,
.uk-tile-primary:not(.uk-preserve-color) .uk-slidenav:active,
.uk-tile-secondary:not(.uk-preserve-color) .uk-slidenav:active,
.uk-card-primary.uk-card-body .uk-slidenav:active,
.uk-card-primary > :not([class*='uk-card-media']) .uk-slidenav:active,
.uk-card-secondary.uk-card-body .uk-slidenav:active,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-slidenav:active,
.uk-overlay-primary .uk-slidenav:active,
.uk-offcanvas-bar .uk-slidenav:active {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-dotnav > * > *,
.uk-section-primary:not(.uk-preserve-color) .uk-dotnav > * > *,
.uk-section-secondary:not(.uk-preserve-color) .uk-dotnav > * > *,
.uk-tile-primary:not(.uk-preserve-color) .uk-dotnav > * > *,
.uk-tile-secondary:not(.uk-preserve-color) .uk-dotnav > * > *,
.uk-card-primary.uk-card-body .uk-dotnav > * > *,
.uk-card-primary > :not([class*='uk-card-media']) .uk-dotnav > * > *,
.uk-card-secondary.uk-card-body .uk-dotnav > * > *,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-dotnav > * > *,
.uk-overlay-primary .uk-dotnav > * > *,
.uk-offcanvas-bar .uk-dotnav > * > * {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.9);
}
.uk-light .uk-dotnav > * > :hover,
.uk-light .uk-dotnav > * > :focus,
.uk-section-primary:not(.uk-preserve-color) .uk-dotnav > * > :hover,
.uk-section-primary:not(.uk-preserve-color) .uk-dotnav > * > :focus,
.uk-section-secondary:not(.uk-preserve-color) .uk-dotnav > * > :hover,
.uk-section-secondary:not(.uk-preserve-color) .uk-dotnav > * > :focus,
.uk-tile-primary:not(.uk-preserve-color) .uk-dotnav > * > :hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-dotnav > * > :focus,
.uk-tile-secondary:not(.uk-preserve-color) .uk-dotnav > * > :hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-dotnav > * > :focus,
.uk-card-primary.uk-card-body .uk-dotnav > * > :hover,
.uk-card-primary.uk-card-body .uk-dotnav > * > :focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-dotnav > * > :hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-dotnav > * > :focus,
.uk-card-secondary.uk-card-body .uk-dotnav > * > :hover,
.uk-card-secondary.uk-card-body .uk-dotnav > * > :focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-dotnav > * > :hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-dotnav > * > :focus,
.uk-overlay-primary .uk-dotnav > * > :hover,
.uk-overlay-primary .uk-dotnav > * > :focus,
.uk-offcanvas-bar .uk-dotnav > * > :hover,
.uk-offcanvas-bar .uk-dotnav > * > :focus {
  background-color: rgba(255, 255, 255, 0.9);
  border-color: transparent;
}
.uk-light .uk-dotnav > * > :active,
.uk-section-primary:not(.uk-preserve-color) .uk-dotnav > * > :active,
.uk-section-secondary:not(.uk-preserve-color) .uk-dotnav > * > :active,
.uk-tile-primary:not(.uk-preserve-color) .uk-dotnav > * > :active,
.uk-tile-secondary:not(.uk-preserve-color) .uk-dotnav > * > :active,
.uk-card-primary.uk-card-body .uk-dotnav > * > :active,
.uk-card-primary > :not([class*='uk-card-media']) .uk-dotnav > * > :active,
.uk-card-secondary.uk-card-body .uk-dotnav > * > :active,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-dotnav > * > :active,
.uk-overlay-primary .uk-dotnav > * > :active,
.uk-offcanvas-bar .uk-dotnav > * > :active {
  background-color: rgba(255, 255, 255, 0.5);
  border-color: transparent;
}
.uk-light .uk-dotnav > .uk-active > *,
.uk-section-primary:not(.uk-preserve-color) .uk-dotnav > .uk-active > *,
.uk-section-secondary:not(.uk-preserve-color) .uk-dotnav > .uk-active > *,
.uk-tile-primary:not(.uk-preserve-color) .uk-dotnav > .uk-active > *,
.uk-tile-secondary:not(.uk-preserve-color) .uk-dotnav > .uk-active > *,
.uk-card-primary.uk-card-body .uk-dotnav > .uk-active > *,
.uk-card-primary > :not([class*='uk-card-media']) .uk-dotnav > .uk-active > *,
.uk-card-secondary.uk-card-body .uk-dotnav > .uk-active > *,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-dotnav > .uk-active > *,
.uk-overlay-primary .uk-dotnav > .uk-active > *,
.uk-offcanvas-bar .uk-dotnav > .uk-active > * {
  background-color: rgba(255, 255, 255, 0.9);
  border-color: transparent;
}
.uk-light .uk-iconnav > * > a,
.uk-section-primary:not(.uk-preserve-color) .uk-iconnav > * > a,
.uk-section-secondary:not(.uk-preserve-color) .uk-iconnav > * > a,
.uk-tile-primary:not(.uk-preserve-color) .uk-iconnav > * > a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-iconnav > * > a,
.uk-card-primary.uk-card-body .uk-iconnav > * > a,
.uk-card-primary > :not([class*='uk-card-media']) .uk-iconnav > * > a,
.uk-card-secondary.uk-card-body .uk-iconnav > * > a,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-iconnav > * > a,
.uk-overlay-primary .uk-iconnav > * > a,
.uk-offcanvas-bar .uk-iconnav > * > a {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-iconnav > * > a:hover,
.uk-light .uk-iconnav > * > a:focus,
.uk-section-primary:not(.uk-preserve-color) .uk-iconnav > * > a:hover,
.uk-section-primary:not(.uk-preserve-color) .uk-iconnav > * > a:focus,
.uk-section-secondary:not(.uk-preserve-color) .uk-iconnav > * > a:hover,
.uk-section-secondary:not(.uk-preserve-color) .uk-iconnav > * > a:focus,
.uk-tile-primary:not(.uk-preserve-color) .uk-iconnav > * > a:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-iconnav > * > a:focus,
.uk-tile-secondary:not(.uk-preserve-color) .uk-iconnav > * > a:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-iconnav > * > a:focus,
.uk-card-primary.uk-card-body .uk-iconnav > * > a:hover,
.uk-card-primary.uk-card-body .uk-iconnav > * > a:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-iconnav > * > a:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-iconnav > * > a:focus,
.uk-card-secondary.uk-card-body .uk-iconnav > * > a:hover,
.uk-card-secondary.uk-card-body .uk-iconnav > * > a:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-iconnav > * > a:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-iconnav > * > a:focus,
.uk-overlay-primary .uk-iconnav > * > a:hover,
.uk-overlay-primary .uk-iconnav > * > a:focus,
.uk-offcanvas-bar .uk-iconnav > * > a:hover,
.uk-offcanvas-bar .uk-iconnav > * > a:focus {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-iconnav > .uk-active > a,
.uk-section-primary:not(.uk-preserve-color) .uk-iconnav > .uk-active > a,
.uk-section-secondary:not(.uk-preserve-color) .uk-iconnav > .uk-active > a,
.uk-tile-primary:not(.uk-preserve-color) .uk-iconnav > .uk-active > a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-iconnav > .uk-active > a,
.uk-card-primary.uk-card-body .uk-iconnav > .uk-active > a,
.uk-card-primary > :not([class*='uk-card-media']) .uk-iconnav > .uk-active > a,
.uk-card-secondary.uk-card-body .uk-iconnav > .uk-active > a,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-iconnav > .uk-active > a,
.uk-overlay-primary .uk-iconnav > .uk-active > a,
.uk-offcanvas-bar .uk-iconnav > .uk-active > a {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-text-lead,
.uk-section-primary:not(.uk-preserve-color) .uk-text-lead,
.uk-section-secondary:not(.uk-preserve-color) .uk-text-lead,
.uk-tile-primary:not(.uk-preserve-color) .uk-text-lead,
.uk-tile-secondary:not(.uk-preserve-color) .uk-text-lead,
.uk-card-primary.uk-card-body .uk-text-lead,
.uk-card-primary > :not([class*='uk-card-media']) .uk-text-lead,
.uk-card-secondary.uk-card-body .uk-text-lead,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-text-lead,
.uk-overlay-primary .uk-text-lead,
.uk-offcanvas-bar .uk-text-lead {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-text-meta,
.uk-section-primary:not(.uk-preserve-color) .uk-text-meta,
.uk-section-secondary:not(.uk-preserve-color) .uk-text-meta,
.uk-tile-primary:not(.uk-preserve-color) .uk-text-meta,
.uk-tile-secondary:not(.uk-preserve-color) .uk-text-meta,
.uk-card-primary.uk-card-body .uk-text-meta,
.uk-card-primary > :not([class*='uk-card-media']) .uk-text-meta,
.uk-card-secondary.uk-card-body .uk-text-meta,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-text-meta,
.uk-overlay-primary .uk-text-meta,
.uk-offcanvas-bar .uk-text-meta {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-text-muted,
.uk-section-primary:not(.uk-preserve-color) .uk-text-muted,
.uk-section-secondary:not(.uk-preserve-color) .uk-text-muted,
.uk-tile-primary:not(.uk-preserve-color) .uk-text-muted,
.uk-tile-secondary:not(.uk-preserve-color) .uk-text-muted,
.uk-card-primary.uk-card-body .uk-text-muted,
.uk-card-primary > :not([class*='uk-card-media']) .uk-text-muted,
.uk-card-secondary.uk-card-body .uk-text-muted,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-text-muted,
.uk-overlay-primary .uk-text-muted,
.uk-offcanvas-bar .uk-text-muted {
  color: rgba(255, 255, 255, 0.5) !important;
}
.uk-light .uk-text-emphasis,
.uk-section-primary:not(.uk-preserve-color) .uk-text-emphasis,
.uk-section-secondary:not(.uk-preserve-color) .uk-text-emphasis,
.uk-tile-primary:not(.uk-preserve-color) .uk-text-emphasis,
.uk-tile-secondary:not(.uk-preserve-color) .uk-text-emphasis,
.uk-card-primary.uk-card-body .uk-text-emphasis,
.uk-card-primary > :not([class*='uk-card-media']) .uk-text-emphasis,
.uk-card-secondary.uk-card-body .uk-text-emphasis,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-text-emphasis,
.uk-overlay-primary .uk-text-emphasis,
.uk-offcanvas-bar .uk-text-emphasis {
  color: #fff !important;
}
.uk-light .uk-text-primary,
.uk-section-primary:not(.uk-preserve-color) .uk-text-primary,
.uk-section-secondary:not(.uk-preserve-color) .uk-text-primary,
.uk-tile-primary:not(.uk-preserve-color) .uk-text-primary,
.uk-tile-secondary:not(.uk-preserve-color) .uk-text-primary,
.uk-card-primary.uk-card-body .uk-text-primary,
.uk-card-primary > :not([class*='uk-card-media']) .uk-text-primary,
.uk-card-secondary.uk-card-body .uk-text-primary,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-text-primary,
.uk-overlay-primary .uk-text-primary,
.uk-offcanvas-bar .uk-text-primary {
  color: #fff !important;
}
.uk-light .uk-text-secondary,
.uk-section-primary:not(.uk-preserve-color) .uk-text-secondary,
.uk-section-secondary:not(.uk-preserve-color) .uk-text-secondary,
.uk-tile-primary:not(.uk-preserve-color) .uk-text-secondary,
.uk-tile-secondary:not(.uk-preserve-color) .uk-text-secondary,
.uk-card-primary.uk-card-body .uk-text-secondary,
.uk-card-primary > :not([class*='uk-card-media']) .uk-text-secondary,
.uk-card-secondary.uk-card-body .uk-text-secondary,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-text-secondary,
.uk-overlay-primary .uk-text-secondary,
.uk-offcanvas-bar .uk-text-secondary {
  color: #fff !important;
}
.uk-light .uk-column-divider,
.uk-section-primary:not(.uk-preserve-color) .uk-column-divider,
.uk-section-secondary:not(.uk-preserve-color) .uk-column-divider,
.uk-tile-primary:not(.uk-preserve-color) .uk-column-divider,
.uk-tile-secondary:not(.uk-preserve-color) .uk-column-divider,
.uk-card-primary.uk-card-body .uk-column-divider,
.uk-card-primary > :not([class*='uk-card-media']) .uk-column-divider,
.uk-card-secondary.uk-card-body .uk-column-divider,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-column-divider,
.uk-overlay-primary .uk-column-divider,
.uk-offcanvas-bar .uk-column-divider {
  column-rule-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-logo,
.uk-section-primary:not(.uk-preserve-color) .uk-logo,
.uk-section-secondary:not(.uk-preserve-color) .uk-logo,
.uk-tile-primary:not(.uk-preserve-color) .uk-logo,
.uk-tile-secondary:not(.uk-preserve-color) .uk-logo,
.uk-card-primary.uk-card-body .uk-logo,
.uk-card-primary > :not([class*='uk-card-media']) .uk-logo,
.uk-card-secondary.uk-card-body .uk-logo,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-logo,
.uk-overlay-primary .uk-logo,
.uk-offcanvas-bar .uk-logo {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-logo:hover,
.uk-light .uk-logo:focus,
.uk-section-primary:not(.uk-preserve-color) .uk-logo:hover,
.uk-section-primary:not(.uk-preserve-color) .uk-logo:focus,
.uk-section-secondary:not(.uk-preserve-color) .uk-logo:hover,
.uk-section-secondary:not(.uk-preserve-color) .uk-logo:focus,
.uk-tile-primary:not(.uk-preserve-color) .uk-logo:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-logo:focus,
.uk-tile-secondary:not(.uk-preserve-color) .uk-logo:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-logo:focus,
.uk-card-primary.uk-card-body .uk-logo:hover,
.uk-card-primary.uk-card-body .uk-logo:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-logo:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-logo:focus,
.uk-card-secondary.uk-card-body .uk-logo:hover,
.uk-card-secondary.uk-card-body .uk-logo:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-logo:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-logo:focus,
.uk-overlay-primary .uk-logo:hover,
.uk-overlay-primary .uk-logo:focus,
.uk-offcanvas-bar .uk-logo:hover,
.uk-offcanvas-bar .uk-logo:focus {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-logo > :not(.uk-logo-inverse):not(:only-of-type),
.uk-section-primary:not(.uk-preserve-color) .uk-logo > :not(.uk-logo-inverse):not(:only-of-type),
.uk-section-secondary:not(.uk-preserve-color) .uk-logo > :not(.uk-logo-inverse):not(:only-of-type),
.uk-tile-primary:not(.uk-preserve-color) .uk-logo > :not(.uk-logo-inverse):not(:only-of-type),
.uk-tile-secondary:not(.uk-preserve-color) .uk-logo > :not(.uk-logo-inverse):not(:only-of-type),
.uk-card-primary.uk-card-body .uk-logo > :not(.uk-logo-inverse):not(:only-of-type),
.uk-card-primary > :not([class*='uk-card-media']) .uk-logo > :not(.uk-logo-inverse):not(:only-of-type),
.uk-card-secondary.uk-card-body .uk-logo > :not(.uk-logo-inverse):not(:only-of-type),
.uk-card-secondary > :not([class*='uk-card-media']) .uk-logo > :not(.uk-logo-inverse):not(:only-of-type),
.uk-overlay-primary .uk-logo > :not(.uk-logo-inverse):not(:only-of-type),
.uk-offcanvas-bar .uk-logo > :not(.uk-logo-inverse):not(:only-of-type) {
  display: none;
}
.uk-light .uk-logo-inverse,
.uk-section-primary:not(.uk-preserve-color) .uk-logo-inverse,
.uk-section-secondary:not(.uk-preserve-color) .uk-logo-inverse,
.uk-tile-primary:not(.uk-preserve-color) .uk-logo-inverse,
.uk-tile-secondary:not(.uk-preserve-color) .uk-logo-inverse,
.uk-card-primary.uk-card-body .uk-logo-inverse,
.uk-card-primary > :not([class*='uk-card-media']) .uk-logo-inverse,
.uk-card-secondary.uk-card-body .uk-logo-inverse,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-logo-inverse,
.uk-overlay-primary .uk-logo-inverse,
.uk-offcanvas-bar .uk-logo-inverse {
  display: inline;
}
.uk-light .uk-accordion-title::before,
.uk-section-primary:not(.uk-preserve-color) .uk-accordion-title::before,
.uk-section-secondary:not(.uk-preserve-color) .uk-accordion-title::before,
.uk-tile-primary:not(.uk-preserve-color) .uk-accordion-title::before,
.uk-tile-secondary:not(.uk-preserve-color) .uk-accordion-title::before,
.uk-card-primary.uk-card-body .uk-accordion-title::before,
.uk-card-primary > :not([class*='uk-card-media']) .uk-accordion-title::before,
.uk-card-secondary.uk-card-body .uk-accordion-title::before,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-accordion-title::before,
.uk-overlay-primary .uk-accordion-title::before,
.uk-offcanvas-bar .uk-accordion-title::before {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2213%22%20height%3D%2213%22%20viewBox%3D%220%200%2013%2013%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Crect%20fill%3D%22rgba%28255,%20255,%20255,%200.7%29%22%20width%3D%2213%22%20height%3D%221%22%20x%3D%220%22%20y%3D%226%22%20%2F%3E%0A%20%20%20%20%3Crect%20fill%3D%22rgba%28255,%20255,%20255,%200.7%29%22%20width%3D%221%22%20height%3D%2213%22%20x%3D%226%22%20y%3D%220%22%20%2F%3E%0A%3C%2Fsvg%3E");
}
.uk-light .uk-open > .uk-accordion-title::before,
.uk-section-primary:not(.uk-preserve-color) .uk-open > .uk-accordion-title::before,
.uk-section-secondary:not(.uk-preserve-color) .uk-open > .uk-accordion-title::before,
.uk-tile-primary:not(.uk-preserve-color) .uk-open > .uk-accordion-title::before,
.uk-tile-secondary:not(.uk-preserve-color) .uk-open > .uk-accordion-title::before,
.uk-card-primary.uk-card-body .uk-open > .uk-accordion-title::before,
.uk-card-primary > :not([class*='uk-card-media']) .uk-open > .uk-accordion-title::before,
.uk-card-secondary.uk-card-body .uk-open > .uk-accordion-title::before,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-open > .uk-accordion-title::before,
.uk-overlay-primary .uk-open > .uk-accordion-title::before,
.uk-offcanvas-bar .uk-open > .uk-accordion-title::before {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2213%22%20height%3D%2213%22%20viewBox%3D%220%200%2013%2013%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Crect%20fill%3D%22rgba%28255,%20255,%20255,%200.7%29%22%20width%3D%2213%22%20height%3D%221%22%20x%3D%220%22%20y%3D%226%22%20%2F%3E%0A%3C%2Fsvg%3E");
}
/* ========================================================================
   Component: Print
 ========================================================================== */
@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}

/* BASICS */
.CodeMirror {
  /* Set height, width, borders, and global font properties here */
  font-family: inherit;
  color: white;
  line-height: inherit;
}
/* PADDING */
.CodeMirror-lines {
  padding: 0;
  /* Vertical padding around content */
}
.CodeMirror-scrollbar-filler,
.CodeMirror-gutter-filler {
  background-color: white;
  /* The little square between H and V scrollbars */
}
/* GUTTER */
.CodeMirror-gutters {
  border-right: 1px solid #ddd;
  background-color: #f7f7f7;
  white-space: nowrap;
}
.CodeMirror-linenumber {
  padding: 0 3px 0 5px;
  min-width: 20px;
  text-align: right;
  color: #999;
  white-space: nowrap;
}
.CodeMirror-guttermarker {
  color: black;
}
.CodeMirror-guttermarker-subtle {
  color: #999;
}
/* CURSOR */
.CodeMirror-cursor {
  border-left: 1px solid white;
  border-right: none;
  width: 0;
}
/* Shown when moving in bi-directional text */
.CodeMirror div.CodeMirror-secondarycursor {
  border-left: 1px solid silver;
}
.cm-fat-cursor .CodeMirror-cursor {
  width: auto;
  border: 0 !important;
  background: #7e7;
}
.cm-fat-cursor div.CodeMirror-cursors {
  z-index: 1;
}
.cm-animate-fat-cursor {
  width: auto;
  border: 0;
  -webkit-animation: blink 1.06s steps(1) infinite;
  -moz-animation: blink 1.06s steps(1) infinite;
  animation: blink 1.06s steps(1) infinite;
  background-color: #7e7;
}
@-moz-keyframes blink {
  50% {
    background-color: transparent;
  }
}
@-webkit-keyframes blink {
  50% {
    background-color: transparent;
  }
}
@keyframes blink {
  50% {
    background-color: transparent;
  }
}
/* Can style cursor different in overwrite (non-insert) mode */
.cm-tab {
  display: inline-block;
  text-decoration: inherit;
}
.CodeMirror-rulers {
  position: absolute;
  left: 0;
  right: 0;
  top: -50px;
  bottom: -20px;
  overflow: hidden;
}
.CodeMirror-ruler {
  border-left: 1px solid #ccc;
  top: 0;
  bottom: 0;
  position: absolute;
}
/* DEFAULT THEME */
.cm-s-default .cm-header {
  color: blue;
}
.cm-s-default .cm-quote {
  color: #090;
}
.cm-negative {
  color: #d44;
}
.cm-positive {
  color: #292;
}
.cm-header,
.cm-strong {
  font-weight: bold;
}
.cm-em {
  font-style: italic;
}
.cm-link {
  text-decoration: underline;
}
.cm-strikethrough {
  text-decoration: line-through;
}
.cm-s-default .cm-keyword {
  color: #708;
}
.cm-s-default .cm-atom {
  color: #219;
}
.cm-s-default .cm-number {
  color: #164;
}
.cm-s-default .cm-def {
  color: #00f;
}
.cm-s-default .cm-variable-2 {
  color: #05a;
}
.cm-s-default .cm-variable-3 {
  color: #085;
}
.cm-s-default .cm-comment {
  color: #a50;
}
.cm-s-default .cm-string {
  color: #a11;
}
.cm-s-default .cm-string-2 {
  color: #f50;
}
.cm-s-default .cm-meta {
  color: #555;
}
.cm-s-default .cm-qualifier {
  color: #555;
}
.cm-s-default .cm-builtin {
  color: #30a;
}
.cm-s-default .cm-bracket {
  color: #997;
}
.cm-s-default .cm-tag {
  color: #170;
}
.cm-s-default .cm-attribute {
  color: #00c;
}
.cm-s-default .cm-hr {
  color: #999;
}
.cm-s-default .cm-link {
  color: #00c;
}
.cm-s-default .cm-error {
  color: #f00;
}
.cm-invalidchar {
  color: #f00;
}
.CodeMirror-composing {
  border-bottom: 2px solid;
}
/* Default styles for common addons */
div.CodeMirror span.CodeMirror-matchingbracket {
  color: #0f0;
}
div.CodeMirror span.CodeMirror-nonmatchingbracket {
  color: #f22;
}
.CodeMirror-matchingtag {
  background: rgba(255, 150, 0, 0.3);
}
.CodeMirror-activeline-background {
  background: #e8f2ff;
}
/* STOP */
/* The rest of this file contains styles related to the mechanics of
   the editor. You probably shouldn't touch them. */
.CodeMirror {
  position: relative;
  overflow: hidden;
  background: white;
}
.CodeMirror-scroll {
  overflow: scroll !important;
  /* Things will break if this is overridden */
  /* 30px is the magic margin used to hide the element's real scrollbars */
  /* See overflow: hidden in .CodeMirror */
  margin-bottom: -30px;
  margin-right: -30px;
  padding-bottom: 30px;
  height: 100%;
  outline: none;
  /* Prevent dragging from highlighting the element */
  position: relative;
}
.CodeMirror-sizer {
  position: relative;
  border-right: 30px solid transparent;
}
/* The fake, visible scrollbars. Used to force redraw during scrolling
   before actual scrolling happens, thus preventing shaking and
   flickering artifacts. */
.CodeMirror-vscrollbar,
.CodeMirror-hscrollbar,
.CodeMirror-scrollbar-filler,
.CodeMirror-gutter-filler {
  position: absolute;
  z-index: 6;
  display: none;
}
.CodeMirror-vscrollbar {
  right: 0;
  top: 0;
  overflow-x: hidden;
  overflow-y: scroll;
}
.CodeMirror-hscrollbar {
  bottom: 0;
  left: 0;
  overflow-y: hidden;
  overflow-x: scroll;
}
.CodeMirror-scrollbar-filler {
  right: 0;
  bottom: 0;
}
.CodeMirror-gutter-filler {
  left: 0;
  bottom: 0;
}
.CodeMirror-gutters {
  position: absolute;
  left: 0;
  top: 0;
  min-height: 100%;
  z-index: 3;
}
.CodeMirror-gutter {
  white-space: normal;
  height: 100%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: -30px;
  /* Hack to make IE7 behave */
  *zoom: 1;
  *display: inline;
}
.CodeMirror-gutter-wrapper {
  position: absolute;
  z-index: 4;
  background: none !important;
  border: none !important;
}
.CodeMirror-gutter-background {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 4;
}
.CodeMirror-gutter-elt {
  position: absolute;
  cursor: default;
  z-index: 4;
}
.CodeMirror-gutter-wrapper {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.CodeMirror-lines {
  cursor: text;
  min-height: 1px;
  /* prevents collapsing before first draw */
}
.code-editor .CodeMirror pre {
  font-family: 'Lucida Console', 'Lucida Sans Typewriter', monaco, 'Bitstream Vera Sans Mono', monospace;
}
.CodeMirror pre {
  /* Reset some styles that the rest of the page might have set */
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  border-width: 0;
  background: transparent;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  font-size: inherit;
  padding: 0 4px;
  /* Horizontal padding of content */
  margin: 0;
  white-space: pre;
  word-wrap: normal;
  line-height: inherit;
  color: inherit;
  z-index: 2;
  position: relative;
  overflow: visible;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-variant-ligatures: none;
  font-variant-ligatures: none;
}
.CodeMirror-wrap pre {
  word-wrap: break-word;
  white-space: pre-wrap;
  word-break: normal;
}
.CodeMirror-linebackground {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
}
.CodeMirror-linewidget {
  position: relative;
  z-index: 2;
  overflow: auto;
}
.CodeMirror-code {
  outline: none;
}
/* Force content-box sizing for the elements where we expect it */
.CodeMirror-scroll,
.CodeMirror-sizer,
.CodeMirror-gutter,
.CodeMirror-gutters,
.CodeMirror-linenumber {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.CodeMirror-measure {
  position: absolute;
  width: 100%;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}
.CodeMirror-cursor {
  position: absolute;
  pointer-events: none;
}
.CodeMirror-measure pre {
  position: static;
}
div.CodeMirror-cursors {
  visibility: hidden;
  position: relative;
  z-index: 3;
}
div.CodeMirror-dragcursors {
  visibility: visible;
}
.CodeMirror-focused div.CodeMirror-cursors {
  visibility: visible;
}
.CodeMirror-selected {
  background: #d9d9d9;
}
.CodeMirror-focused .CodeMirror-selected {
  background: #636370;
}
.CodeMirror-crosshair {
  cursor: crosshair;
}
.CodeMirror-line::selection,
.CodeMirror-line > span::selection,
.CodeMirror-line > span > span::selection {
  background: #d7d4f0;
}
.CodeMirror-line::-moz-selection,
.CodeMirror-line > span::-moz-selection,
.CodeMirror-line > span > span::-moz-selection {
  background: #d7d4f0;
}
.cm-searching {
  background: #ffa;
  background: rgba(255, 255, 0, 0.4);
}
/* IE7 hack to prevent it from returning funny offsetTops on the spans */
.CodeMirror span {
  *vertical-align: text-bottom;
}
/* Used to force a border model for a node */
.cm-force-border {
  padding-right: 0.1px;
}
@media print {
  /* Hide the cursor when printing */
  .CodeMirror div.CodeMirror-cursors {
    visibility: hidden;
  }
}
/* See issue #2901 */
.cm-tab-wrap-hack:after {
  content: '';
}
/* Help users use markselection to safely style text background */
span.CodeMirror-selectedtext {
  background: none;
}
.firepad {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  position: relative;
  text-align: left;
  line-height: normal;
}
.firepad .CodeMirror {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  height: auto;
}
.firepad-with-toolbar .CodeMirror {
  padding-left: 10px;
}
.firepad-with-toolbar .CodeMirror-lines {
  padding-top: 10px;
}
.CodeMirror-line {
  line-height: 1.1;
}
.firepad-toolbar {
  z-index: 9997;
  position: fixed;
  display: none;
  height: 40px;
  line-height: 40px;
  padding-left: 10px;
  background-color: #555555;
  border: 1px solid black;
  border-radius: 10px;
  /* Don't select text when double-clicking in toolbar */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.firepad-toolbar-wrapper {
  display: inline-block;
  line-height: 14px;
}
.firepad-richtext .CodeMirror {
  font-family: Verdana, sans-serif;
  font-size: 14px;
}
.firepad-spacer {
  height: 10px;
  width: 1px;
}
/** Styles for all of the rich-text formatting we support. */
.firepad-b {
  font-weight: bold;
}
.firepad-i {
  font-style: italic;
}
.firepad-u {
  text-decoration: underline;
}
.firepad-s {
  text-decoration: line-through;
}
.firepad-u.firepad-s {
  text-decoration: underline line-through;
}
.firepad-f-arial {
  font-family: Arial, Helvetica, sans-serif;
}
.firepad-f-comic-sans-ms {
  font-family: 'Comic Sans MS', cursive, sans-serif;
}
.firepad-f-courier-new {
  font-family: 'Courier New', Courier, monospace;
}
.firepad-f-impact {
  font-family: Impact, Charcoal, sans-serif;
}
.firepad-f-times-new-roman {
  font-family: 'Times New Roman', Times, serif;
}
.firepad-f-verdana {
  font-family: Verdana, Geneva, sans-serif;
}
.firepad-la-left {
  text-align: left;
}
.firepad-la-center {
  text-align: center;
}
.firepad-la-right {
  text-align: right;
}
/** Line Styles */
pre.firepad-lt-o,
pre.firepad-lt-u,
pre.firepad-lt-t,
pre.firepad-lt-tc,
pre.CodeMirror-line.firepad-lt-o,
pre.CodeMirror-line.firepad-lt-u,
pre.CodeMirror-line.firepad-lt-t,
pre.CodeMirror-line.firepad-lt-tc {
  padding-left: 20px;
}
pre.CodeMirror-line.firepad-li-2 {
  padding-left: 40px;
}
pre.CodeMirror-line.firepad-li-3 {
  padding-left: 60px;
}
pre.CodeMirror-line.firepad-li-4 {
  padding-left: 80px;
}
.firepad-list-left {
  display: inline-block;
  margin-left: -40px;
  width: 40px;
  padding-right: 5px;
  text-align: right;
}
.firepad-todo-left {
  display: inline-block;
  margin-left: -20px;
  width: 20px;
}
.firepad-btn-group {
  margin: 5px 7px 0 0;
  display: inline-block;
}
a.firepad-btn,
a.firepad-btn:visited,
a.firepad-btn:active {
  font-family: 'Arial' sans-serif;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  padding: 6px 6px 4px 6px;
  text-align: center;
  vertical-align: middle;
  font-size: 16px;
  background-color: #fcfcfc;
  border: 1px solid #c9c9c9;
  color: #3c3c3c;
  margin-bottom: 3px;
}
a.firepad-btn:hover {
  color: #fff;
  background-color: #56a;
  border-color: #000000;
  text-decoration: none;
}
a.firepad-btn:active {
  -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}
.firepad-btn-group > .firepad-btn {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  margin-left: -1px;
}
.firepad-btn-group > .firepad-btn:first-child {
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
  -webkit-border-bottom-left-radius: 6px;
  -webkit-border-top-left-radius: 6px;
  -moz-border-radius-bottomleft: 6px;
  -moz-border-radius-topleft: 6px;
  margin-left: 0px;
}
.firepad-btn-group > .firepad-btn:last-child {
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px;
  -webkit-border-bottom-right-radius: 6px;
  -webkit-border-top-right-radius: 6px;
  -moz-border-radius-bottomright: 6px;
  -moz-border-radius-topright: 6px;
}
.firepad-dropdown {
  position: relative;
}
.firepad-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  padding: 4px 0;
  margin: 4px 0 0;
  list-style: none;
  background-color: #ffffff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  *border-right-width: 2px;
  *border-bottom-width: 2px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}
.firepad-dropdown-menu a {
  text-align: left;
  display: block;
  padding: 3px 15px;
  clear: both;
  font-weight: normal;
  line-height: 18px;
  color: #888888;
  white-space: nowrap;
}
.firepad-dropdown-menu a:hover {
  color: #fff;
  text-decoration: none;
  background-color: #56a;
}
.firepad-color-dropdown-item {
  height: 25px;
  width: 25px;
  border-radius: 12.5px;
  border: 1px solid black;
}
.firepad-dialog {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
.firepad-dialog-div {
  position: relative;
  width: 400px;
  height: 100px;
  margin: 100px auto;
  background-color: #fff;
  border: 1px solid #000;
  padding: 15px;
}
.firepad-dialog-input {
  width: 80%;
  display: block;
  padding: 5px 5px;
  margin: 10px 10px 10px 5px;
  clear: both;
  font-weight: normal;
  line-height: 25px;
  color: #333333;
  white-space: nowrap;
}
/********************************************************************
 * Generated via icomoon.io.
  If you want to make changes, you can go to http://icomoon.io/app/, go to the bottom right and click the
  database-looking icon, then "Load Session" and use the checked-in font/firepad-icomoon.json file.

  Note: When you download the generated font, turn on the "Base 64 Encode ..." option to generate the font inline
  in the CSS (to avoid needing to distribute a font file with firepad).
 */
@font-face {
  font-family: 'firepad';
  src: url('firepad.eot');
}
@font-face {
  font-family: 'firepad';
  src: url(data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AAAzsAAsAAAAAFegAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAABCAAACZUAABDLmL2mHkZGVE0AAAqgAAAAGgAAABxoZGqgR0RFRgAACrwAAAAdAAAAIABFAARPUy8yAAAK3AAAAEsAAABgL9zcQGNtYXAAAAsoAAAAXgAAAX7gqNO7aGVhZAAAC4gAAAAuAAAANv1GCI1oaGVhAAALuAAAAB4AAAAkBBD/5GhtdHgAAAvYAAAAHgAAADYEYAEQbWF4cAAAC/gAAAAGAAAABgAYUABuYW1lAAAMAAAAAOAAAAGGNHbrq3Bvc3QAAAzgAAAADAAAACAAAwAAeJy9V3l0lNUVf1+YjWQyQJghBMIMZafTCoERQUQWIaCDYGGkiNKypuBIC5hYUERB9o9FYMoOrWgrEPDkQMqpcKpCkUqnRyONCBRo2FKSgbAY+L7yDdz+7vcmw5ZqT//omTP33nff3d6977vvPUVYLEJRFEfexKnjJ48eJ5QUoYjH9U4peuc6emOL6qyjOi3eVJE1NINUNUk47WpYj+gF1mzlsXrZQtTPVsINsoUzu74vQ2SxDYeoJxqJZqKV8ItOopvoJfqLQeJZ8YIYK14UU8Q08YaYJ5aIiFgvNoutoqjg5xNzO3bsCNQviXIk6iRRZ4kCEj0sUReJHpGoq0TdJOotUR+JnpCor0T9TJQjHeVIRznSUY50lCMd5SQc5SZSVJMpIZT5ygJlobJIUZXFyhJlqbJMeVtZrqxQVioR5VfKKmW1skZZq6xT1isblI2iMaclRTjFLcWrHKrzjk23++wT7AvsW+yf2csd3tSqtCfTNqUddjqcp9Id6TnpH7jedKl6viUe0SN2Fymjr7xH4tJ21UOidfuuRBUrrpJoXN6K6OtHT6tEX87d7CD6MHyQ6GDk0QTA0OtXg2pYVfVQoRrFz0oiF1Oim5R8lYXm+WCgbMcKouqiMURn+44gutSrD5zs+TWM/qTeCyRWDC3wGG4SnT4RdhJNjQskGh1oTCL79/tJtHzqcQmoovsFyaNzlsY+kJ8IoxQxN+u2jkTmwTye/BPL9pCALvAE8+jMwTwfUdGbwnDbXHpID3mM/HDUZgTi7qCqhrV8VS0MqlpAd2MVLq2aBcbZEXmsch/RjdOLiC7ubUF0eUoboqtZw7GGJc9gOP4c0T9teRA5fprofNY6tQYyV9Rt7ZOSov66bNZuS8JVvoUtLiTRsO8plYTb09OhjQvCHQKctpJE/83LiD6eP4nE8JFTGOxk3iASvXh28PxJXm2c3SiNuz3NU116RMv3EL3YY6cNqzzUFfa2PkJ0/JVcEmnDDhEdnV2iIs/RG/OJSutOR7YGNyHRoqg8AfyYkLwAzwbqTmPeAhjDLJ0c3MQXtSHKlpNRvEuF86CVUYSCpj6GlOtDIDbkIVSrzyCiY6zqZOpI1RqV4TCVuXuIvvnjTpb8IWrIVFkqqnnB/gFbnAsnl56B4IllmyQkkRF6zeSS8F3fLyWF0iqLiFqdBNWuGNT3UWTF3xfUD55ymAkIaxHbvQs4zwtoaq6CFz8tsagozz6YEF/Qdl8ArmQAVyC2428yfNHmRq5ckmjfYJvKcILK3AVy+ZA8LFMC7QOcpvps8VVO3TWZSsBG708i0t/4CFRmkOhaz5nYEL0HOEgU9Dpgc2mWGHa241gjEvY2lZAERVqbSp/fbuIEp4bt9dsYVzAnU6qwsi9mTxqpSLIzvX/v7ilMzJgmpA+2E7bVZt4XtkvzNcFkmsreQttdMUofMO/TW+2tPfgaMzXWM6VTo/i+6BN2CmuPXivWQvfZNw1V/G/2M5P2Jdvr50+qtvC735P7C//X3FfeFUytuU94XW9Yvm3jPJCb+4NPpOa7gs9MBl9Re/D3VeS/3TjanG/bOQ9s+wcqm8jCf9g5Lo1bf/NUo9S4C8UjWrXne6lGyJIAEIua01roDooHCj3BcKG/0BY2mnqiW9VSP06OqKpODU5S+8TMA8QaDXr84Wg4aP5jfNRYWsC+/26fMQ+zMGiRmpgP3DUfDzwwb5TePR95UB/2a4MurdgS1KqjdqM65kkQUEtQfkkUxjyaWw36rVHNjUNYjcasuBGc2FlEyp4dh1GMDg22E5WYvXznzd8weZTBOjTdXZBigHNfjChDJ5v5MJFxtR0oFTcA7RdorJ62k9DTcn78uQkgmbX4rwwWc+NcNY+o/OUAxkuPw94t2BcpdTKs4E7ZBu4y9O0j4c9UHuPgLZ9cDqkVlzcBXN1iSk0wuXzaTNzDZtawwQJ4TLGOMg3CY53bfyCKK2jPlonTQe22gPodTuFbvT6FvaMNCxh0hj2j+DWI8xXF+PoLUAv3QtwzC9RFPkRvxbdzfCGrzAJS0xareNr6jkkC1Ed8YlL6coAGE6wmg6fasNAZiHbIuMaqvNZRR3CIjPqql8e0yLarrFKWSi435WTj2GBZc8zLvnoR4Eq56Xw1czdxRfh+VnJxMfsakwzRkpWQgsciM8RzbHsiS51HiAOfxtE2cCAubES/RZ4qZqcjJa5hoF7ejU9leVuiyqNfwd7n718B2JJjNfNq1oWT/VJdriHXZfK79yY7a+mz4E69hupGuqlcw6YAS1ycmPrvcmLamFLHTcCbYKUuy4vxseQmsPqsXLNcrt4vUY5VfwH1ZBzUc/iqUz5+Hfba8rLbVs6EPUsQOynOR7KlXSdQ+Tht61TO5OrNdmA/z6gaFkamF4/A4b66+DYuAp1wbfmmoU63q+ecIvqX/SUHYpnRYZMRMkIa/hjNrJgO0/8YJUhYe+zCpS2M68aYE5eI/twyg2iNccGBT4yUsSVjPLAztzkJmx6B7ZxtRM6LiHDx8y2JJgRToNGihMTPLI2lFbGxZUNpmW7uHwTPNKvRfM30q4WsLj2ALtUyVcPt1KMFNDcaTQyfpur3c8Uu9R7A558y/vWH1HAh3T4++7B6RyffKPbEVANaRsBwoy358XlDKx1apaw1o0pqvZXBN123zg0hErXH/MhPg7W4MLvycJ+9Coqq8vJ8RsBuEglWDd/rN9xGBKGh/1aNP4uJdc2kKhvxadC6Yy3J92qluLFrASQZAkr/zgHtPbh1ljQnur4RFUkd68bVqkNZAlzfsJ1BFQ9PSQCRkOSZasL5RRnzMqQu87z3ds07MNEb3VoEjQ5p8Vu/QzISRW9E5mOcXoseiQfiEZueX+jRquMho9qulZrhN5l5E31uli0BzGGSR5Wg6DxT55PDWnhJXW/MmOPxa62CzxtuLeA3IqhSBFUimrpxMtGSMW8TbS7DzlnSXPDb6qMPkeXWVi/Rp/sG4O11Hk+SY6fQU8UufFjGj9CNxWg4Mbr0g7Thex3wZDoeL2f6biA6HX4Cw73j8DjpYsXXd23RPlSu5yt4FChTi0j03vwlnjEnwiS63OqQAOlKlOj28CGghu5GB2nhBLVSR4cUHJ3gOMVIH662U8v6MBAybDGyuTBX4cOzxa16VGcqXvYNhUVR7M/9dG1QK43a03A/Hqrj1bbdkQDmMMmjs6DoBFMnksNaeEldb1pQx/ZOi/lV4xy+A6093iP6EQuDXB7GvfF8W5KPhmMHJRxHcn2qdi4Ws6b9G/R4y/0AAAB4nGNgYGBkAIIztovOg+hzwskvYDQASW0G1AAAeJxjYGRgYOADYgkGEGBiYARCcSBmAfMYAAVHAEoAAAB4nGNgZmJgnMDAysDB6MOYxsDA4A6lvzJIMrQwMDAxsDIzwIEAgskQkOaawuDwgOEDA+OD/w8Y9BgfMCg0MDAwwhUoACEjABBCDB8AeJzljdkRgCAMRB+I94UH+mNpFmK5lmAHGGCsws1ksjvJmwAZqQ8UQZckFbPhlFlJ6bC43YP30fE5q+JtEUktpCGXVApT09DS0TMwYtmZmFlYcWyghEkP/6sX448KEgAAeJxjYGRgYADiA48eTY3nt/nKwM3EAALnhJNfIOj/D5gYGB8AuRwMYGkAXjsL7AAAeJxjYGRgYHzw/wGDHhMDA8M/BiAJFEEBzABt5wP2AAB4nGNigAAmBoYEBgcghgAFBmSgwGCAwmcAADLOAXUAAAAAUAAAGAAAeJx1jk9qwkAUh79otJRK6ap0OeCmm4RkXAgeIAfown2gYwhIIqNCT9KVR3DpMXqAHqHH6C/2bbpw4DHf++b9GWDGJwnDSbjjyXgkfjUeM+fDOJU/G0944Mt4Kv+jyiS9l3m8dg08Er8Yj6kojFP5k/GEZy7GU/lvNrREAjtq3mHTxrCrBW9yDUe28lFpaI7bWlDR03G43lEVAYcn1zbHSvF/3p/zLMhYKrzqSmVUfXeo+tgE5/PCrZztFflFtsx8Uaro1t/WcpG9Xoe/OE0c9rMOcd/2nSvz4mbvL7EuORF4nGNgZsALAAB9AAQ=) format('woff'), url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAANAIAAAwBQRkZUTWhkaqAAAA9wAAAAHEdERUYARwAGAAAPUAAAACBPUy8yL7vcIAAAAVgAAABWY21hcODA1NYAAAHwAAABfmdhc3D//wADAAAPSAAAAAhnbHlmMPUBFgAAA6gAAAkIaGVhZP1GCI0AAADcAAAANmhoZWEEEf/lAAABFAAAACRobXR4BQoBEQAAAbAAAAA+bG9jYR04G1IAAANwAAAANm1heHAAZQCTAAABOAAAACBuYW1lNHbrqwAADLAAAAGGcG9zdFMv72QAAA44AAABDgABAAAAAQAABST+1l8PPPUACwIAAAAAAM4TY+gAAAAAzhNj6AAA/98CAAHhAAAACAACAAAAAAAAAAEAAAHh/98ALgIAAAD+AAIAAAEAAAAAAAAAAAAAAAAAAAAFAAEAAAAaAJAACQAAAAAAAgAAAAEAAQAAAEAAAAAAAAAAAQIAAZAABQAIAUwBZgAAAEcBTAFmAAAA9QAZAIQAAAIABQMAAAAAAAAAAAAAEAAAAAAAAAAAAAAAUGZFZABA4ADwAAHg/+AALgHhACGAAAABAAAAAAAAAgAAAAAAAAAAqgAAAAAAAAIAAGAAQABgAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAxAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAADAAAAHAABAAAAAAB4AAMAAQAAABwABABcAAAACAAIAAIAAAAA4BXwAP//AAAAAOAA8AD//wAAAAAQAwABAAAABgAAAAAABAAFAAYABwAIAAkACgALAAwADQAOAA8AEAARABIAGQATABQAFQAWABcAGAAAAQYAAAEAAAAAAAAAAQIAAAACAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4APgBWAHwAugF0AbAB7AISAjgCXgKEAq4DFAM0A1QDfgOoA+AEDAQ2BGAEhAAAAAEAAP/gAgAB4AACAAARASECAP4AAeD+AAAAAAADAGAAAAGgAcAAEQAZACEAACU2NTQmKwMROwIyNjU0JiczMhYUBisBFyM1MzIWFAYBYh5LNUBAICBAYDVLIr4zFR4eFTNQUFAVHx/uIy81S/5ASzUiO6MmNCbAgCY0JgABAEAAAAHAAcAACwAAARUjAzMVIzUzEyM1AcBAoEDgQKBAAcAg/oAgIAGAIAAAAAACAGAAAAGgAcAAEQAVAAABMxUUBiImPQEzFRQXFjI3NjUFIRUhAWBAXoReQBocVBwa/wABQP7AAcDQPFRUPNDQHxcaGhcfsEAAAAAAAQAAAAACAAHAACoAACUVIxYVFAcGIicmNTMUFjI2NCYjITUzJicmNDc2MhcWFSM0JiIGFBYzMhcCAHUVMi6ALjJAOU45OSf/AJYCAjIyLoAuMkA5Tjk5Jz0t4CAeIjglIyMlOBomJjQmIAECJXAlIyMlOBomJjQmIAAAAAkAAP/gAgAB4AAPAB8ALwA/AE8AXwBvAH8AjwAANyMiBh0BFBY7ATI2PQE0JgcUBisBIiY9ATQ2OwEyFhUlISIGHQEUFjMhMjY9ATQmJyEiBh0BFBYzITI2PQE0JiUjIgYdARQWOwEyNj0BNCYHFAYrASImPQE0NjsBMhYVFyMiBh0BFBY7ATI2PQE0JgcUBisBIiY9ATQ2OwEyFhUlISIGHQEUFjMhMjY9ATQmcGAHCQkHYAcJCRcJByAHCQkHIAcJAZD+4AcJCQcBIAcJCQf+4AcJCQcBIAcJCf55YAcJCQdgBgoJFwkHIAcJCQcgBwkQYAcJCQdgBwkJFwkHIAcJCQcgBwkBkP7gBwkJBwEgBwkJYAkHYAcJCQdgBwlQBwkJByAHCQkHEAkHIAcJCQcgBwnACQcgBwkJByAHCeAJB2AHCRgIUAcJUAcJCQcgBwkJB5AJB2AHCQkHYAcJUAcJCQcgBwkJB9AJByAHCQkHIAcJAAYAAP/gAgAB4AADAAcACwATABsAIwAAEyEVIRUhFSEVIRUhAhQWMjY0JiIGFBYyNjQmIgYUFjI2NCYiwAFA/sABQP7AAUD+wMAmNCYmNCYmNCYmNCYmNCYmNAHAQIBAgEABujQmJjQm5jQmJjQm5jQmJjQmAAAAAAYAIP/gAgAB4AADAAcACwARAB0AKQAANyEVIREhFSERIRUhJxUjNSM1ExUzFSM1NzUjNTMdAiM1MzUjNTM1IzXAAUD+wAFA/sABQP7AYCAgIEBgQEBgYEBAQEBAQAEAQAEAQGCAYCD++RkgSR4ZIEl3oCAgICAgAAUAAAAAAgABwAADAAcACwAPABMAABEhFSEVIRUhFSEVITUhFSEVIRUhAgD+AAFA/sABQP7AAgD+AAIA/gABwEAgQIBAoECAQAAAAAAFAAAAAAIAAcAAAwAHAAsADwATAAARIRUhFyEVIRUhFSEnIRUhFSEVIQIA/gBgAUD+wAFA/sBgAgD+AAIA/gABwEAgQIBAoECAQAAABQAAAAACAAHAAAMABwALAA8AEwAAESEVIRchFSEVIRUhJyEVIRUhFSECAP4AwAFA/sABQP7AwAIA/gACAP4AAcBAIECAQKBAgEAAAAUAAAAAAgABwAADAAcACwAPABMAABEhFSEVIRUhFSEVIRUhFSEVIRUhAgD+AAIA/gACAP4AAgD+AAIA/gABwEAgQCBAIEAgQAAAAAAGAAAAIAIAAYAAAwAHAAsADwASABUAABEhFSE1IRUhFSEVIRUhFSElFzc1JwcBYP6gAWD+oAFg/qABYP6gAYBAQEBAASBAoECAQCBAoGBgIGBgAAACAAD/4AIAAeEAIABBAAABJyYiDwEGFB8BFhc3Ji8BJjQ/ATYyHwEWFA8BFgc3NjQHJicHFh8BFhQPAQYiLwEmND8BJjcHBhQfARYyPwE2NCcB3QIkZCNuIyMCBgcoCAUCExNtEzYTAhQUMQ0BTSPEBgcoCAUCExNtEzYTAhQUMQ0BTSMjAiRkI24jIwG7AiMjbSRkJAIFBSgEBgITNhNtFBQCEzYTMh8jTSNkeQUFKAQGAhM2E20UFAITNhMyHyNNI2QkAiMjbSRkJAABACD/4AHPAeAAEAAABT4BLgIHFSc3FTYeAg4BAX0SEwclVkDAwEFiOBkLKSAhREY1IAF/wMB8ASM8UVdZAAAAAQAx/98B4AHgABAAAAE1Fwc1Jg4CFhcuAj4CASDAwEBWJQcTEiMpCxk4YgFkfMDAfwEgNUZEISVZV1E8IwAAAAMAAAAAAgABwAALABIAFgAAASEHERQWMyEyNjURASczNTMVMyU3IRcBoP7AYAkHAeAHCf8AoGCAYP6tIAEmIAHAYP6wBwkJBwFQ/uCAYGDAICAAAAMAAAAAAgABwAALABIAFgAAASEHERQWMyEyNjURBxUjNSM3FyU3IRcBoP7AYAkHAeAHCcCAYKCg/q0gASYgAcBg/rAHCQkHAVDAYGCAgOAgIAAAAAQAAAAAAgABwAADABcAGwAjAAATIRUhBSEiBh0BFBY7ARUhNTMyNj0BNCYDIzUzNhQGIiY0NjKAAQD/AAFg/kANExMNYAEAYA0TE43AwIcNFA0NFAHAQCATDaANE4CAEw2gDRP+wKB6FA0NFA0AAAAGAAAAAAIAAcAAAwAHAAsADwATABYAABEhFSEXIRUhFSEVIRUhFSEHIRUhExUnAgD+AMABQP7AAUD+wAFA/sDAAgD+AICAAcBAIEAgQCBAIEABQMBgAAAABgAAAAACAAHAAAMABwALAA8AEwAWAAARIRUhFyEVIRUhFSEVIRUhByEVIT0BFwIA/gDAAUD+wAFA/sABQP7AwAIA/gCAAcBAIEAgQCBAIECAwGAABAAAAAACAAGgAAMABwAPABQAABkBIREDIREhBhQWMjY0JiITIRMXNwIAIP5AAcCAHCgcHChE/oBggEABoP5gAaD+gAFgPCgcHCgc/uABAKAwAAAAAQAA/+ACAAHAABQAABIyFhQGIyInDgEHNT4BNTQnLgE1NJbUlpZqFBQmWTkcJAEsMwHAeqx6AyYbAg4NLBkHBx5UMFYAAAAAAAAMAJYAAQAAAAAAAQAHABAAAQAAAAAAAgAHACgAAQAAAAAAAwAjAHgAAQAAAAAABAAHAKwAAQAAAAAABQALAMwAAQAAAAAABgAHAOgAAwABBAkAAQAOAAAAAwABBAkAAgAOABgAAwABBAkAAwBGADAAAwABBAkABAAOAJwAAwABBAkABQAWALQAAwABBAkABgAOANgAZgBpAHIAZQBwAGEAZAAAZmlyZXBhZAAAUgBlAGcAdQBsAGEAcgAAUmVndWxhcgAARgBvAG4AdABGAG8AcgBnAGUAIAAyAC4AMAAgADoAIABmAGkAcgBlAHAAYQBkACAAOgAgADIAMwAtADcALQAyADAAMQAzAABGb250Rm9yZ2UgMi4wIDogZmlyZXBhZCA6IDIzLTctMjAxMwAAZgBpAHIAZQBwAGEAZAAAZmlyZXBhZAAAVgBlAHIAcwBpAG8AbgAgADEALgAwAABWZXJzaW9uIDEuMAAAZgBpAHIAZQBwAGEAZAAAZmlyZXBhZAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAABAAIBAgEDAQQBBQEGAQcBCAEJAQoBCwEMAQ0BDgEPARABEQESARMBFAEVARYBFwEYB3VuaUYwMDAHdW5pRTAwMAd1bmlFMDAxB3VuaUUwMDIHdW5pRTAwMwd1bmlFMDA0B3VuaUUwMDUHdW5pRTAwNgd1bmlFMDA3B3VuaUUwMDgHdW5pRTAwOQd1bmlFMDBBB3VuaUUwMEIHdW5pRTAwQwd1bmlFMDBEB3VuaUUwMEUHdW5pRTAxMAd1bmlFMDExB3VuaUUwMTIHdW5pRTAxMwd1bmlFMDE0B3VuaUUwMTUHdW5pRTAwRgAAAAAAAf//AAIAAQAAAA4AAAAYAAAAAAACAAEAAwAZAAEABAAAAAIAAAAAAAEAAAAAzD2izwAAAADOE2PoAAAAAM4TY+g=) format('truetype');
  font-weight: normal;
  font-style: normal;
}
.firepad-tb-bold,
.firepad-tb-italic,
.firepad-tb-underline,
.firepad-tb-strikethrough,
.firepad-tb-list,
.firepad-tb-list-2,
.firepad-tb-numbered-list,
.firepad-tb-paragraph-left,
.firepad-tb-paragraph-center,
.firepad-tb-paragraph-right,
.firepad-tb-paragraph-justify,
.firepad-tb-menu,
.firepad-tb-link,
.firepad-tb-undo,
.firepad-tb-redo,
.firepad-tb-box-add,
.firepad-tb-box-remove,
.firepad-tb-print,
.firepad-tb-indent-decrease,
.firepad-tb-indent-increase,
.firepad-tb-insert-image,
.firepad-tb-bubble {
  font-family: 'firepad';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}
.firepad-tb-bold:before {
  content: '\e000';
}
.firepad-tb-italic:before {
  content: '\e001';
}
.firepad-tb-underline:before {
  content: '\e002';
}
.firepad-tb-strikethrough:before {
  content: '\e003';
}
.firepad-tb-list:before {
  content: '\e004';
}
.firepad-tb-list-2:before {
  content: '\e005';
}
.firepad-tb-numbered-list:before {
  content: '\e006';
}
.firepad-tb-paragraph-left:before {
  content: '\e007';
}
.firepad-tb-paragraph-center:before {
  content: '\e008';
}
.firepad-tb-paragraph-right:before {
  content: '\e009';
}
.firepad-tb-paragraph-justify:before {
  content: '\e00a';
}
.firepad-tb-menu:before {
  content: '\e00b';
}
.firepad-tb-link:before {
  content: '\e00c';
}
.firepad-tb-undo:before {
  content: '\e00d';
}
.firepad-tb-redo:before {
  content: '\e00e';
}
.firepad-tb-box-add:before {
  content: '\e010';
}
.firepad-tb-box-remove:before {
  content: '\e011';
}
.firepad-tb-print:before {
  content: '\e012';
}
.firepad-tb-indent-decrease:before {
  content: '\e013';
}
.firepad-tb-indent-increase:before {
  content: '\e014';
}
.firepad-tb-insert-image:before {
  content: '\e015';
}
.firepad-tb-bubble:before {
  content: '\e00f';
}
/* inter-regular - latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/inter/inter-v3-latin-regular.eot');
  /* IE9 Compat Modes */
  src: local('Inter'), url('/fonts/inter/inter-v3-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('/fonts/inter/inter-v3-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ url('/fonts/inter/inter-v3-latin-regular.woff') format('woff'), /* Modern Browsers */ url('/fonts/inter/inter-v3-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ url('/fonts/inter/inter-v3-latin-regular.svg#Inter') format('svg');
  /* Legacy iOS */
}
/* inter-700 - latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src: local('Inter'), url('/fonts/inter/inter-v12-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('/fonts/inter/inter-v12-latin-700.woff') format('woff');
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* inter-800 - latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  src: local('Inter'), url('/fonts/inter/inter-v12-latin-800.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('/fonts/inter/inter-v12-latin-800.woff') format('woff');
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* allison-regular - latin */
@font-face {
  font-family: 'Allison';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/allison/allison-v1-latin-regular.eot');
  /* IE9 Compat Modes */
  src: local('Allison'), url('/fonts/allison/allison-v1-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('/fonts/allison/allison-v1-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ url('/fonts/allison/allison-v1-latin-regular.woff') format('woff'), /* Modern Browsers */ url('/fonts/allison/allison-v1-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ url('/fonts/allison/allison-v1-latin-regular.svg#Allison') format('svg');
  /* Legacy iOS */
}
/* anton-regular - latin */
@font-face {
  font-family: 'Anton';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/anton/anton-v15-latin-regular.eot');
  /* IE9 Compat Modes */
  src: local('Anton'), url('/fonts/anton/anton-v15-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('/fonts/anton/anton-v15-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ url('/fonts/anton/anton-v15-latin-regular.woff') format('woff'), /* Modern Browsers */ url('/fonts/anton/anton-v15-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ url('/fonts/anton/anton-v15-latin-regular.svg#Anton') format('svg');
  /* Legacy iOS */
}
/* bangers-regular - latin */
@font-face {
  font-family: 'Bangers';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/bangers/bangers-v13-latin-regular.eot');
  /* IE9 Compat Modes */
  src: local(''), url('/fonts/bangers/bangers-v13-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('/fonts/bangers/bangers-v13-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ url('/fonts/bangers/bangers-v13-latin-regular.woff') format('woff'), /* Modern Browsers */ url('/fonts/bangers/bangers-v13-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ url('/fonts/bangers/bangers-v13-latin-regular.svg#Bangers') format('svg');
  /* Legacy iOS */
}
/* barlow-condensed-regular - latin */
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/barlow-condensed/barlow-condensed-v5-latin-regular.eot');
  /* IE9 Compat Modes */
  src: local('Barlow Condensed'), url('/fonts/barlow-condensed/barlow-condensed-v5-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('/fonts/barlow-condensed/barlow-condensed-v5-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ url('/fonts/barlow-condensed/barlow-condensed-v5-latin-regular.woff') format('woff'), /* Modern Browsers */ url('/fonts/barlow-condensed/barlow-condensed-v5-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ url('/fonts/barlow-condensed/barlow-condensed-v5-latin-regular.svg#BarlowCondensed') format('svg');
  /* Legacy iOS */
}
/* black-ops-one-regular - latin */
@font-face {
  font-family: 'Black Ops One';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/black-ops-one/black-ops-one-v12-latin-regular.eot');
  /* IE9 Compat Modes */
  src: local('Black Ops One'), url('/fonts/black-ops-one/black-ops-one-v12-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('/fonts/black-ops-one/black-ops-one-v12-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ url('/fonts/black-ops-one/black-ops-one-v12-latin-regular.woff') format('woff'), /* Modern Browsers */ url('/fonts/black-ops-one/black-ops-one-v12-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ url('/fonts/black-ops-one/black-ops-one-v12-latin-regular.svg#BlackOpsOne') format('svg');
  /* Legacy iOS */
}
/* boogaloo-regular - latin */
@font-face {
  font-family: 'Boogaloo';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/boogaloo/boogaloo-v12-latin-regular.eot');
  /* IE9 Compat Modes */
  src: local('Boogaloo'), url('/fonts/boogaloo/boogaloo-v12-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('/fonts/boogaloo/boogaloo-v12-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ url('/fonts/boogaloo/boogaloo-v12-latin-regular.woff') format('woff'), /* Modern Browsers */ url('/fonts/boogaloo/boogaloo-v12-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ url('/fonts/boogaloo/boogaloo-v12-latin-regular.svg#Boogaloo') format('svg');
  /* Legacy iOS */
}
/* bungee-shade-regular - latin */
@font-face {
  font-family: 'Bungee Shade';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/bungee-shade/bungee-shade-v6-latin-regular.eot');
  /* IE9 Compat Modes */
  src: local('Bungee Shade'), url('/fonts/bungee-shade/bungee-shade-v6-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('/fonts/bungee-shade/bungee-shade-v6-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ url('/fonts/bungee-shade/bungee-shade-v6-latin-regular.woff') format('woff'), /* Modern Browsers */ url('/fonts/bungee-shade/bungee-shade-v6-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ url('/fonts/bungee-shade/bungee-shade-v6-latin-regular.svg#BungeeShade') format('svg');
  /* Legacy iOS */
}
/* cabin-sketch-regular - latin */
@font-face {
  font-family: 'Cabin Sketch';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/cabin-sketch/cabin-sketch-v14-latin-regular.eot');
  /* IE9 Compat Modes */
  src: local('Cabin Sketch'), url('/fonts/cabin-sketch/cabin-sketch-v14-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('/fonts/cabin-sketch/cabin-sketch-v14-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ url('/fonts/cabin-sketch/cabin-sketch-v14-latin-regular.woff') format('woff'), /* Modern Browsers */ url('/fonts/cabin-sketch/cabin-sketch-v14-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ url('/fonts/cabin-sketch/cabin-sketch-v14-latin-regular.svg#CabinSketch') format('svg');
  /* Legacy iOS */
}
/* codystar-regular - latin */
@font-face {
  font-family: 'Codystar';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/codystar/codystar-v10-latin-regular.eot');
  /* IE9 Compat Modes */
  src: local('Codystar'), url('/fonts/codystar/codystar-v10-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('/fonts/codystar/codystar-v10-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ url('/fonts/codystar/codystar-v10-latin-regular.woff') format('woff'), /* Modern Browsers */ url('/fonts/codystar/codystar-v10-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ url('/fonts/codystar/codystar-v10-latin-regular.svg#Codystar') format('svg');
  /* Legacy iOS */
}
/* creepster-regular - latin */
@font-face {
  font-family: 'Creepster';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/creepster/creepster-v9-latin-regular.eot');
  /* IE9 Compat Modes */
  src: local('Creepster'), url('/fonts/creepster/creepster-v9-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('/fonts/creepster/creepster-v9-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ url('/fonts/creepster/creepster-v9-latin-regular.woff') format('woff'), /* Modern Browsers */ url('/fonts/creepster/creepster-v9-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ url('/fonts/creepster/creepster-v9-latin-regular.svg#Creepster') format('svg');
  /* Legacy iOS */
}
/* dancing-script-regular - latin */
@font-face {
  font-family: 'Dancing Script';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/dancing-script/dancing-script-v16-latin-regular.eot');
  /* IE9 Compat Modes */
  src: local('Dancing Script'), url('/fonts/dancing-script/dancing-script-v16-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('/fonts/dancing-script/dancing-script-v16-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ url('/fonts/dancing-script/dancing-script-v16-latin-regular.woff') format('woff'), /* Modern Browsers */ url('/fonts/dancing-script/dancing-script-v16-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ url('/fonts/dancing-script/dancing-script-v16-latin-regular.svg#DancingScript') format('svg');
  /* Legacy iOS */
}
/* eater-regular - latin */
@font-face {
  font-family: 'Eater';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/eater/eater-v11-latin-regular.eot');
  /* IE9 Compat Modes */
  src: local('Eater'), url('/fonts/eater/eater-v11-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('/fonts/eater/eater-v11-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ url('/fonts/eater/eater-v11-latin-regular.woff') format('woff'), /* Modern Browsers */ url('/fonts/eater/eater-v11-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ url('/fonts/eater/eater-v11-latin-regular.svg#Eater') format('svg');
  /* Legacy iOS */
}
/* emilys-candy-regular - latin */
@font-face {
  font-family: 'Emilys Candy';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/emilys-candy/emilys-candy-v8-latin-regular.eot');
  /* IE9 Compat Modes */
  src: local('Emilys Candy'), url('/fonts/emilys-candy/emilys-candy-v8-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('/fonts/emilys-candy/emilys-candy-v8-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ url('/fonts/emilys-candy/emilys-candy-v8-latin-regular.woff') format('woff'), /* Modern Browsers */ url('/fonts/emilys-candy/emilys-candy-v8-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ url('/fonts/emilys-candy/emilys-candy-v8-latin-regular.svg#EmilysCandy') format('svg');
  /* Legacy iOS */
}
/* finger-paint-regular - latin */
@font-face {
  font-family: 'Finger Paint';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/finger-paint/finger-paint-v10-latin-regular.eot');
  /* IE9 Compat Modes */
  src: local('Finger Paint'), url('/fonts/finger-paint/finger-paint-v10-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('/fonts/finger-paint/finger-paint-v10-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ url('/fonts/finger-paint/finger-paint-v10-latin-regular.woff') format('woff'), /* Modern Browsers */ url('/fonts/finger-paint/finger-paint-v10-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ url('/fonts/finger-paint/finger-paint-v10-latin-regular.svg#FingerPaint') format('svg');
  /* Legacy iOS */
}
/* fredericka-the-great-regular - latin */
@font-face {
  font-family: 'Fredericka the Great';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/fredericka-the-great/fredericka-the-great-v10-latin-regular.eot');
  /* IE9 Compat Modes */
  src: local(''), url('/fonts/fredericka-the-great/fredericka-the-great-v10-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('/fonts/fredericka-the-great/fredericka-the-great-v10-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ url('/fonts/fredericka-the-great/fredericka-the-great-v10-latin-regular.woff') format('woff'), /* Modern Browsers */ url('/fonts/fredericka-the-great/fredericka-the-great-v10-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ url('/fonts/fredericka-the-great/fredericka-the-great-v10-latin-regular.svg#FrederickatheGreat') format('svg');
  /* Legacy iOS */
}
/* frijole-regular - latin */
@font-face {
  font-family: 'Frijole';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/frijole/frijole-v9-latin-regular.eot');
  /* IE9 Compat Modes */
  src: local(''), url('/fonts/frijole/frijole-v9-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('/fonts/frijole/frijole-v9-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ url('/fonts/frijole/frijole-v9-latin-regular.woff') format('woff'), /* Modern Browsers */ url('/fonts/frijole/frijole-v9-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ url('/fonts/frijole/frijole-v9-latin-regular.svg#Frijole') format('svg');
  /* Legacy iOS */
}
/* grenze-gotisch-regular - latin */
@font-face {
  font-family: 'Grenze Gotisch';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/grenze-gotisch/grenze-gotisch-v3-latin-regular.eot');
  /* IE9 Compat Modes */
  src: local('Grenze Gotisch'), url('/fonts/grenze-gotisch/grenze-gotisch-v3-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('/fonts/grenze-gotisch/grenze-gotisch-v3-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ url('/fonts/grenze-gotisch/grenze-gotisch-v3-latin-regular.woff') format('woff'), /* Modern Browsers */ url('/fonts/grenze-gotisch/grenze-gotisch-v3-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ url('/fonts/grenze-gotisch/grenze-gotisch-v3-latin-regular.svg#GrenzeGotisch') format('svg');
  /* Legacy iOS */
}
/* hanalei-regular - latin */
@font-face {
  font-family: 'Hanalei';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/hanalei/hanalei-v13-latin-regular.eot');
  /* IE9 Compat Modes */
  src: local('Hanalei'), url('/fonts/hanalei/hanalei-v13-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('/fonts/hanalei/hanalei-v13-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ url('/fonts/hanalei/hanalei-v13-latin-regular.woff') format('woff'), /* Modern Browsers */ url('/fonts/hanalei/hanalei-v13-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ url('/fonts/hanalei/hanalei-v13-latin-regular.svg#Hanalei') format('svg');
  /* Legacy iOS */
}
/* indie-flower-regular - latin */
@font-face {
  font-family: 'Indie Flower';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/indie-flower/indie-flower-v12-latin-regular.eot');
  /* IE9 Compat Modes */
  src: local('Indie Flower'), url('/fonts/indie-flower/indie-flower-v12-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('/fonts/indie-flower/indie-flower-v12-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ url('/fonts/indie-flower/indie-flower-v12-latin-regular.woff') format('woff'), /* Modern Browsers */ url('/fonts/indie-flower/indie-flower-v12-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ url('/fonts/indie-flower/indie-flower-v12-latin-regular.svg#IndieFlower') format('svg');
  /* Legacy iOS */
}
/* italianno-regular - latin */
@font-face {
  font-family: 'Italianno';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/italianno/italianno-v11-latin-regular.eot');
  /* IE9 Compat Modes */
  src: local('Italianno'), url('/fonts/italianno/italianno-v11-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('/fonts/italianno/italianno-v11-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ url('/fonts/italianno/italianno-v11-latin-regular.woff') format('woff'), /* Modern Browsers */ url('/fonts/italianno/italianno-v11-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ url('/fonts/italianno/italianno-v11-latin-regular.svg#Italianno') format('svg');
  /* Legacy iOS */
}
/* kaushan-script-regular - latin */
@font-face {
  font-family: 'Kaushan Script';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/kaushan-script/kaushan-script-v9-latin-regular.eot');
  /* IE9 Compat Modes */
  src: local('Kaushan Script'), url('/fonts/kaushan-script/kaushan-script-v9-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('/fonts/kaushan-script/kaushan-script-v9-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ url('/fonts/kaushan-script/kaushan-script-v9-latin-regular.woff') format('woff'), /* Modern Browsers */ url('/fonts/kaushan-script/kaushan-script-v9-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ url('/fonts/kaushan-script/kaushan-script-v9-latin-regular.svg#KaushanScript') format('svg');
  /* Legacy iOS */
}
/* kranky-regular - latin */
@font-face {
  font-family: 'Kranky';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/kranky/kranky-v13-latin-regular.eot');
  /* IE9 Compat Modes */
  src: local('Kranky'), url('/fonts/kranky/kranky-v13-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('/fonts/kranky/kranky-v13-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ url('/fonts/kranky/kranky-v13-latin-regular.woff') format('woff'), /* Modern Browsers */ url('/fonts/kranky/kranky-v13-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ url('/fonts/kranky/kranky-v13-latin-regular.svg#Kranky') format('svg');
  /* Legacy iOS */
}
/* lato-regular - latin */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/lato/lato-v20-latin-regular.eot');
  /* IE9 Compat Modes */
  src: local('Lato'), url('/fonts/lato/lato-v20-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('/fonts/lato/lato-v20-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ url('/fonts/lato/lato-v20-latin-regular.woff') format('woff'), /* Modern Browsers */ url('/fonts/lato/lato-v20-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ url('/fonts/lato/lato-v20-latin-regular.svg#Lato') format('svg');
  /* Legacy iOS */
}
/* lobster-regular - latin */
@font-face {
  font-family: 'Lobster';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/lobster/lobster-v23-latin-regular.eot');
  /* IE9 Compat Modes */
  src: local('Lobster'), url('/fonts/lobster/lobster-v23-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('/fonts/lobster/lobster-v23-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ url('/fonts/lobster/lobster-v23-latin-regular.woff') format('woff'), /* Modern Browsers */ url('/fonts/lobster/lobster-v23-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ url('/fonts/lobster/lobster-v23-latin-regular.svg#Lobster') format('svg');
  /* Legacy iOS */
}
/* love-ya-like-a-sister-regular - latin */
@font-face {
  font-family: 'Love Ya Like A Sister';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/love-ya-like-a-sister/love-ya-like-a-sister-v11-latin-regular.eot');
  /* IE9 Compat Modes */
  src: local('Love Ya Like A Sister'), url('/fonts/love-ya-like-a-sister/love-ya-like-a-sister-v11-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('/fonts/love-ya-like-a-sister/love-ya-like-a-sister-v11-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ url('/fonts/love-ya-like-a-sister/love-ya-like-a-sister-v11-latin-regular.woff') format('woff'), /* Modern Browsers */ url('/fonts/love-ya-like-a-sister/love-ya-like-a-sister-v11-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ url('/fonts/love-ya-like-a-sister/love-ya-like-a-sister-v11-latin-regular.svg#LoveYaLikeASister') format('svg');
  /* Legacy iOS */
}
/* luckiest-guy-regular - latin */
@font-face {
  font-family: 'Luckiest Guy';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/luckiest-guy/luckiest-guy-v11-latin-regular.eot');
  /* IE9 Compat Modes */
  src: local('Luckiest Guy'), url('/fonts/luckiest-guy/luckiest-guy-v11-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('/fonts/luckiest-guy/luckiest-guy-v11-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ url('/fonts/luckiest-guy/luckiest-guy-v11-latin-regular.woff') format('woff'), /* Modern Browsers */ url('/fonts/luckiest-guy/luckiest-guy-v11-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ url('/fonts/luckiest-guy/luckiest-guy-v11-latin-regular.svg#LuckiestGuy') format('svg');
  /* Legacy iOS */
}
/* merienda-regular - latin */
@font-face {
  font-family: 'Merienda';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/merienda/merienda-v9-latin-regular.eot');
  /* IE9 Compat Modes */
  src: local('Merienda'), url('/fonts/merienda/merienda-v9-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('/fonts/merienda/merienda-v9-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ url('/fonts/merienda/merienda-v9-latin-regular.woff') format('woff'), /* Modern Browsers */ url('/fonts/merienda/merienda-v9-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ url('/fonts/merienda/merienda-v9-latin-regular.svg#Merienda') format('svg');
  /* Legacy iOS */
}
/* merriweather-regular - latin */
@font-face {
  font-family: 'Merriweather';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/merriweather/merriweather-v25-latin-regular.eot');
  /* IE9 Compat Modes */
  src: local(''), url('/fonts/merriweather/merriweather-v25-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('/fonts/merriweather/merriweather-v25-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ url('/fonts/merriweather/merriweather-v25-latin-regular.woff') format('woff'), /* Modern Browsers */ url('/fonts/merriweather/merriweather-v25-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ url('/fonts/merriweather/merriweather-v25-latin-regular.svg#Merriweather') format('svg');
  /* Legacy iOS */
}
/* monoton-regular - latin */
@font-face {
  font-family: 'Monoton';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/monoton/monoton-v10-latin-regular.eot');
  /* IE9 Compat Modes */
  src: local('Monoton'), url('/fonts/monoton/monoton-v10-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('/fonts/monoton/monoton-v10-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ url('/fonts/monoton/monoton-v10-latin-regular.woff') format('woff'), /* Modern Browsers */ url('/fonts/monoton/monoton-v10-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ url('/fonts/monoton/monoton-v10-latin-regular.svg#Monoton') format('svg');
  /* Legacy iOS */
}
/* Nunito Black */
@font-face {
  font-family: 'Nunito';
  font-style: bold;
  font-weight: 900;
  src: url('/fonts/nunito/Nunito-Black.ttf') format('truetype');
}
/* open-sans-condensed-300 - latin */
@font-face {
  font-family: 'Open Sans Condensed';
  font-style: normal;
  font-weight: 300;
  src: url('/fonts/open-sans-condensed/open-sans-condensed-v15-latin-300.eot');
  /* IE9 Compat Modes */
  src: local('Open Sans Condensed'), url('/fonts/open-sans-condensed/open-sans-condensed-v15-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('/fonts/open-sans-condensed/open-sans-condensed-v15-latin-300.woff2') format('woff2'), /* Super Modern Browsers */ url('/fonts/open-sans-condensed/open-sans-condensed-v15-latin-300.woff') format('woff'), /* Modern Browsers */ url('/fonts/open-sans-condensed/open-sans-condensed-v15-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */ url('/fonts/open-sans-condensed/open-sans-condensed-v15-latin-300.svg#OpenSansCondensed') format('svg');
  /* Legacy iOS */
}
/* open-sans-regular - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/open-sans/open-sans-v23-latin-regular.eot');
  /* IE9 Compat Modes */
  src: local('Open Sans'), url('/fonts/open-sans/open-sans-v23-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('/fonts/open-sans/open-sans-v23-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ url('/fonts/open-sans/open-sans-v23-latin-regular.woff') format('woff'), /* Modern Browsers */ url('/fonts/open-sans/open-sans-v23-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ url('/fonts/open-sans/open-sans-v23-latin-regular.svg#OpenSans') format('svg');
  /* Legacy iOS */
}
/* orbitron-regular - latin */
@font-face {
  font-family: 'Orbitron';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/orbitron/orbitron-v17-latin-regular.eot');
  /* IE9 Compat Modes */
  src: local('Orbitron'), url('/fonts/orbitron/orbitron-v17-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('/fonts/orbitron/orbitron-v17-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ url('/fonts/orbitron/orbitron-v17-latin-regular.woff') format('woff'), /* Modern Browsers */ url('/fonts/orbitron/orbitron-v17-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ url('/fonts/orbitron/orbitron-v17-latin-regular.svg#Orbitron') format('svg');
  /* Legacy iOS */
}
/* permanent-marker-regular - latin */
@font-face {
  font-family: 'Permanent Marker';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/permanent-marker/permanent-marker-v10-latin-regular.eot');
  /* IE9 Compat Modes */
  src: local('Permanent Marker'), url('/fonts/permanent-marker/permanent-marker-v10-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('/fonts/permanent-marker/permanent-marker-v10-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ url('/fonts/permanent-marker/permanent-marker-v10-latin-regular.woff') format('woff'), /* Modern Browsers */ url('/fonts/permanent-marker/permanent-marker-v10-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ url('/fonts/permanent-marker/permanent-marker-v10-latin-regular.svg#PermanentMarker') format('svg');
  /* Legacy iOS */
}
/* rampart-one-regular - latin */
@font-face {
  font-family: 'Rampart One';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/rampart-one/rampart-one-v1-latin-regular.eot');
  /* IE9 Compat Modes */
  src: local('Rampart One'), url('/fonts/rampart-one/rampart-one-v1-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('/fonts/rampart-one/rampart-one-v1-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ url('/fonts/rampart-one/rampart-one-v1-latin-regular.woff') format('woff'), /* Modern Browsers */ url('/fonts/rampart-one/rampart-one-v1-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ url('/fonts/rampart-one/rampart-one-v1-latin-regular.svg#RampartOne') format('svg');
  /* Legacy iOS */
}
/* roboto-regular - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/roboto/roboto-v27-latin-regular.eot');
  /* IE9 Compat Modes */
  src: local('Roboto'), url('/fonts/roboto/roboto-v27-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('/fonts/roboto/roboto-v27-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ url('/fonts/roboto/roboto-v27-latin-regular.woff') format('woff'), /* Modern Browsers */ url('/fonts/roboto/roboto-v27-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ url('/fonts/roboto/roboto-v27-latin-regular.svg#Roboto') format('svg');
  /* Legacy iOS */
}
/* rye-regular - latin */
@font-face {
  font-family: 'Rye';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/rye/rye-v8-latin-regular.eot');
  /* IE9 Compat Modes */
  src: local('Rye'), url('/fonts/rye/rye-v8-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('/fonts/rye/rye-v8-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ url('/fonts/rye/rye-v8-latin-regular.woff') format('woff'), /* Modern Browsers */ url('/fonts/rye/rye-v8-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ url('/fonts/rye/rye-v8-latin-regular.svg#Rye') format('svg');
  /* Legacy iOS */
}
/* source-code-pro-regular - latin */
@font-face {
  font-family: 'Source Code Pro';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/source-code-pro/source-code-pro-v14-latin-regular.eot');
  /* IE9 Compat Modes */
  src: local('Source Code Pro'), url('/fonts/source-code-pro/source-code-pro-v14-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('/fonts/source-code-pro/source-code-pro-v14-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ url('/fonts/source-code-pro/source-code-pro-v14-latin-regular.woff') format('woff'), /* Modern Browsers */ url('/fonts/source-code-pro/source-code-pro-v14-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ url('/fonts/source-code-pro/source-code-pro-v14-latin-regular.svg#SourceCodePro') format('svg');
  /* Legacy iOS */
}
/* space-grotesk-regular - latin */
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/space-grotesk/space-grotesk-v6-latin-regular.eot');
  /* IE9 Compat Modes */
  src: local('Space Grotesk'), url('/fonts/space-grotesk/space-grotesk-v6-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('/fonts/space-grotesk/space-grotesk-v6-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ url('/fonts/space-grotesk/space-grotesk-v6-latin-regular.woff') format('woff'), /* Modern Browsers */ url('/fonts/space-grotesk/space-grotesk-v6-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ url('/fonts/space-grotesk/space-grotesk-v6-latin-regular.svg#SpaceGrotesk') format('svg');
  /* Legacy iOS */
}
/* special-elite-regular - latin */
@font-face {
  font-family: 'Special Elite';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/special-elite/special-elite-v11-latin-regular.eot');
  /* IE9 Compat Modes */
  src: local('Special Elite'), url('/fonts/special-elite/special-elite-v11-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('/fonts/special-elite/special-elite-v11-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ url('/fonts/special-elite/special-elite-v11-latin-regular.woff') format('woff'), /* Modern Browsers */ url('/fonts/special-elite/special-elite-v11-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ url('/fonts/special-elite/special-elite-v11-latin-regular.svg#SpecialElite') format('svg');
  /* Legacy iOS */
}
/* teko-regular - latin */
@font-face {
  font-family: 'Teko';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/teko/teko-v10-latin-regular.eot');
  /* IE9 Compat Modes */
  src: local('Teko'), url('/fonts/teko/teko-v10-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('/fonts/teko/teko-v10-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ url('/fonts/teko/teko-v10-latin-regular.woff') format('woff'), /* Modern Browsers */ url('/fonts/teko/teko-v10-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ url('/fonts/teko/teko-v10-latin-regular.svg#Teko') format('svg');
  /* Legacy iOS */
}
/* tourney-regular - latin */
@font-face {
  font-family: 'Tourney';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/tourney/tourney-v1-latin-regular.eot');
  /* IE9 Compat Modes */
  src: local('Tourney'), url('/fonts/tourney/tourney-v1-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('/fonts/tourney/tourney-v1-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ url('/fonts/tourney/tourney-v1-latin-regular.woff') format('woff'), /* Modern Browsers */ url('/fonts/tourney/tourney-v1-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ url('/fonts/tourney/tourney-v1-latin-regular.svg#Tourney') format('svg');
  /* Legacy iOS */
}
/* unifrakturmaguntia-regular - latin */
@font-face {
  font-family: 'UnifrakturMaguntia';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/unifrakturmaguntia/unifrakturmaguntia-v11-latin-regular.eot');
  /* IE9 Compat Modes */
  src: local(''), url('/fonts/unifrakturmaguntia/unifrakturmaguntia-v11-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('/fonts/unifrakturmaguntia/unifrakturmaguntia-v11-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ url('/fonts/unifrakturmaguntia/unifrakturmaguntia-v11-latin-regular.woff') format('woff'), /* Modern Browsers */ url('/fonts/unifrakturmaguntia/unifrakturmaguntia-v11-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ url('/fonts/unifrakturmaguntia/unifrakturmaguntia-v11-latin-regular.svg#UnifrakturMaguntia') format('svg');
  /* Legacy iOS */
}
/* urbanist-regular - latin */
@font-face {
  font-family: 'Urbanist';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/urbanist/urbanist-v1-latin-regular.eot');
  /* IE9 Compat Modes */
  src: local('Urbanist'), url('/fonts/urbanist/urbanist-v1-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('/fonts/urbanist/urbanist-v1-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ url('/fonts/urbanist/urbanist-v1-latin-regular.woff') format('woff'), /* Modern Browsers */ url('/fonts/urbanist/urbanist-v1-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ url('/fonts/urbanist/urbanist-v1-latin-regular.svg#Urbanist') format('svg');
  /* Legacy iOS */
}
/* wallpoet-regular - latin */
@font-face {
  font-family: 'Wallpoet';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/wallpoet/wallpoet-v12-latin-regular.eot');
  /* IE9 Compat Modes */
  src: local('Wallpoet'), url('/fonts/wallpoet/wallpoet-v12-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('/fonts/wallpoet/wallpoet-v12-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ url('/fonts/wallpoet/wallpoet-v12-latin-regular.woff') format('woff'), /* Modern Browsers */ url('/fonts/wallpoet/wallpoet-v12-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ url('/fonts/wallpoet/wallpoet-v12-latin-regular.svg#Wallpoet') format('svg');
  /* Legacy iOS */
}
/* yesteryear-regular - latin */
@font-face {
  font-family: 'Yesteryear';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/yesteryear/yesteryear-v9-latin-regular.eot');
  /* IE9 Compat Modes */
  src: local('Yesteryear'), url('/fonts/yesteryear/yesteryear-v9-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('/fonts/yesteryear/yesteryear-v9-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ url('/fonts/yesteryear/yesteryear-v9-latin-regular.woff') format('woff'), /* Modern Browsers */ url('/fonts/yesteryear/yesteryear-v9-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ url('/fonts/yesteryear/yesteryear-v9-latin-regular.svg#Yesteryear') format('svg');
  /* Legacy iOS */
}
.notifications-container {
  position: fixed;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999999;
}
.notifications-container .notification {
  display: flex;
  flex-direction: row;
  background: var(--primary-background, white);
  width: 500px;
  border-radius: 16px;
  overflow: hidden;
  margin: 0 auto 16px;
}
.notifications-container .notification .left-area {
  width: 80px;
  flex-shrink: 0;
  background: var(--secondary-background, #6b1be3);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 18px;
}
.notifications-container .notification .left-area svg path[fill]:not([fill='none']),
.notifications-container .notification .left-area svg circle[fill]:not([fill='none']),
.notifications-container .notification .left-area svg g[fill]:not([fill='none']),
.notifications-container .notification .left-area svg rect[fill]:not([fill='none']) {
  fill: var(--secondary-foreground, white);
}
.notifications-container .notification .left-area svg path[stroke],
.notifications-container .notification .left-area svg circle[stroke],
.notifications-container .notification .left-area svg g[stroke],
.notifications-container .notification .left-area svg rect[stroke] {
  stroke: var(--secondary-foreground, white);
}
.notifications-container .notification .message {
  padding: 16px 32px;
  font-size: 14px;
  color: var(--primary-foreground, black);
}
.notifications-container .notification .message .link {
  cursor: pointer;
  text-decoration: underline;
  color: var(--primary-foreground, #666);
}
.notifications-container .notification .close-button {
  cursor: pointer;
  color: var(--secondary-foreground, #6b1be3);
  margin: 10px 0;
}
.notifications-container .notification .accept-button,
.notifications-container .notification .ignore-button {
  cursor: pointer;
  border: none;
  outline: none;
}
.notifications-container .notification .accept-button {
  background: var(--secondary-background, #6b1be3);
  color: var(--secondary-foreground, white);
  padding: 8px 16px;
  margin: 0 16px;
  border-radius: 8px;
}
.notifications-container .notification .ignore-button {
  background-color: transparent;
  color: #666;
}
.notifications-container .notification.viewer-demotion-notification .left-area {
  background: var(--secondary-background, #e7e5ea);
}
.notifications-container .notification.viewer-demotion-notification .left-area .alert-icon {
  width: 31px;
  height: 31px;
}
.notifications-container-bottom {
  position: fixed;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999999;
}
.modal-root {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: 1000000;
}
.first-time-user-notification {
  display: block;
  flex-direction: row;
  background-color: white;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10006;
  width: 650px;
  height: 650px;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  color: black;
}
.first-time-user-notification h3 {
  margin-bottom: 10px;
}
.first-time-user-notification .left-area {
  width: 80px;
  flex-shrink: 0;
  background-color: #6b1be3;
}
.first-time-user-notification .message-title {
  padding-bottom: 18px;
  color: #101010;
  font-family: Inter;
  font-style: normal;
  font-weight: 800;
  font-size: 24px;
  line-height: 24px;
}
.first-time-user-notification .message-text {
  color: #585858;
  margin-left: 2%;
  margin-right: 2%;
  margin-top: 0px !important;
}
.first-time-user-notification .message {
  padding: 40px !important;
  font-size: 14px;
}
.first-time-user-notification .message .link {
  cursor: pointer;
  text-decoration: underline;
  color: #666;
}
.first-time-user-notification .next-button {
  margin-top: 50px !important;
}
.first-time-user-notification .next-button-text {
  color: #6b1be3 !important;
  margin: 0px;
  font-size: 1.2em;
}
.first-time-user-notification .close-button {
  cursor: pointer;
  margin: auto;
  margin-top: 50px;
  width: 150px;
  text-align: center;
  display: none;
}
.first-time-user-notification .close-button-end {
  cursor: pointer;
  margin: auto;
  margin-top: 40px;
  width: 155px;
  text-align: center;
  background-color: #6b1be3;
  border-radius: 8px;
  padding: 10px;
}
.first-time-user-notification .close-button-text {
  color: #6b1be3 !important;
  margin: 0px;
}
.first-time-user-notification .close-button-text-end {
  color: white !important;
  font-weight: bold;
}
.first-time-user-notification .slideshow-slide {
  padding-left: 10px;
  padding-right: 10px;
}
.first-time-user-notification .uk-active a {
  background-color: #6b1be3;
}
.first-time-user-notification .uk-slideshow-items {
  height: 400px;
}
.first-time-user-notification .uk-slideshow {
  margin-top: 0px;
}
.first-time-user-background-cover {
  display: none;
  opacity: 0.7;
  background-color: black;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: 10005;
}
.broadcast-leaving-dialog {
  text-align: center;
  border-radius: 16px;
  padding: 30px 0;
}
.broadcast-leaving-dialog .title {
  font-weight: bold;
  margin: 0 auto;
  color: black;
}
.broadcast-leaving-dialog .text {
  margin: 16px auto;
  width: 70%;
}
.broadcast-leaving-dialog .buttons .uk-button {
  border-radius: 12px;
  text-transform: none;
}
.broadcast-leaving-dialog .buttons .uk-button.uk-button-default {
  background-color: #ededed;
  margin-right: 8px;
  border: none;
}
.uk-nav > li a,
.uk-nav > li button:not(.btn):not([class*='here-button-']) {
  padding: 0;
  line-height: 2.5em;
}
.uk-nav > li button:not(.btn):not([class*='here-button-']) {
  appearance: none;
  outline: none;
  border: none;
  background: transparent;
  color: #999;
  font-size: 14px;
}
.uk-nav > li button:not(.btn):not([class*='here-button-']).separated-option {
  border-top: 1px solid lightgray;
}
.uk-nav > li button:not(.btn):not([class*='here-button-']):not([disabled]) {
  cursor: pointer;
}
.uk-nav > li button:not(.btn):not([class*='here-button-']):not([disabled]):hover {
  color: #666;
}
.uk-dropdown {
  padding: 10px 15px;
  border-radius: 10px;
}
.uk-dropdown li button.options-menu-option {
  line-height: 2.3em;
}
.uk-modal {
  z-index: 99999;
}
.uk-button {
  border-radius: 4px;
}
.danger-confirm .uk-modal-dialog .uk-button-primary,
.uk-button-danger {
  background-color: #f6335d;
}
.uk-nav-divider {
  border-top: 1px solid var(--primary-foreground, #e5e5e5) !important;
}
h1,
h2,
h3,
h4,
h5,
h6,
ul,
p {
  padding: 0;
  margin: 0;
}
a {
  color: inherit;
}
a:hover {
  text-decoration: none;
}
div[data-radix-portal] {
  z-index: 500000 !important;
}
div[data-radix-popper-content-wrapper] {
  will-change: auto !important;
}
#react-confirm-alert .react-confirm-alert-overlay {
  z-index: 2147483647;
  background: #28282860;
  backdrop-filter: blur(6px);
}
.upload-web-app-input {
  padding-left: 10px;
  font-size: 0.9em;
  width: 94%;
  height: 30px;
  border-radius: 5px;
  color: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(86, 75, 107, 0.5);
}
.upload-modal-icon {
  margin-left: 6px;
  margin-right: 6px;
  height: 34px;
  width: 34px;
}
.file-upload-box {
  background-color: #ededed;
  border-radius: 20px;
  color: black;
  width: 100%;
  padding: 6px;
  margin: -10px 20px -10px -6px;
  text-align: left;
}
.file-upload-button {
  border-radius: 5px;
  border: none;
  background: var(--secondary-background, #6b1be3);
  color: var(--secondary-foreground, white);
  height: 14px;
  line-height: 14px;
  width: 100%;
  display: block;
  padding: 10px 0;
  margin-top: 8px;
  text-align: center;
  cursor: pointer;
}
.file-upload-button-cancel {
  border-radius: 5px;
  border: none;
  background-color: #ededed;
  color: black;
  height: 14px;
  line-height: 14px;
  width: 100%;
  display: block;
  padding: 10px 0;
  margin-top: 8px;
  text-align: center;
  cursor: pointer;
}
.file-upload-dialog {
  min-width: 300px;
  border-radius: 20px;
  height: 225px;
}
.file-upload-dialog .file-upload-icons {
  display: flex;
  justify-content: space-around;
}
.upload-default {
  color: var(--primary-foreground, #888);
}
/*
  Currently we have the following theming CSS variables:
  • --primary-font - used for room name only.
  • --primary-foreground and --primary-background - main background and text colors.
  • --secondary-foreground and --secondary-background - usually used for buttons and hover effects.
  Each of aforementioned variables has 9 modifications for using with alpha channels,
  e.g. --primary-background-alpha-30 means it's --primary-background with opacity 0.3.
  So using it with default value would look like this:
  var(--primary-background-alpha-30, rgba(0, 0, 0, 0.3))

  Also if a theme is applied, body element has 'themed` class.
  Default theme (in other words, no theme) means that all these variables are unset,
  also 'themed' class is removed from the body.
*/
.unthemed {
  --primary-foreground: initial;
  --primary-foreground-alpha-10: initial;
  --primary-foreground-alpha-20: initial;
  --primary-foreground-alpha-30: initial;
  --primary-foreground-alpha-40: initial;
  --primary-foreground-alpha-50: initial;
  --primary-foreground-alpha-60: initial;
  --primary-foreground-alpha-70: initial;
  --primary-foreground-alpha-80: initial;
  --primary-foreground-alpha-90: initial;
  --primary-background: initial;
  --primary-background-alpha-10: initial;
  --primary-background-alpha-20: initial;
  --primary-background-alpha-30: initial;
  --primary-background-alpha-40: initial;
  --primary-background-alpha-50: initial;
  --primary-background-alpha-60: initial;
  --primary-background-alpha-70: initial;
  --primary-background-alpha-80: initial;
  --primary-background-alpha-90: initial;
  --secondary-foreground: initial;
  --secondary-foreground-alpha-10: initial;
  --secondary-foreground-alpha-20: initial;
  --secondary-foreground-alpha-30: initial;
  --secondary-foreground-alpha-40: initial;
  --secondary-foreground-alpha-50: initial;
  --secondary-foreground-alpha-60: initial;
  --secondary-foreground-alpha-70: initial;
  --secondary-foreground-alpha-80: initial;
  --secondary-foreground-alpha-90: initial;
  --secondary-background: initial;
  --secondary-background-alpha-10: initial;
  --secondary-background-alpha-20: initial;
  --secondary-background-alpha-30: initial;
  --secondary-background-alpha-40: initial;
  --secondary-background-alpha-50: initial;
  --secondary-background-alpha-60: initial;
  --secondary-background-alpha-70: initial;
  --secondary-background-alpha-80: initial;
  --secondary-background-alpha-90: initial;
  --primary-font: initial;
}
.themed-font {
  font-family: var(--primary-font, Inter, sans-serif);
}
body:not(.has-themed-font) .themed-font {
  font-weight: bold;
}
body.themed .themed-shadow {
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
}
body.themed .unthemed .themed-shadow,
body:not(.themed) .themed-shadow {
  box-shadow: none;
}
.themed-select {
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
  background: var(--primary-background) border-box;
  color: var(--primary-foreground);
  border: none;
  border-right: 12px solid transparent;
  padding: 12px;
  border-radius: 10px;
  outline: 1px solid var(--primary-foreground-alpha-20, rgba(0, 0, 0, 0.2));
}
.themed-select:hover {
  outline: 1px solid var(--primary-foreground-alpha-40, rgba(0, 0, 0, 0.4));
}
.themed-input.themed-input.themed-input {
  border-radius: 10px;
}
body.themed .themed-input {
  outline: none;
  color: var(--primary-foreground, #666);
  box-shadow: 0 4px 10px 0 var(--primary-foreground-alpha-10);
  border: 1px solid var(--primary-foreground-alpha-20, #e5e5e5);
  background: var(--primary-background-alpha-70);
}
body.themed .themed-input:hover {
  box-shadow: 0 2px 5px 0 var(--primary-foreground-alpha-30, #aaa);
  border: 1px solid var(--primary-foreground-alpha-40, #aaa);
}
body.themed .themed-input:focus,
body.themed .themed-input:focus-visible {
  box-shadow: none;
  border: 2px solid var(--secondary-background, #999);
  background: var(--primary-background);
}
body.themed .themed-input:disabled {
  background: var(--primary-foreground-alpha-10);
  box-shadow: none;
  color: var(--primary-foreground-alpha-50);
}
body.themed .themed-input::placeholder {
  color: var(--primary-foreground-alpha-50);
}
body.themed .themed-slider {
  appearance: none;
  background: transparent;
}
body.themed .themed-slider::-webkit-slider-thumb {
  appearance: none;
  background: var(--secondary-background);
  border: 2px solid var(--primary-foreground);
  height: 14px;
  width: 14px;
  border-radius: 50%;
  margin-top: -4px;
}
body.themed .themed-slider::-webkit-slider-runnable-track {
  background: var(--secondary-background);
  height: 6px;
  border-radius: 3px;
}
.publicize-room-modal {
  width: 55%;
  border-radius: 10px;
  overflow: visible;
  padding: 20px 20px 40px 20px;
  min-width: 500px;
  max-width: 900px !important;
  background: var(--primary-background, white);
}
.publicize-room-modal .publicize-room-inner-modal {
  overflow: auto;
}
.publicize-room-modal a {
  color: #6b1be3;
}
.publicize-room-modal button {
  font-size: 16px;
}
.publicize-room-modal .publicize-share-room-details-inner {
  width: 85%;
  height: calc(100% - 50px);
  margin: auto;
}
.publicize-room-modal .publicize-room-switch-section {
  justify-content: space-between;
  display: flex;
}
.publicize-room-modal .publicize-header {
  text-align: center;
  font-weight: 600;
  font-size: 20px;
  margin: 14px 0 4px;
  color: var(--primary-foreground, black);
}
.publicize-room-modal .publicize-header-ended {
  margin: 30px 0 20px;
}
.publicize-room-modal .publicize-header-subtitle {
  padding: 0;
  margin: 0;
  color: var(--primary-foreground, #7f7f7f);
}
.publicize-room-modal .publicize-header-main-subtitle {
  padding: 0;
  margin: 0;
  color: var(--primary-foreground, #1a1a1a80);
  text-align: center;
  font-size: 14px;
}
.publicize-room-modal .publicize-header-subtitle-notice {
  width: 50%;
  text-align: center;
  margin: auto;
  padding: 10px;
  color: var(--primary-foreground, black);
}
.publicize-room-modal .publicize-header-subtitle-ended {
  width: 80%;
  text-align: center;
  margin: auto;
  padding: 10px;
}
.publicize-room-modal .publicize-room-confirm-button-ended-div {
  margin: auto;
  margin-top: 30px;
  width: 70%;
}
.publicize-room-modal .publicize-notice-section {
  margin: auto;
  margin-top: 14px;
  text-align: center;
}
.publicize-room-modal .buttons-section {
  display: flex;
  justify-content: center;
}
.publicize-room-modal .publicize-inner-header {
  font-weight: 600;
  padding: 0;
  margin: 0;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--primary-foreground, black);
}
.publicize-room-modal #room-name-input-publicize {
  height: 16px;
}
.publicize-room-modal #room-name-input-publicize:not(:focus) {
  border-width: 1px;
}
.publicize-room-modal .room-name-section {
  margin-bottom: 20px;
}
.publicize-room-modal .publicize-content-div {
  background: #f6f6f6;
  padding: 28px;
  border-radius: 5px;
  margin-bottom: 10px;
}
body.themed .publicize-room-modal .publicize-content-div {
  background: var(--primary-foreground-alpha-20);
}
.publicize-room-modal .publicize-textarea {
  height: 70px;
  width: calc(100% - 36px);
  padding: 14px;
  font-size: 14px;
  line-height: 20px;
  resize: none;
}
.publicize-room-modal .publicize-textarea::placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.publicize-room-modal .publicize-room-confirm-button {
  width: 41.5%;
  height: 46px;
}
.publicize-room-modal .publicize-room-cancel-button {
  width: 41.5%;
  margin-right: 10px;
  height: 46px;
}
.publicize-room-modal .publicize-room-gif {
  padding: 20px;
  object-fit: cover;
  max-height: 435px;
  display: block;
  margin: 0 auto;
}
.publicize-room-modal .publicize-room-image-left-top {
  position: fixed;
  left: -95px;
  top: 50px;
  width: 120px;
}
@media (max-width: 600px) {
  .publicize-room-modal .publicize-room-image-left-top {
    display: none;
  }
}
.publicize-room-modal .publicize-room-image-left-bottom {
  position: fixed;
  left: -100px;
  bottom: 100px;
  width: 120px;
}
@media (max-width: 600px) {
  .publicize-room-modal .publicize-room-image-left-bottom {
    display: none;
  }
}
.publicize-room-modal .publicize-room-image-right {
  position: fixed;
  right: -130px;
  top: 230px;
  width: 150px;
}
@media (max-width: 600px) {
  .publicize-room-modal .publicize-room-image-right {
    display: none;
  }
}
.publicize-room-modal .publicize-share-details {
  overflow: hidden !important;
}
.publicize-room-modal .required-message {
  color: #6b1be3;
  text-transform: lowercase;
  font-weight: normal;
  float: right;
  font-size: 14px;
}
.publicize-room-modal .uk-input:focus {
  background-color: none !important;
}
.publicize-room-modal .flex-container {
  display: flex;
  text-align-last: center;
  justify-content: space-between;
  margin: 40px 0 14px 0;
  max-width: 1200px;
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
  height: 86px;
}
body.themed .publicize-room-modal .gray-section {
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
}
body.themed .unthemed .publicize-room-modal .gray-section,
body:not(.themed) .publicize-room-modal .gray-section {
  box-shadow: none;
}
body.themed .publicize-room-modal .gray-section {
  background: var(--primary-background);
  border: 1px solid var(--primary-foreground-alpha-20);
}
body.themed .publicize-room-modal .gray-section:hover {
  border: 1px solid var(--primary-foreground-alpha-80);
}
.publicize-room-modal .flex-child {
  flex: 0.23;
  color: #9b8f8f;
}
.publicize-room-modal .flex-child .gray-section {
  height: 100%;
  border-radius: 5px;
  min-width: 50px;
  background: rgba(196, 196, 196, 0.15);
  position: relative;
}
.publicize-room-modal .flex-child .option-section-image {
  margin-top: -22px;
  position: absolute;
  width: 100%;
}
.publicize-room-modal .flex-child .option-section-image-slash {
  margin-top: -22px;
  position: absolute;
  z-index: 1;
  height: 40px;
  content: url(../images/icons/slash.svg);
  display: none;
  width: 100%;
}
.publicize-room-modal .flex-child .permission-section {
  display: inline-block;
  transform: translate(0, 45%);
}
.publicize-room-modal .flex-child .permission-section h6 {
  margin-bottom: 6px;
  color: var(--primary-foreground, gray);
  font-weight: 600;
}
.publicize-room-modal .flex-child .permission-section .activated {
  color: var(--primary-foreground, #6b1be3);
}
.publicize-room-modal .error {
  display: block;
  text-align: left;
  color: red;
  font-size: 14px;
  margin: auto;
}
.publicize-room-modal-master {
  border-radius: 10px;
  min-width: 600px;
}
.publicize-room-modal-details {
  width: unset !important;
  padding: 20px 20px 40px 20px;
  max-height: 100%;
  min-width: 500px !important;
  max-width: unset !important;
}
.invite-text-icon {
  height: 18px;
  margin-left: 4px;
}
.invite-text-icon path[fill]:not([fill='none']),
.invite-text-icon circle[fill]:not([fill='none']),
.invite-text-icon g[fill]:not([fill='none']),
.invite-text-icon rect[fill]:not([fill='none']) {
  fill: var(--primary-foreground, #bfbfbf);
}
.invite-text-icon path[stroke],
.invite-text-icon circle[stroke],
.invite-text-icon g[stroke],
.invite-text-icon rect[stroke] {
  stroke: var(--primary-foreground, #bfbfbf);
}
#publicize-share-room-notice,
#publicize-share-room-details,
#publicize-share-room-ended {
  z-index: 100000;
}
#report-user-notice {
  z-index: 100000;
}
.report-user-modal {
  width: 45%;
  border-radius: 10px;
  overflow: auto;
  padding: 20px 20px 40px 20px;
  max-height: 100%;
  min-height: 350px;
}
.report-user-modal .report-user-header {
  text-align: center;
  font-weight: 500;
  margin: 10px 0px;
}
.report-user-modal .report-user-subtitle {
  padding: 0;
  margin: 0;
  color: #7f7f7f;
  text-align: center;
}
.report-user-modal .report-user-option-section {
  margin: auto;
  text-align: center;
  margin-top: 20px;
}
.report-user-modal .report-user-textarea {
  height: 105px;
  width: calc(100% - 36px);
  margin: 10px 0px;
  border: 1px solid #dcdcdc;
  color: black !important;
  padding: 18px;
  font-size: 18px;
  line-height: 24px;
  resize: none;
  border-radius: 10px;
}
.report-user-modal .report-user-textarea:focus {
  outline: none !important;
  border: 1px solid #6b1be3 !important;
}
.report-user-modal #report-user-error {
  color: red;
  margin-bottom: 20px;
  margin-top: 0;
}
.report-user-modal .report-user-confirm-button {
  width: 49%;
  color: white !important;
  background-color: #6b1be3;
  border-radius: 12px;
  line-height: 1.5em;
  min-height: 46px;
  padding: 0;
}
.report-user-modal .report-user-back-button {
  min-height: 46px;
  border-radius: 12px;
  background-color: #f6f6f6;
  border: none;
  color: black;
  width: 49%;
  padding: 0;
}
.report-user-modal .report-user-center {
  text-align: center;
}
.report-user-modal .report-user-cancel-button {
  margin-top: 20px;
  border-radius: 12px;
  background-color: none;
  border: none;
  color: #01010180;
  text-decoration: underline;
  padding: 0;
  line-height: 1.5em;
  min-height: 46px;
}
.report-user-modal .report-user-option {
  margin-right: 10px;
  min-height: 46px;
  border-radius: 12px;
  background-color: none;
  border: none;
  background-color: #ededed;
  color: black;
  margin: 4px 0px;
  line-height: 1.5em;
}
.report-user-modal .report-user-option:hover {
  background-color: #6b1be3;
  color: white;
}
.report-user-modal .error-field {
  background-color: rgba(255, 0, 0, 0.15);
}
.report-user-modal #report-user-option-success {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.report-user-modal .report-user-check-icon {
  height: 80px;
  width: auto;
}
.report-user-modal #report-user-main-modal {
  margin-top: 16px;
}
#screen-share-notice .uk-modal-dialog {
  width: 700px;
  border-radius: 10px;
  padding: 10px 10px 38px 10px;
}
#screen-share-notice .screen-share-notice-image {
  width: 100%;
  background-color: #6ccedb;
  border-radius: 10px;
  padding: 20px 70px 10px 50px;
}
#screen-share-notice .screen-share-notice-text {
  width: 80%;
  margin-left: auto;
  text-align: center;
  margin-right: auto;
}
#screen-share-notice .screen-share-notice-header {
  margin-left: auto;
  text-align: center;
  margin-right: auto;
  font-weight: bold;
  margin-top: 30px;
}
#screen-share-notice .screen-share-notice-button-section {
  width: 50%;
  margin: auto;
}
#screen-share-notice #screen-share-notice-confirm-button {
  margin: auto;
  display: block;
  padding: 0px 41px;
  background-color: #6b1be3;
  border-radius: 10px;
}
.progress-bar-section {
  /*hide the outline behind the border*/
}
.progress-bar-section input[type='range'] {
  padding: 19px 0px;
  background-color: transparent;
  /*removes default webkit styles*/
  -webkit-appearance: none;
  /*fix for FF unable to apply focus style bug */
  /*border: 1px solid white;*/
  /*required for proper track sizing in FF*/
  width: 100%;
  position: relative;
  top: 28px;
}
.progress-bar-section input[type='range']::-webkit-slider-runnable-track {
  width: 80px;
  height: 6px;
  background: #ffffff99;
  border: none;
  border-radius: 20px;
}
.progress-bar-section input[type='range']::-webkit-slider-thumb {
  border: none;
  border-radius: 50%;
  background: white;
  width: 1.5em;
  height: 1.5em;
  box-shadow: 0 0 2px black;
  -webkit-appearance: none;
  margin-top: -6px;
}
.progress-bar-section input[type='range']::-webkit-slider-thumb:active {
  background: white;
  -webkit-appearance: none;
}
.progress-bar-section input[type='range']:focus {
  outline: none;
}
.progress-bar-section input[type='range']:focus::-webkit-slider-runnable-track {
  background: #ccc;
}
.progress-bar-section input[type='range']::-moz-range-track {
  width: 80px;
  height: 2px;
  background: #ccc;
  border: none;
  /* border-radius: 3px; */
}
.progress-bar-section input[type='range']::-moz-range-thumb {
  border: none;
  border-radius: 50%;
  background: white;
  width: 2.2em;
  height: 2.2em;
  box-shadow: 0 0 2px black;
}
.progress-bar-section input[type='range']:-moz-focusring {
  outline: 1px solid white;
  outline-offset: -1px;
}
.progress-bar-section input[type='range']::-ms-track {
  width: 80px;
  height: 2px;
  /*remove bg colour from the track, we'll use ms-fill-lower and ms-fill-upper instead */
  background: transparent;
  /*leave room for the larger thumb to overflow with a transparent border */
  border-color: transparent;
  border-width: 6px 0;
  /*remove default tick marks*/
  color: transparent;
}
.progress-bar-section input[type='range']::-ms-fill-lower {
  background: #777;
  border-radius: 20px;
}
.progress-bar-section input[type='range']::-ms-fill-upper {
  background: #ccc;
  border-radius: 20px;
}
.progress-bar-section input[type='range']::-ms-thumb {
  border: none;
  border-radius: 50%;
  background: white;
  width: 2.2em;
  height: 2.2em;
  box-shadow: 0 0 2px black;
}
.progress-bar-section input[type='range']:focus::-ms-fill-lower {
  background: #888;
}
.progress-bar-section input[type='range']:focus::-ms-fill-upper {
  background: #ccc;
}
#user-profile-ghost-anchor {
  position: absolute;
}
#user-profile {
  position: absolute;
  padding: 0;
  overflow: auto;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  z-index: 100001;
  overflow-x: hidden;
}
#user-profile::-webkit-scrollbar {
  width: 0;
}
#user-profile::-webkit-scrollbar-track {
  background-color: transparent;
}
#user-profile::-webkit-scrollbar-thumb {
  background-color: transparent;
}
#user-profile::-webkit-scrollbar-thumb:hover {
  background: transparent;
}
#user-profile-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  z-index: 100001;
}
#user-profile-more-menu-ghost-anchor {
  position: absolute;
}
#user-profile-more-menu {
  position: absolute;
  padding: 0;
  overflow: hidden;
}
#picker-modal {
  position: fixed;
  z-index: 1000000;
}
.onboarding-disabled {
  pointer-events: none !important;
  opacity: 0.5;
}
.hubs-onboarding-disabled {
  pointer-events: none !important;
}
.highlight-round-pulse,
.highlight-default-pulse,
.highlight-nux-group-room {
  position: relative;
  display: inline-block;
}
.highlight-round-pulse::before,
.highlight-round-pulse::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 40px;
  height: 40px;
  z-index: -1;
  border-radius: 100%;
  opacity: 0.7;
  transform: scale(0);
  background-color: white;
  animation: highlight-pulse-animation 2s infinite;
}
.highlight-round-pulse-front::before,
.highlight-round-pulse-front::after {
  z-index: 1000;
}
.highlight-default-pulse::before,
.highlight-default-pulse::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: inherit;
  opacity: 0.7;
  transform: scale(0);
  background-color: white;
  animation: highlight-tiny-pulse-animation 2s infinite;
}
.highlight-nux-group-room::before,
.highlight-nux-group-room::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: inherit;
  opacity: 0.7;
  transform: scale(0);
  background-color: white;
  animation: highlight-nux-group-room-animation 2s infinite;
}
.highlight-round-pulse::after,
.highlight-default-pulse::after,
.highlight-nux-group-room::after {
  animation-delay: 1s;
}
@keyframes highlight-pulse-animation {
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}
@keyframes highlight-tiny-pulse-animation {
  90% {
    opacity: 0.25;
  }
  100% {
    transform: scale(1.11, 1.4);
    opacity: 0;
  }
}
@keyframes highlight-nux-group-room-animation {
  90% {
    opacity: 0.25;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
* {
  font-family: Inter, sans-serif;
  cursor: var(--current-cursor);
}
body {
  overscroll-behavior: none;
  touch-action: none;
  position: fixed;
  user-select: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: unset !important;
}
body #root {
  width: 100%;
  height: 100%;
}
body:not(.user-card) {
  min-width: 375px;
}
iframe {
  pointer-events: all;
}
svg.clip-shape-definitions {
  position: absolute;
}
.homepage-here-logo,
.get-the-mobile-app-logo {
  position: fixed;
  display: none;
}
.homepage-here-logo {
  top: 0;
  left: 40px;
  width: 190px;
  z-index: 10000;
}
.get-the-mobile-app-logo {
  top: -130px;
  right: -80px;
  width: 350px;
  z-index: 10000;
}
.welcome-bar {
  position: absolute;
  bottom: 0;
  padding-top: 20px;
  height: 75px;
  width: 100%;
  display: none;
  text-align: center;
  background: url('/images/homepage-bottom-gradient.png') no-repeat bottom;
  background-size: 100% 550px;
  transition: height 0.5s ease-in-out;
}
.welcome-bar.active {
  display: block;
  height: 150px;
}
.welcome-bar .buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 24px;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.welcome-bar .buttons.active {
  opacity: 1;
}
.signup-button {
  position: relative;
  height: 60px;
  width: 280px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  color: #6b1be3;
  font-size: 18px;
  font-weight: bolder;
  line-height: 5px;
  border: 2px solid #6b1be3;
  border-radius: 8px;
  background-color: white;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  outline: none;
  white-space: nowrap;
  cursor: pointer;
  pointer-events: all;
}
.signup-button .win-logo-icon.purple {
  display: block;
}
.signup-button .win-logo-icon.white {
  display: none;
}
.signup-button .apple-logo-icon.purple {
  display: block;
}
.signup-button .apple-logo-icon.white {
  display: none;
}
.signup-button .arrow-icon.purple {
  display: block;
}
.signup-button .arrow-icon.white {
  display: none;
}
.signup-button.hidden {
  display: none;
}
.signup-button:hover {
  color: white;
  background-color: #6b1be3;
}
.signup-button:hover .win-logo-icon.white {
  display: block;
}
.signup-button:hover .win-logo-icon.purple {
  display: none;
}
.signup-button:hover .apple-logo-icon.white {
  display: block;
}
.signup-button:hover .apple-logo-icon.purple {
  display: none;
}
.signup-button:hover .arrow-icon.white {
  display: block;
}
.signup-button:hover .arrow-icon.purple {
  display: none;
}
.signup-button:active {
  box-shadow: 0;
  transform: translate(1px, 1px);
}
.signup-button.login-button {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  border-radius: 100px;
}
.signup-button.login-button:hover {
  color: #6b1be3;
}
.signup-button.main-signup {
  position: absolute;
  left: 0;
  top: -150px;
  right: 0;
  width: 240px;
  margin: auto;
  color: white;
  border: 2px solid white;
  background-color: #6b1be3;
  transform: scale(1.3);
}
.signup-button.main-signup:hover {
  color: #6b1be3;
  background-color: white;
}
.signup-button.download-desktop-button::after,
.signup-button.get-started::after {
  content: ' ';
  bottom: -5px;
  position: absolute;
  width: 97%;
  height: 5px;
  border-radius: 0 0 50px 50px;
  background-color: #6b1be3;
}
.sidebar-menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 64px;
  height: 100%;
  z-index: 2;
  background-color: #ffffff55;
}
.leave-confirmation-button {
  margin-left: 50%;
  transform: translate(-50%, 0);
  text-transform: none;
}
.board-title-settings-button {
  text-decoration: none;
  margin: auto;
  display: flex;
  align-items: center;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-property: transform;
  transition-property: transform;
  height: 44px;
}
.board-title-settings-button:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  text-decoration: none;
}
.board-title-settings-button:hover #board-title {
  text-decoration: underline;
}
@media (max-width: 764px) {
  .board-title-settings-button {
    display: none;
  }
}
#board-title {
  font-size: 1.1em;
  padding: 0 8px;
  color: var(--primary-foreground, #eee);
  border-radius: 15px;
  vertical-align: text-bottom;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 268px;
}
#board-title.public-room-board-title {
  max-width: 228px;
  display: inline-block;
}
.board-title-margin-left {
  margin-left: 8px;
}
#camera-on-button,
#camera-off-button,
#mic-on-button,
#mic-off-button,
#lens-menu-button,
.room-settings-button {
  border-radius: 25px;
  width: 36px !important;
  height: 36px !important;
  background-size: 20px !important;
  cursor: pointer;
}
.room-settings-button svg {
  width: 20px;
}
.room-settings-button svg path[fill]:not([fill='none']),
.room-settings-button svg circle[fill]:not([fill='none']),
.room-settings-button svg g[fill]:not([fill='none']),
.room-settings-button svg rect[fill]:not([fill='none']) {
  fill: var(--primary-foreground, white);
}
.room-settings-button svg path[stroke],
.room-settings-button svg circle[stroke],
.room-settings-button svg g[stroke],
.room-settings-button svg rect[stroke] {
  stroke: var(--primary-foreground, white);
}
.inactive-button {
  background-color: #2a1942 !important;
  cursor: initial !important;
  opacity: 0.5;
}
#room-settings-button {
  width: 16px;
  height: 16px;
  margin-bottom: 3px;
}
#room-settings {
  max-width: 800px !important;
}
.permission-tooltip {
  width: 160px !important;
  text-align: center;
  font-weight: 600;
}
.quick-jump-title {
  position: absolute;
  bottom: 17px;
  line-height: 0.85em;
  color: white;
  text-overflow: ellipsis;
}
#board-link {
  width: 10em;
  overflow-x: scroll;
}
a.board-link {
  display: inline;
}
#dropdown-board-select {
  padding-right: 5px;
}
.board-options {
  display: none;
  background-image: url(/images/icons/options-vertical.png);
  filter: invert(0.5);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
  width: 30px;
  height: 30px;
}
.board-list-item {
  line-height: 2em;
}
.board-list-item:hover .board-options {
  display: inline-block;
}
#dropdown-board-list {
  max-height: 30em;
  overflow: scroll;
}
.board-background {
  position: relative;
}
.header {
  display: none;
  position: absolute;
  padding: 5px;
  z-index: 10000;
  background-color: clear;
  color: white;
}
.room-menu-container {
  position: absolute;
  bottom: 10px;
  width: calc(100% - 61px);
  margin-left: 61px;
  z-index: 10005;
  display: flex;
  justify-content: space-between;
}
.element-feed {
  position: relative;
  margin: 0;
}
.room-menu-bar-toggler {
  margin: 0 10px;
  padding: 10px;
  height: fit-content;
  display: none;
  justify-content: center;
  align-items: center;
  background-color: #12002d;
  border-radius: 50%;
}
@media (min-width: 1101px) {
  .room-menu-container .invisible-feed-element {
    margin-right: auto;
    width: 359px;
    visibility: hidden;
  }
  .room-menu-container .element-feed {
    margin-left: auto;
    width: 359px;
  }
}
@media (max-width: 1100px) {
  .element-feed {
    flex-grow: 1;
    max-width: 359px;
  }
}
@media (max-width: 1235px) and (min-width: 891px) {
  .room-menu-container {
    display: flex;
    justify-content: space-between;
  }
  .room-menu-container .invisible-feed-element {
    display: none;
  }
}
@media (max-width: 613px) {
  .room-menu-container {
    margin-left: 0;
    width: 100%;
    justify-content: space-between;
  }
  .room-menu-container .invisible-feed-element {
    position: absolute;
  }
  .room-menu-container .element-feed {
    flex-grow: 1;
  }
}
.electron-grab-area {
  -webkit-app-region: drag;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 100%;
  height: 50px;
}
#electron-toolbar {
  position: absolute;
  top: 0;
  left: 0;
  height: 40px;
  width: 100%;
  z-index: -1;
  display: none;
}
#global-menu-container {
  text-align: center;
  position: absolute;
  top: 10px;
  padding: 0 10px;
  width: 100%;
  z-index: 10011;
  pointer-events: none;
  display: none;
  justify-content: center;
  align-items: center;
}
#global-menu-container.electron-windows {
  top: 25px;
}
.quick-room-switcher-root {
  position: absolute;
  left: 10px;
  height: 46px;
  pointer-events: all;
  -webkit-app-region: none;
}
.element-menu-bar {
  z-index: 10000;
  position: absolute;
  bottom: 5px;
  left: 5px;
  display: none;
}
.element-menu-bar.hidden {
  display: none !important;
}
.element-container:hover .element-menu-bar {
  display: inline-flex;
}
#room-menu-bar,
#global-menu-bar {
  display: inline-flex;
  -webkit-app-region: none;
}
#room-menu-bar,
#global-menu-bar,
.element-menu-bar {
  background: var(--primary-background, #12002d);
  color: var(--primary-foreground, white);
  pointer-events: all;
  align-items: center;
  text-align: left;
  height: 46px;
  line-height: 46px;
  border-radius: 30px;
  padding: 0 12px;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.1);
}
@media (max-width: 990px) {
  #global-menu-container {
    justify-content: flex-start;
  }
  .quick-room-switcher-root {
    position: static;
  }
  .quick-room-switcher-root.hidden {
    display: none;
  }
  #global-menu-bar {
    padding: 0 5px 0 0;
    border-radius: 0 30px 30px 0;
    box-shadow: none;
  }
  .room-settings-button {
    padding: 0;
    border-radius: 0 25px 25px 0;
  }
  .room-settings-button:hover {
    transform: scale(1);
  }
}
#room-menu-bar {
  margin: 0 10px;
}
#elements {
  transform: translate(0, 0);
  position: absolute;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  /*
 #elements::before
  width: 1000%;
  height: 1000%;
  background-size: 1000%;
  background-repeat: repeat;
  background-image: url('https://images.unsplash.com/photo-1517263904808-5dc91e3e7044?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=MXwxNzY2NTR8MHwxfHNlYXJjaHwzfHxkaXNjb3xlbnwwfHx8&ixlib=rb-1.2.1&q=80&w=1080');
 */
}
.camera-active-left {
  border-radius: 15px 0 0 15px;
  width: 45px;
  background-size: 40px 40px;
}
.camera-active-right {
  border-radius: 0 15px 15px 0;
  width: 25px;
  background-size: 12px 12px;
}
.camera-active-left,
.camera-active-right {
  outline: none;
  height: 28px;
  border: 0;
  background-repeat: no-repeat;
  background-position: center;
}
.camera-active-left:hover,
.camera-active-right:hover {
  height: 28px;
}
.device-select {
  text-align: left;
  line-height: 36px;
  margin-bottom: 4px;
  margin-top: 4px;
}
.lenses-popover-link {
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 32px;
  color: var(--secondary-background, #6b1be3);
}
.lenses-popover-link path[fill]:not([fill='none']),
.lenses-popover-link circle[fill]:not([fill='none']),
.lenses-popover-link g[fill]:not([fill='none']),
.lenses-popover-link rect[fill]:not([fill='none']) {
  fill: var(--secondary-background, #6b1be3);
}
.lenses-popover-link path[stroke],
.lenses-popover-link circle[stroke],
.lenses-popover-link g[stroke],
.lenses-popover-link rect[stroke] {
  stroke: var(--secondary-background, #6b1be3);
}
#device-settings {
  padding: 30px;
  background: var(--primary-background, white);
}
#device-settings label {
  color: var(--primary-foreground);
  border: none;
}
#device-settings select {
  width: 100%;
}
#device-settings .camera-mic-problems-help-link-wrapper {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.85em;
}
#device-settings .camera-mic-problems-help-link-wrapper a {
  color: var(--secondary-background, #6b1be3);
}
.device-select img {
  position: absolute;
  height: 20px;
  width: 20px;
  margin-top: 8px;
}
.device-options option:checked {
  background: #333;
  padding: 20px;
  width: 100px;
  border: 3px solid #f00;
}
.camera-settings-divider {
  padding-right: 7px;
}
.menu-divider {
  height: 20px;
  margin: 0 10px;
  border-color: var(--primary-foreground, #606060);
}
.menu-button-large-icon {
  background-size: 20px 20px;
}
#color-select {
  line-height: 1em;
}
.waitlist-button-wrapper {
  display: inline-flex;
  height: 46px;
  width: 67px;
  border-radius: 23px;
  background: var(--primary-background, #12002d);
  font-size: 12px;
  align-items: stretch;
  justify-content: center;
  margin-right: 8px;
  pointer-events: all;
  padding: 5px 6px;
  box-sizing: border-box;
}
.waitlist-button-wrapper #waitlist-button {
  cursor: pointer;
  background: none;
  border-radius: 30px;
  flex-grow: 1;
  line-height: 32px;
  color: var(--primary-foreground, white);
}
.waitlist-button-wrapper #waitlist-button path[fill]:not([fill='none']),
.waitlist-button-wrapper #waitlist-button circle[fill]:not([fill='none']),
.waitlist-button-wrapper #waitlist-button g[fill]:not([fill='none']),
.waitlist-button-wrapper #waitlist-button rect[fill]:not([fill='none']) {
  fill: currentcolor;
}
.waitlist-button-wrapper #waitlist-button path[stroke],
.waitlist-button-wrapper #waitlist-button circle[stroke],
.waitlist-button-wrapper #waitlist-button g[stroke],
.waitlist-button-wrapper #waitlist-button rect[stroke] {
  stroke: currentcolor;
}
.waitlist-button-wrapper #waitlist-button:hover,
.waitlist-button-wrapper #waitlist-button.active-waitlist {
  background: var(--secondary-background, #6b1be3);
  color: var(--secondary-foreground, white);
}
.waitlist-button-wrapper span {
  margin-left: 7px;
}
#error-message {
  position: absolute;
  width: 500px;
  margin-left: -250px;
  left: 50%;
  top: 60px;
  z-index: 10000;
  display: none;
  max-height: 300px;
  color: #fff;
  text-shadow: 1px 1px #333;
  overflow-y: scroll;
}
#room-messages {
  position: absolute;
  width: 624px;
  top: 60px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 10000;
  border-radius: 10px;
  max-height: 300px;
  overflow-y: auto;
}
#room-messages::-webkit-scrollbar {
  width: 8px;
  background-color: none;
}
#room-messages::-webkit-scrollbar-thumb {
  background-color: #594d6c;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 4px;
  height: 64px;
}
@media (max-width: 625px) {
  #room-messages {
    max-width: 624px;
    width: 90%;
  }
}
#room-message-list {
  margin: auto;
  padding-top: 10px;
  width: fit-content;
}
#room-message-close {
  height: 30px;
  width: 30px;
  color: #ddd;
  background: #00000000;
  border: none;
  cursor: pointer;
  float: right;
  outline: none;
}
#room-message-close:hover {
  color: #444;
}
.room-message {
  margin: 10px;
  padding-right: 15px;
  background: #ffffff;
  box-shadow: 0px 0px 13px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  height: 72px;
  display: flex;
  align-items: center;
  margin-top: 0;
}
@media (max-width: 625px) {
  .room-message {
    height: 95px;
  }
}
.waitlist-message-icon {
  width: 84px;
  background: #6b1be3;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  border-radius: 10px 0 0 10px;
  flex-shrink: 0;
}
.waitlist-message-icon.message-input-active {
  margin-right: 5px;
}
.waitlist-message-content-grid {
  display: grid;
  grid-template-areas: 'waitlist-message-text-wrapper room-message-buttons waitlist-delete-button';
}
.waitlist-message-content-grid .waitlist-message-text-content {
  max-width: 300px;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 625px) {
  .waitlist-message-content-grid {
    grid-template-areas: 'waitlist-message-text-wrapper waitlist-delete-button' 'room-message-buttons .';
  }
}
.waitlist-message-text-wrapper {
  grid-area: waitlist-message-text-wrapper;
  align-self: center;
}
.room-message-buttons {
  grid-area: room-message-buttons;
  display: flex;
}
@media (max-width: 625px) {
  .room-message-buttons {
    justify-self: start;
  }
}
.waitlist-delete-button {
  width: 16px;
  grid-area: waitlist-delete-button;
  align-self: center;
  justify-self: center;
}
.waitlist-message-text {
  color: #101010;
  font-size: 16px;
  font-weight: 600;
  margin-right: 15px;
}
.waitlist-allow-button {
  background: #6b1be3;
  border-radius: 5px;
  border: none;
  height: 36px;
  width: 108px;
  color: #ffffff;
  font-size: 16px;
  font-weight: normal;
  cursor: pointer;
}
.waitlist-message-button,
.waitlist-delete-button {
  background: none;
  border: none;
  padding: 0;
  margin-left: 10px;
  margin-right: 10px;
  cursor: pointer;
}
.room-message-input {
  width: 100%;
  height: 34px;
  outline: none;
  padding: 0 10px;
  box-sizing: border-box;
  border: 2px solid #6b1be3;
  border-radius: 5px;
  font-size: 14px;
  color: #000;
  padding-right: 30px;
}
.room-message-buttons {
  flex-shrink: 0;
  align-self: center;
}
.room-send-message-input-wrapper {
  position: relative;
}
.msg-sent {
  color: #6b1be3;
  font-weight: 600;
  font-size: 10px;
}
.room-send-message-input-button {
  position: absolute;
  width: 22px;
  height: 22px;
  top: 6px;
  right: 6px;
  cursor: pointer;
}
.room-send-message {
  margin-right: 20px;
  flex-shrink: 0;
  text-align: center;
  flex-grow: 1;
}
.room-send-message-delete {
  margin-left: auto;
  cursor: pointer;
  font-size: 10px;
  line-height: 24px;
  color: #b8b8b8;
}
.room-send-message-title {
  display: flex;
  align-items: baseline;
}
.room-message-button {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 15px;
  line-height: 20px;
  background-color: #334488;
  color: white;
  border: none;
  outline: none;
  cursor: pointer;
}
.room-message-button:hover {
  background-color: #56a;
}
.room-send-message-text {
  text-align: left;
  font-weight: 600;
  font-size: 10px;
  color: #101010;
}
.video-card {
  /*backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px); */
  background-color: rgba(1, 1, 1, 0.4);
  color: white;
  padding: 20px;
  border-radius: 20px;
}
.imageCard .element-container img {
  position: absolute;
  max-width: none;
  max-height: none;
  width: 100%;
  height: 100%;
}
.image-embedded-video {
  width: 100%;
  height: 100%;
}
.fileCard img {
  position: absolute;
  max-width: none;
  max-height: none;
  width: 100%;
  height: 100%;
}
.subtitle {
  font-size: 1.2em;
  padding-bottom: 5px;
}
#file-upload-form {
  display: none;
}
#file-upload-status {
  position: absolute;
  justify-content: center;
  align-items: center;
  background-color: #6b1be3;
  border-style: solid;
  border-color: white;
  border-width: 2px;
  text-align: center;
  font-size: 1em;
  border-radius: 10px;
  height: 40px;
  line-height: 40px;
  color: white;
  bottom: 70px;
  min-width: 500px;
  opacity: 85%;
}
#file-upload-status img {
  height: 19px;
  margin-right: 5px;
}
#booth-countdown {
  display: none;
  position: absolute;
  height: 60px;
  color: white;
  text-shadow: 1px 1px #333333;
  bottom: 60px;
  width: 100%;
}
.booth-timer {
  position: absolute;
  border-style: dotted;
  border-color: yellow;
  border-width: 2px;
  text-align: center;
  font-size: 2em;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  left: 50%;
  margin-left: -25px;
}
.booth-message {
  text-align: center;
  width: 100%;
  top: -30px;
  position: absolute;
}
.mic-buttons,
.camera-buttons,
.screenshare-buttons,
.new-element-buttons {
  position: relative;
  display: inherit;
}
#file-upload-dropdown-form {
  margin-top: 10px;
}
#screenshare-off-button {
  z-index: 1;
}
#mic-levels {
  position: absolute;
  border-radius: 25px;
  height: 100%;
  width: 70px;
}
#lens-menu-button {
  display: none;
  margin-left: 5px;
  background-color: #f6335d;
}
#lens-menu-button path[fill]:not([fill='none']),
#lens-menu-button circle[fill]:not([fill='none']),
#lens-menu-button g[fill]:not([fill='none']),
#lens-menu-button rect[fill]:not([fill='none']) {
  fill: white;
}
#lens-menu-button path[stroke],
#lens-menu-button circle[stroke],
#lens-menu-button g[stroke],
#lens-menu-button rect[stroke] {
  stroke: white;
}
#lens-menu-button.camera-enabled {
  display: block;
}
#lens-menu-button:not(.lens-enabled) .enabled-icon {
  display: none;
}
#lens-menu-button.lens-enabled {
  background-color: #50c832;
}
#lens-menu-button.lens-enabled .disabled-icon {
  display: none;
}
.camera-on-color,
.lens-color {
  background-color: #50c832;
}
.mic-on-bg-color {
  background-color: #506419;
}
.camera-off-color {
  background-color: #f6335d;
}
.mic-buttons {
  margin-left: 5px;
}
.device-options-button {
  z-index: 2;
  border: 0;
  margin-left: 6px;
  cursor: pointer;
  background-color: transparent;
}
.device-options-button svg {
  width: 12px;
}
.device-options-button svg path[fill]:not([fill='none']),
.device-options-button svg circle[fill]:not([fill='none']),
.device-options-button svg g[fill]:not([fill='none']),
.device-options-button svg rect[fill]:not([fill='none']) {
  fill: var(--primary-foreground, white);
}
.device-options-button svg path[stroke],
.device-options-button svg circle[stroke],
.device-options-button svg g[stroke],
.device-options-button svg rect[stroke] {
  stroke: var(--primary-foreground, white);
}
textarea {
  font-family: Arial;
}
textarea.textEdit {
  width: 100%;
  height: 95%;
  resize: none;
  background-color: #333;
  color: #ddd;
  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;
  /* Firefox, other Gecko */
  box-sizing: border-box;
  /* Opera/IE 8+ */
}
.background-container {
  overflow: scroll;
  max-height: 25em;
  width: 300px;
}
.presence-icon {
  position: relative;
  text-align: center;
  clip-path: circle(50%);
  width: 36px;
  height: 36px;
  color: white;
}
.presence-icon.wayfinder-icon {
  position: absolute;
  top: 34px;
  left: 22px;
}
.more-icon {
  border: 3px solid var(--primary-background, #12002d);
  border-radius: 50%;
  background: var(--primary-foreground, white);
  box-sizing: border-box;
  min-width: 22px;
  height: 22px;
  font-family: 'Arial';
  font-style: normal;
  font-weight: 600;
  font-size: 8px;
  line-height: 7px;
  margin-left: -10px;
  z-index: 1;
  cursor: pointer;
  position: relative;
  margin-right: -3px;
  transition-duration: 0.3s;
}
.more-icon:hover {
  background-color: #bebebe;
}
.more-icon .user-count {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  flex-grow: 0;
  height: 100%;
  width: 100%;
  color: var(--primary-background, #12002d);
}
.more-icon .user-count-tooltip {
  background: var(--primary-background, white);
  position: absolute;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  border-radius: 30px;
  height: 45px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-10px) translateX(-50%);
  transition-duration: 0.3s;
  top: 33px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  box-sizing: border-box;
  font-family: 'Arial';
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
}
.more-icon .user-count-tooltip::before {
  content: '';
  width: 20px;
  height: 20px;
  position: absolute;
  top: -7px;
  z-index: -1;
  transform: translateX(-50%) rotateZ(45deg);
  left: 50%;
}
.more-icon .user-count-tooltip .user-count-wrapper {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  box-sizing: border-box;
  min-width: 30px;
  color: var(--primary-foreground, black);
}
.more-icon .user-count:hover + .user-count-tooltip {
  visibility: visible;
  opacity: 100%;
  transform: translateY(0) translateX(-50%);
}
.more-icon .user-count-icon {
  margin-right: 4px;
}
.more-icon .user-count-icon path[fill]:not([fill='none']),
.more-icon .user-count-icon circle[fill]:not([fill='none']),
.more-icon .user-count-icon g[fill]:not([fill='none']),
.more-icon .user-count-icon rect[fill]:not([fill='none']) {
  fill: var(--primary-foreground, black);
}
.more-icon .user-count-icon path[stroke],
.more-icon .user-count-icon circle[stroke],
.more-icon .user-count-icon g[stroke],
.more-icon .user-count-icon rect[stroke] {
  stroke: var(--primary-foreground, black);
}
.mute-button {
  width: 30px;
  height: 30px;
  display: none;
  background-image: url(/images/icons/mic-on.png);
  background-size: 18px 18px;
  background-repeat: no-repeat;
  background-position: center;
  left: 50%;
  bottom: 0;
  position: absolute;
  border-radius: 50%;
  margin-left: -15px;
}
.mic-on {
  background-image: url(/images/icons/mic-on.png);
  background-color: rgba(255, 255, 255, 0.5);
}
.mic-off {
  background-image: url(/images/icons/mic-off.png);
  background-color: rgba(255, 64, 0, 0.5);
}
.mute-button:focus {
  outline: none;
}
#trashcan {
  background-color: rgba(255, 255, 255, 0.4);
  background-size: 32px 32px;
  clip-path: circle(40%);
  -webkit-clip-path: circle(40%);
  color: white;
  position: fixed;
  bottom: 50px;
  height: 100px;
  width: 100px;
  left: 50%;
  margin-left: -50px;
  background-image: url(/images/icons/trashcan.png);
  background-repeat: no-repeat;
  background-position: center;
  z-index: 9999;
  display: none;
}
#main {
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: #0f022b;
}
.tile-background {
  background-repeat: repeat;
}
.no-tile-background {
  background-repeat: no-repeat;
}
#pen-canvas {
  z-index: 9999;
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: relative;
}
.color-indicator {
  border-radius: 50%;
  border: 2px solid var(--primary-foreground, white);
  background-color: #bd14ff;
  width: 15px;
  height: 15px;
  position: relative;
  margin: 0 auto;
}
#current-color {
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  mask-image: url(/images/icons/pen-white.png);
  mask-size: 24px 24px;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url(/images/icons/pen-white.png);
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 24px 24px;
}
.pen-down {
  cursor: url(/images/icons/pen-cursor.svg) 11 27, crosshair;
}
.fadeout {
  opacity: 0;
  transition: opacity 500ms linear;
}
.user-cursor {
  position: absolute;
  z-index: 9997;
  pointer-events: none;
  margin-top: -8px;
  margin-left: -9px;
}
.user-cursor .user-cursor-name {
  display: block;
  position: absolute;
  top: 20px;
  left: 20px;
  color: #121212;
  font-family: 600;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  background: #ffffff;
  box-shadow: 0px 0px 8px rgb(0 0 0%);
  border-radius: 4px;
  height: 16px;
  line-height: 16px;
  padding: 0 4px;
  white-space: nowrap;
}
.text-container ul ul {
  margin-top: 2px;
  margin-bottom: 2px;
}
/* Spawn points */
.spawn-camera {
  border: 2px yellow dashed;
  border-radius: 50%;
  width: 90%;
  height: 90%;
  margin: 5%;
}
.spawn-media {
  border: 2px yellow dashed;
  border-radius: 10px;
  width: 90%;
  height: 90%;
  margin: 5%;
}
.firepad-toolbar {
  white-space: nowrap;
}
.locked-toolbar-button-tooltip {
  display: flex;
}
.locked-toolbar-button-tooltip img {
  margin-right: 5px;
}
.room-error {
  padding: 10px 0;
}
#webrtc-stats-box {
  display: none;
  border-radius: 5px;
  padding: 5px;
  position: absolute;
  top: 190px;
  right: 5px;
  width: 300px;
  height: 450px;
  overflow: scroll;
  background-color: rgba(255, 255, 255, 0.9);
  color: black;
  z-index: 10000;
}
#webrtc-stats-box .webrtc-stat {
  padding: 10px 5px;
}
#webrtc-stats-box canvas {
  width: 300px;
  height: 200px;
}
.uk-button {
  text-transform: unset;
}
.uk-tooltip {
  z-index: 9999999 !important;
  background-color: #12002d;
  padding: 10px 16px;
  border-radius: 6px;
  opacity: 0.95;
  word-wrap: break-word;
}
#room-kit-select {
  height: 550px !important;
  width: 700px !important;
  left: -90px !important;
}
#render-template-select {
  position: absolute;
  z-index: 1;
}
#render-item-select-underlay {
  display: none;
  height: 100%;
  width: 100%;
  background: #000000;
  position: absolute;
}
#render-template-select {
  position: absolute;
  z-index: 1;
}
#render-template-select-underlay {
  display: none;
  height: 100%;
  width: 100%;
  background: #000000;
  position: absolute;
}
#template-screen.hidden {
  display: none;
}
.select-font-size-button {
  background: var(--primary-background, #eaeaea);
  color: var(--primary-foreground, black);
}
#board-title-public-icon {
  display: none;
  height: 40px;
  width: auto;
}
.error-field {
  background-color: rgba(255, 0, 0, 0.15);
}
#render-room-kit-select {
  z-index: 10006;
}
#dm-window {
  width: 280px;
  height: 400px;
  position: absolute;
  left: 50px;
  z-index: 2;
  pointer-events: none;
}
#sidebar-root {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10010;
  height: 100vh;
  padding: 10px;
}
#tos-popup {
  position: absolute;
  z-index: 99999;
}


/*# sourceMappingURL=main.1de33ae0d1fa30330d8e.css.map*/