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

/* COLORS - PRIMARY
-----------------------------*/
/* PAGE / BACKGROUND
-----------------------------*/
/* LINES / BORDERS
-----------------------------*/
/* TYPE 
-----------------------------*/
/* BUTTON 
-----------------------------*/
/* FORMS
-----------------------------*/
/* TABLE
-----------------------------*/
/* GRADIENTS
-----------------------------*/
/**
 *
 * =======================================================================
	 Z-Index Layers
 * =======================================================================
 */
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
* {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  min-height: 100vh;
  width: 100%;
  font-family: "gilroy", "Helvetica", sans-serif;
  font-size: 62.5%;
  font-weight: 400;
  line-height: 1.42857143;
  -webkit-font-smoothing: antialiased;
  color: #fff;
}
html.noscroll {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  overflow-y: scroll !important;
  z-index: 10;
}

body {
  min-height: 100vh;
  width: 100%;
  padding: 0;
  margin: 0;
  -ms-hyphens: auto;
  hyphens: auto;
  word-wrap: break-word;
  color: #fff;
  font-size: 1.4rem;
}
body.lock-scroll {
  overflow: hidden;
}

*:focus {
  outline: none;
}

a {
  color: #00bFFF;
  cursor: pointer;
  background: transparent;
  text-decoration: none;
  outline: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
a:hover, a:active {
  outline: 0;
}
a:hover {
  color: #fd77d2;
}
a.disabled {
  opacity: 0.3;
}
a.disabled:hover {
  color: #00bFFF;
}

label {
  color: #00bFFF;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "gilroy", "Helvetica", sans-serif;
  color: #fff;
  font-weight: 400;
  line-height: 1.1;
  margin: 0px 0px 2.1rem;
  letter-spacing: 0px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility; /*  voodoo to enable ligatures and kerning | https://developer.mozilla.org/en-US/docs/CSS/text-rendering */
}

h1,
h2,
h3 {
  letter-spacing: 0px;
  font-weight: 600;
}

h1 {
  font-size: 2.4rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.6rem;
}

h4 {
  font-size: 1.4rem;
}

h5 {
  font-size: 1.2rem;
}

h6 {
  font-size: 1rem;
}

h5,
h6 {
  font-weight: 300;
}

p {
  margin: 0 0 1.5em; /* bottom margin for paragraphs */
  -ms-hyphens: auto;
  hyphens: auto;
  line-height: 1.8rem;
  font-weight: 300;
}

::-moz-selection {
  background-color: #00bFFF !important;
  color: #fff !important; /* WebKit/Blink Browsers */
  text-shadow: none;
}

::selection {
  background-color: #00bFFF !important;
  color: #fff !important; /* WebKit/Blink Browsers */
  text-shadow: none;
}

::-moz-selection {
  background-color: #00bFFF !important;
  color: #fff !important; /* Gecko Browsers */
  text-shadow: none;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between images, videos, audio and canvas and the bottom of
 * their containers: h5bp.com/i/440
 */
audio,
canvas,
img,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fadeInAndOut {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  99% {
    opacity: 0;
  }
  100% {
    display: none;
    visibility: none;
  }
}
@keyframes fadeInAndOut {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  99% {
    opacity: 0;
  }
  100% {
    display: none;
    visibility: none;
  }
}
@-webkit-keyframes fadeInUnhide {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes fadeInUnhide {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@-webkit-keyframes fadeOutHide {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes fadeOutHide {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
@-webkit-keyframes scaleIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes scaleIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes slideDown {
  0% {
    top: -20px;
  }
  100% {
    top: 0;
  }
}
@keyframes slideDown {
  0% {
    top: -20px;
  }
  100% {
    top: 0;
  }
}
@-webkit-keyframes slideUp {
  0% {
    bottom: -20px;
  }
  100% {
    bottom: 0;
  }
}
@keyframes slideUp {
  0% {
    bottom: -20px;
  }
  100% {
    bottom: 0;
  }
}
@-webkit-keyframes slideLeft {
  0% {
    left: -20px;
  }
  100% {
    bottom: 0;
  }
}
@keyframes slideLeft {
  0% {
    left: -20px;
  }
  100% {
    bottom: 0;
  }
}
@-webkit-keyframes slideRight {
  0% {
    right: -20px;
  }
  100% {
    bottom: 0;
  }
}
@keyframes slideRight {
  0% {
    right: -20px;
  }
  100% {
    bottom: 0;
  }
}
@-webkit-keyframes expand {
  0% {
    height: 0px;
  }
  100% {
    height: 100%;
  }
}
@keyframes expand {
  0% {
    height: 0px;
  }
  100% {
    height: 100%;
  }
}
@-webkit-keyframes flash {
  0% {
    background: rgb(255, 255, 255);
  }
  100% {
    background: rgba(255, 255, 255, 0);
  }
}
@keyframes flash {
  0% {
    background: rgb(255, 255, 255);
  }
  100% {
    background: rgba(255, 255, 255, 0);
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes moveUp {
  0% {
    -webkit-transform: translate(0%, 100%);
    transform: translate(0%, 100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
    opacity: 1;
  }
}
@keyframes moveUp {
  0% {
    -webkit-transform: translate(0%, 100%);
    transform: translate(0%, 100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
    opacity: 1;
  }
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes pulse {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0.25;
  }
}
@keyframes pulse {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0.25;
  }
}
@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}
@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}
.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

.rotate {
  -webkit-animation-name: rotate;
  animation-name: rotate;
}

@font-face {
  font-family: "open-iconic";
  src: url("../assets/fonts/open-iconic/open-iconic.eot");
  src: url("../assets/fonts/open-iconic/open-iconic.eot#iefix") format("embedded-opentype"), url("../assets/fonts/open-iconic/open-iconic.woff") format("woff"), url("../assets/fonts/open-iconic/open-iconic.ttf") format("truetype"), url("../assets/fonts/open-iconic/open-iconic.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  @font-face {
    font-family: "open-iconic";
    src: url("../assets/fonts/open-iconic/open-iconic.svg#rnicons") format("svg");
  }
}
@font-face {
  font-family: gilroy;
  src: url("../assets/fonts/gilroy/Gilroy-Thin.woff") format("woff");
  src: url("../assets/fonts/gilroy/Gilroy-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: gilroy;
  src: url("../assets/fonts/gilroy/Gilroy-UltraLight.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: gilroy;
  src: url("../assets/fonts/gilroy/Gilroy-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: gilroy;
  src: url("../assets/fonts/gilroy/Gilroy-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: gilroy;
  src: url("../assets/fonts/gilroy/Gilroy-Medium.woff") format("woff");
  src: url("../assets/fonts/gilroy/Gilroy-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: gilroy;
  src: url("../assets/fonts/gilroy/Gilroy-Semibold.woff") format("woff");
  src: url("../assets/fonts/gilroy/Gilroy-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: gilroy;
  src: url("../assets/fonts/gilroy/Gilroy-Bold.woff") format("woff");
  src: url("../assets/fonts/gilroy/Gilroy-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: gilroy;
  src: url("../assets/fonts/gilroy/Gilroy-Extrabold.woff") format("woff");
  src: url("../assets/fonts/gilroy/Gilroy-Extrabold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: gilroy;
  src: url("../assets/fonts/gilroy/Gilroy-Black.woff") format("woff");
  src: url("../assets/fonts/gilroy/Gilroy-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: gilroy;
  src: url("../assets/fonts/gilroy/Gilroy-Heavy.woff") format("woff");
  src: url("../assets/fonts/gilroy/Gilroy-Heavy.ttf") format("truetype");
  font-weight: 1000;
  font-style: normal;
}
@font-face {
  font-family: "open-sans";
  src: url("../assets/fonts/open-sans/opensans-light-webfont.eot");
  src: url("../assets/fonts/open-sans/opensans-light-webfont.eot?#iefix") format("embedded-opentype"), url("../assets/fonts/open-sans/opensans-light-webfont.woff2") format("woff2"), url("../assets/fonts/open-sans/opensans-light-webfont.woff") format("woff"), url("../assets/fonts/open-sans/opensans-light-webfont.ttf") format("truetype"), url("../assets/fonts/open-sans/opensans-light-webfont.svg#open-sans") format("svg");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "open-sans";
  src: url("../assets/fonts/open-sans/opensans-regular-webfont.eot");
  src: url("../assets/fonts/open-sans/opensans-regular-webfont.eot?#iefix") format("embedded-opentype"), url("../assets/fonts/open-sans/opensans-regular-webfont.woff2") format("woff2"), url("../assets/fonts/open-sans/opensans-regular-webfont.woff") format("woff"), url("../assets/fonts/open-sans/opensans-regular-webfont.ttf") format("truetype"), url("../assets/fonts/open-sans/opensans-regular-webfont.svg#open-sans") format("svg");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "open-sans";
  src: url("../assets/fonts/open-sans/opensans-italic-webfont.eot");
  src: url("../assets/fonts/open-sans/opensans-italic-webfont.eot?#iefix") format("embedded-opentype"), url("../assets/fonts/open-sans/opensans-italic-webfont.woff2") format("woff2"), url("../assets/fonts/open-sans/opensans-italic-webfont.woff") format("woff"), url("../assets/fonts/open-sans/opensans-italic-webfont.ttf") format("truetype"), url("../assets/fonts/open-sans/opensans-italic-webfont.svg#open-sans") format("svg");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "open-sans";
  src: url("../assets/fonts/open-sans/opensans-lightitalic-webfont.eot");
  src: url("../assets/fonts/open-sans/opensans-lightitalic-webfont.eot?#iefix") format("embedded-opentype"), url("../assets/fonts/open-sans/opensans-lightitalic-webfont.woff2") format("woff2"), url("../assets/fonts/open-sans/opensans-lightitalic-webfont.woff") format("woff"), url("../assets/fonts/open-sans/opensans-lightitalic-webfont.ttf") format("truetype"), url("../assets/fonts/open-sans/opensans-lightitalic-webfont.svg#open-sans") format("svg");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "open-sans";
  src: url("../assets/fonts/open-sans/opensans-semibold-webfont.eot");
  src: url("../assets/fonts/open-sans/opensans-semibold-webfont.eot?#iefix") format("embedded-opentype"), url("../assets/fonts/open-sans/opensans-semibold-webfont.woff2") format("woff2"), url("../assets/fonts/open-sans/opensans-semibold-webfont.woff") format("woff"), url("../assets/fonts/open-sans/opensans-semibold-webfont.ttf") format("truetype"), url("../assets/fonts/open-sans/opensans-semibold-webfont.svg#open-sans") format("svg");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "open-sans";
  src: url("../assets/fonts/open-sans/opensans-bold-webfont.eot");
  src: url("../assets/fonts/open-sans/opensans-bold-webfont.eot?#iefix") format("embedded-opentype"), url("../assets/fonts/open-sans/opensans-bold-webfont.woff2") format("woff2"), url("../assets/fonts/open-sans/opensans-bold-webfont.woff") format("woff"), url("../assets/fonts/open-sans/opensans-bold-webfont.ttf") format("truetype"), url("../assets/fonts/open-sans/opensans-bold-webfont.svg#open-sans") format("svg");
  font-weight: 700;
  font-style: normal;
}
[data-icon]:before {
  content: attr(data-icon);
}

[data-icon]:before,
.icon-account-login:before,
.icon-account-logout:before,
.icon-action-redo:before,
.icon-action-undo:before,
.icon-align-center:before,
.icon-align-left:before,
.icon-align-right:before,
.icon-aperture:before,
.icon-arrow-bottom:before,
.icon-arrow-circle-bottom:before,
.icon-arrow-circle-left:before,
.icon-arrow-circle-right:before,
.icon-arrow-circle-top:before,
.icon-arrow-left:before,
.icon-arrow-right:before,
.icon-arrow-thick-bottom:before,
.icon-arrow-thick-left:before,
.icon-arrow-thick-right:before,
.icon-arrow-thick-top:before,
.icon-arrow-top:before,
.icon-audio:before,
.icon-audio-spectrum:before,
.icon-badge:before,
.icon-ban:before,
.icon-bar-chart:before,
.icon-basket:before,
.icon-battery-empty:before,
.icon-battery-full:before,
.icon-beaker:before,
.icon-bell:before,
.icon-bluetooth:before,
.icon-bold:before,
.icon-bolt:before,
.icon-book:before,
.icon-bookmark:before,
.icon-box:before,
.icon-briefcase:before,
.icon-british-pound:before,
.icon-browser:before,
.icon-brush:before,
.icon-bug:before,
.icon-bullhorn:before,
.icon-calculator:before,
.icon-calendar:before,
.icon-camera-slr:before,
.icon-caret-bottom:before,
.icon-caret-left:before,
.icon-caret-right:before,
.icon-caret-top:before,
.icon-cart:before,
.icon-chat:before,
.icon-check:before,
.icon-chevron-bottom:before,
.icon-chevron-left:before,
.icon-chevron-right:before,
.icon-chevron-top:before,
.icon-circle-check:before,
.icon-circle-x:before,
.icon-clipboard:before,
.icon-clock:before,
.icon-cloud:before,
.icon-cloud-download:before,
.icon-cloud-upload:before,
.icon-cloudy:before,
.icon-code:before,
.icon-cog:before,
.icon-collapse-down:before,
.icon-collapse-left:before,
.icon-collapse-right:before,
.icon-collapse-up:before,
.icon-command:before,
.icon-comment-square:before,
.icon-compass:before,
.icon-contrast:before,
.icon-copywriting:before,
.icon-credit-card:before,
.icon-crop:before,
.icon-dashboard:before,
.icon-data-transfer-download:before,
.icon-data-transfer-upload:before,
.icon-delete:before,
.icon-dial:before,
.icon-document:before,
.icon-dollar:before,
.icon-double-quote-sans-left:before,
.icon-double-quote-sans-right:before,
.icon-double-quote-serif-left:before,
.icon-double-quote-serif-right:before,
.icon-droplet:before,
.icon-eject:before,
.icon-elevator:before,
.icon-ellipses:before,
.icon-envelope-closed:before,
.icon-envelope-open:before,
.icon-euro:before,
.icon-excerpt:before,
.icon-expand-down:before,
.icon-expand-left:before,
.icon-expand-right:before,
.icon-expand-up:before,
.icon-external-link:before,
.icon-eye:before,
.icon-eyedropper:before,
.icon-file:before,
.icon-fire:before,
.icon-flag:before,
.icon-flash:before,
.icon-folder:before,
.icon-fork:before,
.icon-fullscreen-enter:before,
.icon-fullscreen-exit:before,
.icon-globe:before,
.icon-graph:before,
.icon-grid-four-up:before,
.icon-grid-three-up:before,
.icon-grid-two-up:before,
.icon-hard-drive:before,
.icon-header:before,
.icon-headphones:before,
.icon-heart:before,
.icon-home:before,
.icon-image:before,
.icon-inbox:before,
.icon-infinity:before,
.icon-info:before,
.icon-italic:before,
.icon-justify-center:before,
.icon-justify-left:before,
.icon-justify-right:before,
.icon-key:before,
.icon-laptop:before,
.icon-layers:before,
.icon-lightbulb:before,
.icon-link-broken:before,
.icon-link-intact:before,
.icon-list:before,
.icon-list-rich:before,
.icon-location:before,
.icon-lock-locked:before,
.icon-lock-unlocked:before,
.icon-loop:before,
.icon-loop-circular:before,
.icon-loop-square:before,
.icon-magnifying-glass:before,
.icon-map:before,
.icon-map-marker:before,
.icon-media-pause:before,
.icon-media-play:before,
.icon-media-record:before,
.icon-media-skip-backward:before,
.icon-media-skip-forward:before,
.icon-media-step-backward:before,
.icon-media-step-forward:before,
.icon-media-stop:before,
.icon-medical-cross:before,
.icon-menu:before,
.icon-microphone:before,
.icon-minus:before,
.icon-monitor:before,
.icon-moon:before,
.icon-move:before,
.icon-musical-note:before,
.icon-paperclip:before,
.icon-pencil:before,
.icon-people:before,
.icon-person:before,
.icon-phone:before,
.icon-pie-chart:before,
.icon-pin:before,
.icon-play-circle:before,
.icon-plus:before,
.icon-power-standby:before,
.icon-print:before,
.icon-project:before,
.icon-pulse:before,
.icon-puzzle-piece:before,
.icon-question-mark:before,
.icon-rain:before,
.icon-random:before,
.icon-reload:before,
.icon-resize-both:before,
.icon-resize-height:before,
.icon-resize-width:before,
.icon-rss:before,
.icon-rss-alt:before,
.icon-script:before,
.icon-share:before,
.icon-share-boxed:before,
.icon-shield:before,
.icon-signal:before,
.icon-signpost:before,
.icon-sort-ascending:before,
.icon-sort-descending:before,
.icon-spreadsheet:before,
.icon-star:before,
.icon-sun:before,
.icon-tablet:before,
.icon-tag:before,
.icon-tags:before,
.icon-target:before,
.icon-task:before,
.icon-terminal:before,
.icon-text:before,
.icon-thumb-down:before,
.icon-thumb-up:before,
.icon-timer:before,
.icon-transfer:before,
.icon-trash:before,
.icon-underline:before,
.icon-vertical-align-bottom:before,
.icon-vertical-align-center:before,
.icon-vertical-align-top:before,
.icon-video:before,
.icon-volume-high:before,
.icon-volume-low:before,
.icon-volume-off:before,
.icon-warning:before,
.icon-wifi:before,
.icon-wrench:before,
.icon-x:before,
.icon-yen:before,
.icon-zoom-in:before,
.icon-zoom-out:before {
  display: inline-block;
  font-family: "open-iconic";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-decoration: inherit;
  text-rendering: optimizeLegibility;
  text-transform: none;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

.icon-account-login:before {
  content: "\f100";
}

.icon-account-logout:before {
  content: "\f101";
}

.icon-action-redo:before {
  content: "\f102";
}

.icon-action-undo:before {
  content: "\f103";
}

.icon-align-center:before {
  content: "\f104";
}

.icon-align-left:before {
  content: "\f105";
}

.icon-align-right:before {
  content: "\f106";
}

.icon-aperture:before {
  content: "\f107";
}

.icon-arrow-bottom:before {
  content: "\f108";
}

.icon-arrow-circle-bottom:before {
  content: "\f109";
}

.icon-arrow-circle-left:before {
  content: "\f10a";
}

.icon-arrow-circle-right:before {
  content: "\f10b";
}

.icon-arrow-circle-top:before {
  content: "\f10c";
}

.icon-arrow-left:before {
  content: "\f10d";
}

.icon-arrow-right:before {
  content: "\f10e";
}

.icon-arrow-thick-bottom:before {
  content: "\f10f";
}

.icon-arrow-thick-left:before {
  content: "\f110";
}

.icon-arrow-thick-right:before {
  content: "\f111";
}

.icon-arrow-thick-top:before {
  content: "\f112";
}

.icon-arrow-top:before {
  content: "\f113";
}

.icon-audio:before {
  content: "\f114";
}

.icon-audio-spectrum:before {
  content: "\f115";
}

.icon-badge:before {
  content: "\f116";
}

.icon-ban:before {
  content: "\f117";
}

.icon-bar-chart:before {
  content: "\f118";
}

.icon-basket:before {
  content: "\f119";
}

.icon-battery-empty:before {
  content: "\f11a";
}

.icon-battery-full:before {
  content: "\f11b";
}

.icon-beaker:before {
  content: "\f11c";
}

.icon-bell:before {
  content: "\f11d";
}

.icon-bluetooth:before {
  content: "\f11e";
}

.icon-bold:before {
  content: "\f11f";
}

.icon-bolt:before {
  content: "\f120";
}

.icon-book:before {
  content: "\f121";
}

.icon-bookmark:before {
  content: "\f122";
}

.icon-box:before {
  content: "\f123";
}

.icon-briefcase:before {
  content: "\f124";
}

.icon-british-pound:before {
  content: "\f125";
}

.icon-browser:before {
  content: "\f126";
}

.icon-brush:before {
  content: "\f127";
}

.icon-bug:before {
  content: "\f128";
}

.icon-bullhorn:before {
  content: "\f129";
}

.icon-calculator:before {
  content: "\f12a";
}

.icon-calendar:before {
  content: "\f12b";
}

.icon-camera-slr:before {
  content: "\f12c";
}

.icon-caret-bottom:before {
  content: "\f12d";
}

.icon-caret-left:before {
  content: "\f12e";
}

.icon-caret-right:before {
  content: "\f12f";
}

.icon-caret-top:before {
  content: "\f130";
}

.icon-cart:before {
  content: "\f131";
}

.icon-chat:before {
  content: "\f132";
}

.icon-check:before {
  content: "\f133";
}

.icon-chevron-bottom:before {
  content: "\f134";
}

.icon-chevron-left:before {
  content: "\f135";
}

.icon-chevron-right:before {
  content: "\f136";
}

.icon-chevron-top:before {
  content: "\f137";
}

.icon-circle-check:before {
  content: "\f138";
}

.icon-circle-x:before {
  content: "\f139";
}

.icon-clipboard:before {
  content: "\f13a";
}

.icon-clock:before {
  content: "\f13b";
}

.icon-cloud:before {
  content: "\f13c";
}

.icon-cloud-download:before {
  content: "\f13d";
}

.icon-cloud-upload:before {
  content: "\f13e";
}

.icon-cloudy:before {
  content: "\f13f";
}

.icon-code:before {
  content: "\f140";
}

.icon-cog:before {
  content: "\f141";
}

.icon-collapse-down:before {
  content: "\f142";
}

.icon-collapse-left:before {
  content: "\f143";
}

.icon-collapse-right:before {
  content: "\f144";
}

.icon-collapse-up:before {
  content: "\f145";
}

.icon-command:before {
  content: "\f146";
}

.icon-comment-square:before {
  content: "\f147";
}

.icon-compass:before {
  content: "\f148";
}

.icon-contrast:before {
  content: "\f149";
}

.icon-copywriting:before {
  content: "\f14a";
}

.icon-credit-card:before {
  content: "\f14b";
}

.icon-crop:before {
  content: "\f14c";
}

.icon-dashboard:before {
  content: "\f14d";
}

.icon-data-transfer-download:before {
  content: "\f14e";
}

.icon-data-transfer-upload:before {
  content: "\f14f";
}

.icon-delete:before {
  content: "\f150";
}

.icon-dial:before {
  content: "\f151";
}

.icon-document:before {
  content: "\f152";
}

.icon-dollar:before {
  content: "\f153";
}

.icon-double-quote-sans-left:before {
  content: "\f154";
}

.icon-double-quote-sans-right:before {
  content: "\f155";
}

.icon-double-quote-serif-left:before {
  content: "\f156";
}

.icon-double-quote-serif-right:before {
  content: "\f157";
}

.icon-droplet:before {
  content: "\f158";
}

.icon-eject:before {
  content: "\f159";
}

.icon-elevator:before {
  content: "\f15a";
}

.icon-ellipses:before {
  content: "\f15b";
}

.icon-envelope-closed:before {
  content: "\f15c";
}

.icon-envelope-open:before {
  content: "\f15d";
}

.icon-euro:before {
  content: "\f15e";
}

.icon-excerpt:before {
  content: "\f15f";
}

.icon-expand-down:before {
  content: "\f160";
}

.icon-expand-left:before {
  content: "\f161";
}

.icon-expand-right:before {
  content: "\f162";
}

.icon-expand-up:before {
  content: "\f163";
}

.icon-external-link:before {
  content: "\f164";
}

.icon-eye:before {
  content: "\f165";
}

.icon-eyedropper:before {
  content: "\f166";
}

.icon-file:before {
  content: "\f167";
}

.icon-fire:before {
  content: "\f168";
}

.icon-flag:before {
  content: "\f169";
}

.icon-flash:before {
  content: "\f16a";
}

.icon-folder:before {
  content: "\f16b";
}

.icon-fork:before {
  content: "\f16c";
}

.icon-fullscreen-enter:before {
  content: "\f16d";
}

.icon-fullscreen-exit:before {
  content: "\f16e";
}

.icon-globe:before {
  content: "\f16f";
}

.icon-graph:before {
  content: "\f170";
}

.icon-grid-four-up:before {
  content: "\f171";
}

.icon-grid-three-up:before {
  content: "\f172";
}

.icon-grid-two-up:before {
  content: "\f173";
}

.icon-hard-drive:before {
  content: "\f174";
}

.icon-header:before {
  content: "\f175";
}

.icon-headphones:before {
  content: "\f176";
}

.icon-heart:before {
  content: "\f177";
}

.icon-home:before {
  content: "\f178";
}

.icon-image:before {
  content: "\f179";
}

.icon-inbox:before {
  content: "\f17a";
}

.icon-infinity:before {
  content: "\f17b";
}

.icon-info:before {
  content: "\f17c";
}

.icon-italic:before {
  content: "\f17d";
}

.icon-justify-center:before {
  content: "\f17e";
}

.icon-justify-left:before {
  content: "\f17f";
}

.icon-justify-right:before {
  content: "\f180";
}

.icon-key:before {
  content: "\f181";
}

.icon-laptop:before {
  content: "\f182";
}

.icon-layers:before {
  content: "\f183";
}

.icon-lightbulb:before {
  content: "\f184";
}

.icon-link-broken:before {
  content: "\f185";
}

.icon-link-intact:before {
  content: "\f186";
}

.icon-list:before {
  content: "\f187";
}

.icon-list-rich:before {
  content: "\f188";
}

.icon-location:before {
  content: "\f189";
}

.icon-lock-locked:before {
  content: "\f18a";
}

.icon-lock-unlocked:before {
  content: "\f18b";
}

.icon-loop:before {
  content: "\f18c";
}

.icon-loop-circular:before {
  content: "\f18d";
}

.icon-loop-square:before {
  content: "\f18e";
}

.icon-magnifying-glass:before {
  content: "\f18f";
}

.icon-map:before {
  content: "\f190";
}

.icon-map-marker:before {
  content: "\f191";
}

.icon-media-pause:before {
  content: "\f192";
}

.icon-media-play:before {
  content: "\f193";
}

.icon-media-record:before {
  content: "\f194";
}

.icon-media-skip-backward:before {
  content: "\f195";
}

.icon-media-skip-forward:before {
  content: "\f196";
}

.icon-media-step-backward:before {
  content: "\f197";
}

.icon-media-step-forward:before {
  content: "\f198";
}

.icon-media-stop:before {
  content: "\f199";
}

.icon-medical-cross:before {
  content: "\f19a";
}

.icon-menu:before {
  content: "\f19b";
}

.icon-microphone:before {
  content: "\f19c";
}

.icon-minus:before {
  content: "\f19d";
}

.icon-monitor:before {
  content: "\f19e";
}

.icon-moon:before {
  content: "\f19f";
}

.icon-move:before {
  content: "\f1a0";
}

.icon-musical-note:before {
  content: "\f1a1";
}

.icon-paperclip:before {
  content: "\f1a2";
}

.icon-pencil:before {
  content: "\f1a3";
}

.icon-people:before {
  content: "\f1a4";
}

.icon-person:before {
  content: "\f1a5";
}

.icon-phone:before {
  content: "\f1a6";
}

.icon-pie-chart:before {
  content: "\f1a7";
}

.icon-pin:before {
  content: "\f1a8";
}

.icon-play-circle:before {
  content: "\f1a9";
}

.icon-plus:before {
  content: "\f1aa";
}

.icon-power-standby:before {
  content: "\f1ab";
}

.icon-print:before {
  content: "\f1ac";
}

.icon-project:before {
  content: "\f1ad";
}

.icon-pulse:before {
  content: "\f1ae";
}

.icon-puzzle-piece:before {
  content: "\f1af";
}

.icon-question-mark:before {
  content: "\f1b0";
}

.icon-rain:before {
  content: "\f1b1";
}

.icon-random:before {
  content: "\f1b2";
}

.icon-reload:before {
  content: "\f1b3";
}

.icon-resize-both:before {
  content: "\f1b4";
}

.icon-resize-height:before {
  content: "\f1b5";
}

.icon-resize-width:before {
  content: "\f1b6";
}

.icon-rss:before {
  content: "\f1b7";
}

.icon-rss-alt:before {
  content: "\f1b8";
}

.icon-script:before {
  content: "\f1b9";
}

.icon-share:before {
  content: "\f1ba";
}

.icon-share-boxed:before {
  content: "\f1bb";
}

.icon-shield:before {
  content: "\f1bc";
}

.icon-signal:before {
  content: "\f1bd";
}

.icon-signpost:before {
  content: "\f1be";
}

.icon-sort-ascending:before {
  content: "\f1bf";
}

.icon-sort-descending:before {
  content: "\f1c0";
}

.icon-spreadsheet:before {
  content: "\f1c1";
}

.icon-star:before {
  content: "\f1c2";
}

.icon-sun:before {
  content: "\f1c3";
}

.icon-tablet:before {
  content: "\f1c4";
}

.icon-tag:before {
  content: "\f1c5";
}

.icon-tags:before {
  content: "\f1c6";
}

.icon-target:before {
  content: "\f1c7";
}

.icon-task:before {
  content: "\f1c8";
}

.icon-terminal:before {
  content: "\f1c9";
}

.icon-text:before {
  content: "\f1ca";
}

.icon-thumb-down:before {
  content: "\f1cb";
}

.icon-thumb-up:before {
  content: "\f1cc";
}

.icon-timer:before {
  content: "\f1cd";
}

.icon-transfer:before {
  content: "\f1ce";
}

.icon-trash:before {
  content: "\f1cf";
}

.icon-underline:before {
  content: "\f1d0";
}

.icon-vertical-align-bottom:before {
  content: "\f1d1";
}

.icon-vertical-align-center:before {
  content: "\f1d2";
}

.icon-vertical-align-top:before {
  content: "\f1d3";
}

.icon-video:before {
  content: "\f1d4";
}

.icon-volume-high:before {
  content: "\f1d5";
}

.icon-volume-low:before {
  content: "\f1d6";
}

.icon-volume-off:before {
  content: "\f1d7";
}

.icon-warning:before {
  content: "\f1d8";
}

.icon-wifi:before {
  content: "\f1d9";
}

.icon-wrench:before {
  content: "\f1da";
}

.icon-x:before {
  content: "\f1db";
}

.icon-yen:before {
  content: "\f1dc";
}

.icon-zoom-in:before {
  content: "\f1dd";
}

.icon-zoom-out:before {
  content: "\f1de";
}

table {
  border-collapse: collapse;
  width: 100%;
}
table .clickable-row tr td {
  cursor: pointer;
}
table thead th,
table tbody td,
table tbody th {
  text-align: left;
  padding: 1rem 2rem;
  font-size: 1.3rem;
}
table thead th {
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  padding-bottom: 0.6rem;
}
table tbody td,
table tbody th {
  color: #fff;
  border-top: 1px solid rgb(23.9675, 37.9221, 55.6825);
}
table tbody td.sub-table {
  padding: 0;
}
table tbody td.hash {
  white-space: nowrap;
}
table tbody td.overflow {
  white-space: nowrap;
  overflow-x: hidden;
  text-overflow: ellipsis;
}
table th.left,
table td.left {
  text-align: left;
}
table th.center,
table td.center {
  text-align: center;
}
table th.right,
table td.right {
  text-align: right;
}

.g-marketing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 70%;
  text-align: center;
}
.g-marketing h1 {
  font-weight: 700;
  margin: 0 0 1.4rem;
}
.g-marketing h2 {
  font-weight: 400;
  color: #768aa8;
}
.g-marketing p {
  text-align: center;
  font-size: 1.6rem;
  line-height: 2.4rem;
  max-width: 55rem;
  color: #768aa8;
}
.g-marketing .btn {
  margin-top: 3rem;
}

/* BUTTONS
-----------------------------*/
button,
a.btn,
.btn {
  position: relative;
  display: inline-block;
  border: none;
  border-radius: 0.6rem;
  border: 1px solid transparent;
  background-color: #00bFFF;
  color: #101b29;
  font-family: "gilroy", "Helvetica", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.2rem;
  outline: none;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
button:hover,
a.btn:hover,
.btn:hover {
  background-color: #fd77d2;
}
button[disabled],
a.btn[disabled],
.btn[disabled] {
  color: #101b29;
  background-color: rgb(49.04, 70.8288, 98.56) !important;
  opacity: 0.7;
  cursor: default;
}
button > .btn-content,
a.btn > .btn-content,
.btn > .btn-content {
  position: relative;
  top: 0rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  white-space: nowrap;
  vertical-align: text-bottom;
  text-align: center;
  text-decoration: none;
}
button.loading,
a.btn.loading,
.btn.loading {
  opacity: 0.6;
  cursor: default;
}
button.loading .g-spinner,
a.btn.loading .g-spinner,
.btn.loading .g-spinner {
  margin-right: 0.8rem;
}
button.loading .g-icon,
a.btn.loading .g-icon,
.btn.loading .g-icon {
  display: none;
}
button .g-icon,
a.btn .g-icon,
.btn .g-icon {
  position: relative;
  top: -0.1rem;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  fill: #101b29;
  stroke: #101b29;
  margin-right: 0.6rem;
}
button.icn-bckg, button.icn-bckg.s,
a.btn.icn-bckg,
a.btn.icn-bckg.s,
.btn.icn-bckg,
.btn.icn-bckg.s {
  padding: 0 1rem;
}
button.icn-bckg i,
a.btn.icn-bckg i,
.btn.icn-bckg i {
  margin-right: 0 !important;
}
button.sub,
a.btn.sub,
.btn.sub {
  background-color: rgb(98.635, 126.6102, 162.215);
}
button.light,
a.btn.light,
.btn.light {
  background-color: rgb(23.9675, 37.9221, 55.6825);
  color: #768aa8;
}
button.light:hover,
a.btn.light:hover,
.btn.light:hover {
  color: #fd77d2;
}
button.light:hover .g-icon,
a.btn.light:hover .g-icon,
.btn.light:hover .g-icon {
  fill: #fd77d2;
}
button.light .g-icon,
a.btn.light .g-icon,
.btn.light .g-icon {
  fill: #768aa8;
}
button.light[disabled],
a.btn.light[disabled],
.btn.light[disabled] {
  background-color: rgba(23.9675, 37.9221, 55.6825, 0.5) !important;
  opacity: 0.7;
  cursor: default;
}
button.modal,
a.btn.modal,
.btn.modal {
  background-color: rgb(12.8, 21.6, 32.8);
  color: #768aa8;
}
button.modal:hover,
a.btn.modal:hover,
.btn.modal:hover {
  background-color: rgb(17.0947368421, 28.8473684211, 43.8052631579);
  color: #fd77d2;
}
button.modal:hover .g-icon,
a.btn.modal:hover .g-icon,
.btn.modal:hover .g-icon {
  fill: #fd77d2;
}
button.modal .g-icon,
a.btn.modal .g-icon,
.btn.modal .g-icon {
  fill: #768aa8;
}
button.modal[disabled],
a.btn.modal[disabled],
.btn.modal[disabled] {
  color: #101b29;
  background-color: rgba(23.9675, 37.9221, 55.6825, 0.5) !important;
  opacity: 0.7;
  cursor: default;
}
button.transparent,
a.btn.transparent,
.btn.transparent {
  background-color: transparent;
}
button.transparent .g-icon,
a.btn.transparent .g-icon,
.btn.transparent .g-icon {
  fill: #00bFFF;
}
button.transparent.light .g-icon,
a.btn.transparent.light .g-icon,
.btn.transparent.light .g-icon {
  fill: rgb(98.635, 126.6102, 162.215);
}
button.action,
a.btn.action,
.btn.action {
  background-color: #fd5b7e;
}
button.action:hover,
a.btn.action:hover,
.btn.action:hover {
  background-color: #fd77d2;
}
button.red, button.green, button.blue, button.save, button.delete,
a.btn.red,
a.btn.green,
a.btn.blue,
a.btn.save,
a.btn.delete,
.btn.red,
.btn.green,
.btn.blue,
.btn.save,
.btn.delete {
  color: #101b29;
}
button.red[disabled], button.green[disabled], button.blue[disabled], button.save[disabled], button.delete[disabled],
a.btn.red[disabled],
a.btn.green[disabled],
a.btn.blue[disabled],
a.btn.save[disabled],
a.btn.delete[disabled],
.btn.red[disabled],
.btn.green[disabled],
.btn.blue[disabled],
.btn.save[disabled],
.btn.delete[disabled] {
  background-color: rgb(23.9675, 37.9221, 55.6825);
}
button.blue,
a.btn.blue,
.btn.blue {
  background-color: #00bFFF;
}
button.blue.o,
a.btn.blue.o,
.btn.blue.o {
  border-color: #00bFFF;
}
button.red, button.delete,
a.btn.red,
a.btn.delete,
.btn.red,
.btn.delete {
  background-color: #F53D7A;
}
button.red.o, button.delete.o,
a.btn.red.o,
a.btn.delete.o,
.btn.red.o,
.btn.delete.o {
  border-color: #F53D7A;
}
button.green, button.save,
a.btn.green,
a.btn.save,
.btn.green,
.btn.save {
  background-color: #00C99A;
}
button.green.o, button.save.o,
a.btn.green.o,
a.btn.save.o,
.btn.green.o,
.btn.save.o {
  border-color: #00C99A;
}
button.save, button.delete,
a.btn.save,
a.btn.delete,
.btn.save,
.btn.delete {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
button.xs,
a.btn.xs,
.btn.xs {
  font-size: 0.8rem;
  line-height: 1.6rem;
  height: 1.6rem;
  padding: 0rem 1rem;
  border-radius: 0.2rem;
}
button.xs .g-icon,
a.btn.xs .g-icon,
.btn.xs .g-icon {
  margin-right: 0.2rem;
  width: 0.8rem;
  height: 0.8rem;
}
button.xs .g-icon.right,
a.btn.xs .g-icon.right,
.btn.xs .g-icon.right {
  margin-right: -2%;
  margin-left: 1rem;
}
button.s,
a.btn.s,
.btn.s {
  font-size: 1.1rem;
  line-height: 2.2rem;
  height: 2.2rem;
  padding: 0rem 1.4rem;
  border-radius: 0.4rem;
}
button.s > span,
a.btn.s > span,
.btn.s > span {
  top: 0rem;
}
button.s .g-icon,
a.btn.s .g-icon,
.btn.s .g-icon {
  margin-right: 0.6rem;
  width: 1rem;
  height: 1rem;
}
button.s .g-icon.right,
a.btn.s .g-icon.right,
.btn.s .g-icon.right {
  margin-right: -2%;
  margin-left: 1rem;
}
button.s.o,
a.btn.s.o,
.btn.s.o {
  line-height: 2.5rem;
  height: 2.5rem;
}
button, button.m,
a.btn,
a.btn.m,
.btn,
.btn.m {
  font-size: 1.2rem;
  line-height: 2.8rem;
  height: 2.8rem;
  padding: 0 2.2rem;
  border-radius: 0.6rem;
}
button > span, button.m > span,
a.btn > span,
a.btn.m > span,
.btn > span,
.btn.m > span {
  top: 0.1rem;
}
button .g-icon,
button .g-icon.m, button.m .g-icon,
button.m .g-icon.m,
a.btn .g-icon,
a.btn .g-icon.m,
a.btn.m .g-icon,
a.btn.m .g-icon.m,
.btn .g-icon,
.btn .g-icon.m,
.btn.m .g-icon,
.btn.m .g-icon.m {
  margin-right: 0.8rem;
  margin-left: -4%;
  width: 1.4rem;
  height: 1.4rem;
}
button .g-icon.right,
button .g-icon.m.right, button.m .g-icon.right,
button.m .g-icon.m.right,
a.btn .g-icon.right,
a.btn .g-icon.m.right,
a.btn.m .g-icon.right,
a.btn.m .g-icon.m.right,
.btn .g-icon.right,
.btn .g-icon.m.right,
.btn.m .g-icon.right,
.btn.m .g-icon.m.right {
  margin-right: -4%;
  margin-left: 0.6rem;
}
button.l,
a.btn.l,
.btn.l {
  font-size: 1.4rem;
  line-height: 3.6rem;
  height: 3.6rem;
  padding: 0rem 2.5rem;
  border-radius: 0.8rem;
}
button.l .g-icon,
a.btn.l .g-icon,
.btn.l .g-icon {
  margin-right: 0.8rem;
  width: 1.6rem;
  height: 1.6rem;
}
button.l .g-icon.right,
a.btn.l .g-icon.right,
.btn.l .g-icon.right {
  margin-right: -2%;
  margin-left: 0.7rem;
}
button.xl,
a.btn.xl,
.btn.xl {
  font-size: 1.4rem;
  line-height: 5rem;
  height: 5rem;
  padding: 0 2rem;
  border-radius: 1rem;
}
button.xl .g-icon,
a.btn.xl .g-icon,
.btn.xl .g-icon {
  margin-right: 0.7rem;
  width: 1.4rem;
  height: 1.4rem;
}
button.xl .g-icon.right,
a.btn.xl .g-icon.right,
.btn.xl .g-icon.right {
  margin-right: -2%;
  margin-left: 0.7rem;
}
button .icon-external-link,
a.btn .icon-external-link,
.btn .icon-external-link {
  font-size: 0.65rem;
}

.btn.i {
  border: none;
  padding: 0 1rem;
}
.btn.i .g-icon,
.btn.i .g-icon.m,
.btn.i .g-icon.s,
.btn.i .g-icon.l {
  padding: 0;
  margin-right: 0;
  margin-left: 0;
}
.btn.i.s {
  padding: 0 0.6rem;
}
.btn.i:hover .g-icon {
  fill: #fd77d2;
  stroke: #fd77d2;
}
.btn.i[disabled]:hover .g-icon {
  fill: #768aa8;
  stroke: #768aa8;
}
.btn.i.red .g-icon {
  fill: #F53D7A;
}
.btn.i.fill {
  background-color: rgb(23.9675, 37.9221, 55.6825);
}
.btn.i.fill.blue {
  background-color: #00bFFF !important;
}
.btn.i.fill.blue .g-icon {
  fill: #101b29;
}
.btn.i.delete {
  background-color: transparent;
}
.btn.i .g-spinner {
  border-top-color: #00bFFF;
  border-right-color: #00bFFF;
  margin-right: 0;
  width: 1.2rem;
  height: 1.2rem;
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 2px;
  margin-right: 1px;
  margin-left: 1px;
}

.btn.sub {
  background-color: rgb(98.635, 126.6102, 162.215);
}
.btn.sub:hover {
  background-color: #fd77d2;
}
.btn.sub.light {
  border: 1px solid rgba(0, 191, 255, 0.2);
  color: #00bFFF;
}
.btn.sub.light:hover {
  background-color: rgba(0, 191, 255, 0.1);
}
.btn.sub.i i {
  margin-left: 0;
  margin-right: 0;
}

.btn.o {
  background-color: transparent;
  border: 1px solid rgba(0, 191, 255, 0.5);
  color: #00bFFF;
}
.btn.o:hover {
  background-color: rgb(93.35, 49.75, 85.8);
  color: #fd77d2;
  border-color: #fd77d2;
}
.btn.o:hover i {
  color: #fd77d2;
}
.btn.o i {
  color: #00bFFF;
}
.btn.o.i i {
  margin-left: 0;
  margin-right: 0;
}

.btn.tx {
  background-color: transparent;
  border: none;
  color: #00bFFF;
  padding: 0 0 !important;
  text-transform: capitalize;
  height: auto;
  font-size: 1.3rem;
}
.btn.tx:hover {
  color: #fd77d2;
}
.btn.tx:hover .g-icon {
  fill: #fd77d2;
  stroke: #fd77d2;
}
.btn.tx .g-icon {
  fill: #00bFFF;
  stroke: #00bFFF;
  top: 0rem;
  margin-right: 0.6rem;
  width: 1.4rem;
  height: 1.4rem;
}
.btn.tx .g-icon.right {
  margin-right: 0;
  margin-right: 0.6rem;
}
.btn.tx.s .g-icon {
  top: -0.5px;
  margin-right: 0.8rem;
  width: 1.1rem;
  height: 1.1rem;
}

.btn.c {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  padding: 0;
}
.btn.c .btn-content {
  width: 100%;
  height: 100%;
}
.btn.c .g-icon {
  top: 0;
  margin: 0;
}
.btn.c, .btn.c.m {
  width: 2.8rem;
  height: 2.8rem;
}
.btn.c .g-icon, .btn.c.m .g-icon {
  width: 2rem;
  height: 2rem;
}
.btn.c.xs {
  width: 1.8rem;
  height: 1.8rem;
}
.btn.c.s {
  width: 2rem;
  height: 2rem;
}
.btn.c.s .g-icon {
  width: 1rem;
  height: 1rem;
}
.btn.c.l {
  width: 3.5rem;
  height: 3.5rem;
}
.btn.c.l .g-icon {
  width: 3rem;
  height: 3rem;
}
.btn.c.xl {
  width: 4.25rem;
  height: 4.25rem;
}
.btn.c.xl .g-icon {
  width: 2rem;
  height: 2rem;
}

.btn-list, .btn-list.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.btn-list button,
.btn-list .btn, .btn-list.row button,
.btn-list.row .btn {
  margin: 0 2rem 0 0;
}
.btn-list button:last-child,
.btn-list .btn:last-child, .btn-list.row button:last-child,
.btn-list.row .btn:last-child {
  margin-right: 0;
}
.btn-list.column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.btn-list.column button,
.btn-list.column .btn {
  margin: 0 0 1rem 0;
}
.btn-list.column button:last-child,
.btn-list.column .btn:last-child {
  margin-right: 0;
}
.btn-list.center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.btn-list.stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.btn-list.icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.btn-list.icons .btn.i, .btn-list.icons .btn {
  margin: 0 0.4rem 0 0;
}
.btn-list.icons .btn.i:last-child, .btn-list.icons .btn:last-child {
  margin-right: 0;
}
.btn-list.icons .btn.i:not(.fill) {
  background-color: rgb(23.9675, 37.9221, 55.6825);
}
.btn-list.icons .btn.light {
  background-color: rgb(23.9675, 37.9221, 55.6825);
  color: #00bFFF;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.btn-list.icons .btn.light .g-icon {
  fill: #00bFFF;
  width: 10px;
  height: 10px;
}
.btn-list.icons .btn.light:hover {
  color: #fd77d2;
}
.btn-list.icons .btn.light:hover .g-icon {
  fill: #fd77d2;
  stroke: #fd77d2;
}
.btn-list.s button,
.btn-list.s .btn {
  margin: 0 1rem 0 0;
}

.btn.twitch {
  background-color: #6441a4;
  color: #fff;
}
.btn.twitch.login {
  min-width: 20rem;
}
.btn.twitch .g-icon {
  fill: #ffffff;
}

.g-dropdown {
  width: auto !important;
  background-color: rgb(29.67, 48.5724, 72.63) !important;
  border-color: rgb(29.67, 48.5724, 72.63) !important;
  -webkit-box-shadow: 0px 0px 4px 1px rgba(12, 12, 14, 0.5) !important;
  box-shadow: 0px 0px 4px 1px rgba(12, 12, 14, 0.5) !important;
  z-index: 500 !important;
  -webkit-animation: dropdownIn 0.1s;
  animation: dropdownIn 0.1s;
  border-radius: 0.6rem;
}
.g-dropdown .arrow {
  height: 1rem;
  width: 1rem;
  z-index: -1;
}
.g-dropdown .arrow:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: rgb(29.67, 48.5724, 72.63) !important;
}
.g-dropdown[data-popper-placement^=bottom] .arrow {
  top: -0.5rem;
}
.g-dropdown[data-popper-placement^=top] .arrow {
  bottom: -0.5rem;
}

.g-dropdown-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: fixed;
  z-index: 498;
  background-color: rgba(11.2, 18.9, 28.7, 0.5);
  -webkit-animation: fadeIn 0.2s;
  animation: fadeIn 0.2s;
}

@-webkit-keyframes dropdownIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes dropdownIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.g-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgb(29.67, 48.5724, 72.63);
}
.g-item:first-child {
  border-top: 1px solid rgb(29.67, 48.5724, 72.63);
}
.g-item:not(:last-child) {
  border-bottom: 1px solid rgb(29.67, 48.5724, 72.63);
}
.g-item > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.g-item > div > * {
  margin-right: 1rem;
}
.g-item .thumb {
  width: 75px;
  height: 60px;
  background-image: url("");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.loading-text,
.loading-shine {
  position: relative;
  opacity: 0.6;
  background-color: rgb(29.67, 48.5724, 72.63);
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: textShimmer;
  animation-name: textShimmer;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  background: transparent;
  background: -webkit-gradient(linear, left top, right top, color-stop(8%, rgb(29.67, 48.5724, 72.63)), color-stop(18%, rgb(49.04, 70.8288, 98.56)), color-stop(33%, rgb(29.67, 48.5724, 72.63)));
  background: linear-gradient(to right, rgb(29.67, 48.5724, 72.63) 8%, rgb(49.04, 70.8288, 98.56) 18%, rgb(29.67, 48.5724, 72.63) 33%);
  background-size: 800px 104px;
}
.loading-text > *,
.loading-shine > * {
  display: none !important;
}

.loading-text {
  min-height: 1.6rem;
}

@-webkit-keyframes textShimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

@keyframes textShimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}
.g-loading-stat-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding: 2rem !important;
  background-color: #101b29;
  border-radius: 0.8rem;
}
.g-loading-stat-item + .g-loading-stat-item {
  margin-top: 1rem;
}
.g-loading-stat-item.g-scene-stats-item {
  padding: 1rem !important;
}
.g-loading-stat-item .left-info {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  max-width: 30%;
  margin-right: 6rem;
}
.g-loading-stat-item .left-info .loading-text.label {
  max-width: 15rem;
}
.g-loading-stat-item .left-info .loading-text.value {
  margin-top: 0.8rem;
  min-height: 3.4rem;
  max-width: 25rem;
}
.g-loading-stat-item .g-stat-item-list {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.g-loading-stat-item .g-stat-item-list .g-stat-item {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.g-loading-stat-item .loading-thumb {
  background-color: rgb(23.9675, 37.9221, 55.6825);
  border-radius: 0.8rem;
  padding: 0.6rem;
  width: 15rem;
  height: 10rem;
}

.svg {
  fill: #fff;
  stroke: #fff;
}
.svg.xs {
  width: 1rem;
  height: 1rem;
}
.svg.s {
  width: 1.4rem;
  height: 1.4rem;
}
.svg.m {
  width: 1.8rem;
  height: 1.8rem;
}
.svg.l {
  width: 2.4rem;
  height: 2.4rem;
}
.svg.xl {
  width: 3rem;
  height: 3rem;
}
.svg.sub {
  fill: #768aa8;
  stroke: #768aa8;
}
.svg.primary {
  fill: #00bFFF;
  stroke: #00bFFF;
}

.svg.icon.checkmark {
  fill: #00C99A;
}

.content {
  min-height: calc(100vh - 6rem);
  width: 100%;
  position: relative;
  padding: 3rem 3rem 10rem;
}
.content.center {
  max-width: 90rem;
  margin: 0 auto;
}
.content.wide {
  max-width: 120rem;
}

.g-content-head {
  width: 100%;
  padding: 0 0 1rem 0;
  margin: 0 0 2rem 0;
}
.g-content-head.split {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.g-content-head.mega {
  background-color: #101b29;
  margin-bottom: 1rem;
}
.g-content-head.mega .header-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin: 0 auto;
  width: 100%;
  max-width: 120rem;
  padding: 6rem 3rem 2rem;
}
.g-content-head .content-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 2rem;
  font-weight: 600;
}
.g-content-head .content-title .btn {
  top: -0.1rem;
  margin-left: 1.2rem;
}
.g-content-head .content-title.loading-text {
  min-height: 2rem;
  width: 25rem;
}
.g-content-head h1, .g-content-head h2, .g-content-head h3 {
  position: relative;
  bottom: -2px;
  margin: 0;
  font-size: 2.2rem;
  line-height: 2.2rem;
}
.g-content-head .back {
  position: absolute;
  top: 0rem;
  left: 0;
}
.g-content-head .back i {
  font-size: 2rem;
}
.g-content-head .header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.g-content-head .header-right > *:not(:last-child) {
  margin-right: 1rem;
}

.g-section:not(:first-child) {
  margin-top: 4rem;
}
.g-section.l {
  margin-top: 6rem;
  padding-top: 6rem;
  border-top: 1px solid rgb(29.67, 48.5724, 72.63);
}

.g-section-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: #768aa8;
}
.g-section-title.split {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.g-breadcrumbs {
  text-transform: capitalize;
}
.g-breadcrumbs a {
  font-size: 1.2rem;
  color: #768aa8;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  font-weight: 600;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}
.g-breadcrumbs a:hover {
  color: #fd77d2;
}
.g-breadcrumbs a:after {
  content: ">";
  display: inline-block;
  margin: 0 1rem;
}
.g-modal {
  max-width: 90%;
  width: auto;
  outline: none;
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  background-color: rgb(23.9675, 37.9221, 55.6825);
  border-radius: 0.8rem;
  z-index: 1000;
  -webkit-perspective: 6.25rem;
  perspective: 6.25rem;
  opacity: 1;
}
.g-modal:not(.open) {
  display: none;
  opacity: 0;
}
.g-modal.open {
  -webkit-animation: modalIn 0.25s cubic-bezier(0.345, 0, 0.7, 1.3) forwards;
  animation: modalIn 0.25s cubic-bezier(0.345, 0, 0.7, 1.3) forwards;
}
.g-modal.close {
  -webkit-animation: modalOut 0.35s;
  animation: modalOut 0.35s;
}
.g-modal.fill-vert {
  height: 80%;
}
.g-modal.fill-vert .modal-header {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}
.g-modal.fullscreen.open {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  position: relative;
  width: 100%;
  height: 100%;
  max-width: calc(100% - 6rem);
  max-height: calc(100% - 6rem);
  top: auto;
  left: auto;
}
.g-modal.s {
  max-width: 45rem;
  min-width: 45rem;
}
.g-modal.s .modal-content.card {
  padding: 2rem;
}
.g-modal.m {
  max-width: 50rem;
  min-width: auto;
  width: 100%;
  min-height: 25rem;
}
.g-modal.l {
  max-width: 60rem;
  min-width: auto;
  width: 100%;
}
.g-modal.xl {
  max-width: 80rem;
  min-width: auto;
  width: 100%;
}

.modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  position: relative;
  padding: 0;
  width: 100%;
}
.modal-header .modal-title {
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  text-transform: capitalize;
  text-align: center;
}
.modal-header .modal-subtitle {
  margin: 1rem 0 0 0;
  font-size: 1.6rem;
  line-height: 2.2rem;
  font-weight: 600;
  color: #768aa8;
  text-transform: capitalize;
  text-align: center;
}

.modal-header .g-error-list,
.modal-content .g-error-list {
  margin-top: 0.75rem;
  margin-bottom: -0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.modal-header .g-error-list .error,
.modal-content .g-error-list .error {
  font-size: 1.4rem;
}

.modal-content {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  color: #fff;
  margin: 4rem auto 0;
  width: 100%;
}
.modal-content.full {
  width: 90%;
}
.modal-content.left * {
  text-align: left;
}
.modal-content.center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.modal-content .g-error-list {
  margin: 0rem 0 2rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.modal-content h2 {
  font-size: 1.5rem;
  padding: 0 0 1.25rem 0;
  border-bottom: 1px solid #3a465e;
}
.modal-content h2,
.modal-content h3,
.modal-content h4 {
  margin-bottom: 1rem;
}
.modal-content > p:first-child {
  margin-top: 1rem;
}
.modal-content p {
  margin-bottom: 0.875rem;
  color: #fff;
}
.modal-content p a {
  font-weight: 600;
}
.modal-content p.tip {
  text-align: center;
  margin: 0 0 0;
  font-size: 0.875rem;
  font-weight: 400;
  margin-bottom: 0rem;
}
.modal-content .extra {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 1.75rem 0 0 0;
  font-size: 1rem;
}
.modal-content .extra p {
  margin: 0;
}
.modal-content .extra a {
  font-weight: 600;
  color: #fd77d2;
}
.modal-content form:not(.compact) {
  margin-bottom: 0;
}
.modal-content form:not(.compact) .btn-list {
  margin: 0;
}
.modal-content form:not(.compact) .prompt,
.modal-content form:not(.compact) .timestamp {
  margin-bottom: 1rem;
}
.modal-content form:not(.compact) .prompt:last-child,
.modal-content form:not(.compact) .timestamp:last-child {
  margin-bottom: 0rem;
}
.modal-content form:not(.compact) .timestamp {
  margin-bottom: 1rem;
}
.modal-content form:not(.compact) .timestamp .prompt {
  margin-bottom: 0.125rem;
}
.modal-content form:not(.compact) .prompt.radio-list {
  margin-bottom: 1.5rem;
}
.modal-content form:not(.compact) .prompt.radio-list p.helperText {
  margin-top: -0.75rem;
  margin-bottom: 0.5rem;
}
.modal-content input[type=email], .modal-content input[type=number], .modal-content input[type=password], .modal-content input[type=search], .modal-content input[type=tel], .modal-content input[type=text], .modal-content input[type=url], .modal-content input[type=color], .modal-content input[type=date], .modal-content input[type=datetime], .modal-content input[type=datetime-local], .modal-content input[type=month], .modal-content input[type=time], .modal-content input[type=week],
.modal-content textarea {
  display: block;
  width: 100%;
}
.modal-content .g-scrollbars .g-scrollbar-view {
  background-color: rgba(12.8, 21.6, 32.8, 0.6);
}
.modal-content .modal-notice {
  background-color: rgb(29.67, 48.5724, 72.63);
  padding: 1rem;
  border-radius: 0.8rem;
  font-size: 1.6rem;
  text-align: center;
  color: #768aa8;
  font-weight: 500;
}

.modal-actions {
  margin-top: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.modal-actions.row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row;
  flex-flow: row;
}
.modal-actions.col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.modal-actions.col .btn:not(:last-child) {
  margin-right: 0rem;
  margin-bottom: 1.2rem;
}
.modal-actions.split {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.modal-actions .btn {
  min-width: 12rem;
  max-width: 20rem;
}
.modal-actions .btn:not(:last-child) {
  margin-right: 1.4rem;
}
.modal-actions .helper {
  font-size: 0.875rem;
  color: rgb(23.7692307692, 23.7692307692, 27.7307692308);
  margin: 1rem 0 0;
}

.modal-action-helper {
  margin: 2rem 0 -2rem 0;
}

.g-modal-container {
  position: absolute;
  z-index: 1000;
  background: rgb(11.2, 18.9, 28.7);
  width: 0;
  height: 0;
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.g-modal-container.open, .g-modal-container.close {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: auto;
  height: auto;
  overflow-y: auto;
}
.g-modal-container.open > .modal-close, .g-modal-container.close > .modal-close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.g-modal-container.open {
  -webkit-animation: fadeInUnhide 0.35s forwards;
  animation: fadeInUnhide 0.35s forwards;
}
.g-modal-container.close {
  -webkit-animation: fadeOutHide 0.35s forwards;
  animation: fadeOutHide 0.35s forwards;
}
.g-modal-container .modal-close {
  display: none;
  position: fixed;
  z-index: 1010;
  top: 1rem;
  right: 2rem;
}

/* ----------------------------------------------- */
/*   MODAL ANIMATION
-------------------------------------------------- */
@-webkit-keyframes modalIn {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes modalIn {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes modalOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}
@keyframes modalOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}
@-webkit-keyframes animateIn {
  0% {
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-transform: translate3d(0, 0, -6.25rem) rotateY(-15deg);
    transform: translate3d(0, 0, -6.25rem) rotateY(-15deg);
  }
  25% {
    -webkit-transform: translate3d(10rem, 0, -3.125rem) rotateY(-15deg);
    transform: translate3d(10rem, 0, -3.125rem) rotateY(-15deg);
  }
  50% {
    -webkit-transform: translate3d(20rem, 0, 0) rotateY(0deg);
    transform: translate3d(20rem, 0, 0) rotateY(0deg);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) rotateY(0deg);
    transform: translate3d(0, 0, 0) rotateY(0deg);
  }
}
@keyframes animateIn {
  0% {
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-transform: translate3d(0, 0, -6.25rem) rotateY(-15deg);
    transform: translate3d(0, 0, -6.25rem) rotateY(-15deg);
  }
  25% {
    -webkit-transform: translate3d(10rem, 0, -3.125rem) rotateY(-15deg);
    transform: translate3d(10rem, 0, -3.125rem) rotateY(-15deg);
  }
  50% {
    -webkit-transform: translate3d(20rem, 0, 0) rotateY(0deg);
    transform: translate3d(20rem, 0, 0) rotateY(0deg);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) rotateY(0deg);
    transform: translate3d(0, 0, 0) rotateY(0deg);
  }
}
@-webkit-keyframes animateOut {
  0% {
    -webkit-transform: translate3d(0, 0, 0.313rem);
    transform: translate3d(0, 0, 0.313rem);
  }
  25% {
    -webkit-transform: translate3d(0, 0, -6.25rem);
    transform: translate3d(0, 0, -6.25rem);
  }
  100% {
    -webkit-transform: translate3d(0, 0, -6.25rem);
    transform: translate3d(0, 0, -6.25rem);
  }
}
@keyframes animateOut {
  0% {
    -webkit-transform: translate3d(0, 0, 0.313rem);
    transform: translate3d(0, 0, 0.313rem);
  }
  25% {
    -webkit-transform: translate3d(0, 0, -6.25rem);
    transform: translate3d(0, 0, -6.25rem);
  }
  100% {
    -webkit-transform: translate3d(0, 0, -6.25rem);
    transform: translate3d(0, 0, -6.25rem);
  }
}
.g-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background: rgba(12, 12, 14, 0.9);
  width: 0;
  height: 0;
  opacity: 0;
  cursor: pointer;
}
.g-overlay.show, .g-overlay.hide {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: auto;
  height: auto;
  overflow-y: auto;
}
.g-overlay.show {
  -webkit-animation: fadeInUnhide 0.35s forwards;
  animation: fadeInUnhide 0.35s forwards;
}
.g-overlay.hide {
  -webkit-animation: fadeOutHide 0.35s forwards;
  animation: fadeOutHide 0.35s forwards;
}

.g-menu.header {
  min-width: 20rem;
}
.g-menu.header a.logout {
  border-top: 1px solid rgba(118, 138, 168, 0.1);
  color: #F53D7A;
}
.g-menu.header a.logout .g-icon {
  fill: #F53D7A;
  left: 1px;
}
.g-menu a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  white-space: nowrap;
  padding: 1rem 2rem 1rem 1.6rem;
  font-weight: 600;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  color: #fff;
}
.g-menu a:hover {
  background-color: rgba(49.04, 70.8288, 98.56, 0.5);
}
.g-menu a:hover:first-child {
  border-top-left-radius: 0.6rem;
  border-top-right-radius: 0.6rem;
}
.g-menu a:hover:last-child {
  border-bottom-left-radius: 0.6rem;
  border-bottom-right-radius: 0.6rem;
}
.g-menu a .g-icon {
  margin-right: 1rem;
  width: 1.6rem;
  height: 1.6rem;
}
.g-menu a.delete {
  color: #F53D7A;
}
.g-menu a.delete .g-icon {
  fill: #F53D7A;
}

.g-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  stroke: none;
  fill: #768aa8;
}
.g-icon svg {
  width: 100%;
  height: 100%;
}
.g-icon.primary {
  stroke: #00bFFF;
  fill: #00bFFF;
}
.g-icon.sub {
  stroke: #768aa8;
  fill: #768aa8;
}
.g-icon.red {
  stroke: #F53D7A;
  fill: #F53D7A;
}
.g-icon.green {
  stroke: #00C99A;
  fill: #00C99A;
}
.g-icon.black {
  stroke: #0c0c0e;
  fill: #0c0c0e;
}
.g-icon.purple {
  stroke: #7289da;
  fill: #7289da;
}
.g-icon.white {
  stroke: #fff;
  fill: #fff;
}
.g-icon.off {
  fill: rgb(41.4315789474, 69.9157894737, 106.1684210526);
}
.g-icon.on {
  fill: #00C99A;
}
.g-icon.xs {
  width: 0.8rem;
  height: 0.8rem;
}
.g-icon.s {
  width: 1.2rem;
  height: 1.2rem;
}
.g-icon, .g-icon.m {
  width: 2rem;
  height: 2rem;
}
.g-icon.l {
  width: 3rem;
  height: 3rem;
}
.g-icon.xl {
  width: 4rem;
  height: 4rem;
}
.g-icon.rotate-c {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.g-icon.rotate-cc {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.g-icon.rotate-180 {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.g-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  background-color: #101b29;
  border-radius: 0.8rem;
  padding: 0;
}
.g-card:not(:first-child) {
  margin-top: 2rem;
}
.g-card .card-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 2rem 2rem 1rem 2rem;
  margin: 0 0 0 0;
}
.g-card .card-head:not(:last-child) {
  border-bottom: 1px solid rgb(20.2947368421, 34.2473684211, 52.0052631579);
}
.g-card .card-head .card-title {
  font-size: 1.8rem;
  font-weight: 500;
}
.g-card .card-head .card-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.g-card .card-head .card-actions > *:not(:last-child) {
  margin-right: 1rem;
}
.g-card .card-item {
  padding: 1.4rem 2rem;
}
.g-card .card-item:not(:last-child) {
  border-bottom: 1px solid #101b29;
}
.g-card .card-input-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.g-card .card-input-item:not(:last-child) {
  border-bottom: 1px solid rgb(23.9675, 37.9221, 55.6825);
}
.g-card .card-input-item.disabled {
  opacity: 0.4;
}
.g-card .card-input-item.disabled .item-input .input input {
  color: #768aa8;
}
.g-card .card-input-item .item-label {
  padding-top: 0.2rem;
  width: 40%;
  max-width: 20rem;
  min-width: 10rem;
}
.g-card .card-input-item .item-label label {
  color: #768aa8;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.g-card .card-input-item .item-label p,
.g-card .card-input-item .item-label .helper {
  margin: 0;
  font-size: 1.3rem;
  color: #768aa8;
}
.g-card .card-input-item .item-input {
  padding-top: 3px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.g-card .card-input-item .item-input .input {
  margin-bottom: 0;
  width: 100%;
}
.g-card .card-input-item .item-input p.helper-text {
  margin: 0.8rem 0 0 0;
  font-size: 1.3rem;
  color: #768aa8;
}
.g-card .card-input-item p {
  font-size: 1.3rem;
  color: #768aa8;
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.g-card .item-actions {
  margin-top: 2rem;
}

.g-side-panel {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 40rem;
  max-width: 80%;
  overflow: hidden;
  background-color: #101b29;
  border-left: 1px solid rgb(29.67, 48.5724, 72.63);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.g-side-panel.over {
  position: fixed;
  right: 0;
  top: 6rem;
  bottom: 0;
  z-index: 99;
  -webkit-transform: translate(100%, 0);
  transform: translate(100%, 0);
}
.g-side-panel.over.hide {
  -webkit-transform: translate(100%, 0);
  transform: translate(100%, 0);
}
.g-side-panel.over.show {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.g-side-panel .side-panel-header {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 4rem;
  padding: 0.4rem 2rem 0;
  border-bottom: 1px solid rgb(29.67, 48.5724, 72.63);
  background-color: #101b29;
  margin: 0;
}
.g-side-panel .side-panel-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.4rem;
  text-transform: uppercase;
  color: #fd77d2;
  font-weight: 700;
  line-height: 1rem;
}
.g-side-panel .side-panel-title .g-icon {
  margin-right: 0.8rem;
  width: 1.7rem;
  height: 1.7rem;
  top: -0.1rem;
  fill: #fd77d2;
}
.g-side-panel .side-panel-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 3rem;
}
.g-side-panel .side-panel-body {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  padding: 2rem;
}

.g-side-panel-popup {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  overflow: hidden;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.g-side-panel-popup.show .g-side-panel-overlay {
  display: block;
}
.g-side-panel-popup.show .g-side-panel {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.g-side-panel-popup.hide {
  pointer-events: none;
}
.g-side-panel-popup.hide .g-side-panel {
  -webkit-transform: translate(0, 100%);
  transform: translate(0, 100%);
}
.g-side-panel-popup .g-side-panel-overlay {
  display: none;
}
.g-side-panel-popup .g-side-panel {
  margin-top: 10%;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 100%;
  max-width: 100%;
  -webkit-transform: translate(0, 100%);
  transform: translate(0, 100%);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  border-left: 0;
}
.g-side-panel-popup .g-side-panel .side-panel-header {
  border-top: 1px solid rgb(29.67, 48.5724, 72.63);
  cursor: pointer;
  padding-right: 1rem;
  border-top-left-radius: 0.8rem;
  border-top-right-radius: 0.8rem;
}
.g-side-panel-popup .g-side-panel .side-panel-header .btn.i {
  background-color: input[type="button"], input[type="reset"], input[type="submit"];
}

.g-side-panel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(12.8, 21.6, 32.8, 0.9);
  z-index: -1;
}

.g-action-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1rem;
  background-color: rgb(18.5263157895, 31.2631578947, 47.4736842105);
}
.g-action-bar.fixed {
  position: fixed;
}
.g-action-bar .btn-list > .btn {
  min-width: 12rem;
}
.g-action-bar .action-side {
  position: absolute;
  right: 2rem;
}

.g-spinner {
  border-radius: 100%;
  border-top: 3px solid #fd77d2;
  border-right: 3px solid #fd77d2;
  border-bottom: 3px solid rgba(175, 175, 175, 0.5);
  border-left: 3px solid rgba(175, 175, 175, 0.5);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  opacity: 0.8;
  -webkit-animation: loader-rotate 0.5s ease-in-out infinite;
  animation: loader-rotate 0.5s ease-in-out infinite;
}
.g-spinner.paused {
  -webkit-animation-play-state: paused !important;
  animation-play-state: paused !important;
}
.g-spinner.blue {
  border-top-color: #00bFFF;
  border-right-color: #00bFFF;
}
.g-spinner.white {
  border-top-color: #fff;
  border-right-color: #fff;
}
.g-spinner.button {
  border-top-color: #101b29;
  border-right-color: #101b29;
}
.g-spinner.xs {
  width: 1.2rem;
  height: 1.2rem;
  -webkit-animation: loader-rotate 0.5s ease-in-out infinite;
  animation: loader-rotate 0.5s ease-in-out infinite;
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 2px;
}
.g-spinner.s {
  width: 1.8rem;
  height: 1.8rem;
  -webkit-animation: loader-rotate 0.5s ease-in-out infinite;
  animation: loader-rotate 0.5s ease-in-out infinite;
}
.g-spinner.m {
  width: 3rem;
  height: 3rem;
}
.g-spinner.l {
  width: 4rem;
  height: 4rem;
  -webkit-animation: loader-rotate 0.5s ease-in-out infinite;
  animation: loader-rotate 0.5s ease-in-out infinite;
}
.g-spinner.xl {
  width: 6rem;
  height: 6rem;
  -webkit-animation: loader-rotate 0.5s ease-in-out infinite;
  animation: loader-rotate 0.5s ease-in-out infinite;
}

@-webkit-keyframes loader-rotate {
  0% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  100% {
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
  }
}

@keyframes loader-rotate {
  0% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  100% {
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
  }
}
.loading-overlay {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(12, 12, 14, 0.9);
  opacity: 0;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
  pointer-events: none;
}
.loading-overlay.open {
  bottom: 0;
  right: 0;
  z-index: 500;
  opacity: 1;
}
.loading-overlay.transparent {
  background: transparent;
}
.loading-overlay.circle {
  border-radius: 50%;
}
.loading-overlay .message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 0.5rem;
  border: 1px solid rgb(56.26, 67.9, 91.18);
  padding: 1.5rem 2rem;
  z-index: 10;
  pointer-events: all;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.loading-overlay .message.bottom, .loading-overlay .message.top {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
}
.loading-overlay .message.bottom {
  bottom: 1rem;
  top: auto;
}
.loading-overlay .message.top {
  top: 4rem;
}
.loading-overlay .message .header {
  -ms-flex-item-align: stretch;
  align-self: stretch;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #3a465e;
}
.loading-overlay .message .footer {
  -ms-flex-item-align: stretch;
  align-self: stretch;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #3a465e;
}
.loading-overlay .message h3 {
  margin: 0 0 0.5rem;
  color: #fff;
  text-transform: capitalize;
}
.loading-overlay .message p {
  margin: 0.5rem 0;
  text-align: center;
}
.loading-overlay .message .tip {
  font-size: 0.75rem;
}

.g-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  height: 6rem;
  background-color: rgb(23.9675, 37.9221, 55.6825);
  z-index: 100;
}
.g-navbar .navbar-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 2rem;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 100%;
}
.g-navbar .g-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-left: 2rem;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.g-navbar .g-nav a {
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}
.g-navbar .g-nav a:not(:last-child) {
  margin-right: 5rem;
}
.g-navbar .g-nav a.active {
  color: #00bFFF;
}
.g-navbar .navbar-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding-right: 2rem;
}
.g-navbar .navbar-right .login {
  font-size: 1.1rem;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
}
.g-navbar .navbar-right .signup {
  margin-left: 2rem;
}
.g-navbar .g-user {
  cursor: pointer;
}
@media only screen and (max-width: 799px) {
  .g-navbar .navbar-left .g-logo svg {
    height: 36px;
  }
  .g-navbar .navbar-left .g-logo span {
    font-size: 2rem;
  }
}

.g-sidebar {
  position: fixed;
  top: 6rem;
  left: 0;
  width: 20rem;
  height: 100vh;
  z-index: 99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  background-color: rgb(23.9675, 37.9221, 55.6825);
  padding-top: 2rem;
}
.g-sidebar .sidebar-title {
  padding: 10px 20px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  color: #768aa8;
}
.g-sidebar .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.g-sidebar .menu a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.5rem 1rem;
  font-size: 1.2drem;
  font-weight: 500;
  color: #768aa8;
  letter-spacing: 0.16px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(58, 70, 94, 0.9);
  cursor: pointer;
  -webkit-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
  text-decoration: none;
}
.g-sidebar .menu a:hover .g-sidebar .menu a.selected {
  color: #00bFFF;
}
.g-sidebar .menu a.selected {
  padding-left: 18px;
  border-left: 2px solid #00bFFF;
}

.g-status-dot {
  position: relative;
  background-color: #F53D7A;
  border-radius: 50%;
}
.g-status-dot, .g-status-dot.m {
  width: 0.8rem;
  height: 0.8rem;
}
.g-status-dot.active {
  background-color: #00C99A;
}
.g-status-dot.paused {
  background-color: #768aa8;
}

.g-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
}
.g-logo svg {
  height: 48px;
  margin-right: 0.8rem;
}
.g-logo span {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0px;
  text-transform: lowercase;
}
.g-logo span span {
  font-size: 2rem;
}

.g-avatar {
  width: 4rem;
  height: 4rem;
  background-color: #101b29;
  border-radius: 50%;
}
.g-avatar.xs {
  width: 2rem;
  height: 2rem;
}
.g-avatar.s {
  width: 3rem;
  height: 3rem;
}
.g-avatar.s .badge {
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.g-avatar.m {
  width: 4.6rem;
  height: 4.6rem;
}
.g-avatar.l {
  width: 6rem;
  height: 6rem;
}
.g-avatar.xl {
  width: 7rem;
  height: 7rem;
}
.g-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.g-avatar .badge {
  position: absolute;
  top: 0;
  left: 0;
}

.g-tooltip {
  background-color: rgba(12, 12, 14, 0.95);
  padding: 0.4rem 1.1rem;
  border-radius: 0.4rem;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  z-index: 200;
}
.g-tooltip .tooltip-arrow {
  position: absolute;
  width: 1.8rem;
  height: 1.8rem;
}
.g-tooltip .tooltip-arrow[data-placement*=bottom] {
  top: 0;
  left: 0;
  margin-top: -0.8rem;
  width: 1.8rem;
  height: 0.8rem;
}
.g-tooltip .tooltip-arrow[data-placement*=bottom]::before {
  border-width: 0 0.9rem 0.8rem 0.9rem;
  border-color: transparent transparent rgba(12, 12, 14, 0.95) transparent;
}
.g-tooltip .tooltip-arrow[data-placement*=top] {
  bottom: 0;
  left: 0;
  margin-bottom: -0.6em;
  width: 1.8rem;
  height: 0.8rem;
}
.g-tooltip .tooltip-arrow[data-placement*=top]::before {
  border-width: 0.8rem 0.9rem 0 0.9rem;
  border-color: rgba(12, 12, 14, 0.95) transparent transparent transparent;
}
.g-tooltip .tooltip-arrow[data-placement*=right] {
  left: 0;
  margin-left: -0.6em;
  height: 1.8rem;
  width: 0.8rem;
}
.g-tooltip .tooltip-arrow[data-placement*=right]::before {
  border-width: 0.9rem 0.8rem 0.9rem 0;
  border-color: transparent rgba(12, 12, 14, 0.95) transparent transparent;
}
.g-tooltip .tooltip-arrow[data-placement*=left] {
  right: 0;
  margin-right: -0.6em;
  height: 1.8rem;
  width: 0.8rem;
}
.g-tooltip .tooltip-arrow[data-placement*=left]::before {
  border-width: 0.9rem 0 0.9rem 0.8rem;
  border-color: transparent transparent transparent rgba(12, 12, 14, 0.95);
}
.g-tooltip .tooltip-arrow::before {
  content: "";
  margin: auto;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
}

.g-toast-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  align-items: flex-end !important;
  z-index: 20010 !important;
  width: 100%;
}

.g-toast {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  position: absolute;
  right: 2rem;
  top: 8rem;
  min-width: 30rem;
}
.g-toast .toast-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  border-radius: 1rem;
  font-weight: 600;
  padding: 2rem;
  color: white;
  font-size: 1.5rem;
  background-color: #45BFA0;
  cursor: pointer;
}
.g-toast .toast-wrapper--success {
  background-color: #45BFA0;
}
.g-toast .toast-wrapper--error {
  background-color: #FF3056;
}
.g-toast .toast-wrapper .icon {
  margin-left: 1.4rem;
}

.g-item-picker.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.g-item-picker.col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.g-item-picker .g-pick-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1rem 1rem;
  cursor: pointer;
}
.g-item-picker .g-pick-item:first-child {
  border-top: 1px solid rgb(29.67, 48.5724, 72.63);
}
.g-item-picker .g-pick-item:not(:last-child) {
  border-bottom: 1px solid rgb(29.67, 48.5724, 72.63);
}
.g-item-picker .g-pick-item:hover {
  background-color: rgba(29.67, 48.5724, 72.63, 0.2);
}
.g-item-picker .g-pick-item .item-check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.g-item-picker .g-pick-item .item-check .input {
  margin: 0;
}

/* ----------------------------------------------- */
/* FILE DROP
-------------------------------------------------- */
.g-file-drop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  border: 1px dashed #3a465e;
  border-radius: 0.8rem;
  color: #fff;
  width: 16rem;
  height: 10rem;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.g-file-drop .g-icon {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.g-file-drop.active {
  width: auto;
  height: auto;
  border-color: #00bFFF !important;
  color: #fff;
  background: rgba(0, 191, 255, 0.8) !important;
}
.g-file-drop:hover {
  border-color: #00bFFF;
}
.g-file-drop:hover p {
  color: #00bFFF;
}
.g-file-drop:hover .g-icon {
  fill: #00bFFF;
  stroke: #00bFFF;
}
.g-file-drop.s {
  border-width: 1px;
  padding: 0.25rem;
}
.g-file-drop.s p {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 0.875rem;
}
.g-file-drop.s span {
  display: block;
  font-size: 0.75rem;
  text-decoration: underline;
  font-weight: 500;
}
.g-file-drop.transparent {
  border-color: transparent;
  padding: 0;
  overflow: hidden;
  cursor: default;
}
.g-file-drop.transparent .drop-info {
  display: none;
}
.g-file-drop.transparent:before {
  content: "";
  display: none;
}
.g-file-drop.transparent:hover {
  border-color: transparent;
}
.g-file-drop.transparent.active:hover:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(12.8, 21.6, 32.8, 0.85);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  z-index: 0;
}
.g-file-drop.image {
  border-color: rgba(58, 70, 94, 0.9);
  color: rgb(23.7692307692, 23.7692307692, 27.7307692308);
}
.g-file-drop.image p {
  color: rgb(23.7692307692, 23.7692307692, 27.7307692308);
}
.g-file-drop.success {
  border-color: #00C99A;
}
.g-file-drop.success > * {
  display: none;
}
.g-file-drop.hidden {
  padding: 0;
  margin: 0;
  border: none;
}
.g-file-drop .drop-info {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  font-size: 3rem;
  color: #fff;
  text-align: center;
}
.g-file-drop p {
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.875rem;
  margin: 0 !important;
}

.media-preview {
  background-size: cover;
  background-position: center center;
  z-index: 10;
}
.media-preview.video video {
  width: 100%;
  height: auto;
}
.media-preview .upload-prog {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1rem;
  width: 0%;
  background: rgba(0, 191, 255, 0.8);
  z-index: 11;
  -webkit-transition: width 1s;
  transition: width 1s;
}
.media-preview .upload-prog.completed {
  opacity: 0;
  -webkit-transition: width 0s, opacity 0.5s;
  transition: width 0s, opacity 0.5s;
}
.media-preview .size-indicator {
  position: absolute;
  top: 0rem;
  left: 0;
  right: 0;
  text-align: center;
  padding: 0.25rem 0.125rem;
  line-height: 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #00bFFF;
  background-color: rgba(12, 12, 14, 0.9);
}
.media-preview .completed-mark {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  color: #00C99A;
  font-size: 2rem;
}

.g-date-range {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  background-color: rgb(29.67, 48.5724, 72.63);
  width: auto;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.g-date-range .range-list {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 12rem;
  flex: 0 1 12rem;
  width: 12rem;
  margin-left: 2rem;
}
.g-date-range .range-list .g-scrollbar-view {
  background-color: transparent !important;
}
.g-date-range .range-group {
  margin-bottom: 0.4rem;
  border-left: 2px solid rgb(49.04, 70.8288, 98.56);
}
.g-date-range .range-group.selected .group-list {
  display: block;
}
.g-date-range .range-group .group-label {
  display: block;
  font-size: 1.2rem;
  color: #00bFFF;
  text-transform: uppercase;
  cursor: pointer;
  width: 100%;
  padding: 0.4rem 1rem;
}
.g-date-range .range-group .group-label:hover {
  background-color: rgb(32.6282991202, 53.4153958944, 79.8717008798);
}
.g-date-range .range-group .group-list {
  display: none;
}
.g-date-range .range-group .group-list a {
  display: block;
  padding: 0.4rem;
  padding-left: 1.6rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: #768aa8;
  font-weight: 600;
  border-left: 1px solid transparent;
}
.g-date-range .range-group .group-list a.selected {
  color: #00bFFF;
  border-left: 1px solid #00bFFF;
}
.g-date-range .range-group .group-list a:hover {
  color: #00bFFF;
}
.g-date-range .cal-list {
  padding-left: 2rem;
}
.g-date-range .cal-list .DayPicker-Months {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.g-date-range .cal-list .DayPicker-Month:not(:last-child) {
  margin-right: 2rem;
}
.g-date-range .actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 1rem 1rem 1rem 0;
}
.g-date-range .actions .days {
  font-size: 1.1rem;
  font-weight: 700;
  color: #768aa8;
  text-transform: capitalize;
}

.g-date-range-btn .calendar {
  top: 0.05rem;
}

.g-time-selector {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #00bFFF;
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  border: 1px solid rgb(23.9675, 37.9221, 55.6825);
  padding: 0.6rem 1.4rem;
}
.g-time-selector i {
  margin-left: 1rem;
}
.g-time-selector:hover, .g-time-selector.active {
  border: 1px solid rgb(23.9675, 37.9221, 55.6825);
}

.g-tabs.icons .g-tab {
  padding: 1rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.g-tabs.icons .g-tab:not(:last-child) {
  margin-right: 0rem;
}
.g-tabs .g-tab-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid rgb(29.67, 48.5724, 72.63);
}
.g-tabs .g-tab {
  position: relative;
  top: 1px;
  padding: 0.8rem 2rem;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: #768aa8;
  font-weight: 600;
  letter-spacing: 0px;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.g-tabs .g-tab.selected {
  color: #00bFFF;
  border-color: #00bFFF;
}
.g-tabs .g-tab.selected .svg {
  fill: #00bFFF;
  stroke: #00bFFF;
}
.g-tabs .g-tab:not(:last-child) {
  margin-right: 2rem;
}
.g-tabs .g-tab-panel {
  display: none;
}
.g-tabs .g-tab-panel.selected {
  display: block;
}

.g-fill-bar {
  height: 0.6rem;
  border-radius: 0.3rem;
  background-color: #101b29;
}
.g-fill-bar span {
  height: 100%;
  border-radius: 0.3rem;
  display: block;
  background-color: #00bFFF;
}

.g-tag-list.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 1rem;
  margin-right: -1rem;
}
.g-tag-list.row .g-tag {
  margin-right: 1rem;
  margin-bottom: 1rem;
}

.g-tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  border: 1px solid rgb(29.67, 48.5724, 72.63);
  padding: 0rem 1rem 0 1rem;
  height: 3rem;
  border-radius: 0.6rem;
  background-color: rgb(23.9675, 37.9221, 55.6825);
  font-weight: 700;
  color: #768aa8;
}
.g-tag.m {
  font-size: 1.4rem;
  line-height: 2.8rem;
}
.g-tag.s {
  font-size: 1.2rem;
  height: 2.6rem;
  line-height: 2.4rem;
}
.g-tag.disabled {
  opacity: 0.5;
  color: rgba(118, 138, 168, 0.8);
}
.g-tag.clickable:hover {
  cursor: pointer;
  background-color: rgb(29.67, 48.5724, 72.63);
}
.g-tag.clickable:hover .tag-action {
  background-color: rgb(29.67, 48.5724, 72.63);
  border-left-color: rgb(37.0657478006, 60.6798897361, 90.7342521994);
}
.g-tag.clickable:hover .tag-action .g-icon {
  fill: #fd77d2;
}
.g-tag.channel .g-channel-card .g-avatar {
  width: 1.8rem;
  height: 1.8rem;
}
.g-tag.channel .g-channel-card .g-avatar img {
  vertical-align: initial;
}
.g-tag.live {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #00C99A;
  color: rgb(11.2, 18.9, 28.7);
  padding: 0.2rem 1.4rem 0 1.4rem;
  border-radius: 0.4rem;
}
.g-tag .tag-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 1rem;
  margin-right: -1rem;
  padding: 0 0.2rem 0 0.4rem;
  border-left: 1px solid rgb(29.67, 48.5724, 72.63);
  cursor: pointer;
}
.g-tag .tag-action:hover {
  background-color: rgb(29.67, 48.5724, 72.63);
}
.g-tag .tag-action .click-action-icon {
  padding: 0 0.4rem;
}
.g-tag .tag-action .click-action-icon .g-icon {
  fill: #00bFFF;
}
.g-tag .pre-tag-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0.2rem 0 0;
  position: relative;
  left: -2px;
}
.g-tag .pre-tag-icon .g-icon {
  top: 2px;
}
.g-tag .tag-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 0rem;
  margin-right: -0.2rem;
  margin: 0 0rem 0 1.4rem;
  cursor: pointer;
}

.g-user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.g-user.vert {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.g-user.vert .g-avatar {
  margin-bottom: 1rem;
}
.g-user .g-avatar {
  margin-right: 1rem;
}
.g-user .username {
  font-weight: 600;
  font-size: 1.4rem;
  color: #fff;
  white-space: nowrap;
}
.g-user.l .username {
  font-size: 2rem;
}

.g-stats {
  margin-right: -2rem;
  margin-bottom: -2rem;
}
.g-stats.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.g-stats.wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.g-stats.row-4 .g-stats-box {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 25%;
  flex: 1 1 25%;
}
.g-stats.row-3 .g-stats-box {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 33%;
  flex: 1 1 33%;
  max-width: 33%;
}
.g-stats .g-stats-box {
  padding-right: 2rem;
  padding-bottom: 2rem;
}

.g-stats-box {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.g-stats-box .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 2rem;
  background-color: #101b29;
  border-radius: 0.8rem;
  min-height: 12rem;
}
.g-stats-box.loading .label,
.g-stats-box.loading .value {
  position: relative;
}
.g-stats-box.loading .label {
  min-height: 1.2rem;
  min-width: 40%;
  margin-bottom: 0.6rem;
}
.g-stats-box.loading .value {
  min-height: 2rem;
  min-width: 60%;
}
.g-stats-box .label {
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(118, 138, 168, 0.6);
}
.g-stats-box .value {
  font-weight: 700;
  font-size: 3rem;
  white-space: nowrap;
}

.g-stat-item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.g-stat-item-list .g-stat-item + .g-stat-item {
  margin-left: 2rem;
}

.g-stat-item {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 20%;
  flex: 0 1 20%;
  color: #768aa8;
  font-weight: 600;
}
.g-stat-item.loading .g-stat-label {
  margin-bottom: 0.8rem;
  min-width: 10rem;
}
.g-stat-item.loading .g-stat-value {
  min-height: 3.4rem;
  max-width: 8rem;
}
.g-stat-item .g-stat-label {
  font-size: 1.1rem;
  text-transform: uppercase;
  white-space: nowrap;
  font-weight: 600;
  color: rgba(118, 138, 168, 0.6);
}
.g-stat-item .g-stat-value {
  font-size: 2.4rem;
  font-weight: 700;
  color: #768aa8;
}
.g-stat-item.quant-4-5 .g-stat-value {
  color: #F53D7A;
}
.g-stat-item.quant-4-4 .g-stat-value {
  color: rgb(213.6381355932, 100.6118644068, 154.9794915254);
}
.g-stat-item.quant-4-3 .g-stat-value {
  color: rgb(23.6, 180.4, 237.6);
}

.g-channel-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.g-channel-card.col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.g-channel-card.col .g-avatar {
  margin-bottom: 1rem;
}
.g-channel-card.loading .name {
  min-width: 12rem;
}
.g-channel-card.no-name.xl .g-avatar, .g-channel-card.no-name.m .g-avatar, .g-channel-card.no-name.l .g-avatar {
  margin-right: 0rem;
}
.g-channel-card .g-avatar {
  margin-right: 1rem;
}
.g-channel-card .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-weight: 600;
  font-size: 1.4rem;
  color: #fff;
}
.g-channel-card .extra a {
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #768aa8;
  font-weight: 600;
}
.g-channel-card.m .badge {
  margin-left: 1.4rem;
  top: 2px;
}
.g-channel-card.m .badge .svg {
  width: 1.5rem;
  height: 1.5rem;
}
.g-channel-card.l .name {
  font-size: 2rem;
}
.g-channel-card.xl .g-avatar {
  margin-right: 2rem;
}
.g-channel-card.xl .name {
  font-size: 2rem;
}
.g-channel-card.xxl .g-avatar {
  margin-right: 2rem;
}
.g-channel-card.xxl .g-avatar .badge .svg {
  width: 2.6rem;
  height: 2.6rem;
}
.g-channel-card.xxl .name {
  font-size: 2.8rem;
}
.g-channel-card.xxl .name .svg {
  margin-left: 1.4rem;
  top: 8px;
  width: 2.6rem;
  height: 2.6rem;
}
.g-channel-card.xxl .name .svg.youtube {
  top: 5px;
}

.g-channel-list .g-channel-item {
  margin: 0 0 2rem;
}

.g-channel-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  background-color: #101b29;
  border-radius: 0.8rem;
}
.g-channel-item:hover {
  background-color: rgba(23.9675, 37.9221, 55.6825, 0.5);
}
.g-channel-item.loading .channel-info .channel-status {
  max-width: 14rem;
  left: 0rem;
}
.g-channel-item .wrap-left {
  padding: 2rem 0rem 2rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.g-channel-item .channel-info {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  margin-right: 2rem;
}
.g-channel-item .channel-info .g-channel-card {
  margin-bottom: 1rem;
}
.g-channel-item .channel-info .channel-status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
}
.g-channel-item .channel-info .channel-status .g-channel-status:not(:last-child) {
  margin-right: 0.4rem;
}
.g-channel-item .channel-info .channel-status .service {
  margin-right: 0.2rem;
  width: 1.6rem;
  height: 1.6rem;
}
.g-channel-item .channel-info .channel-status .service.twitch {
  top: 1px;
}
.g-channel-item .channel-info .channel-status .g-icon.twitch,
.g-channel-item .channel-info .channel-status .g-icon.youtube {
  fill: rgb(41.4315789474, 69.9157894737, 106.1684210526);
}
.g-channel-item .g-stat-item-list {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.g-channel-item .g-stat-item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
}
.g-channel-item .channel-actions {
  margin: 0.4rem 0.4rem 0 2rem;
}

.g-channel-stats-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 1.6rem 0;
  border-bottom: 1px solid rgb(29.67, 48.5724, 72.63);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.g-channel-stats-item.loading .actions {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
}
.g-channel-stats-item.loading .streamer {
  max-width: 200px;
}
.g-channel-stats-item.loading .g-avatar {
  width: 34px;
  height: 34px;
}
.g-channel-stats-item.loading .username {
  height: 1.4rem;
  min-width: 10rem;
}
.g-channel-stats-item.loading .stats,
.g-channel-stats-item .stats.loading-shine {
  height: 4rem;
  max-width: 40rem;
}
.g-channel-stats-item.offline .username {
  color: #768aa8;
}
.g-channel-stats-item.offline .streamer {
  opacity: 0.7;
}
.g-channel-stats-item.offline:hover {
  opacity: 1;
}
.g-channel-stats-item .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.g-channel-stats-item .streamer {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 40%;
  max-width: 250px;
}
.g-channel-stats-item .streamer .g-avatar {
  margin: 0 1rem 0 0;
  cursor: pointer;
}
.g-channel-stats-item .streamer .channel-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.g-channel-stats-item .streamer .username {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.4rem;
  font-weight: 600;
}
.g-channel-stats-item .streamer .status {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  font-size: 0.8rem;
  line-height: 0.8rem;
  text-transform: uppercase;
  cursor: pointer;
}
.g-channel-stats-item .streamer .status:not(:last-child) {
  margin: 0 1.6rem 0 0;
}
.g-channel-stats-item .streamer .status:before {
  content: "";
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  margin-right: 0.4rem;
  background-image: url("");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.g-channel-stats-item .streamer .status.hs:before {
  width: 1.4rem;
  height: 1.4rem;
  margin-right: 0.5rem;
}
.g-channel-stats-item .streamer .status.offline {
  color: rgb(41.4315789474, 69.9157894737, 106.1684210526);
}
.g-channel-stats-item .streamer .status.live {
  color: #00C99A;
}
.g-channel-stats-item .streamer .status.hs:before {
  background-image: url("/assets/svg/hs_face.svg");
}
.g-channel-stats-item .streamer .status.twitch:before {
  background-image: url("/assets/svg/twitch_logo.svg");
}
.g-channel-stats-item .stats {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 75%;
  flex: 1 1 75%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 50%;
}
.g-channel-stats-item .stats > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 10%;
}
.g-channel-stats-item .stats > div:not(:last-child) {
  margin-right: 2rem;
}
.g-channel-stats-item .stats .label {
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #768aa8;
  margin-bottom: 0.4rem;
  white-space: nowrap;
}
.g-channel-stats-item .stats .value {
  font-size: 1.3rem;
  line-height: 1.3rem;
  white-space: nowrap;
}
.g-channel-stats-item .stats.fill-rate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.g-channel-stats-item .stats.fill-rate .g-fill-bar {
  margin-top: 0.2rem;
  width: 4rem;
}
.g-channel-stats-item .actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  min-width: 100px;
}
.g-channel-stats-item .actions > .btn:not(:last-of-type) {
  margin-right: 2rem;
}

.channel-dropdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 1rem;
  padding: 2rem;
  font-weight: 600;
}
.channel-dropdown .label {
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #768aa8;
  font-weight: 500;
}

.g-game-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.g-game-card.col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.g-game-card.col .g-avatar {
  margin-bottom: 1rem;
}
.g-game-card.loading .name {
  min-width: 12rem;
}
.g-game-card.empty-game .g-gamethumb {
  margin-right: 1rem;
  border-radius: 0.6rem;
  background-color: rgb(23.9675, 37.9221, 55.6825);
  width: 75px;
  height: 103px;
}
.g-game-card .g-gamethumb {
  margin-right: 1rem;
  border-radius: 0.6rem;
}
.g-game-card .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-weight: 600;
  font-size: 1.4rem;
  color: #fff;
}
.g-game-card .extra a {
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #768aa8;
  font-weight: 600;
}
.g-game-card.l .name {
  font-size: 2rem;
}
.g-game-card.xl .g-gamethumb {
  margin-right: 2rem;
}
.g-game-card.xl .name {
  font-size: 2rem;
}
.g-game-card.xxl .g-gamethumb {
  margin-right: 2rem;
}
.g-game-card.xxl .name {
  font-size: 2.8rem;
}

.g-game-list .g-game-item {
  margin-bottom: 0.8rem;
}

.g-game-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 1rem;
  background-color: #101b29;
  border-radius: 0.8rem;
}
.g-game-item.loading .game-name {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 20%;
  flex: 1 1 20%;
}
.g-game-item.loading .g-stat-item-list {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 80%;
  flex: 1 1 80%;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.g-game-item.loading .g-stat-item-list .g-stat-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
  max-width: 15rem;
}
.g-game-item.loading .g-stat-item-list .g-stat-item .g-stat-value {
  width: 100%;
}
.g-game-item .g-game-card {
  margin-right: 2rem;
}
.g-game-item .g-stat-item-list {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 80%;
  flex: 1 1 80%;
}
.g-game-item .g-stat-item-list .g-stat-item {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.g-slideshow.fade-background {
  -webkit-transition: background-color 1s ease;
  transition: background-color 1s ease;
}
.g-slideshow .g-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.g-slide.fade-in {
  -webkit-animation: fadeIn 1000ms forwards;
  animation: fadeIn 1000ms forwards;
}
.g-slide.fade-out {
  -webkit-animation: fadeOut 1000ms forwards;
  animation: fadeOut 1000ms forwards;
}
.g-slide.hidden {
  display: none;
}
.g-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.g-slide video {
  width: 100%;
  height: 100%;
}

.g-scene-strip {
  position: relative;
}
.g-scene-strip .scenecard-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
  margin-right: -1rem;
  margin-bottom: -1rem;
}
.g-scene-strip .scenecard-wrapper {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 160px;
  flex: 0 0 160px;
  width: 160px;
  height: 110px;
  padding: 0 1rem 1rem 0;
  border-radius: 0.5rem;
}
.g-scene-strip .scenecard-wrapper.dragging .ghost-image {
  position: absolute;
  z-index: -1;
  border-radius: 0.5rem;
  top: 0rem;
  left: 0rem;
  width: 150px;
  height: 100px;
  background-color: rgb(12.8, 21.6, 32.8);
}
.g-scene-strip .scenecard-wrapper.dragging .ghost-image > div {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background-image: url("");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.2;
  border-radius: 0.5rem;
}
.g-scene-strip .scenecard-wrapper.dragging .scenecard {
  z-index: 1000;
}
.g-scene-strip .scenecard-wrapper.drag-target .scenecard {
  border: 2px solid #fd77d2;
}
.g-scene-strip .scenecard-wrapper.disabled {
  pointer-events: none;
  opacity: 0.5;
}
.g-scene-strip .scenecard-wrapper.disabled .scenecard {
  border: 1px solid rgb(23.9675, 37.9221, 55.6825);
}
.g-scene-strip .scenecard-wrapper.disabled .scenecard.playing {
  border-color: rgb(29.67, 48.5724, 72.63);
}
.g-scene-strip .scenecard-wrapper.disabled .scenecard.custom:after {
  display: none;
}
.g-scene-strip .scenecard-wrapper.disabled .scenecard .playhead {
  border-color: rgb(29.67, 48.5724, 72.63);
  background-color: rgba(29.67, 48.5724, 72.63, 0.5);
}
.g-scene-strip .scenecard-wrapper.disabled .scenecard .image {
  opacity: 0.5;
}
.g-scene-strip .scenecard-wrapper.disabled .scenecard .length {
  background-color: rgb(68.41, 93.0852, 124.49);
}
.g-scene-strip .scenecard-wrapper.highlighted .scenecard {
  border: 1px solid #f7931e;
}
.g-scene-strip .scenecard-wrapper.highlighted .scenecard.playing {
  border: 2px solid #f7931e;
}
.g-scene-strip .scenecard-wrapper.highlighted .scenecard.playing .playhead {
  border-color: #f7931e;
  background-color: rgba(247, 147, 30, 0.2);
}
.g-scene-strip .scenecard,
.g-scene-strip .uploadcard {
  position: relative;
  width: 150px;
  height: 100px;
  border-radius: 0.5rem;
}
.g-scene-strip .uploadcard {
  border: 1px dashed rgb(29.67, 48.5724, 72.63);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.g-scene-strip .uploadcard .svg {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  width: 4rem;
  height: 4rem;
  fill: rgb(29.67, 48.5724, 72.63);
}
.g-scene-strip .uploadcard:hover {
  border-color: #00bFFF;
}
.g-scene-strip .uploadcard:hover svg {
  fill: #00bFFF;
}
.g-scene-strip .scenecard {
  background-color: transparent !important;
  -webkit-transition: all 0.2s, top 0, left 0;
  transition: all 0.2s, top 0, left 0;
  border: 1px solid rgb(29.67, 48.5724, 72.63);
  cursor: pointer;
}
.g-scene-strip .scenecard.selected {
  border: 2px solid #fd5b7e !important;
}
.g-scene-strip .scenecard.selected .playhead {
  border-color: #fd5b7e;
}
.g-scene-strip .scenecard.playing {
  border: 2px solid #00bFFF;
}
.g-scene-strip .scenecard.clickable {
  cursor: pointer;
}
.g-scene-strip .scenecard.breaking {
  border: 2px solid rgba(0, 191, 255, 0.4);
}
.g-scene-strip .scenecard.breaking .thumb,
.g-scene-strip .scenecard.breaking .length,
.g-scene-strip .scenecard.breaking .custom {
  opacity: 0.3;
}
.g-scene-strip .scenecard.breaking .length,
.g-scene-strip .scenecard.breaking .custom {
  opacity: 0;
}
.g-scene-strip .scenecard.breaking.loop-break {
  border: 2px solid rgba(202, 240, 65, 0.4);
}
.g-scene-strip .scenecard .thumb {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 0;
}
.g-scene-strip .scenecard .thumb.image {
  background-image: url("");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.g-scene-strip .scenecard .thumb.video video {
  width: 100%;
  height: 100%;
}
.g-scene-strip .scenecard .delete-button {
  position: absolute;
  bottom: 0.3rem;
  right: 0rem;
}
.g-scene-strip .scenecard .delete-button i {
  right: -1px;
}
.g-scene-strip .scenecard .playhead {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
  border-right: 2px solid #00bFFF;
  background-color: rgba(0, 191, 255, 0.2);
  z-index: 10;
}
.g-scene-strip .scenecard .id {
  font-size: 1rem;
  background: black;
  position: absolute;
  bottom: 0;
}
.g-scene-strip .scenecard .length,
.g-scene-strip .scenecard .custom {
  position: absolute;
  top: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 1.8rem;
  padding: 0 0.5rem;
  border-radius: 0.2rem;
  background-color: #26e1cf;
  color: #101b29;
  font-size: 1.1rem;
  line-height: 1rem;
  font-weight: 700;
}
.g-scene-strip .scenecard .length {
  left: 0.5rem;
  background-color: #26e1cf;
}
.g-scene-strip .scenecard .custom {
  right: 0.5rem;
  padding: 0 0.4rem;
  background-color: #fd5b7e;
}
.g-scene-strip .scenecard .custom svg {
  position: relative;
  top: -1px;
  width: 1.3rem;
  height: 1.3rem;
}
.g-scene-strip .scenecard .slide-break {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 5rem;
  width: 5rem;
  padding: 0 1.2rem 0 1.2rem;
  border-radius: 5rem;
  z-index: 10;
  background-color: #00bFFF;
  color: rgb(23.7692307692, 23.7692307692, 27.7307692308);
  font-size: 1rem;
  line-height: 1rem;
  font-weight: 600;
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.g-scene-strip .scenecard .slide-break.breaking {
  opacity: 1;
}
.g-scene-strip .scenecard .slide-break.loop-break {
  background-color: #caf041;
}
.g-scene-strip .scenecard .slide-break .g-icon.pause {
  fill: rgb(23.7692307692, 23.7692307692, 27.7307692308);
  width: 1.4rem;
  height: 1.4rem;
}
.g-scene-strip .scenecard .slide-break .break-length {
  position: absolute;
  bottom: 0.4rem;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.g-overlay-settings {
  height: 100%;
}
.g-overlay-settings .settings-section {
  margin-bottom: 2rem;
  border-bottom: 1px solid rgb(23.9675, 37.9221, 55.6825);
  padding-bottom: 0;
}
.g-overlay-settings .settings-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.g-overlay-settings .settings-section.actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.g-overlay-settings .input.custom label {
  color: #fd5b7e;
}
.g-overlay-settings .input.custom .label-extra {
  cursor: pointer;
}
.g-overlay-settings .info {
  text-align: center;
  margin-top: 3rem;
  font-size: 1.2rem;
  color: #768aa8;
  font-weight: 600;
}
.g-overlay-settings .scene-settings {
  position: absolute;
  top: 0rem;
  left: 0rem;
  right: 0rem;
  bottom: 0;
  z-index: 10;
  background-color: #101b29;
}
.g-overlay-settings .scene-settings .slide-logo {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.g-overlay-settings .scene-settings .slide-logo img {
  max-height: 50px;
  width: auto;
}
.g-overlay-settings .scene-settings label .custom {
  position: relative;
  top: 0.4rem;
  left: 0.2rem;
  font-size: 1.6rem;
  line-height: 1.6rem;
}
.g-overlay-settings .scene-settings .actions .btn.delete {
  position: absolute;
  right: -1rem;
}

.g-scene-settings .campaign-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 3rem;
  max-width: 100%;
  width: 100%;
}
.g-scene-settings .campaign-info .name {
  padding: 0.2rem 0;
  font-weight: 500;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.g-scene-settings .campaign-info .targeting {
  padding: 0.2rem 0;
  color: #768aa8;
  font-weight: 500;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  white-space: nowrap;
}
.g-scene-settings .campaign-info .targeting:before {
  content: "";
  padding: 0.1rem 0rem;
  margin-left: 1.6rem;
  padding-left: 1.6rem;
  border-left: 1px solid rgb(49.04, 70.8288, 98.56);
}
.g-scene-settings .preview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 4rem;
}
.g-scene-settings .settings-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.g-scene-settings .settings-actions .secondary-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.g-scene-settings .input.custom label {
  color: #fd5b7e;
}
.g-scene-settings .input.custom .label-extra {
  cursor: pointer;
}
.g-scene-settings label .custom {
  position: relative;
  top: 0.4rem;
  left: 0.2rem;
  font-size: 1.6rem;
  line-height: 1.6rem;
}

.g-scene-library {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin-right: -0.8rem;
}
.g-scene-library .g-scrollbars {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
}
.g-scene-library .g-scrollbar-view {
  padding: 0rem;
}
.g-scene-library .item-set {
  margin-bottom: 3rem;
}
.g-scene-library .item-title {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.1rem;
  color: #768aa8;
  margin: 0 0 1rem 0;
}
.g-scene-library .item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.g-scene-library .add-slide {
  margin: 0 0 3rem;
}
.g-scene-library .add-slide .g-file-drop {
  margin: 0 0;
}
.g-scene-library .add-slide .upload-status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 1rem;
  background-color: rgb(29.67, 48.5724, 72.63);
  padding: 1rem;
  border-radius: 0.6rem;
}
.g-scene-library .add-slide .upload-status .upload-status-text {
  margin-left: 1rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: #768aa8;
}
.g-scene-library .add-slide .upload-status .g-spinner {
  margin-right: 1rem;
  width: 1.5rem;
  height: 1.5rem;
}
.g-scene-library .btn.upload {
  margin: 2rem auto;
}

.g-library-item {
  margin: 0 0.8rem 0.8rem 0;
  border: 1px solid rgb(29.67, 48.5724, 72.63);
  border-radius: 0.6rem;
  padding: 0.2rem;
  cursor: pointer;
}
.g-library-item.disabled {
  pointer-events: none;
  opacity: 0.5;
  -webkit-filter: sepia(100%) hue-rotate(180deg) brightness(150%);
  filter: sepia(100%) hue-rotate(180deg) brightness(150%);
}
.g-library-item:hover {
  border-color: #00bFFF;
}
.g-library-item:hover .hover {
  opacity: 1;
}
.g-library-item:hover.disabled {
  -webkit-filter: none;
  filter: none;
}
.g-library-item .thumb {
  width: 14rem;
  height: 7.9rem;
}
.g-library-item .thumb.image {
  background-image: url("");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.g-library-item .thumb.video video {
  width: 100%;
  height: 100%;
}
.g-library-item .hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 0;
  background-color: rgba(0, 191, 255, 0.3);
  z-index: 10;
  -webkit-transition: opacity 0.1s;
  transition: opacity 0.1s;
}
.g-library-item.archived .hover .svg {
  display: none;
}

.g-link-library {
  padding-bottom: 8rem;
}
.g-link-library .actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 -2rem 3rem;
  padding: 0 2rem 2rem;
  margin-bottom: 0rem;
  border-bottom: 1px solid rgb(29.67, 48.5724, 72.63);
}
.g-link-library .link-item-list {
  margin: 0;
  padding: 0;
}

.g-link-library-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 2rem 0rem;
}
.g-link-library-item:hover {
  cursor: pointer;
  background-color: rgba(23.9675, 37.9221, 55.6825, 0.5);
}
.g-link-library-item:hover .btn-list .btn {
  background-color: #fd5b7e;
}
.g-link-library-item.disabled {
  cursor: default;
  opacity: 0.5;
}
.g-link-library-item.disabled .btn {
  display: none;
}
.g-link-library-item.disabled .link-name {
  color: #768aa8;
}
.g-link-library-item.disabled:hover {
  background-color: transparent;
}
.g-link-library-item:not(:last-child) {
  margin-bottom: 0rem;
  border-bottom: 1px solid rgb(29.67, 48.5724, 72.63);
}
.g-link-library-item .link-info {
  padding-left: 1rem;
}
.g-link-library-item .link-name {
  font-size: 1.4rem;
  font-weight: 600;
  word-break: break-all;
}
.g-link-library-item .link-url {
  font-size: 1.2rem;
  font-weight: 600;
  color: #768aa8;
  word-break: break-all;
}
.g-link-library-item .btn-list {
  margin-left: 2rem;
  padding-right: 1rem;
}
.g-link-library-item .btn-list .btn {
  background-color: rgb(23.9675, 37.9221, 55.6825);
}

.g-channel-select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgb(23.9675, 37.9221, 55.6825);
  border-radius: 0.6rem;
  padding: 0.6rem 1rem;
  cursor: pointer;
}
.g-channel-select .g-icon {
  margin-left: 1rem;
}
.g-channel-select .g-channel-card {
  margin: 0 0rem 0 0.8rem;
}
.g-channel-select.l .g-avatar {
  width: 2rem;
  height: 2rem;
}
.g-channel-select .all-channels {
  line-height: 3rem;
  font-weight: 700;
  margin: 0 0rem 0 0.8rem;
}
.g-channel-select .select-text {
  line-height: 3rem;
  font-weight: 700;
  margin: 0 0rem 0 0.8rem;
  color: #768aa8;
}

.g-overlay-select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgb(23.9675, 37.9221, 55.6825);
  border-radius: 0.6rem;
  padding: 0.6rem 1rem 0.6rem 2rem;
  cursor: pointer;
}
.g-overlay-select .overlay-name {
  line-height: 3rem;
  font-weight: 700;
}
.g-overlay-select .g-icon {
  margin-left: 1rem;
}

.g-user-select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgb(23.9675, 37.9221, 55.6825);
  border-radius: 0.6rem;
  padding: 0.6rem 1rem;
  cursor: pointer;
}
.g-user-select .g-icon {
  margin-left: 1rem;
}
.g-user-select.l .g-avatar {
  width: 2rem;
  height: 2rem;
}

.g-user-select-dropdown .g-user-select-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.g-user-select-dropdown .g-user-select-item .select-action {
  margin: 0 -1rem 0 4rem;
  padding: 0 0 0 1rem;
  border-left: 1px solid rgb(49.04, 70.8288, 98.56);
}
.g-user-select-dropdown .g-user-select-item .select-action .btn.i {
  background-color: rgba(49.04, 70.8288, 98.56, 0.5);
  background-color: transparent;
}

.g-scene-list {
  margin-right: -1rem;
  margin-bottom: -1rem;
}
.g-scene-list.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.g-scene-list.wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.g-scene-list > * {
  margin-right: 1rem;
  margin-bottom: 1rem;
}

.g-scene-item {
  border-radius: 0.8rem;
  background-color: rgb(23.9675, 37.9221, 55.6825);
  padding: 0.6rem;
}
.g-scene-item.s {
  width: 7.5rem;
  height: 5rem;
}
.g-scene-item, .g-scene-item.m {
  width: 15rem;
  height: 10rem;
}
.g-scene-item.selected {
  border: 2px solid #fd5b7e !important;
}
.g-scene-item.has-click {
  cursor: pointer;
}
.g-scene-item.slide-no-background {
  background-image: url("/assets/images/ui/transparent_background.png") !important;
}
.g-scene-item .length,
.g-scene-item .custom {
  position: absolute;
  top: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 1.8rem;
  padding: 0 0.5rem;
  border-radius: 0.5rem;
  background-color: #26e1cf;
  color: #101b29;
  font-size: 1.1rem;
  line-height: 1.1rem;
  font-weight: 700;
}
.g-scene-item .length {
  left: 0.5rem;
  background-color: #26e1cf;
}
.g-scene-item .custom {
  right: 0.5rem;
  padding: 0 0.4rem;
  background-color: #fd5b7e;
}
.g-scene-item .custom svg {
  position: relative;
  top: -1px;
  width: 1.3rem;
  height: 1.3rem;
}
.g-scene-item .thumb.image {
  background-image: url("");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
}
.g-scene-item .thumb.video video {
  width: 100%;
  height: 100%;
}

.g-scene-item-drag-wrapper .g-scene-item {
  border: 3px solid transparent;
}
.g-scene-item-drag-wrapper.dragging .ghost-image {
  position: absolute;
  z-index: 0;
  border-radius: 0.5rem;
  top: 0rem;
  left: 0rem;
  width: 150px;
  height: 100px;
  background-color: rgb(12.8, 21.6, 32.8);
}
.g-scene-item-drag-wrapper.dragging .ghost-image > div {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background-image: url("");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.2;
  border-radius: 0.5rem;
}
.g-scene-item-drag-wrapper.drag-target:not(.dragging) .g-scene-item {
  border: 3px solid #f7931e;
}
.g-scene-item-drag-wrapper .react-draggable-dragging {
  z-index: 1000 !important;
  background-color: #101b29;
}

.g-scene-stats-list .g-scene-stats-item {
  padding: 1rem;
}
.g-scene-stats-list .g-scene-stats-item + .g-scene-stats-item {
  margin-top: 1rem;
}

.g-scene-stats-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #101b29;
  border-radius: 0.8rem;
}
.g-scene-stats-item .scene-thumb-wrap {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin-right: 6rem;
}
.g-scene-stats-item .g-stat-item-list {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.g-scene-stats-item .status {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: rgb(29.67, 48.5724, 72.63);
}
.g-scene-stats-item .status.active {
  background-color: #00C99A;
}

.scene-dropdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 1rem;
  padding: 2rem;
  font-weight: 600;
}
.scene-dropdown .label {
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #768aa8;
  font-weight: 500;
}

.g-scene-manage-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
  margin-top: -2rem;
  margin-right: -2rem;
}
.g-scene-manage-list .g-scene-manage-item {
  margin-top: 2rem;
  padding-right: 2rem;
}

.g-scene-manage-item {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 33.33%;
  flex: 0 1 33.33%;
  position: relative;
}
.g-scene-manage-item .scene-item-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 2rem;
  background-color: #101b29;
  border-radius: 0.8rem;
}
.g-scene-manage-item .scene-thumb-wrap {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.g-scene-manage-item .manage-actions {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.g-scene-manage-item .status {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: rgb(29.67, 48.5724, 72.63);
}
.g-scene-manage-item .status.active {
  background-color: #00C99A;
}

.g-empty-item {
  padding: 0rem;
  color: #768aa8;
}
.g-empty-item.margin {
  padding: 1rem;
}
.g-empty-item.left .empty-wrap {
  display: block;
}
.g-empty-item.left p {
  text-align: left;
}
.g-empty-item.m .empty-wrap {
  padding: 2rem;
  border-radius: 0.6rem;
}
.g-empty-item.l .empty-wrap {
  padding: 4rem;
  border-radius: 0.8rem;
}
.g-empty-item.xl .empty-wrap {
  padding: 6rem;
  border-radius: 1rem;
}
.g-empty-item.bordered {
  border: 2px dashed rgb(23.9675, 37.9221, 55.6825);
  border-radius: 0.6rem;
}
.g-empty-item .empty-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #101b29;
}
.g-empty-item h1, .g-empty-item h2, .g-empty-item h3 {
  max-width: 65%;
}
.g-empty-item h1 {
  text-transform: capitalize;
  text-align: center;
}
.g-empty-item h1 + h2 {
  color: #768aa8;
  margin-bottom: 4rem;
  text-transform: none;
  text-align: center;
}
.g-empty-item h3 {
  color: #768aa8;
  text-transform: capitalize;
  text-align: center;
  line-height: 1.4em;
}
.g-empty-item h3 + h4 {
  margin-top: -1rem;
}
.g-empty-item h4 {
  font-size: 1.3rem;
  color: #768aa8;
  text-transform: capitalize;
  text-align: center;
}
.g-empty-item p {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 1rem;
  color: rgb(47.4197947214, 77.6303753666, 116.0802052786);
}

.g-channel-status {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  width: 3rem;
  height: 3rem;
}
.g-channel-status svg.twitch,
.g-channel-status svg.youtube {
  position: relative;
  width: 1.4rem;
  height: 1.4rem;
  margin-right: 0.8rem;
}
.g-channel-status .g-icon {
  width: 1.6rem;
  height: 1.6rem;
}
.g-channel-status .g-icon.chat {
  top: 0.2rem;
}
.g-channel-status .g-icon.slideshow {
  top: 0.1rem;
}
.g-channel-status.off .g-icon {
  fill: rgb(41.4315789474, 69.9157894737, 106.1684210526);
}
.g-channel-status.off .svg {
  fill: rgb(41.4315789474, 69.9157894737, 106.1684210526);
}
.g-channel-status.on .g-icon {
  fill: #00C99A;
}
.g-channel-status.on .svg {
  fill: rgb(41.4315789474, 69.9157894737, 106.1684210526);
}

.g-campaign-list .g-campaign-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.g-campaign-list .g-campaign-header > * {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 20%;
  flex: 1 1 20%;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #768aa8;
  font-weight: 600;
}
.g-campaign-list .g-campaign-item:not(:last-child) {
  margin-bottom: 2rem;
}

.g-campaign-item {
  background-color: #101b29;
  border-radius: 0.8rem;
}
.g-campaign-item .top-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  border-bottom: 1px solid rgb(29.67, 48.5724, 72.63);
}
.g-campaign-item .bottom-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 1.6rem 2rem 1rem;
}
.g-campaign-item .wrap-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem 1rem 1rem 2rem;
}
.g-campaign-item .campaign-info {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40%;
  flex: 0 0 40%;
}
.g-campaign-item .campaign-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 700;
}
.g-campaign-item .campaign-name span {
  margin-right: 1rem;
}
.g-campaign-item .campaign-name .g-status-dot {
  top: -0.2rem;
}
.g-campaign-item .campaign-name .name-tag {
  position: relative;
  top: -0.2rem;
  margin-left: 0.6rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: #768aa8;
}
.g-campaign-item .campaign-type {
  font-size: 1.3rem;
  font-weight: 600;
  color: #768aa8;
}
.g-campaign-item .campaign-type span {
  display: inline-block;
  text-transform: uppercase;
  font-size: 1.1rem;
  margin-right: 0.8rem;
}
.g-campaign-item .campaign-actions {
  margin: 0.4rem 0.4rem 0 2rem;
}
.g-campaign-item .campaign-scenes {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 30%;
  flex: 0 0 30%;
}
.g-campaign-item .campaign-links {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  margin-left: 3rem;
}
.g-campaign-item .campaign-links .link-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.g-campaign-item .campaign-links .link-item:not(:first-child) {
  margin-top: 0.2rem;
}
.g-campaign-item .campaign-links .link-item .link-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.g-campaign-item .campaign-links .link-item .link-info a {
  font-weight: 600;
  color: #768aa8;
}
.g-campaign-item .campaign-links .link-item .link-info .g-icon.link {
  margin-right: 0.6rem;
}
.g-campaign-item .campaign-links .link-item .link-actions .btn.tx {
  margin-left: 4rem;
}

.g-stream-list .g-stream-stat-item {
  margin-bottom: 0.8rem;
}
.g-stream-list .g-stream-item {
  margin-bottom: 0.8rem;
}

.g-stream-stat-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 2rem;
  background-color: #101b29;
  border-radius: 0.8rem;
}
.g-stream-stat-item.live {
  border-left: 3px solid #00C99A;
}
.g-stream-stat-item.loading .stream-start {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 20%;
  flex: 1 1 20%;
}
.g-stream-stat-item.loading .g-stat-item-list {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 80%;
  flex: 1 1 80%;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.g-stream-stat-item.loading .g-stat-item-list .g-stat-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
  max-width: 15rem;
}
.g-stream-stat-item.loading .g-stat-item-list .g-stat-item .g-stat-value {
  width: 100%;
}
.g-stream-stat-item.clickable {
  cursor: pointer;
}
.g-stream-stat-item.clickable:hover {
  background-color: rgba(23.9675, 37.9221, 55.6825, 0.5);
}
.g-stream-stat-item .g-channel-card {
  margin-top: 1rem;
}
.g-stream-stat-item .stream-start {
  width: 19rem;
}
.g-stream-stat-item .stream-start .date {
  font-size: 2rem;
  font-weight: 700;
  color: #768aa8;
}
.g-stream-stat-item .stream-start .time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.2rem;
  color: #768aa8;
  font-weight: 600;
}
.g-stream-stat-item .stream-start .time span {
  display: inline-block;
}
.g-stream-stat-item .stream-start .time .g-icon {
  top: -0.1rem;
  margin: 0 1rem;
}
.g-stream-stat-item .stream-start .time-live {
  text-transform: uppercase;
  color: #00C99A;
}
.g-stream-stat-item .g-stat-item-list {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 80%;
  flex: 1 1 80%;
}
.g-stream-stat-item .g-stat-item-list .g-stat-item {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.g-stream-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 2rem;
  background-color: #101b29;
  border-radius: 0.8rem;
}
.g-stream-item.live {
  border-left: 3px solid #00C99A;
}
.g-stream-item.clickable {
  cursor: pointer;
}
.g-stream-item.clickable:hover {
  background-color: rgba(23.9675, 37.9221, 55.6825, 0.5);
}
.g-stream-item .stream-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.g-stream-item .stream-info {
  width: 19rem;
}
.g-stream-item .stream-info .g-channel-card {
  margin: 0 1rem 1rem 0;
}
.g-stream-item .stream-info .g-channel-card .name {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}
.g-stream-item .stream-info .stream-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-size: 1.4rem;
  text-transform: uppercase;
  color: #768aa8;
}
.g-stream-item .stream-info .stream-date .date {
  font-weight: 700;
}
.g-stream-item .stream-info .stream-date .length {
  font-size: 1.2rem;
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 1px solid rgb(49.04, 70.8288, 98.56);
}
.g-stream-item .stream-info .stream-time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.2rem;
  color: #768aa8;
  font-weight: 600;
}
.g-stream-item .stream-info .stream-time span {
  display: inline-block;
}
.g-stream-item .stream-info .stream-time .g-icon {
  top: -0.1rem;
  margin: 0 1rem;
}
.g-stream-item .stream-info .time-live {
  text-transform: uppercase;
  color: #00C99A;
}
.g-stream-item .stream-info .stream-features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 1rem;
}
.g-stream-item .stream-info .stream-features .g-icon {
  margin-right: 0.8rem;
}
.g-stream-item .stream-games {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.g-stream-item .stream-games .g-game-card:not(:first-child) {
  margin-left: 1rem;
}
.g-stream-item .games-extra {
  position: absolute;
  top: 50%;
  right: 1rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: #768aa8;
  font-weight: 700;
  background-color: rgb(29.67, 48.5724, 72.63);
  line-height: 2.5rem;
  border-radius: 2.5rem;
  padding: 0 1rem;
}

.g-link-list .g-link-item + .g-link-item {
  margin-top: 1rem;
}

.g-link-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding: 2rem;
  background-color: #101b29;
  border-radius: 0.8rem;
}
.g-link-item .link-info {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  min-width: 30rem;
  margin-right: 4rem;
}
.g-link-item .link-info .name {
  padding-left: 0;
  word-wrap: none;
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
}
.g-link-item .link-info .destination {
  font-size: 1.4rem;
  color: #768aa8;
  font-weight: 600;
}
.g-link-item .g-stat-item-list {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 70%;
  flex: 1 1 70%;
}
.g-link-item .g-stat-item-list .g-stat-item {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.g-link-item .status {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: rgb(29.67, 48.5724, 72.63);
}
.g-link-item .status.active {
  background-color: #00C99A;
}

.g-link-table {
  width: 100%;
  border-spacing: 0;
  table-layout: fixed;
}
.g-link-table .g-link-table-header > * {
  text-align: left;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #768aa8;
  font-weight: 600;
}
.g-link-table .g-link-table-header .name {
  width: 25%;
  padding-left: 0;
}
.g-link-table .g-link-table-header .destination {
  width: auto;
}
.g-link-table .g-link-table-header .settings {
  text-align: right;
}
.g-link-table .g-link-table-header .actions {
  width: 10rem;
}
.g-link-table .g-link-row:first-child {
  border-top: 1px solid rgb(29.67, 48.5724, 72.63);
}

.g-link-row .name {
  padding-left: 0;
  word-wrap: none;
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
}
.g-link-row .destination {
  font-size: 1.4rem;
  color: #768aa8;
  font-weight: 600;
  white-space: nowrap;
}
.g-link-row .settings > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.g-link-row .settings .input {
  padding-top: 0.2rem;
  margin: 0;
}
.g-link-row .actions {
  padding-right: 0;
}
.g-link-row .actions .btn-list {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.g-link-manage-list .g-link-manage-item + .g-link-manage-item {
  margin-top: 1rem;
}

.g-link-manage-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding: 2rem;
  background-color: #101b29;
  border-radius: 0.8rem;
}
.g-link-manage-item .link-info {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-width: 30rem;
  margin-right: 4rem;
}
.g-link-manage-item .link-info .name {
  padding-left: 0;
  word-wrap: none;
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
}
.g-link-manage-item .link-info .destination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.4rem;
  color: #768aa8;
  font-weight: 600;
}
.g-link-manage-item .link-info .destination .g-icon {
  margin-left: 0.8rem;
}
.g-link-manage-item .manage-actions {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.g-link-manage-item .status {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: rgb(29.67, 48.5724, 72.63);
}
.g-link-manage-item .status.active {
  background-color: #00C99A;
}

.g-brand-list .g-brand-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.g-brand-list .g-brand-header > * {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 20%;
  flex: 1 1 20%;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #768aa8;
  font-weight: 600;
}
.g-brand-list .g-brand-item:not(:last-child) {
  margin-bottom: 4rem;
}

.g-brand-item {
  border-radius: 0.8rem;
}
.g-brand-item:hover {
  cursor: pointer;
}
.g-brand-item:hover .campaign-label {
  background-color: rgba(23.9675, 37.9221, 55.6825, 0.2);
}
.g-brand-item:hover .campaign-label .g-icon {
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  fill: #fd77d2;
}
.g-brand-item.paused {
  opacity: 0.6;
}
.g-brand-item.paused .brand-name {
  color: #768aa8;
}
.g-brand-item .brand-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  background-color: rgba(23.9675, 37.9221, 55.6825, 0.7);
  border-top-right-radius: 0.8rem;
  border-top-left-radius: 0.8rem;
}
.g-brand-item .wrap-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem 1rem 1rem 2rem;
}
.g-brand-item .brand-info {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40%;
  flex: 0 0 40%;
}
.g-brand-item .brand-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.8rem;
  line-height: 1.8rem;
  font-weight: 700;
  cursor: pointer;
}
.g-brand-item .brand-name span {
  margin-right: 0rem;
}
.g-brand-item .brand-name .g-status-dot {
  top: -0.2rem;
}
.g-brand-item .brand-name .name-tag {
  position: relative;
  top: -0.2rem;
  margin-left: 0.6rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: #768aa8;
}
.g-brand-item .brand-actions {
  margin: 0.8rem 0.8rem 0 0;
}
.g-brand-item .campaign-set .campaign-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1rem 2rem;
  cursor: pointer;
  background-color: #101b29;
  border-bottom-right-radius: 0.6rem;
  border-bottom-left-radius: 0.6rem;
}
.g-brand-item .campaign-set .campaign-label:hover {
  background-color: rgb(19.1285, 31.36182, 46.9315);
}
.g-brand-item .campaign-set .campaign-label.open .g-icon {
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
  fill: #fd77d2;
}
.g-brand-item .campaign-set .campaign-label .g-icon {
  width: 1.6rem;
  height: 1.6rem;
}
.g-brand-item .campaign-set .campaign-label > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.g-brand-item .campaign-set .campaign-label strong {
  display: inline-block;
  font-size: 2.8rem;
  color: #768aa8;
}
.g-brand-item .campaign-set .campaign-label span {
  display: inline-block;
  margin-left: 1rem;
  color: #768aa8;
  font-weight: 500;
}
.g-brand-item .campaign-set .paused-set .paused-top {
  background-color: #101b29;
  border-radius: 0.6rem;
}
.g-brand-item .campaign-set .paused-set .paused-top:hover {
  background-color: rgb(19.1285, 31.36182, 46.9315);
}
.g-brand-item .campaign-set .paused-set .paused-label {
  margin: 2rem 0 2rem 2rem;
}
.g-brand-item .campaign-set .campaign-list {
  margin-top: 0.8rem;
}
.g-brand-item .campaign-item {
  display: block;
  background-color: #101b29;
  padding: 1rem 0 1.6rem;
  margin-bottom: 0.8rem;
  border-radius: 0.6rem;
}
.g-brand-item .campaign-item:hover {
  background-color: rgb(19.1285, 31.36182, 46.9315);
}
.g-brand-item .campaign-item.paused .campaign-info,
.g-brand-item .campaign-item.paused .campaign-scenes,
.g-brand-item .campaign-item.paused .campaign-links {
  opacity: 0.5;
}
.g-brand-item .campaign-item.paused .campaign-name {
  color: #768aa8;
}
.g-brand-item .campaign-item .campaign-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 0.1rem 0rem 1rem 0rem;
  margin: 0 2rem;
  border-bottom: 1px solid rgb(29.67, 48.5724, 72.63);
}
.g-brand-item .campaign-item .campaign-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 0rem 2rem 0rem;
}
.g-brand-item .campaign-item .campaign-info {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.g-brand-item .campaign-item .campaign-name,
.g-brand-item .campaign-item .campaign-target,
.g-brand-item .campaign-item .campaign-status,
.g-brand-item .campaign-item .campaign-overlay {
  padding-top: 0.4rem;
}
.g-brand-item .campaign-item .campaign-name .target-type,
.g-brand-item .campaign-item .campaign-target .target-type,
.g-brand-item .campaign-item .campaign-status .target-type,
.g-brand-item .campaign-item .campaign-overlay .target-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.g-brand-item .campaign-item .campaign-name .target-type:not(:last-child),
.g-brand-item .campaign-item .campaign-target .target-type:not(:last-child),
.g-brand-item .campaign-item .campaign-status .target-type:not(:last-child),
.g-brand-item .campaign-item .campaign-overlay .target-type:not(:last-child) {
  margin-right: 1rem;
}
.g-brand-item .campaign-item .campaign-name .target-type .g-icon,
.g-brand-item .campaign-item .campaign-target .target-type .g-icon,
.g-brand-item .campaign-item .campaign-status .target-type .g-icon,
.g-brand-item .campaign-item .campaign-overlay .target-type .g-icon {
  width: 1.6rem;
  height: 1.6rem;
  margin-right: 0.4rem;
}
.g-brand-item .campaign-item .campaign-name .target-type .g-icon.tag,
.g-brand-item .campaign-item .campaign-target .target-type .g-icon.tag,
.g-brand-item .campaign-item .campaign-status .target-type .g-icon.tag,
.g-brand-item .campaign-item .campaign-overlay .target-type .g-icon.tag {
  top: 1px;
}
.g-brand-item .campaign-item .campaign-name {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 0.2rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  text-transform: capitalize;
  border-right: 1px solid rgb(29.67, 48.5724, 72.63);
  padding-right: 1.6rem;
  margin-right: 1.4rem;
}
.g-brand-item .campaign-item .campaign-name .g-status-dot {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  top: -0.1rem;
  margin-right: 1rem;
}
.g-brand-item .campaign-item .campaign-target {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: #768aa8;
  text-transform: uppercase;
}
.g-brand-item .campaign-item .campaign-target span {
  display: inline-block;
  text-transform: uppercase;
  color: #768aa8;
}
.g-brand-item .campaign-item .campaign-target span strong {
  color: #fff;
}
.g-brand-item .campaign-item .campaign-target .target-type {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.g-brand-item .campaign-item .campaign-target .more-channels {
  white-space: nowrap;
}
.g-brand-item .campaign-item .campaign-target .campaign-filters {
  position: relative;
  top: -0.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: rgb(29.67, 48.5724, 72.63);
  font-weight: 700;
  font-size: 1.1rem;
  height: 1.8rem;
  border-radius: 0.8rem;
  padding: 0 1rem;
  margin-left: 1.6rem;
  color: #768aa8;
}
.g-brand-item .campaign-item .campaign-overlay {
  font-size: 1.2rem;
  font-weight: 600;
  color: #768aa8;
  border-left: 1px solid rgb(29.67, 48.5724, 72.63);
  padding-left: 1.6rem;
  margin-left: 1.4rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.g-brand-item .campaign-item .campaign-status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #768aa8;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  border-left: 1px solid rgb(29.67, 48.5724, 72.63);
  padding-left: 1.6rem;
  margin-left: 1.4rem;
}
.g-brand-item .campaign-item .campaign-status .name-tag {
  position: relative;
  top: -0.2rem;
  margin-left: 0.6rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: #768aa8;
}
.g-brand-item .campaign-item .campaign-actions {
  margin: 0rem 0rem 0 2rem;
}
.g-brand-item .campaign-item .campaign-scenes {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 40%;
  flex: 1 0 40%;
  padding: 1.6rem 0 0;
}
.g-brand-item .campaign-item .campaign-links {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 0rem 0 1.6rem 3rem;
  padding-left: 3rem;
  margin-top: 1.6rem;
  margin-left: 3rem;
  border-left: 1px solid rgb(29.67, 48.5724, 72.63);
}
.g-brand-item .campaign-item .campaign-links .priority-text {
  font-weight: 600;
  color: #768aa8;
  padding-bottom: 1rem;
}
.g-brand-item .campaign-item .campaign-links .priority-text strong {
  color: #fd77d2;
}
.g-brand-item .campaign-item .campaign-links .link-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.g-brand-item .campaign-item .campaign-links .link-item:not(:first-child) {
  margin-top: 0.2rem;
}
.g-brand-item .campaign-item .campaign-links .link-item .link-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.g-brand-item .campaign-item .campaign-links .link-item .link-info a {
  font-weight: 600;
  color: #768aa8;
  line-height: 2.5rem;
}
.g-brand-item .campaign-item .campaign-links .link-item .link-info .g-icon.link {
  margin-right: 0.6rem;
}
.g-brand-item .campaign-item .campaign-links .link-item .link-actions {
  margin-left: 2rem;
}
.g-brand-item .campaign-item .campaign-links .link-item .link-actions .btn.tx {
  line-height: 2.5rem;
  margin-left: 0rem;
}

.g-thumb-list {
  position: relative;
  margin-right: -1rem;
  margin-bottom: -1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.g-thumb-list .list-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%;
}
.g-thumb-item {
  position: relative;
  width: 25%;
  padding-bottom: 14.1242937853%;
  border-radius: 0.8rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.g-thumb-item img {
  position: absolute;
  top: 0rem;
  left: 0rem;
  right: 1rem;
  bottom: 1rem;
  width: calc(100% - 1rem);
  height: calc(100% - 1rem);
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0.8rem;
  border: 2px solid transparent;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.g-thumb-item:hover {
  cursor: pointer;
}
.g-thumb-item:hover img {
  border: 2px solid #00bFFF;
  -webkit-filter: brightness(1.4);
  filter: brightness(1.4);
}
.g-thumb-item .thumb-since {
  position: absolute;
  top: 1rem;
  right: 2rem;
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  background-color: rgba(12.8, 21.6, 32.8, 0.6);
  padding: 0.4rem 0.8rem;
  border-radius: 0.4rem;
}

.g-filter-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.g-filter-list .g-filter {
  margin-bottom: 1rem;
}
.g-filter-list .g-filter:not(:last-child) {
  margin-right: 1rem;
}

.g-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 2.8rem;
  padding: 0 2rem;
  font-size: 1.2rem;
  line-height: 1.8rem;
  text-transform: uppercase;
  color: #768aa8;
  font-weight: 500;
  border: 1px solid rgb(29.67, 48.5724, 72.63);
  border-radius: 1.4rem;
}
.g-filter:hover {
  cursor: pointer;
}
.g-filter.selected {
  border-color: #00bFFF;
  color: #00bFFF;
  background-color: rgba(29.67, 48.5724, 72.63, 0.6);
}
.g-filter.selected .g-icon {
  fill: #00bFFF;
}
.g-filter > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  top: 1px;
  left: -1px;
  white-space: nowrap;
}
.g-filter .g-icon {
  top: 1px;
  margin-right: 0.4rem;
  width: 1.8rem;
  height: 1.8rem;
}

.g-form .form-actions {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgb(29.67, 48.5724, 72.63);
}

.g-form-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  background-color: #101b29;
  border-radius: 0.4rem;
  padding: 0;
}
.g-form-section:not(:first-child) {
  margin-top: 2rem;
}
.g-form-section .section-head {
  border-bottom: 1px solid #101b29;
  padding: 2rem 2rem 1rem 2rem;
  margin: 0 0 1rem 0;
}
.g-form-section .section-title {
  font-size: 1.8rem;
  font-weight: 500;
}
.g-form-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  padding: 1rem 2rem;
}
.g-form-item .item-label {
  width: 40%;
  min-width: 100px;
}
.g-form-item .item-label p,
.g-form-item .item-label .item-helper {
  margin: 0;
  font-size: 1.3rem;
  color: #768aa8;
}
.g-form-item .item-input {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem 2rem;
}
.g-form-item .item-input .input {
  margin-bottom: 0;
  width: 100%;
}

.g-error-list {
  margin-bottom: 1rem;
}
.g-error-list .g-error {
  margin-bottom: 0.8rem;
}

.g-error {
  display: block;
  color: #F53D7A;
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: capitalize;
}

.input {
  margin: 0 0 1.75rem 0;
}
.input.with-prefix input {
  padding-left: 3.2rem;
}
.input.with-postfix input {
  padding-left: 3.6rem;
}
.input.has-error label {
  color: #F53D7A;
}
.input.has-error input {
  border-color: #F53D7A;
}
.input.inline {
  display: inline-block;
}
.input.disabled {
  opacity: 0.5;
}
.input.s {
  margin-bottom: 0.75rem !important;
}
.input.l label {
  font-size: 1.5rem;
}
.input.l .helper {
  font-size: 1.6rem;
}
.input.text-inline input {
  padding: 0.25rem 0.25rem;
  border: 1px solid rgba(58, 70, 94, 0.9);
  font-size: 0.875rem;
  background: transparent;
}
.input.text-inline > div:first-child {
  display: inline-block;
}
.input.text-inline .errors {
  margin-left: 0.5rem;
  display: inline-block;
  font-size: 0.875rem;
}
.input .child-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.input .input-wrap {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.input .input-wrap .prefix,
.input .input-wrap .postfix {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  padding: 0 0.8rem;
  color: #768aa8;
  font-weight: 600;
  background: rgb(23.9675, 37.9221, 55.6825);
  z-index: 1;
}
.input .input-wrap .prefix {
  left: 1px;
  bottom: 1px;
  top: 1px;
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
.input .input-wrap .postfix {
  right: 1px;
  bottom: 1px;
  top: 1px;
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.input label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  display: flex !important;
  color: #00bFFF;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.input label .label-extra {
  color: #768aa8;
}
.input .g-spinner {
  position: absolute;
  top: 50%;
  right: 1rem;
}
.input .helper {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 0.6rem;
  color: #768aa8;
}
.input .error {
  text-transform: capitalize;
  font-weight: 600;
  color: #F53D7A;
  font-size: 1.2rem;
  margin-top: 0.25rem;
}

.media-input > div {
  position: relative;
  width: 100%;
  height: 100%;
}
.media-input .media-preview,
.media-input .filedrop {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.media-input .media-preview {
  z-index: 1;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  top: 1%;
  bottom: 1%;
  right: 1%;
  left: 1%;
}
.media-input .filedrop {
  z-index: 10;
}
.input.text.s input[type=email], .input.text.s input[type=number], .input.text.s input[type=password], .input.text.s input[type=search], .input.text.s input[type=tel], .input.text.s input[type=text], .input.text.s input[type=url], .input.text.s input[type=color], .input.text.s input[type=date], .input.text.s input[type=datetime], .input.text.s input[type=datetime-local], .input.text.s input[type=month], .input.text.s input[type=time], .input.text.s input[type=week],
.input.text.s textarea {
  padding: 0.7rem 1rem;
  font-size: 1.3rem;
}
.input.text.center label {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.input.text.center .helper {
  text-align: center;
}
.input.text.light input[type=email], .input.text.light input[type=number], .input.text.light input[type=password], .input.text.light input[type=search], .input.text.light input[type=tel], .input.text.light input[type=text], .input.text.light input[type=url], .input.text.light input[type=color], .input.text.light input[type=date], .input.text.light input[type=datetime], .input.text.light input[type=datetime-local], .input.text.light input[type=month], .input.text.light input[type=time], .input.text.light input[type=week],
.input.text.light textarea {
  background-color: rgb(23.9675, 37.9221, 55.6825);
  color: #768aa8;
}
.input.text.sub input[type=email], .input.text.sub input[type=number], .input.text.sub input[type=password], .input.text.sub input[type=search], .input.text.sub input[type=tel], .input.text.sub input[type=text], .input.text.sub input[type=url], .input.text.sub input[type=color], .input.text.sub input[type=date], .input.text.sub input[type=datetime], .input.text.sub input[type=datetime-local], .input.text.sub input[type=month], .input.text.sub input[type=time], .input.text.sub input[type=week],
.input.text.sub textarea {
  color: #768aa8;
}
.input.text.outline input[type=email], .input.text.outline input[type=number], .input.text.outline input[type=password], .input.text.outline input[type=search], .input.text.outline input[type=tel], .input.text.outline input[type=text], .input.text.outline input[type=url], .input.text.outline input[type=color], .input.text.outline input[type=date], .input.text.outline input[type=datetime], .input.text.outline input[type=datetime-local], .input.text.outline input[type=month], .input.text.outline input[type=time], .input.text.outline input[type=week],
.input.text.outline textarea {
  background-color: rgba(16, 27, 41, 0.5);
  border: 1px solid rgb(29.67, 48.5724, 72.63);
  color: #768aa8;
}
.input.text.with-prefix input[type=email], .input.text.with-prefix input[type=number], .input.text.with-prefix input[type=password], .input.text.with-prefix input[type=search], .input.text.with-prefix input[type=tel], .input.text.with-prefix input[type=text], .input.text.with-prefix input[type=url], .input.text.with-prefix input[type=color], .input.text.with-prefix input[type=date], .input.text.with-prefix input[type=datetime], .input.text.with-prefix input[type=datetime-local], .input.text.with-prefix input[type=month], .input.text.with-prefix input[type=time], .input.text.with-prefix input[type=week],
.input.text.with-prefix textarea {
  padding-left: 3.2rem;
}
.input.text.with-postfix input[type=email], .input.text.with-postfix input[type=number], .input.text.with-postfix input[type=password], .input.text.with-postfix input[type=search], .input.text.with-postfix input[type=tel], .input.text.with-postfix input[type=text], .input.text.with-postfix input[type=url], .input.text.with-postfix input[type=color], .input.text.with-postfix input[type=date], .input.text.with-postfix input[type=datetime], .input.text.with-postfix input[type=datetime-local], .input.text.with-postfix input[type=month], .input.text.with-postfix input[type=time], .input.text.with-postfix input[type=week],
.input.text.with-postfix textarea {
  padding-right: 3.6rem;
}
.input.text.with-copy input[type=email], .input.text.with-copy input[type=number], .input.text.with-copy input[type=password], .input.text.with-copy input[type=search], .input.text.with-copy input[type=tel], .input.text.with-copy input[type=text], .input.text.with-copy input[type=url], .input.text.with-copy input[type=color], .input.text.with-copy input[type=date], .input.text.with-copy input[type=datetime], .input.text.with-copy input[type=datetime-local], .input.text.with-copy input[type=month], .input.text.with-copy input[type=time], .input.text.with-copy input[type=week],
.input.text.with-copy textarea {
  padding-right: 4rem;
}
.input.text.with-copy button {
  position: absolute;
  right: 0.6rem;
}
.input.text input[type=email], .input.text input[type=number], .input.text input[type=password], .input.text input[type=search], .input.text input[type=tel], .input.text input[type=text], .input.text input[type=url], .input.text input[type=color], .input.text input[type=date], .input.text input[type=datetime], .input.text input[type=datetime-local], .input.text input[type=month], .input.text input[type=time], .input.text input[type=week],
.input.text textarea {
  padding: 1rem 1.2rem;
  border: 1px solid rgb(23.9675, 37.9221, 55.6825);
  font-size: 1.4rem;
  border-radius: 0.6rem;
  color: #fff;
  width: 100%;
  font-weight: 500;
  font-family: "gilroy", "Helvetica", sans-serif;
  background-color: rgb(12.8, 21.6, 32.8);
}
.input.text input[type=email]:focus, .input.text input[type=number]:focus, .input.text input[type=password]:focus, .input.text input[type=search]:focus, .input.text input[type=tel]:focus, .input.text input[type=text]:focus, .input.text input[type=url]:focus, .input.text input[type=color]:focus, .input.text input[type=date]:focus, .input.text input[type=datetime]:focus, .input.text input[type=datetime-local]:focus, .input.text input[type=month]:focus, .input.text input[type=time]:focus, .input.text input[type=week]:focus,
.input.text textarea:focus {
  outline: 0;
  border: 1px solid rgb(0, 162.35, 216.75);
}
.input.text input[type=email]::-webkit-input-placeholder, .input.text input[type=number]::-webkit-input-placeholder, .input.text input[type=password]::-webkit-input-placeholder, .input.text input[type=search]::-webkit-input-placeholder, .input.text input[type=tel]::-webkit-input-placeholder, .input.text input[type=text]::-webkit-input-placeholder, .input.text input[type=url]::-webkit-input-placeholder, .input.text input[type=color]::-webkit-input-placeholder, .input.text input[type=date]::-webkit-input-placeholder, .input.text input[type=datetime]::-webkit-input-placeholder, .input.text input[type=datetime-local]::-webkit-input-placeholder, .input.text input[type=month]::-webkit-input-placeholder, .input.text input[type=time]::-webkit-input-placeholder, .input.text input[type=week]::-webkit-input-placeholder, .input.text textarea::-webkit-input-placeholder {
  color: rgba(118, 138, 168, 0.5);
}
.input.text input[type=email]::-moz-placeholder, .input.text input[type=number]::-moz-placeholder, .input.text input[type=password]::-moz-placeholder, .input.text input[type=search]::-moz-placeholder, .input.text input[type=tel]::-moz-placeholder, .input.text input[type=text]::-moz-placeholder, .input.text input[type=url]::-moz-placeholder, .input.text input[type=color]::-moz-placeholder, .input.text input[type=date]::-moz-placeholder, .input.text input[type=datetime]::-moz-placeholder, .input.text input[type=datetime-local]::-moz-placeholder, .input.text input[type=month]::-moz-placeholder, .input.text input[type=time]::-moz-placeholder, .input.text input[type=week]::-moz-placeholder, .input.text textarea::-moz-placeholder {
  color: rgba(118, 138, 168, 0.5);
}
.input.text input[type=email]:-ms-input-placeholder, .input.text input[type=number]:-ms-input-placeholder, .input.text input[type=password]:-ms-input-placeholder, .input.text input[type=search]:-ms-input-placeholder, .input.text input[type=tel]:-ms-input-placeholder, .input.text input[type=text]:-ms-input-placeholder, .input.text input[type=url]:-ms-input-placeholder, .input.text input[type=color]:-ms-input-placeholder, .input.text input[type=date]:-ms-input-placeholder, .input.text input[type=datetime]:-ms-input-placeholder, .input.text input[type=datetime-local]:-ms-input-placeholder, .input.text input[type=month]:-ms-input-placeholder, .input.text input[type=time]:-ms-input-placeholder, .input.text input[type=week]:-ms-input-placeholder, .input.text textarea:-ms-input-placeholder {
  color: rgba(118, 138, 168, 0.5);
}
.input.text input[type=email]::-ms-input-placeholder, .input.text input[type=number]::-ms-input-placeholder, .input.text input[type=password]::-ms-input-placeholder, .input.text input[type=search]::-ms-input-placeholder, .input.text input[type=tel]::-ms-input-placeholder, .input.text input[type=text]::-ms-input-placeholder, .input.text input[type=url]::-ms-input-placeholder, .input.text input[type=color]::-ms-input-placeholder, .input.text input[type=date]::-ms-input-placeholder, .input.text input[type=datetime]::-ms-input-placeholder, .input.text input[type=datetime-local]::-ms-input-placeholder, .input.text input[type=month]::-ms-input-placeholder, .input.text input[type=time]::-ms-input-placeholder, .input.text input[type=week]::-ms-input-placeholder, .input.text textarea::-ms-input-placeholder {
  color: rgba(118, 138, 168, 0.5);
}
.input.text input[type=email]::placeholder, .input.text input[type=number]::placeholder, .input.text input[type=password]::placeholder, .input.text input[type=search]::placeholder, .input.text input[type=tel]::placeholder, .input.text input[type=text]::placeholder, .input.text input[type=url]::placeholder, .input.text input[type=color]::placeholder, .input.text input[type=date]::placeholder, .input.text input[type=datetime]::placeholder, .input.text input[type=datetime-local]::placeholder, .input.text input[type=month]::placeholder, .input.text input[type=time]::placeholder, .input.text input[type=week]::placeholder,
.input.text textarea::placeholder {
  color: rgba(118, 138, 168, 0.5);
}

.input.switch .input-wrap label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}
.input.switch .input-wrap label span {
  margin-right: 2rem;
}
.input.switch .input-wrap .switch-wrap, .input.switch .input-wrap.m .switch-wrap {
  width: 5.44rem;
  height: 2.24rem;
}
.input.switch .input-wrap .switch-slider, .input.switch .input-wrap.m .switch-slider {
  border-radius: 1.12rem;
}
.input.switch .input-wrap .switch-slider:before, .input.switch .input-wrap.m .switch-slider:before {
  width: 1.6rem;
  height: 1.6rem;
  left: 0.32rem;
  top: 0.32rem;
}
.input.switch .input-wrap .switch-wrap {
  position: relative;
}
.input.switch .input-wrap .switch-wrap.on .switch-label {
  right: auto;
  left: 15%;
  color: #00bFFF;
}
.input.switch .input-wrap input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.input.switch .input-wrap input:checked + .switch-slider:before {
  -webkit-transform: translateX(200%);
  transform: translateX(200%);
  background-color: #00bFFF;
}
.input.switch .input-wrap .switch-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-size: 1rem;
  position: absolute;
  top: 0;
  left: auto;
  right: 15%;
  bottom: 0;
  color: rgb(49.04, 70.8288, 98.56);
}
.input.switch .input-wrap .switch-slider {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(12.8, 21.6, 32.8);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.input.switch .input-wrap .switch-slider:before {
  position: absolute;
  content: "";
  z-index: 10;
  border-radius: 50%;
  background-color: rgb(49.04, 70.8288, 98.56);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.g-search-results {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 30rem;
  max-height: 30rem;
  overflow: hidden;
  opacity: 1;
  background-color: rgb(28.5714265537, 45.2065711864, 66.3785734463);
  min-width: 20rem;
  min-height: 4rem;
  z-index: 50;
  border-bottom-left-radius: 0.6rem;
  border-bottom-right-radius: 0.6rem;
}
.g-search-results .result-item {
  padding: 0.8rem 1rem;
  cursor: pointer;
}
.g-search-results .result-item:hover {
  background-color: rgba(0, 191, 255, 0.3);
}
.g-search-results .result-item.selected {
  background-color: rgba(0, 191, 255, 0.3);
  color: #fff;
}
.g-search-results .result-item:not(:last-child) {
  border-bottom: 1px solid rgb(23.9675, 37.9221, 55.6825);
}

.input.select select {
  display: block;
  border: 1px solid rgb(23.9675, 37.9221, 55.6825);
  padding: 0 1rem 0 0.7rem;
  font-size: 1.4rem;
  border-radius: 0.6rem;
  color: #fff;
  width: 100%;
  max-width: 700px;
  height: 4rem;
  text-indent: 0.6rem;
  background-color: rgb(12.8, 21.6, 32.8);
  text-transform: capitalize;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.input.select .g-icon.chevron {
  position: absolute;
  right: 1rem;
  top: 50%;
  -webkit-transform: translate(0, -50%) rotate(90deg);
  transform: translate(0, -50%) rotate(90deg);
  z-index: 100;
}
.input.select.light select {
  background-color: rgb(23.9675, 37.9221, 55.6825);
}

.select-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.select-buttons .select-button-item:not(:first-child) {
  margin-left: 1rem;
}

.select-button-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgb(29.67, 48.5724, 72.63);
  padding: 1rem 2rem;
  border-radius: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.2rem;
  line-height: 1.2rem;
  letter-spacing: 0.1rem;
  height: 3.6rem;
  color: #768aa8;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.select-button-item:hover {
  background-color: rgb(34.1074486804, 55.8368938416, 83.4925513196);
}
.select-button-item.selected {
  background-color: #00bFFF;
  color: #fff;
}
.select-button-item.selected.youtube {
  background-color: #FF0000;
}
.select-button-item.selected.youtube .g-icon {
  fill: #fff;
}
.select-button-item.selected.twitch {
  background-color: #6441a4;
}
.select-button-item.selected.twitch .g-icon {
  fill: #fff;
}
.select-button-item .g-icon {
  margin-right: 1rem;
}
.select-button-item.youtube .g-icon, .select-button-item.twitch .g-icon {
  fill: #768aa8;
}

.input.radio-list label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: left;
  margin-bottom: 1rem;
  cursor: pointer;
}
.input.radio-list label input {
  margin: 0 1rem 0 0;
  width: 1.5rem;
  height: 1.5rem;
}
.input.radio-list label span {
  display: block;
  top: 0.2rem;
}

.g-modal.signup .social-label {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: 1px solid rgb(29.67, 48.5724, 72.63);
  margin: 4rem 0 0.8rem;
  padding: 2rem 0 0 0;
  font-weight: 700;
  color: #768aa8;
}
.g-modal.signup .social {
  margin: 0 0 2rem;
}

.modal#uploadModal .media-input {
  width: 400px;
  height: 225px;
  margin: 0 auto 2rem;
}

.g-modal.add-channel form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.g-modal.add-channel .input.search {
  width: 100%;
  max-width: 30rem;
  margin: 0 auto;
}
.g-modal.add-channel .results {
  width: 100%;
  max-width: 30rem;
  margin: 0 auto;
}
.g-modal.add-channel .g-error-list {
  margin-top: 2rem;
}
.g-modal.add-channel .not-found {
  color: #F53D7A;
  margin: 0.6rem 0 0 0;
}
.g-modal.add-channel .select-buttons {
  margin-bottom: 4rem;
}
.g-modal.add-channel .select-buttons .select-button-item {
  width: 15rem;
}
.g-modal.add-channel .search-result {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.g-modal.add-channel .search-result .avatar {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 30px;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-image: url("");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 1rem;
}
.g-modal.add-channel .search-result .username {
  font-weight: 600;
}
.g-modal.add-channel .channel-result {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgb(29.67, 48.5724, 72.63);
  padding: 0.6rem;
  border-radius: 0.4rem;
  width: 100%;
  margin-bottom: 0.4rem;
}
.g-modal.add-channel .channel-result > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.g-modal.add-channel .channel-result .avatar {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 30px;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-image: url("");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 1rem;
}
.g-modal.add-channel .channel-result .username {
  font-weight: 600;
}
.g-modal.add-channel .channel-result button {
  margin-left: 1rem;
}
.g-modal.add-channel .channel-result button i {
  color: #768aa8;
}
.g-modal.add-channel .channel-list {
  margin-top: 2rem;
}
.g-modal.add-channel .channel-list .label {
  margin: 0 auto 0.4rem;
  text-align: center;
  font-weight: 600;
}
.g-modal.add-channel .btn.save {
  min-width: 15rem;
}

.g-modal#urlModal .url-input {
  min-width: 40rem;
  position: relative;
}
.g-modal#urlModal .url-input input[type=text] {
  padding: 1.4rem;
  font-size: 1.6rem;
  text-align: center;
  color: #768aa8;
  padding-right: 4rem;
}
.g-modal#urlModal .url-input .btn.copy {
  position: absolute;
  right: 1rem;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #768aa8;
}
.g-modal#urlModal .step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 3rem;
}
.g-modal#urlModal .step .label {
  margin: 0 0 0.6rem 0;
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
}
.g-modal#urlModal .step .label strong {
  font-weight: 700;
  color: #fff;
}
.g-modal#urlModal .step img {
  width: 100%;
  max-width: 30rem;
  border: 1px solid rgb(29.67, 48.5724, 72.63);
  border-radius: 0.4rem;
}

.modal.login .social-label {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: 1px solid rgb(29.67, 48.5724, 72.63);
  margin: 2rem 0 0.8rem;
  padding: 2rem 0 0 0;
  font-weight: 700;
  color: #768aa8;
}
.modal.login .social {
  margin: 0 0 2rem;
}
.modal.login .forgot-password {
  margin-top: 1rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.g-modal.link-url .channel-url-list {
  padding: 1rem 2rem;
}
.g-modal.link-url .link-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 2rem 0 0;
}
.g-modal.link-url .link-info .link-name {
  font-size: 1.6rem;
  font-weight: 600;
}
.g-modal.link-url .link-info .link-url {
  color: #768aa8;
  font-weight: 600;
}
.g-modal.link-url .btn-list {
  margin-top: 3rem;
}
.g-modal.link-url .url-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1rem 0 1rem 0;
}
.g-modal.link-url .url-item:not(:last-child) {
  border-bottom: 1px solid rgb(29.67, 48.5724, 72.63);
}
.g-modal.link-url .url-item .input {
  margin: 0;
  min-width: 30rem;
}

.modal.channel-picker .modal-content {
  min-height: 40rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.modal.channel-picker .modal-content .g-item-picker {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.g-modal.health-check .modal-title {
  margin-top: 3rem;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: #768aa8;
  border-bottom: 1px solid rgb(49.04, 70.8288, 98.56);
  width: 100%;
  padding-bottom: 1.8rem;
}
.g-modal.health-check .not-streamed {
  text-align: center;
  margin: 0 0 2rem;
  color: #768aa8;
  font-weight: 600;
}
.g-modal.health-check .status-list {
  max-width: 40rem;
  margin: 0 auto;
  min-height: 9.8rem;
}
.g-modal.health-check .last-stream {
  text-align: center;
  padding: 0 0 1rem;
  margin: 0 0 1.6rem;
  color: #768aa8;
  font-weight: 600;
}
.g-modal.health-check .status-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin: 0 0 1rem;
}
.g-modal.health-check .status-item .status {
  margin-right: 1rem;
}
.g-modal.health-check .status-item .status .icon {
  top: 0.1rem;
}
.g-modal.health-check .status-item .label {
  font-weight: 500;
  font-size: 2rem;
  color: #768aa8;
}
.g-modal.health-check .status-item.disabled .label {
  color: rgba(118, 138, 168, 0.5) !important;
}
.g-modal.health-check .status-item.disabled .icon {
  fill: rgba(118, 138, 168, 0.5) !important;
}
.g-modal.health-check .status-item.warning .label {
  color: #f7931e;
}
.g-modal.health-check .health-success {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #00C99A;
  font-weight: 700;
}
.g-modal.health-check .switch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 3rem;
}
.g-modal.health-check .modal-action-helper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

.g-modal.campaign-picker .modal-content {
  min-height: 40rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.g-modal.campaign-picker .modal-content .g-item-picker {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.g-modal.export .g-form {
  width: 100%;
}
.g-modal.export .report-desc {
  margin: 1rem 0 0rem;
}
.g-modal.export .report-desc p {
  font-size: 1.4rem;
  color: #768aa8;
  text-align: left;
  font-weight: 500;
}
.g-modal.export .report-select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%;
}
.g-modal.export .report-select > *:not(:last-child) {
  margin-right: 4rem;
}
.g-modal.export .report-select .input {
  margin-bottom: 0;
}
.g-modal.export .report-select .input.select {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
}
.g-modal.export .report-select .input.select .input-wrap {
  width: 100%;
}
.g-modal.export .report-select .input.select .input-wrap select {
  min-width: 5rem;
}
.g-modal.export .report-select .g-date-range-btn {
  height: 4rem;
  border-radius: 0.6rem;
  color: #fff;
  font-weight: 500;
  font-size: 1.2rem;
}
.g-modal.export .report-select .g-date-range-btn .g-icon {
  fill: #fff;
}
.g-modal.export .channel-detail-select {
  margin-top: 2rem;
}
.g-modal.export .channel-detail-select .input {
  margin-bottom: 0;
}

.g-image-modal {
  max-width: 90%;
  width: auto;
  outline: none;
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  background-color: rgb(23.9675, 37.9221, 55.6825);
  border-radius: 0.8rem;
  z-index: 1000;
  -webkit-perspective: 6.25rem;
  perspective: 6.25rem;
  opacity: 1;
}
.g-image-modal img {
  width: 100%;
  height: auto;
}
.g-image-modal .btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  padding: 1rem;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}
.g-image-modal .btn.back {
  left: 0;
}
.g-image-modal .btn.forward {
  right: 0;
}
.g-image-modal .image-since {
  position: absolute;
  top: 4rem;
  right: 4rem;
  font-size: 1.4rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  background-color: rgba(12.8, 21.6, 32.8, 0.9);
  padding: 0.4rem 0.8rem;
  border-radius: 0.4rem;
}
.g-image-modal .image-count {
  position: absolute;
  top: 4rem;
  left: 4rem;
  font-size: 1.4rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  background-color: rgba(12.8, 21.6, 32.8, 0.9);
  padding: 0.4rem 0.8rem;
  border-radius: 0.4rem;
}

body#app {
  background: rgb(12.8, 21.6, 32.8);
}
body#app #appRoot {
  display: block;
  min-height: 100vh;
  padding-top: 6rem;
}
body#app .app-version {
  position: absolute;
  right: 4rem;
  bottom: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-size: 1rem;
  color: #768aa8;
}

.panel {
  background-color: #101b29;
  border-radius: 0.2rem;
  border: 1px solid rgb(23.9675, 37.9221, 55.6825);
  padding: 2rem;
}
.panel .panel-head {
  border-bottom: 1px solid #101b29;
  padding: 1rem;
}
.panel .panel-head h3 {
  margin: 0;
  color: #768aa8;
}

/* MISC
-----------------------------*/
#message {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  padding: 1rem;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.25rem;
  bottom: -4rem;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
#message.show {
  bottom: 1rem;
}
#message.success {
  background: #fd77d2;
}
#message.error {
  background: #26e1cf;
}
#message .btn {
  font-size: 0.875rem;
  margin-left: 1rem;
  color: #fff;
}

body#overlay-app {
  width: 100vw;
  height: 100vh;
}
body#overlay-app #appRoot {
  display: block;
  height: 100vh;
  padding: 0;
  margin: 0;
}
body#overlay-app #appRoot .g-slideshow {
  width: 100%;
  height: 100%;
}
body#overlay-app #appRoot .not-allowed {
  background-color: rgba(12, 12, 14, 0.8);
  font-weight: 600;
  font-size: 1.6rem;
  text-align: center;
  padding: 1rem 2rem;
}

.content.home {
  padding: 0 0 10rem 0 !important;
}
.content.home .home-glow {
  position: absolute;
  top: 0rem;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  width: 80%;
  max-width: 500px;
  height: 375px;
  height: 0;
  padding-top: 41%;
  border-radius: 20%;
  -webkit-box-shadow: 0px 0px 60px 40px rgba(29.67, 48.5724, 72.63, 0.7);
  box-shadow: 0px 0px 60px 40px rgba(29.67, 48.5724, 72.63, 0.7);
  background-color: rgba(29.67, 48.5724, 72.63, 0.6);
}
.content.home .banner-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgb(12.8, 21.6, 32.8);
  margin: 0;
  padding: 8rem 3rem 4rem;
}
.content.home .banner {
  width: 100%;
  max-width: 900px;
}
.content.home .banner .copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  text-align: center;
}
.content.home .banner .copy h2 {
  margin: 2.2rem 0 2.6rem 0;
  font-weight: 700;
  font-size: 4rem;
  text-transform: capitalize;
}
.content.home .banner .copy p {
  max-width: 550px;
  font-size: 2rem;
  line-height: 2.8rem;
  -ms-hyphens: none;
  hyphens: none;
  color: #768aa8;
  font-weight: 500;
}
.content.home .banner .copy p strong {
  font-weight: 400;
}
.content.home .banner .copy .btn {
  width: 20rem;
  font-size: 1.6rem;
}
.content.home .banner .hero-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.content.home .banner .hero-image img {
  width: 100%;
  height: auto;
  max-width: 700px;
}
.content.home .home-wrapper {
  padding: 0rem 3rem;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.content.home .blurbs .blurbs:last-child {
  margin-bottom: 0;
}
.content.home .blurb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin: 0 0 8rem;
  border-bottom: 1px solid rgb(29.67, 48.5724, 72.63);
  padding: 0 0 8rem;
}
.content.home .blurb:last-of-type {
  margin-bottom: 0rem;
}
.content.home .blurb h3 {
  word-break: keep-all;
  -ms-hyphens: none;
  hyphens: none;
  font-size: 2.8rem;
  margin-bottom: 1.2rem;
}
.content.home .blurb p {
  font-size: 1.8rem;
  line-height: 2.4rem;
  color: #768aa8;
  font-weight: 500;
  max-width: 500px;
  -ms-hyphens: none;
  hyphens: none;
}
.content.home .blurb .blurb-details {
  margin-top: 3rem;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding-right: 4rem;
}
.content.home .blurb .blurb-image {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
}
.content.home .blurb .blurb-image img {
  width: 100%;
  height: auto;
}
.content.home .blurb .blurb-image p {
  font-size: 1.2rem;
  text-align: center;
  margin-top: 0.6rem;
  font-weight: 600;
}
.content.home .section {
  margin: 4rem 0 8rem;
  border-bottom: 1px solid rgb(29.67, 48.5724, 72.63);
  padding: 0 0 0rem;
}
.content.home .section .section-title {
  margin: 0 auto 2rem;
  text-align: center;
  font-size: 2.8rem;
  font-weight: 600;
}
.content.home .section .logo-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.content.home .section .logo-list .logo {
  margin-bottom: 4rem;
}
.content.home .section .logo-list .logo:not(:last-child) {
  margin-right: 3rem;
}
.content.home .section .logo-list img {
  width: 12rem;
  height: auto;
}
.content.home .section.partners {
  margin: 4rem 0 8rem;
  padding: 4rem 0 0rem;
  border-top: 1px solid rgb(29.67, 48.5724, 72.63);
}
.content.home .section.partners .logo.influence img {
  width: 22rem;
}
.content.home .section.partners .logo.evil img {
  width: 8rem;
}
.content.home .section.sponsors .logo img {
  width: 11rem;
  height: auto;
}
.content.home .section.sponsors .logo.gift img {
  width: 7rem;
}
.content.home .pitch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  margin-top: -6rem;
}
.content.home .pitch h2 {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 0.4rem;
  text-transform: capitalize;
}
.content.home .pitch p {
  text-align: center;
  margin-top: 1rem;
  font-size: 2rem;
  line-height: 2.6rem;
  color: #768aa8;
  font-weight: 600;
}
.content.home .pitch .g-logo svg {
  width: 15rem;
  height: 15rem;
}
@media only screen and (max-width: 800px) {
  .content.home .banner .copy h2 {
    font-size: 2.6rem;
  }
  .content.home .banner .copy p {
    font-size: 1.8rem;
  }
  .content.home .blurb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    margin: 0 0 4rem;
    padding: 0 0 4rem;
  }
  .content.home .blurb .blurb-details {
    padding-right: 0rem;
  }
}

.content.styleguide .section {
  margin-bottom: 8rem;
}
.content.styleguide .section .title {
  font-size: 3rem;
  font-weight: 700;
  margin: 0 0 3rem;
}
.content.styleguide .section .section-items > * {
  margin-right: 6rem;
}
.content.styleguide .section .section-items.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.content.styleguide .color-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 5rem;
}
.content.styleguide .color-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin-right: 2rem;
}
.content.styleguide .color {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 700;
  color: #101b29;
  text-transform: uppercase;
  width: 200px;
  height: 40px;
  margin-bottom: 0.4rem;
  padding: 0 1rem;
}
.content.styleguide .color.main {
  height: 60px;
  margin-bottom: 2rem;
}
.content.styleguide .color.primary {
  background-color: #00bFFF;
}
.content.styleguide .color.primary-1 {
  background-color: rgb(4.8, 74.95, 101.55);
}
.content.styleguide .color.primary-2 {
  background-color: rgb(4.8, 115.06, 155.1);
}
.content.styleguide .color.primary-3 {
  background-color: #00bFFF;
}
.content.styleguide .color.primary-4 {
  background-color: rgb(102, 216.6, 255);
}
.content.styleguide .color.primary-5 {
  background-color: rgb(153, 229.4, 255);
}
.content.styleguide .color.secondary {
  background-color: #fd77d2;
}
.content.styleguide .color.secondary-1 {
  background-color: rgb(93.35, 49.75, 85.8);
}
.content.styleguide .color.secondary-2 {
  background-color: rgb(146.48, 74.74, 129.9);
}
.content.styleguide .color.secondary-3 {
  background-color: #fd77d2;
}
.content.styleguide .color.secondary-4 {
  background-color: rgb(253.8, 173.4, 228);
}
.content.styleguide .color.secondary-5 {
  background-color: rgb(254.2, 200.6, 237);
}
.content.styleguide .color.tertiary {
  background-color: #26e1cf;
}
.content.styleguide .color.tertiary-1 {
  background-color: rgb(15.44, 71.1, 70.26);
}
.content.styleguide .color.tertiary-2 {
  background-color: rgb(23.42, 118.35, 113.73);
}
.content.styleguide .color.tertiary-3 {
  background-color: #26e1cf;
}
.content.styleguide .color.tertiary-4 {
  background-color: rgb(124.8, 237, 226.2);
}
.content.styleguide .color.tertiary-5 {
  background-color: rgb(168.2, 243, 235.8);
}
.content.styleguide .surface-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-right: 2rem;
}
.content.styleguide .surface {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  width: 150px;
  height: 150px;
  margin: 0 2rem 2rem 0;
  border-radius: 1rem;
}
.content.styleguide .surface.main {
  height: 60px;
  margin-bottom: 2rem;
}
.content.styleguide .surface.surface-1 {
  background-color: rgb(11.2, 18.9, 28.7);
}
.content.styleguide .surface.surface-2 {
  background-color: rgb(12.8, 21.6, 32.8);
}
.content.styleguide .surface.surface-3 {
  background-color: #101b29;
}
.content.styleguide .surface.surface-4 {
  background-color: rgb(23.9675, 37.9221, 55.6825);
}
.content.styleguide .surface.surface-5 {
  background-color: rgb(29.67, 48.5724, 72.63);
}
.content.styleguide .surface.surface-6 {
  background-color: rgb(49.04, 70.8288, 98.56);
}
.content.styleguide .surface.surface-7 {
  background-color: rgb(68.41, 93.0852, 124.49);
}
.content.styleguide .surface.surface-8 {
  background-color: rgb(98.635, 126.6102, 162.215);
}
.content.styleguide .line-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 4rem;
}
.content.styleguide .line-list.back {
  padding: 1rem;
  background-color: rgb(23.9675, 37.9221, 55.6825);
}
.content.styleguide .line-list.col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.content.styleguide .line-list .box {
  margin-right: 3rem;
  width: 200px;
  height: 75px;
  border-radius: 1rem;
  border: 1px solid rgb(29.67, 48.5724, 72.63);
}
.content.styleguide .line-list .line {
  width: 100%;
  margin-bottom: 3rem;
  border-bottom: 1px solid transparent;
}
.content.styleguide .line-list .line-1 {
  border-color: #101b29;
}
.content.styleguide .line-list .line-2 {
  border-color: rgb(23.9675, 37.9221, 55.6825);
}
.content.styleguide .line-list .line-3 {
  border-color: rgb(29.67, 48.5724, 72.63);
}
.content.styleguide .line-list .line-4 {
  border-color: rgb(49.04, 70.8288, 98.56);
}
.content.styleguide .line-list .line-5 {
  border-color: rgb(68.41, 93.0852, 124.49);
}
.content.styleguide .input-list .input {
  max-width: 500px;
}

.content.dashboard .content-head {
  padding-bottom: 0;
  margin-bottom: 1.6rem;
}
.content.dashboard .no-overlay {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding-top: 8rem;
}
.content.dashboard .timespan > *:not(:last-child) {
  margin-right: 1rem;
}
.content.dashboard .empty-channel {
  padding: 2rem 0;
  text-align: center;
  font-weight: 600;
  color: #768aa8;
  margin: 0 auto;
}
.content.dashboard .data {
  margin-top: 4rem;
}
.content.dashboard .data .data-header {
  margin: 0 0 0rem;
  padding: 0 0 0rem;
}
.content.dashboard .data .data-header .btn {
  position: absolute;
  right: 0;
  bottom: 0.6rem;
}
.content.account-settings .account-type {
  background: rgb(29.67, 48.5724, 72.63);
  border-radius: 0.4rem;
  font-size: 1rem;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  color: #768aa8;
  font-weight: 700;
  letter-spacing: 0.1rem;
}
.content.account-settings .account-status strong {
  font-size: 1.4rem;
  color: #00bFFF;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}
.content.account-settings .account-status .status-helper {
  color: #768aa8;
  font-weight: 500;
}
.content.account-settings .account-status .status-helper strong {
  text-transform: none;
  color: #fff;
}
.content.account-settings .tag-desc {
  font-weight: 400;
  color: #768aa8;
}
.content.account-settings .add-tag {
  border-top: 1px solid rgb(20.2947368421, 34.2473684211, 52.0052631579);
}
.content.account-settings .add-tag .existing-label {
  display: block;
  margin-bottom: 1rem;
}
.content.account-settings .add-tag .tag-name {
  width: 20rem;
}
.content.account-settings .bot-account .bot-account-selector {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.content.account-settings .bot-account .view-link {
  display: inline-block;
  margin-left: 3rem;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
}
.content.account-settings .bot-account .bot-helper {
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 1rem;
  color: #768aa8;
}
.content.account-settings .bot-account .add-bot {
  margin-top: 2rem;
}

.content.channels .g-stats {
  margin-bottom: 0;
}
.content.channels .no-brands {
  margin-top: 4rem;
}
.content.channels .g-filter-list {
  margin-bottom: 1rem;
}

.content.channel-settings .tag-desc {
  font-weight: 400;
  color: #768aa8;
}
.content.channel-settings .add-tag {
  border-top: 1px solid rgb(20.2947368421, 34.2473684211, 52.0052631579);
}
.content.channel-settings .add-tag .existing-label {
  display: block;
  margin-bottom: 1rem;
}
.content.channel-settings .add-tag .tag-name {
  width: 20rem;
}
.content.channel-settings .step {
  margin-bottom: 2rem;
}
.content.channel-settings .step .label {
  margin-bottom: 0.6rem;
  font-weight: 600;
}
.content.channel-settings .step img {
  margin-top: 0.6rem;
  width: 35rem;
}
.content.channel-settings .step strong {
  text-transform: uppercase;
  color: #00C99A;
}
.content.channel-settings .step.step-1 {
  margin-bottom: 3rem;
}
.content.channel-settings .step.step-1 input.with-copy {
  width: 100%;
}
.content.channel-settings .step.step-1.multiple-overlays .label.overlay {
  margin-top: 2rem;
}
.content.channel-settings .mod-instructions {
  margin: 0rem 0 0;
}
.content.channel-settings .mod-instructions .mod-label {
  color: #768aa8;
  margin: 0 0 0.8rem;
  font-weight: 600;
}
.content.channel-settings .mod-instructions .mod-label strong {
  text-transform: uppercase;
  color: #00C99A;
}
.content.channel-settings .mod-instructions a.view {
  display: inline-block;
  margin-top: 0.8rem;
  font-weight: 600;
  font-size: 1.2rem;
}
.content.channel-settings .frequency-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.content.channel-settings .frequency-wrap .channel-frequency {
  display: none;
}
.content.channel-settings .frequency-wrap .channel-frequency.show {
  display: block;
  margin-right: 4rem;
}
.content.channel-settings .frequency-wrap .channel-frequency .input.text {
  max-width: 40rem;
  margin-right: 4rem;
}
.content.channel-settings .frequency-wrap .account-default .account-frequency-value strong {
  display: block;
  color: #768aa8;
}
.content.channel-settings .frequency-wrap .account-default .btn {
  margin-top: 1rem;
}
.content.channel-settings .link-item {
  margin-bottom: 2rem;
}
.content.channel-settings .link-item .link-name {
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.content.channel-settings .link-item .link-name span {
  color: #768aa8;
}
.content.channel-settings .link-item .link-name span:before {
  content: "-";
  display: inline;
  padding: 0 1rem;
}
.content.channel-settings .bot-account .bot-account-selector {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.content.channel-settings .bot-account .view-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
}
.content.channel-settings .bot-account .bot-helper {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 1rem;
  color: #768aa8;
}
.content.channel-settings .bot-account .btn {
  margin-top: 1rem;
}

.g-content-head.stream-details-head .stream-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 1rem;
}
.g-content-head.stream-details-head .stream-head .g-channel-card {
  margin-right: 2rem;
}
.g-content-head.stream-details-head .stream-head .stream-meta {
  padding-top: 0.4rem;
}
.g-content-head.stream-details-head .channel-name {
  font-weight: 700;
  font-size: 1.8rem;
  color: #768aa8;
  text-transform: uppercase;
}
.g-content-head.stream-details-head .stream-title {
  margin-bottom: 0.8rem;
  font-size: 2.2rem;
  font-weight: 700;
}
.g-content-head.stream-details-head .stream-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-size: 1.4rem;
  text-transform: uppercase;
  margin: 0 0 0.4rem 0;
  color: #768aa8;
}
.g-content-head.stream-details-head .stream-date .date {
  font-weight: 700;
}
.g-content-head.stream-details-head .stream-date .length {
  font-size: 1.2rem;
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 1px solid rgb(49.04, 70.8288, 98.56);
}
.g-content-head.stream-details-head .stream-time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.2rem;
  color: #768aa8;
  font-weight: 600;
}
.g-content-head.stream-details-head .stream-time span {
  display: inline-block;
}
.g-content-head.stream-details-head .stream-time .g-icon {
  top: -0.1rem;
  margin: 0 1rem;
}
.g-content-head.stream-details-head .stream-time .time-live {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: uppercase;
  color: #00C99A;
}
.g-content-head.stream-details-head .stream-time .time-live .g-icon {
  top: -0.1rem;
  margin: 0 0.8rem 0 0;
}
.g-content-head.stream-details-head .status-list {
  margin-top: 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.g-content-head.stream-details-head .status-list > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  color: #768aa8;
  font-weight: 700;
}
.g-content-head.stream-details-head .status-list > div:not(:first-child) {
  margin-left: 3rem;
}
.g-content-head.stream-details-head .status-list > div .g-icon {
  margin-right: 0.8rem;
}
.g-content-head.stream-details-head .status-list > div.live {
  color: #00C99A;
}
.g-content-head.stream-details-head .status-list > div.live .g-icon {
  fill: #00C99A;
}
.g-content-head.stream-details-head .status-list > div.on {
  color: #00C99A;
}

.content.stream-details .g-section .g-stats {
  margin-bottom: 1px;
}
.content.stream-details .g-section:first-child {
  margin-top: 0rem;
  border-top: 0px;
  padding-top: 0px;
}
.content.stream-details .show-less {
  margin-top: 2rem;
}

.content.overlay-edit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  padding: 0;
}
.content.overlay-edit .back {
  position: absolute;
  top: 2rem;
  left: 2rem;
  z-index: 10;
}
.content.overlay-edit .filedrop {
  position: fixed;
  z-index: 500;
  pointer-events: none;
}
.content.overlay-edit .filedrop.active {
  top: 6rem;
  left: 0;
  right: 0;
  bottom: 0;
}
.content.overlay-edit .g-slideshow {
  width: 100%;
  height: 100%;
}
.content.overlay-edit .empty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #768aa8;
  border: 1px dashed rgb(23.9675, 37.9221, 55.6825);
  padding: 2rem;
  min-height: 100px;
  width: 100%;
  max-width: 60rem;
  margin: 0 auto;
}
.content.overlay-edit .g-scrollbars {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  height: auto !important;
}
.content.overlay-edit .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 2rem 0 10rem;
}
.content.overlay-edit .container .edit-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto;
  font-size: 2.4rem;
  text-align: center;
  margin: 0 0 1rem;
}
.content.overlay-edit .container .edit-header .label {
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #768aa8;
  font-weight: 600;
}
.content.overlay-edit .container .edit-header .channel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.content.overlay-edit .container .edit-header .channel .g-avatar {
  margin-right: 1rem;
}
.content.overlay-edit .container .preview {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 250px;
  flex: 0 0 250px;
  height: 250px;
  max-width: 60rem;
  margin: 0 auto 1rem;
  width: 100%;
  border: 1px solid rgb(29.3733, 48.086676, 71.9037);
}
.content.overlay-edit .container .preview .slideshow {
  width: 100%;
  height: 100%;
}
.content.overlay-edit .container .preview .play {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  z-index: 10;
}
.content.overlay-edit .container .preview .play i {
  font-size: 1.8rem;
}
.content.overlay-edit .container .g-scene-strip {
  max-width: 65rem;
  margin: 0 auto;
  min-height: 10rem;
}
.content.overlay-edit .g-action-bar {
  right: 260px;
}
.content.overlay-edit .sidebar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 260px;
  flex: 0 0 260px;
  background-color: rgb(17.4315789474, 29.4157894737, 44.6684210526);
  border-left: 1px solid rgb(29.67, 48.5724, 72.63);
  width: 260px;
}
.content.overlay-edit .sidebar .g-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  height: 100%;
}
.content.overlay-edit .sidebar .g-tab-panel {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.content.overlay-edit .sidebar .sidebar-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  height: 100%;
}
.content.overlay-edit .sidebar .sidebar-content .g-scene-library {
  height: 100%;
}

.content.slideshow-edit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  padding: 0;
}
.content.slideshow-edit .g-file-drop {
  display: none;
  position: fixed;
  z-index: 500;
  pointer-events: none;
}
.content.slideshow-edit .g-file-drop.active {
  top: 6rem;
  left: 0;
  right: 0;
  bottom: 0;
}
.content.slideshow-edit .g-slideshow {
  width: 100%;
  height: 100%;
}
.content.slideshow-edit .empty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #768aa8;
  border: 1px dashed rgb(23.9675, 37.9221, 55.6825);
  padding: 2rem;
  min-height: 100px;
  width: 100%;
  max-width: 60rem;
  margin: 0 auto;
}
.content.slideshow-edit .g-scrollbars {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  height: auto !important;
}
.content.slideshow-edit .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 2rem 0 10rem;
}
.content.slideshow-edit .container .preview {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 250px;
  flex: 0 0 250px;
  height: 250px;
  max-width: 63rem;
  margin: 0 auto 2rem;
  width: 100%;
  border: 1px solid rgb(29.3733, 48.086676, 71.9037);
  background-color: rgb(14.2315789474, 24.0157894737, 36.4684210526);
  cursor: pointer;
}
.content.slideshow-edit .container .preview:hover .btn.play,
.content.slideshow-edit .container .preview:hover .btn.pause {
  background-color: rgba(0, 191, 255, 0.2);
}
.content.slideshow-edit .container .preview .slideshow {
  width: 100%;
  height: 100%;
}
.content.slideshow-edit .container .preview .slide-no-background {
  background-image: url("/assets/images/ui/transparent_background.png") !important;
}
.content.slideshow-edit .container .preview .btn.play,
.content.slideshow-edit .container .preview .btn.pause {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  z-index: 10;
  padding: 1.5rem;
}
.content.slideshow-edit .container .g-scene-strip {
  max-width: 63rem;
  margin: 0 auto;
  min-height: 10rem;
}
.content.slideshow-edit .container .g-scene-strip .scenecard-list {
  margin-right: -2rem;
}
.content.slideshow-edit .edit-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 0rem 4rem;
  margin: 0 0 5rem;
}
.content.slideshow-edit .edit-header .slideshow-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 2.4rem;
  font-weight: 600;
}
.content.slideshow-edit .edit-header .slideshow-title .btn.back {
  margin-right: 1rem;
  padding: 0;
}
.content.slideshow-edit .edit-header .slideshow-title .btn.back .g-icon {
  width: 2.8rem;
  height: 2.8rem;
}
.content.slideshow-edit .edit-header .slideshow-preview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.content.slideshow-edit .edit-header .slideshow-preview strong {
  font-weight: 600;
  color: #768aa8;
  margin-right: 1rem;
}
.content.slideshow-edit .edit-header .slideshow-preview .g-overlay-select {
  margin-left: 1rem;
}
.content.slideshow-edit .edit-header .preview-label {
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #768aa8;
  font-weight: 600;
}
.content.slideshow-edit .edit-header .input.select {
  margin-bottom: 0;
  margin-left: 1.6rem;
  min-width: 15rem;
}
.content.slideshow-edit .edit-header .channel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.content.slideshow-edit .edit-header .channel .g-avatar {
  margin-right: 1rem;
}
.content.slideshow-edit .g-action-bar {
  right: 35rem;
}
.content.slideshow-edit > .g-side-panel {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 35rem;
  flex: 0 0 35rem;
}

.g-content-head.channel-details .g-channel-card {
  margin-top: 1rem;
}
.g-content-head.channel-details .btn-list {
  margin-top: -2rem;
}
.g-content-head.channel-details .status-list {
  margin-top: 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.g-content-head.channel-details .status-list > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  color: #768aa8;
  font-weight: 700;
}
.g-content-head.channel-details .status-list > div:not(:first-child) {
  margin-left: 3rem;
}
.g-content-head.channel-details .status-list > div .g-icon {
  margin-right: 0.8rem;
}
.g-content-head.channel-details .status-list > div.live {
  color: #00C99A;
}
.g-content-head.channel-details .status-list > div.live .g-icon {
  fill: #00C99A;
}
.g-content-head.channel-details .status-list > div.on {
  color: #00C99A;
}
.g-content-head.channel-details .channel-tags {
  margin: 1rem 0 0 9rem;
}

.content.channel-details .date-export {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.content.channel-details .date-export > *:not(:last-child) {
  margin-right: 1rem;
}
.content.channel-details .date-range-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin: 0 0 0 0;
  padding: 0;
}
.content.channel-details .date-range-header .label {
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #768aa8;
  font-weight: 600;
}
.content.channel-details .date-range-header .value {
  font-size: 3.8rem;
  font-weight: 600;
}
.content.channel-details .date-range-header .loading-text {
  margin-top: 0.9rem;
  height: 3.8rem;
  width: 15rem;
}
.content.channel-details .g-section .g-stats {
  margin-bottom: 1px;
}

.campaign-details-head h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #768aa8;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.campaign-details-head h1 {
  font-size: 2.8rem;
  text-transform: capitalize;
}
.campaign-details-head .campaign-info {
  margin-right: 6rem;
}
.campaign-details-head .campaign-status {
  color: #768aa8;
  margin-top: 2rem;
}
.campaign-details-head .campaign-status span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 700;
}
.campaign-details-head .campaign-status .g-status-dot {
  top: -0.1rem;
  margin-left: 1rem;
}
.campaign-details-head .campaign-status strong.active {
  display: inline-block;
  margin-left: 0.6rem;
  color: #00C99A;
  text-transform: uppercase;
}
.campaign-details-head .info-item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 1rem;
}
.campaign-details-head .info-item-list .info-item + .info-item {
  margin-left: 4rem;
}
.campaign-details-head .info-item .info-label {
  font-size: 1.4rem;
  font-weight: 700;
  color: #768aa8;
  text-transform: capitalize;
}
.campaign-details-head .info-item .info-label strong {
  color: #00C99A;
}
.campaign-details-head .info-item .info-label .filtered-channels {
  font-weight: 700;
}
.campaign-details-head .info-item .info-label .filtered-channels strong {
  color: #F53D7A;
}
.campaign-details-head .info-item .g-tag-list {
  margin-top: 1rem;
}
.campaign-details-head .info-item.targets strong {
  display: inline-block;
  margin-left: 0.4rem;
}

.content.campaign-details .date-export {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.content.campaign-details .date-export > *:not(:last-child) {
  margin-right: 1rem;
}
.content.campaign-details .date-range-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin: 0 0 0 0;
  padding: 0;
}
.content.campaign-details .date-range-header .label {
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #768aa8;
  font-weight: 600;
}
.content.campaign-details .date-range-header .value {
  font-size: 3.8rem;
  font-weight: 600;
}
.content.campaign-details .date-range-header .loading-text {
  margin-top: 0.9rem;
  height: 3.8rem;
  width: 15rem;
}
.content.campaign-details .g-section .g-stats {
  margin-bottom: 1px;
}

body.campaign-edit .g-side-panel .g-scene-library,
body.campaign-edit .g-side-panel .g-link-library {
  height: 100%;
}
body.campaign-edit .campaign-type {
  font-weight: 600;
  color: #768aa8;
  margin: 1rem 0 1rem 0;
}
body.campaign-edit .repeat-slide-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 1rem;
  border: 1px solid rgb(23.9675, 37.9221, 55.6825);
  background-color: rgb(12.8, 21.6, 32.8);
  padding: 2px 0;
  border-radius: 0.6rem;
}
body.campaign-edit .repeat-slide-input span {
  white-space: nowrap;
  margin: 0 2rem 0;
  color: rgb(82.6, 96.6, 117.6);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.2rem;
}
body.campaign-edit .repeat-slide-input .input {
  max-width: 10rem;
}
body.campaign-edit .priority-label {
  white-space: nowrap;
  min-width: 20rem !important;
  max-width: 30rem;
}
body.campaign-edit .priority-input {
  margin-top: 1.6rem;
}
body.campaign-edit .priority-input input[type=number] {
  padding-right: 5.5rem !important;
}
body.campaign-edit .priority-reset {
  margin-left: 2rem;
  font-size: 1rem;
  color: #768aa8;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
body.campaign-edit .exceptions {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
body.campaign-edit .exceptions .label {
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 700;
  color: #768aa8;
  margin-bottom: 0.4rem;
}
body.campaign-edit .all-tags {
  margin-top: 2rem;
}

.content.link-edit .preview-message {
  background-color: #18181b;
  border-left: 1px solid hsla(0, 0%, 100%, 0.1);
  border-right: 1px solid hsla(0, 0%, 100%, 0.1);
  padding: 2rem 1rem;
  font-family: Inter, Roobert, Helvetica Neue, Helvetica, Arial;
  font-weight: 400;
  font-size: 1.4rem;
  max-width: 40rem;
  word-break: keep-all;
  -ms-hyphens: none;
  hyphens: none;
}
.content.link-edit .preview-message a {
  color: #a970ff;
  font-weight: 500;
}
.content.link-edit .preview-message strong {
  display: inline;
  margin-right: 0.4rem;
  color: rgb(154, 205, 50);
}
.content.link-edit .preview-message strong img {
  position: relative;
  top: -0.1rem;
  display: inline;
  margin-right: 0.4rem;
}
.content.link-edit .btn.insert {
  margin-top: 1rem;
}

.content.reset-password {
  max-width: 400px;
}

.rdp {
  --rdp-cell-height: 30px;
  --rdp-cell-width: 28px;
  --rdp-accent-color: $color-font-selected;
  --rdp-background-color: rgba($color-font-selected, 0.20);
  --rdp-accent-color-dark: #3003e1;
  --rdp-background-color-dark: #180270;
  --rdp-outline: 2px solid var(--rdp-accent-color); /* Outline border for focused elements */
  --rdp-outline-selected: 3px solid var(--rdp-accent-color); /* Outline border for focused _and_ selected elements */
  margin: 1em;
  font-size: 1.1rem;
}

/* Hide elements for devices that are not screen readers */
.rdp-vhidden {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  position: absolute !important;
  top: 0;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  border: 0 !important;
}

/* Buttons */
.rdp-button_reset {
  appearance: none;
  position: relative;
  margin: 0;
  padding: 0;
  cursor: default;
  color: inherit;
  background: none;
  font: inherit;
  -moz-appearance: none;
  -webkit-appearance: none;
}

.rdp-button_reset:focus-visible {
  /* Make sure to reset outline only when :focus-visible is supported */
  outline: none;
}

.rdp-button {
  border: 2px solid transparent;
  font-weight: 300;
}

.rdp-button[disabled]:not(.rdp-day_selected) {
  opacity: 0.5;
  background-color: transparent !important;
  color: #768aa8;
}

.rdp-button:not([disabled]) {
  cursor: pointer;
}

.rdp-button:focus-visible:not([disabled]) {
  color: inherit;
  background-color: var(--rdp-background-color);
  border: var(--rdp-outline);
}

.rdp-button:hover:not([disabled]):not(.rdp-day_selected) {
  background-color: rgba(0, 191, 255, 0.2);
}

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

.rdp-month {
  margin: 0 1em;
}
.rdp-month:first-child {
  margin-left: 0;
}
.rdp-month:last-child {
  margin-right: 0;
}

.rdp-table {
  margin: 0;
  max-width: calc(var(--rdp-cell-width) * 7);
  border-collapse: collapse;
  border-spacing: 0;
}

.rdp-with_weeknumber .rdp-table {
  max-width: calc(var(--rdp-cell-width) * 8);
  border-collapse: collapse;
}

.rdp-caption {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0;
  text-align: left;
}

.rdp-multiple_months .rdp-caption {
  position: relative;
  display: block;
  text-align: center;
}

.rdp-caption_dropdowns {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.rdp-caption_label {
  position: relative;
  z-index: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
  padding: 0 0.25em;
  white-space: nowrap;
  color: #768aa8;
  border: 0;
  border: 2px solid transparent;
  font-family: inherit;
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
}

.rdp-nav {
  white-space: nowrap;
}

.rdp-multiple_months .rdp-caption_start .rdp-nav {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.rdp-multiple_months .rdp-caption_end .rdp-nav {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.rdp-nav_button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  padding: 0.25em;
  border-radius: 100%;
  color: #00bFFF;
}

/* ---------- */
/* Dropdowns  */
/* ---------- */
.rdp-dropdown_year,
.rdp-dropdown_month {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.rdp-dropdown {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  cursor: inherit;
  opacity: 0;
  border: none;
  background-color: transparent;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

.rdp-dropdown[disabled] {
  opacity: unset;
  color: unset;
}

.rdp-dropdown:focus-visible:not([disabled]) + .rdp-caption_label {
  background-color: var(--rdp-background-color);
  border: var(--rdp-outline);
  border-radius: 6px;
}

.rdp-dropdown_icon {
  margin: 0 0 0 5px;
}

.rdp-head {
  border: 0;
}

.rdp-head_row,
.rdp-row {
  height: 100%;
}

.rdp-head_cell {
  vertical-align: middle;
  font-size: 0.8em;
  text-align: center;
  height: 100%;
  height: var(--rdp-cell-height);
  padding: 0;
  color: #768aa8;
  text-transform: capitalize;
}

.rdp-tbody {
  border: 0;
}

.rdp-tfoot {
  margin: 0.5em;
}

.rdp-cell {
  width: var(--rdp-cell-width);
  height: 100%;
  height: var(--rdp-cell-height);
  padding: 0;
  text-align: center;
  border: none;
}

.rdp-weeknumber {
  font-size: 0.75em;
}

.rdp-weeknumber,
.rdp-day {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: var(--rdp-cell-width);
  max-width: var(--rdp-cell-width);
  height: var(--rdp-cell-height);
  margin: 0;
  border-radius: 0;
}

.rdp-day_today:not(.rdp-day_outside) {
  font-weight: bold;
  color: #fd77d2;
}

.rdp-day_selected:not(.rdp-day_outside),
.rdp-day_selected:not(.rdp-day_outside):focus-visible,
.rdp-day_selected:not(.rdp-day_outside):hover {
  font-weight: 700;
  background-color: rgba(0, 191, 255, 0.2);
  color: #fff;
}

.rdp-day_selected:not(.rdp-day_outside):hover {
  background-color: deepskyblue;
}

.rdp-day_outside {
  color: #768aa8;
  opacity: 0.5;
  cursor: initial !important;
  pointer-events: none;
}
.rdp-day_outside:hover {
  background-color: transparent !important;
}

.rdp-day_selected:not(.rdp-day_outside):focus-visible {
  /* Since the background is the same use again the outline */
  outline: var(--rdp-outline);
  outline-offset: 2px;
  z-index: 1;
}

.rdp:not([dir=rtl]) .rdp-day_range_start:not(.rdp-day_outside):not(.rdp-day_range_end) {
  background-color: #00bFFF !important;
  border-top-left-radius: 0.4rem !important;
  border-bottom-left-radius: 0.4rem !important;
}

.rdp:not([dir=rtl]) .rdp-day_range_end:not(.rdp-day_outside):not(.rdp-day_range_start) {
  background-color: #00bFFF !important;
  border-top-right-radius: 0.4rem !important;
  border-bottom-right-radius: 0.4rem !important;
}

.rdp[dir=rtl] .rdp-day_range_start:not(.rdp-day_outside):not(.rdp-day_range_end) {
  border-top-left-radius: 0.4rem !important;
  border-bottom-left-radius: 0.4rem !important;
}

.rdp[dir=rtl] .rdp-day_range_end:not(.rdp-day_outside):not(.rdp-day_range_start) {
  border-top-right-radius: 0.4rem !important;
  border-bottom-right-radius: 0.4rem !important;
}

.rdp-day_range_end.rdp-day_range_start {
  background-color: #00bFFF !important;
  border-radius: 0.4rem !important;
}

.rdp-day_range_middle {
  border-radius: 0;
}

.popup-content {
  width: auto !important;
  background-color: rgb(29.67, 48.5724, 72.63) !important;
  border-color: rgb(29.67, 48.5724, 72.63) !important;
  -webkit-box-shadow: 0px 0px 4px 1px rgba(12, 12, 14, 0.5) !important;
  box-shadow: 0px 0px 4px 1px rgba(12, 12, 14, 0.5) !important;
  z-index: 500 !important;
  -webkit-animation: popupIn 0.1s;
  animation: popupIn 0.1s;
  border-radius: 0.6rem;
}
.popup-content .popup-arrow {
  background-color: rgb(29.67, 48.5724, 72.63) !important;
}

.popup-overlay {
  z-index: 498;
  background-color: rgba(11.2, 18.9, 28.7, 0.5);
  -webkit-animation: fadeIn 0.2s;
  animation: fadeIn 0.2s;
}

.popup-target {
  z-index: 499 !important;
}

@-webkit-keyframes popupIn {
  0% {
    -webkit-transform: translate(0%, -2%);
    transform: translate(0%, -2%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
    opacity: 1;
  }
}

@keyframes popupIn {
  0% {
    -webkit-transform: translate(0%, -2%);
    transform: translate(0%, -2%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
    opacity: 1;
  }
}