@charset "UTF-8";

html {
  background-color: #419BF9;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  text-rendering: optimizeLegibility;
}
html * {
  -ms-overflow-style: none; /* IE 11 */
  scrollbar-width: none; /* Firefox 64 */
}
::-webkit-scrollbar {
  display: none!important;
}
body.load {
  background-color: #419BF9;
}
body {
  background-color: #F5F5F5;
  overflow: hidden;
}
body, html {
  padding: 0;
  margin: 0;
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, select {
  width: 100%;
}
ul {
  padding: 0;
  margin: 0;
}
input:not(.text-edit):not(.label-edit) {
  text-indent: 10px;
}
input {
  outline: none;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  font-size: 16px;
  font-family: 'medium';
  color: #444444;
  margin: 0px 0px 25px 0px;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  opacity: 1; /* Firefox */
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
  opacity: 1;
}

::-ms-input-placeholder { /* Microsoft Edge */
  opacity: 1;
}
.drop-down {
  border: 1px solid #FFFFFF;
  height: 60px;
  position: relative;overflow: hidden;
  margin-bottom: 25px;
  cursor: pointer;
}
.drop-down::after {
  content: '';
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  display: block;
  z-index: 999;
  opacity: 1;
  background-size: 30px !important;
}
.drop-down::after {
  background: url('../img/global/drop-down-icon.png') top center no-repeat;
  transition: all 250ms ease-in-out;
}
.drop-down.expand::after {
  transform: rotate(180deg);
}
.drop-down.dark {
  cursor: default;
}
.drop-down.dark .heading {
  cursor: pointer;
}
.drop-down.dark::after {
  background: url('../img/global/drop-down-icon-d.png') top center no-repeat;
}
ul.sub-pane li {
  background-color: #FFFFFF;
  height: 55px;
  position: relative;
  cursor: pointer;
}
ul.sub-pane li:not(:last-of-type) {
  margin-bottom: 2px;
}
ul.sub-pane li::after {
  content: '';
  background: url('../img/global/nav/carrot-icon.png') top center no-repeat;
  background-size: 10px;
  position: absolute;
  top: 20px;
  right: 10px;
  width: 15px;
  height: 20px;
}
ul.sub-pane li span.setting-icon {
  display: block;
  padding: 12px 0px 10px 10px;
  width: 30px;
}
ul.sub-pane li span.setting-icon img {
  width: 30px;
}
ul.sub-pane .setting-name {
  position: absolute;
  top: 0px;
  left: 60px;
}
.drop-down li:first-of-type {
  margin: 20px 0px 15px 0px;
}
.drop-down li:not(:first-of-type) {
  padding: 5px 0px;
}
.drop-down li.selected::after {
  content: '';
  position: absolute;
  background: url('../img/global/check-icon.png') top center no-repeat;
  background-size: 30px;
  width: 30px;
  height: 30px;
  right: 15px;
}
input:not(.text-edit):not(.label-edit):not([type="range"]), button {
  height: 60px;
}
input[type="range"] {
  cursor: pointer;
}
input, button {
  padding: 0;
  border: none;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
}
button {
  font-family: 'heavy';
  margin: 0;
  font-size: 18px;
  text-transform: uppercase;
  background-color: #323232;
  color: #FFFFFF;
  cursor: pointer;
}
li {
  list-style-type: none;
}
a {
  text-decoration: none;
}
li,p,a,select,label, h1, h2,input,textarea {
  font-family: 'regular';
}
label {
  color: #9B9B9B;
  font-family: 'medium';
}
.notification {
  background-color: #FFFFFF;
  height: 55px;
  position: relative;
  margin: 0px 0px 25px 0px;
}
.notification .label {
  font-family: 'medium';
  padding: 15px 10px;
  margin-bottom: 25px;
}
li.toggle {
  position: absolute;
  top: 12px;
  right: 10px;
  border: 1px solid #E5DCDC;
  border-radius: 100px;
  width: 55px;
  height: 28px;
  cursor: pointer;

  transition: all 200ms ease-in-out 100ms;
}
li.toggle::before {
  content: '';
  width: 28px;
  height: 28px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border: 1px solid #E5DCDC;
  border-radius: 100%;
  display: block;
  margin-left: -1px;

  transition: all 200ms ease-in-out 100ms;
}
.toggle-active li.toggle {
  border: 1px solid #6DABED;
  background-color: #6DABED;
}
.toggle-active li.toggle::before {
  border: 1px solid #6DABED;
  background-color: #FFFFFF;
  margin-left: 29px;

  transition: all 200ms ease-in-out;
}
.overflow {
  overflow-y: scroll; /* has to be scroll, not auto */
  -webkit-overflow-scrolling: touch;
}
/*****************/
/*  Global Nav  */
/***************/

#global-nav {
  background-color: #419BF9;
  height: 55px;
  width: 100%;
  position: fixed;
  bottom: 0;
  z-index: 9999;

  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}
#global-nav.collapse {
  -webkit-transform: translate3d(0,100%,0);
  transform: translate3d(0,100%,0);
}
#global-nav ul {
  text-align: center;
  width: 100%;
  position: absolute;
}
#global-nav li {
  float: left;
  width: 33.333%;
  transition: opacity .5s ease-in-out;
}
#global-nav .close li {
  width: 100%;
  height: 100%;
}
body.admin-support #global-nav li {
  width: 25% !important;
}
#global-nav li#global-nav-exit {
  width: 0%;
}
#global-nav #views-nav li {
  opacity: .5;
}
#global-nav #views-nav li.current {
  opacity: 1;
}
#global-nav li img {
  max-width: 28px;
  padding: 16px 16px 0px 16px;
  cursor: pointer;
}
#global-nav li p {
  margin: 0;
  padding: 0;
  font-size: 14px;
  color: #FFFFFF;
}
#global-nav #views-nav {
  -webkit-transform: translate3d(0,0%,0);
  transform: translate3d(0,0%,0);

  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}
#global-nav.hide #views-nav, #global-nav .pane-nav {
  -webkit-transform: translate3d(0,200%,0);
  transform: translate3d(0,200%,0);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}
#global-nav .pane-nav.current {
  -webkit-transform: translate3d(0,0%,0);
  transform: translate3d(0,0%,0);
}
#global-nav .activate li {
  width: 50%;
}
#global-nav.editor-pane .pane-nav li, #global-nav.editor-settings-pane .current li, #global-nav .pane-nav.close.current li, #global-nav.sign-activation-pane .current li {
  opacity: 1;
}
#global-nav .pane-nav {
  z-index: 0;
  height: 100%;
}
#global-nav .pane-nav.current {
  z-index: 1
}
#global-nav .pane-nav.editActions li {
  height: 100%;
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}
#global-nav .pane-nav.editActions li.cancel {
  width: 100%;
}
#global-nav .pane-nav.editActions li:not(.cancel) {
  width: 0%;
}
#global-nav .pane-nav.editActions.float li {
  width: 50%;
}

/*********************/
/*  End Global Nav  */
/*******************/

/************************/
/*    Global Header    */
/**********************/
#global-header, #global-header2, #global-header-support {
  position: fixed;
  background-color: rgba(255, 255, 255, 1.0);
  width: 100%;
  z-index: 2;
}
#global-header, #global-header-support {
  height: 85px;
}
#global-header {
  -webkit-transform: translate3d(100%,0,0);
  transform: translate3d(100%,0,0);

  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}
#global-header2 {
  height: 110px;
  text-align: center;
}
#global-header2, #global-header-support {
  -webkit-transform: translate3d(0,-100%,0);
  transform: translate3d(0,-100%,0);

  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}
#global-header.show {
  -webkit-transform: translate3d(0%,0,0);
  transform: translate3d(0%,0,0);
}
#global-header2.show, #global-header-support.show {
  -webkit-transform: translate3d(0,0%,0);
  transform: translate3d(0,0%,0);
}
#global-header2 input, #global-header-support input {
  width: 95%;
  text-align: center;
  margin: 15px auto 0px auto;
  border: 1px solid #979797;
  border-radius: 100px;
  height: 40px;
  min-height: 40px;
  font-size: 16px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
#global-header.hide {
  -webkit-transform: translate3d(0,-40px,0);
  transform: translate3d(0,-40px,0);
}
#global-header.editor-pane {
  background-color: rgba(255, 255, 255, 0.8);
  height: 55px;
}
#global-header.editor-pane #editor-header h1 {
  font-size: 18px;
  padding: 8px 0px 10px 0px;
  text-indent: 45px;
}
#global-header div.header {
  position: absolute;
  height: 100%;
  z-index: 0;
  width: 100%;
  top: 0;

  -webkit-transform: translate3d(100%,0,0);
  transform: translate3d(100%,0,0);

  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}
#global-header div.current {
  z-index: 1;

  -webkit-transform: translate3d(0%,0,0);
  transform: translate3d(0%,0,0);
}
#global-header h1, #global-header-support h1 {
  font-family: 'regular';
  font-size: 30px;
  padding: 25px 15px;
  margin: 0;
}
#global-header h1 span {
  text-transform: capitalize;
  font-size: 18px;
  font-family: 'regular';
  font-weight: normal;
}
#global-header h1 span::before {
  content: '| ';
}
#global-header [data-action='virtual-signs'] {
  opacity: 0;
}
#global-header [data-action*='global-prompt'].create {
  position: absolute;
  right: 10px;
  top: 20px;
  width: 100px;
  color: #419BF9;
  background-color: transparent;
}
#global-header [data-action*='global-prompt'].create.current {
  display: block !important;
}
#global-header2 li {
  float: left;
  width: 25%;
  padding: 10px 0px;
  font-family: 'bold';
  text-align: center;
  cursor: pointer;
}
#global-header2 ul {
  display: table;
  width: 100%;
}
#global-header2 li.current {
  border-bottom: 2px solid #419BF9;
}

/****************************/
/*    End Global Header    */
/**************************/



/*********************/
/*    Animation    */
/*******************/

.slide:not(.last) {

  -webkit-transform: translate3d(100%,0,0);
  transform: translate3d(100%,0,0);

  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);

}
.slide.current, .swipe {
  -webkit-transform: translate3d(0%,0,0);
  transform: translate3d(0%,0,0);

  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.push {
  -webkit-transform: translate3d(0,100%,0);
  transform: translate3d(0,100%,0);

  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);

}
.push.current {
  -webkit-transform: translate3d(0,0%,0);
  transform: translate3d(0,0%,0);
}
.swipe.current {

  -webkit-transform: translate3d(-100%,0,0);
  transform: translate3d(-100%,0,0);

  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);

}
/************************/
/*    End Animation    */
/**********************/




/*********************/
/*    App Views    */
/*******************/

#app-container {
  height: 100%;
}
#views-container {
  position: relative;
  height: 100%;
  overflow: hidden;
}
body {
  opacity: 1;
  transform: scale(1.0);
  transition: all 2s cubic-bezier(0.23, 1, 0.32, 1);
}
body.load:not(.login) {
  opacity: 1;
  transform: scale(1.0);

  transition: all 2s cubic-bezier(0.23, 1, 0.32, 1);
}
.app-view:not(#dashboard-view), #account-view .pane {
  padding-top: 85px;
  padding-bottom: 85px;
}
.app-view:not(#dashboard-view):not(#account-view) .wrapper {
  padding-bottom: 200px;
}
#dashboard-view .wrapper {
  padding-bottom: 100px;
}
.app-view {
  color: #444444;
  position: absolute;
  overflow: hidden;
  z-index: 0;
  background-color: #F5F5F5;
  opacity: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll; /* has to be scroll, not auto */
  -webkit-overflow-scrolling: touch;

}
.app-view.current {
  opacity: 1;
  z-index: 1;
}
.app-view:not(#dashboard-view) div.header {
  width: 95%;
  margin: auto;
}
/************************/
/*    End App Views    */
/**********************/


/*********************/
/*  Dashboard View  */
/*******************/
#dashboard-view {
  top: 0;
}
#dashboard-view .header {
  position: relative;
  height: 234px;
  text-align: center;
  background-color: #272C37;
  color: #FFFFFF;
}
#dashboard-view  .greating-wrapper {
  position: relative;
  top: 75px;
  z-index: 1;
}
#dashboard-view .header #greeting {
  position: relative;
  z-index: 3;
  font-size: 40px;
  font-family: 'bold';
}
#dashboard-view .header #greeting {
  margin: 0;
}
#dashboard-view .header #user span {
  font-size: 16px;
  cursor: pointer;
}
#dashboard-view .header span.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#dashboard-view .header span.overlay {
  z-index: 0;
  background: url('../img/global/tech-bg-pattern.png') top center repeat;
  opacity: .12;
  background-size: 385px;
}
.ul-tab {
  position: relative;
  display: table;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  background-color: #FFFFFF;
  border-radius: 6px;
}
.ul-tab:not([data-action="editor-pane"]){
  cursor: pointer;
}
.ul-tab li:not(.locations) {
  float: left;
}
.ul-tab li.heading {
  margin-top: 25px;
}
.ul-tab li.sub-heading {
  margin: 34px 0px 0px 5px;
}
.ul-tab li.icon {
  padding: 13px 20px;
}
.ul-tab li.icon span {
  width: 68px;
  height: 68px;
  text-align: center;
  display: block;
  border-radius: 100%;
}
.app-view #pending-signs li.icon span {
  background-color: #424242;
}
.app-view #pending-signs li.heading {
  color: #424242;
}
.app-view #total-signs li.icon span {
  background-color: #8683E9;
}
.app-view #total-signs li.heading {
  color: #8683E9;
}
.app-view #online-count li.icon span {
  background-color: #82C88A;
}
.app-view #online-count li.heading {
  color: #82C88A;
}
.app-view #offline-count li.icon span {
  background-color: #DF7777;
}
.app-view #offline-count li.heading {
  color: #DF7777;
}
.app-view #store-locations li.icon span {
  background-color: #E7E085;
}
.app-view #store-locations li.heading {
  color: #E7E085;
}
.app-view #support li.icon span {
  background-color: #419BF9;
}
.app-view #support li.heading {
  color: #419BF9;
}
.ul-tab li.icon img {
  max-width: 34px;
  margin-top: 18px;
}
.ul-tab li.heading {
  font-family: 'heavy';
  font-size: 30px;
}
.ul-tab li.sub-heading {
  font-family: 'medium';
  text-transform: uppercase;
  color: #B5B3B3;
  font-size: 16px;
}
#collective-signs #sign-list {
  width: 95%;
  margin: 25px auto;
}
#collective-signs #sign-list .list {
  margin-bottom: 200px;
}
#collective-signs ul.drop-down {
  background-color: #FFFFFF;
  width: 98%;
  margin: 10px auto;
  overflow: hidden;
  border: 1px solid transparent;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
#collective-signs ul.drop-down li {
  margin: 0;
}
#collective-signs ul.drop-down ul.sub {
  display: table;
  width: 95%;
  margin: auto;
  padding-bottom: 15px;
}
#collective-signs ul.drop-down ul.sub:not(:last-of-type) {
  border-bottom: 2px solid #F5F5F5;
}
#collective-signs ul.drop-down ul.sub.preview li {
  max-width: 400px;
  position: relative;
}
#collective-signs ul.drop-down ul.sub.preview .expand {
  display: block;
  height: 50px;
  width: 50px;
  background: url('../img/global/zoom-icon.png') center center no-repeat;
  background-size: 40px;
  background-color: rgba(0,0,0, 0.5);
  position: absolute;
  bottom: 6px;
  right: 0;
  display: none;
  cursor: pointer;
}
#preview {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: rgba(0,0,0, 0.95);
  text-align: center;
}
#preview .wrapper {
  width: 98%;
  margin: 20% auto;
}
#collective-signs ul.drop-down h2.heading {
  padding: 20px 0px 8px 0px;
  width: 95%;
  margin: auto;
  font-size: 18px;
  font-weight: normal;
  text-indent: 20px;
}
#collective-signs ul.drop-down.expand {
  border: 1px solid #9B9B9B;
}
#collective-signs ul.drop-down h2.heading span {
  width: 12px;
  height: 12px;
  display: block;
  border-radius: 100%;
  position: absolute;
  top: 26px;
}
#collective-signs ul.drop-down h2.heading span.on {
  background-color: #73C63B;
}
#collective-signs ul.drop-down h2.heading span.off {
  background-color: #FF3C3C;
}
#collective-signs ul.drop-down hr {
  border: 0;
  background-color: #F5F5F5;
  height: 3px;
  margin-top: 12px;
}
#collective-signs ul.drop-down .sign-location * {
  margin: 0;
  padding: 0;
}
#collective-signs ul.drop-down .sign-location .heading {
  font-weight: normal;
}
#collective-signs ul.drop-down .sign-location p, #collective-signs ul.drop-down ul.sub li:not(.sign-location) {
  color: #9E9E9E;
}
#collective-signs ul.drop-down li {
  padding: 0;
}
#collective-signs ul.drop-down ul.sub:not(.preview):not(.details):not(.settings) li {
  float: left;
  width: 33.333%;
}
#collective-signs ul.drop-down ul.sub.settings li {
  display: table;
  width: 100%;
}
#collective-signs ul.drop-down ul.sub.settings li:not(.schedule) * {
  float: left;
  width: 50%;
}
#collective-signs ul.drop-down ul.sub.settings li *:nth-of-type(2) {
  text-align: right;
}
#collective-signs ul.drop-down ul.sub.settings *::after {
  display: none;
}
#collective-signs ul.drop-down ul.sub.settings li.schedule li {
  float: left;
}
#collective-signs ul.drop-down ul.sub.settings li.schedule li:not(.times) {
  width: 30%;
}
#collective-signs ul.drop-down ul.sub.settings li.schedule li.times {
  width: 70%;
}
#collective-signs ul.drop-down ul.sub.settings li.schedule {
  margin-top: 10px;
}
#collective-signs ul.drop-down ul.sub.settings li.schedule li {
  padding-top: 10px;
}
#collective-signs ul.drop-down ul.sub.settings li.schedule select {
  font-size: 16px;
}
#collective-signs ul.drop-down ul.sub.settings li.schedule li, #collective-signs ul.drop-down ul.sub.settings li.schedule input {
  height: 30px;
  min-height: 30px;
  margin-bottom: 0;
}
#collective-signs ul.drop-down ul.sub.settings li.schedule li span::after {
  display: block;
  content: '-';
  position: absolute;
}
#collective-signs ul.drop-down ul.sub.settings li.schedule ul {
  display: table;
  width: 100%;
}
#collective-signs ul.drop-down ul.sub .heading {
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 0;
}
#collective-signs ul.drop-down ul.sub li p {
  margin-bottom: 2px;
}
/************/
/*  Stats  */
/**********/

#dashboard-view #health-report {
  height: 128px;
  background-color: #2F3A58;
  width: 95%;
  margin: 25px auto;
  color: #FFFFFF;
  border-radius: 6px;
}
#dashboard-view #health-report ul {
  width: 95%;
  margin: auto;
  display: table;
  padding-top: 20px;
}
#dashboard-view #health-report .heading, #dashboard-view #health-report .sub-heading {
  float: right;
  width: 50%;
}
#dashboard-view #health-report .heading {
  font-family: 'heavy';
  text-align: right;
  font-size: 50px;
  line-height: 110px;
}
#dashboard-view #health-report .sub-heading {
  font-size: 30px;
  font-family: 'regular';
  text-align: left;
}
/****************/
/*  End Stats  */
/**************/

/*************************/
/*  End Dashboard View  */
/***********************/



/************/
/*  Panes  */
/**********/
#global-panes .pane {
  background-color: #272C37;
  height: 100%;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1;
}
#global-panes #collective-signs {
  background-color: #F5F5F5;
}
#global-panes .pane {
  padding-top: 85px;
}
#global-panes .pane[data-action='editor-pane'] {
  padding-top: 0px;
}
/****************/
/*  End Panes  */
/**************/



/*******************/
/*  Editor View  */
/*****************/

#editor-view .sign-list {
  width: 95%;
  margin: auto;
}
#editor-view .drop-down, #account-view .drop-down {
  background-color: #FFFFFF;
  border-radius: 6px;
}
#editor-view .drop-down .top, #account-view .drop-down .top {
  background-color: #4D4E4F;
  height: 60px;
}
#editor-view .drop-down .wrapper {
  display: block;
  height: 100%;
  padding: 10px 0px 0px 15px;
}
#editor-view .drop-down .top img {
  max-width: 35px;
  float: left;
}
#editor-view .drop-down .top .title {
  margin: 5px 0px 0px 10px;
  float: left;
  color: #FFFFFF;
  font-size: 18px;
  font-family: 'medium';
}
#editor-view .drop-down .top .title span {
  font-family: 'regular';
  font-weight: 100;
}
#editor-view .drop-down ul {
  width: 95%;
  margin: auto;
}
#editor-view .drop-down ul:last-of-type {
  margin-bottom: 25px;
}
#editor-view .drop-down ul li:not(.title) {
  background-color: #419BF9;
  color: #FFFFFF;
  border-radius: 6px;
  padding: 10px 5px;
  position: relative;
}
#editor-view .drop-down .list-title {
  color: #B9B9B9;
  font-family: 'bold';
  font-size: 18px;
  width: 95%;
  margin: 10px auto 0px auto;
}
#editor-view .drop-down ul .title * {
  margin: 0;
}
#editor-view .drop-down span.edit {
  position: absolute;
  top: 8px;
  right: 5px;
}
#editor-view .drop-down span.edit::before {
  display: block;
  content: '';
  background: url('../img/global/settings-icon-light.png') top center no-repeat;
  background-size: 25px;
  height: 25px;
  width: 25px;
}
#editor-header h1 span {
  position: absolute;
  font-size: 16px;
  top: 50px;
  left: 15px;
}
#editor-header h1.pane-view {
  padding-top: 15px;
}
/***********************/
/*  End Editor View  */
/*********************/



/*******************/
/*  Account View  */
/******************/

/*********************/
/**   Activation   **/
/*********************/
#app-container #sign-activation {
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  background: #272C37;

  -webkit-transform: translate3d(0,100%,0);
  transform: translate3d(0,100%,0);

  transition: transform 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}
#app-container #sign-activation.show {
  -webkit-transform: translate3d(0,0%,0);
  transform: translate3d(0,0%,0);

  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#app-container #sign-activation {
  color: #FFFFFF;
}
#app-container #sign-activation .wrapper {
  max-width: 400px;
  margin: 0px auto 100px auto;
  text-align: center;
}
#app-container #sign-activation .heading {
  text-align: center;
}
#app-container #sign-activation input {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
  text-align: center;
  text-indent: 0;
}
#app-container #sign-activation .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: url('../img/global/tech-bg-pattern.png') top center repeat;
  opacity: .12;
  background-size: 385px;
}
#account-view .drop-down .top {
  color: #FFFFFF;
}
/*********************/
/** End Activation **/
/*********************/
#account-view .wrapper > div {
  width: 95%;
  margin: auto;
}
#account-view .pane {
  position: absolute;
  width: 100%;
  top: 0;
}
#account-view .wrapper label {
  display: block;
  margin-bottom: 10px;
}
#account-view .wrapper hr {
  border: 0px;
  background-color: #E0E0E0;
  height: 1px;
  margin-bottom: 20px;
}
#account-view .input {
  position: relative;
  overflow: hidden;
}
#account-view .login-details span.save {
  position: absolute;
  right: 0;
  top: 54px;
  width: 80px;
}
#account-view .activate span.save {
  display: block;
  width: 100%;
}
#account-view .input span.save {
  text-align: center;
  height: 60px;
  background-color: #419BF9;
  cursor: pointer;

  -webkit-transform: translate3d(82px,0,0);
  transform: translate3d(82px,0,0);

  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}
#account-view .input.save span.save {
  -webkit-transform: translate3d(0px,0,0);
  transform: translate3d(0px,0,0);
}
#account-view .activate input:first-of-type {
  border-right: 4px solid #F5F5F5;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
#account-view .login-details span.save::before {
  content: 'Save';
}
#account-view .input span.save::before {
  color: #FFFFFF;
  font-family: 'heavy';
  text-transform: uppercase;
  margin-top: 18px;
  display: block;
}
#account-view .notice {
  text-align: center;
}
#account-view .virtual-signs-list .header li {
  float: left;
  text-align: left;
}
#account-view .virtual-signs-list .header li:first-of-type {
  width: 20%;
}
#account-view .virtual-signs-list .header li:nth-of-type(2) {
  width: 40%
}
#account-view .virtual-signs-list .header li {
  width: 20%;
}
#account-view .virtual-signs-list .header li:last-of-type {
  text-align: right;
  width: 19%;
}
#account-view .drop-down {
  cursor: default;
}
#account-view .drop-down::after {
  cursor: pointer;
  height: 25px;
  width: 25px;
  background: url('../img/global/settings-icon-light.png') top center no-repeat;
  background-size: 25px !important;
}
#account-view .drop-down.expand::after {
  transform-origin: center;
}
#account-view .drop-down .embed li {
  width: 95%;
  margin: auto;
}
#account-view .drop-down li {
  margin: 0;
  padding: 18px 0px;
}
#account-view .virtual-signs-list ul.header {
  text-indent: 10px;
}
#account-view .virtual-signs-list > ul {
  margin: 25px 0px 10px;
  display: table;
  width: 100%;
}
#account-view .virtual-signs-list > ul li {
  font-family: 'bold';
}
#account-view .virtual-signs-list textarea {
  width: 95%;
  resize: none;
  min-height: 75px;
  height: auto;
  margin: auto;
  padding: 0;
  display: block;
  font-size: 14px;
}
#account-view .virtual-signs-list .select {
  border: 1px solid #323232;
  display: block;
  padding: 5px;
}
/***********************/
/*  End Account View  */
/*********************/

/***********************/
/*  Global Prompt  */
/*********************/
#global-prompt {
  overflow: hidden;
}
#global-prompt > .wrapper {
  top: 110%;
  transition: all 200ms ease-in-out
}
#global-prompt > .wrapper.current {
  top: 50%;
}
#global-prompt .wrapper {
  max-width: 300px;
  margin: auto;
  position: absolute;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  right: 0;
}
#global-prompt .wrapper .header {
  margin: 0;
  color: #FFFFFF;
}
#global-prompt .wrapper .title {
  margin-bottom: 10px;
}
#global-prompt .wrapper button.save {
  background-color: #419BF9;
}
#global-prompt .variation-edit button {
  margin-bottom: 10px;
}
#global-prompt .variation-edit .close {
  position: absolute;
  cursor: pointer;
  top: 0;
  right: 0;
  margin: auto;
  width: 25px;
}
#global-prompt .virtual-sign .sign-list {
  margin: 10px 0px 15px 0px;
}
/***********************/
/*  End Global Prompt  */
/*********************/
