/*---------------------------------------------------
    LESS Elements 0.6
  ---------------------------------------------------
    A set of useful LESS mixins by Dmitry Fadeyev
    Special thanks for mixin suggestions to:
      Kris Van Herzeele,
      Benoit Adam,
      Portenart Emile-Victor,
      Ryan Faerman

    More info at: http://lesselements.com
-----------------------------------------------------*/
/*
.transition(@duration:0.2s, @ease:ease-out) {
  -webkit-transition: all @duration @ease;
  -moz-transition: all @duration @ease;
  transition: all @duration @ease;
}
*/
@import url('https://fonts.googleapis.com/css?family=Quicksand');
.backgroundImageCover {
  background-size: cover;
}
.boxSizing {
  box-sizing: border-box;
}
.noScroll {
  overflow: hidden;
}
.noSelect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/*.glow{
    .transition(all,500ms,ease);
    .box-shadow( 0px 0px 10px rgb(165, 165, 255));
    .rounded-corners(5px);
    padding: 15px;
    left: -15px;
    top: -15px;
}*/
.preWrap {
  white-space: pre-wrap;
  /* css-3 */
  white-space: -moz-pre-wrap;
  /* Mozilla, since 1999 */
  white-space: -pre-wrap;
  /* Opera 4-6 */
  white-space: -o-pre-wrap;
  /* Opera 7 */
  word-wrap: break-word;
  /* Internet Explorer 5.5+ */
}
.animSpin {
  -webkit-animation-name: rotate;
  -webkit-animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: rotate;
  -moz-animation-duration: 2s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
}
.animBounce {
  -webkit-transition: all 800ms ease;
  transition: all 800ms ease;
  -webkit-animation: bounce 800ms ease-out;
  animation: bounce 800ms ease-out;
}
.questionJump {
  -webkit-animation: dot 1s ease-in-out infinite;
  animation: dot 1s ease-in-out infinite;
  -moz-animation: dot 1s ease-in-out infinite;
}
.scrollBar::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.07);
}
.scrollBar::-webkit-scrollbar {
  width: 7px;
  background-color: #1f4d61;
}
.scrollBar::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background-clip: padding-box;
  width: 7px;
  height: 7px;
  cursor: pointer;
  background-color: #29aab6;
}
.scrollBar::-webkit-scrollbar-thumb:hover {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  background-color: #0066ff;
}
.scrollBarLight::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.01);
}
.scrollBarLight::-webkit-scrollbar {
  width: 7px;
  height: 7px;
  background-color: transparent;
}
.scrollBarLight::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background-clip: padding-box;
  width: 7px;
  height: 7px;
  cursor: pointer;
  background-color: #2e85b2;
}
.scrollBarLight::-webkit-scrollbar-thumb:hover {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}
@-webkit-keyframes dot {
  0% {
    -webkit-transform: scale(1, 0.7);
            transform: scale(1, 0.7);
  }
  20% {
    -webkit-transform: scale(0.7, 1.2);
            transform: scale(0.7, 1.2);
  }
  40% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  46% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  80% {
    -webkit-transform: scale(0.7, 1.2);
            transform: scale(0.7, 1.2);
  }
  90% {
    -webkit-transform: scale(0.7, 1.2);
            transform: scale(0.7, 1.2);
  }
  100% {
    -webkit-transform: scale(1, 0.7);
            transform: scale(1, 0.7);
  }
}
.animFlash {
  -webkit-animation-name: flash;
  -webkit-animation-duration: 500ms;
  -webkit-animation-iteration-count: 5;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: flash;
  -moz-animation-duration: 500ms;
  -moz-animation-iteration-count: 5;
  -moz-animation-timing-function: linear;
}
@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@-webkit-keyframes flash {
  from {
    -khtml-opacity: 0.2;
    -webkit-opacity: 0.2;
    -moz-opacity: 0.2;
    opacity: 0.2;
  }
  50% {
    -khtml-opacity: 0.9;
    -webkit-opacity: 0.9;
    -moz-opacity: 0.9;
    opacity: 0.9;
  }
  to {
    -khtml-opacity: 0.2;
    -webkit-opacity: 0.2;
    -moz-opacity: 0.2;
    opacity: 0.2;
  }
}
@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(-100%);
    opacity: 0;
  }
  5% {
    -webkit-transform: translateY(-100%);
    opacity: 0;
  }
  15% {
    -webkit-transform: translateY(0);
    padding-bottom: 5px;
  }
  30% {
    -webkit-transform: translateY(-50%);
  }
  40% {
    -webkit-transform: translateY(0%);
    padding-bottom: 6px;
  }
  50% {
    -webkit-transform: translateY(-30%);
  }
  70% {
    -webkit-transform: translateY(0%);
    padding-bottom: 7px;
  }
  80% {
    -webkit-transform: translateY(-15%);
  }
  90% {
    -webkit-transform: translateY(0%);
    padding-bottom: 8px;
  }
  95% {
    -webkit-transform: translateY(-10%);
  }
  97% {
    -webkit-transform: translateY(0%);
    padding-bottom: 9px;
  }
  99% {
    -webkit-transform: translateY(-5%);
  }
  100% {
    -webkit-transform: translateY(0);
    padding-bottom: 9px;
    opacity: 1;
  }
}
/* Mozilla Firefox 15 below */
/* Opera 12.0 */
/* W3, Opera 12+, Firefox 16+ */
@keyframes bounce {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 0;
  }
  5% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 0;
  }
  15% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    padding-bottom: 5px;
  }
  30% {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  40% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    padding-bottom: 6px;
  }
  50% {
    -webkit-transform: translateY(-30%);
            transform: translateY(-30%);
  }
  70% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    padding-bottom: 7px;
  }
  80% {
    -webkit-transform: translateY(-15%);
            transform: translateY(-15%);
  }
  90% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    padding-bottom: 8px;
  }
  97% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    padding-bottom: 9px;
  }
  99% {
    -webkit-transform: translateY(-3%);
            transform: translateY(-3%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    padding-bottom: 9px;
    opacity: 1;
  }
}
.button {
  text-align: center;
  padding: 15px;
  width: 275px;
  font-size: 18px;
  font-weight: 300;
  color: white;
  display: inline-block;
  outline: none;
  border: none;
  margin-bottom: 15px;
  background-color: #606E7D;
  font-size: 20px;
  font-weight: bold;
  color: #455863;
  border-radius: 25px;
  background-clip: padding-box;
  border: 1px solid #455863;
  padding-left: 40px;
  padding-right: 40px;
  margin: 5px;
}
.button.green {
  background-color: #41C38C;
}
.button:hover {
  color: white;
  border: 1px solid transparent;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  background-color: #303d45;
}
.basicButton {
  text-align: center;
  padding: 15px;
  width: 275px;
  font-size: 18px;
  font-weight: 300;
  color: white;
  display: inline-block;
  outline: none;
  border: none;
  margin-bottom: 15px;
  background-color: #606E7D;
}
.basicButton.green {
  background-color: #41C38C;
}
a.basicButton {
  text-decoration: none;
}
.basicButton:disabled {
  cursor: not-allowed;
  background-color: #bebebe;
}
.smallButton {
  padding: 10px;
  color: #FFF;
  background-color: #6fa8c7;
  cursor: pointer;
  text-decoration: none;
}
.roundedButton {
  font-size: 20px;
  font-weight: bold;
  color: #455863;
  border-radius: 25px;
  background-clip: padding-box;
  border: 1px solid #455863;
  padding-left: 40px;
  padding-right: 40px;
  margin: 5px;
}
.roundedButton:hover {
  color: white;
  border: 1px solid transparent;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  background-color: #303d45;
}
.buttonDarkBlueSmall {
  font-size: 10px;
}
.button.force {
  color: white;
  border: 1px solid transparent;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  background-color: #303d45;
}
.blueButton {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  background-color: #4c5264;
  color: white;
}
.blueButton:hover {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  background-color: #00ADE2;
}
.blueButton:active {
  -webkit-transition: all 10ms ease;
  transition: all 10ms ease;
  box-shadow: inset 1px 1px 1px #A3A3A3;
}
.whiteButton {
  background: #ffffff;
  border: #193e4e 1px solid;
  color: #193e4e;
}
.lightBlueButton {
  background-color: #0085f5;
  color: white;
}
.buttonYellow {
  background-color: #F8A648;
  color: white;
}
.grayButton {
  background-color: #9b9b9b;
  color: white;
}
.buttonBlueLight {
  background-color: #85B2E4;
  color: white;
}
.buttonDarkBlue {
  background-color: #1e5572;
  color: white;
}
.buttonDarkBlue:hover {
  color: white;
}
.buttonTurquoise {
  background-color: #29AAB6;
  color: white;
}
.buttonContainer {
  display: inline-block;
  margin: 0 20px;
}
.mainFont {
  font-family: 'Quicksand', monospace;
}
.icon {
  cursor: pointer;
}
/*GRID*/
.gridRow {
  margin-left: auto;
  margin-right: auto;
}
.gridRow:before,
.gridRow:after {
  content: ' ';
  display: table;
}
.gridRow:after {
  clear: both;
}
.gridColumns {
  width: 100%;
  float: left;
  box-sizing: border-box;
}
.gridColumns:last-child {
  float: right;
}
.gridColumns.gridEnd {
  float: left;
}
.gridBlock1 {
  width: 8.33333333%;
}
.gridBlock2 {
  width: 16.66666667%;
}
.gridBlock3 {
  width: 25%;
}
.gridBlock4 {
  width: 33.33333333%;
}
.gridBlock5 {
  width: 41.66666667%;
}
.gridBlock6 {
  width: 50%;
}
.gridBlock7 {
  width: 58.33333333%;
}
.gridBlock8 {
  width: 66.66666667%;
}
.gridBlock9 {
  width: 75%;
}
.gridBlock10 {
  width: 83.33333333%;
}
.gridBlock11 {
  width: 91.66666667%;
}
.gridBlock12 {
  width: 100%;
}
.gridOffset1 {
  margin-left: 8.33333333%;
}
.gridOffset2 {
  margin-left: 16.66666667%;
}
.gridOffset3 {
  margin-left: 25%;
}
.gridOffset4 {
  margin-left: 33.33333333%;
}
.gridOffset5 {
  margin-left: 41.66666667%;
}
.gridOffset6 {
  margin-left: 50%;
}
.gridOffset7 {
  margin-left: 58.33333333%;
}
.gridOffset8 {
  margin-left: 66.66666667%;
}
.gridOffset9 {
  margin-left: 75%;
}
.gridOffset10 {
  margin-left: 83.33333333%;
}
.gridOffset11 {
  margin-left: 91.66666667%;
}
.gridOffset12 {
  margin-left: 100%;
}
.gridSpaced {
  margin-right: 3px;
}
/*END GRID*/
ul.normalize {
  list-style: none;
  padding: 0;
  margin: 0;
}
input[type=search].normalize {
  border: none;
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
}
input[type=search].normalize:focus {
  outline: none;
}
input:focus.normalize  {
  outline: none;
}
select.normalize {
  -webkit-appearance: none;
  margin: 0;
  border: none;
}
select.normalize:focus {
  outline: none;
}
.platformIcon {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-image: url("/assets/images/logos/platformIcons.svg");
  background-size: 600px 40px;
}
.platformIcon.platFormIconAndroid {
  background-position: -20px 0;
}
.platformIcon.platFormIconJava {
  background-position: -72px 0;
}
.platformIcon.platFormIconIos {
  background-position: -124px 0;
}
.platformIcon.platFormIconCSharp {
  background-position: -176px 0;
}
.platformIcon.platFormIconPython {
  background-position: -228px 0;
}
.platformIcon.platFormIconJavascript {
  background-position: -280px 0;
}
.platformIcon.platFormIconHtml5 {
  background-position: -332px 0;
}
.platformIcon.platFormIconGeneric {
  background-position: -384px 0;
}
.platformIcon.platFormIconApi {
  background-position: -436px 0;
}
.platformIcon.platFormIconWb {
  background-position: -488px 0;
}
.platformIcon.platFormIconXdk {
  background-position: -540px 0;
}
.utilityResetList {
  list-style: none;
  margin: 0;
  padding: 0;
}
.utilityDisabled {
  cursor: not-allowed;
}
ul.utilitiyFlatList {
  display: inline-block;
}
ul.utilitiyFlatList li {
  display: inline-block;
}
.utilityRight {
  float: right;
}
.utilityRight:after,
.utilityRight:before {
  clear: both;
}
.toggleSwitch {
  width: 30px;
  height: 16px;
  position: relative;
  -webkit-transition: all 250ms ease-in;
  transition: all 250ms ease-in;
}
.toggleSwitch:after,
.toggleSwitch:before {
  -webkit-transition: all 250ms ease-in;
  transition: all 250ms ease-in;
  content: '';
  border-radius: 3px;
  background-clip: padding-box;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: grey;
  z-index: 0;
}
.toggleSwitch:before {
  width: 14px;
  height: 14px;
  top: 1px;
  left: 1px;
  z-index: 1;
  background-color: #e4e4e6;
}
.toggleSwitch:checked {
  -webkit-transition: all 250ms ease-in;
  transition: all 250ms ease-in;
}
.toggleSwitch:checked:after {
  background-color: #00acf1;
}
.toggleSwitch:checked:before {
  left: 15px;
}
header {
  width: 100%;
  display: block;
  position: fixed;
  top: 0px;
}
header i.fa {
  font-size: 36px;
  float: left;
  margin-left: 15px;
  margin-top: 15px;
  display: inline-block;
  color: rgba(255, 255, 255, 0.25);
}
header h1 {
  color: #002432;
  margin: 0px;
  float: left;
  display: inline-block;
  font-weight: 300;
  margin-left: 15px;
  top: 0px;
  position: relative;
}
header h1 b {
  font-weight: 700;
}
header .controls {
  position: absolute;
  right: 0px;
  height: 100%;
  top: 0px;
  width: 70px;
  background-color: #072734;
  box-sizing: border-box;
  padding: 10px;
}
header .controls i.fa {
  font-size: 36px;
  float: right;
  color: #ff696a;
  cursor: pointer;
  margin: 10px;
}
dialog.modal {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100vh;
  width: 100vw;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.7);
  box-sizing: border-box;
  border: 0;
  z-index: 101;
  overflow-y: auto;
}
dialog.modal .modalContent {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1 auto;
      -ms-flex: 1 auto;
          flex: 1 auto;
  background: #d8d8d8;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.27);
  -webkit-perspective: 1000;
  -ms-perspective: 1000;
  perspective: 1000;
  border: 0;
  max-width: 500px;
  max-height: 70vh;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  overflow-y: auto;
}
dialog.modal .modalTitle {
  position: absolute;
  width: 100%;
  background-color: #193e4e;
  padding: 15px;
  margin: 0;
  font-size: 18px;
  font-weight: 100;
  left: 0px;
  top: 0px;
  color: white;
  box-sizing: border-box;
  text-align: left;
}
dialog.modal .modalTitle .closeIcon {
  float: right;
  cursor: pointer;
}
dialog.modal .modalTitleSimple {
  background-color: inherit;
  color: #193e4e;
  font-size: 20px;
}
dialog.modal .modalFooter {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
dialog.modal .modalFooterEnd {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
dialog.modal article {
  -webkit-box-flex: 1;
  -webkit-flex: 1 auto;
      -ms-flex: 1 auto;
          flex: 1 auto;
  text-align: left;
  padding: 15px;
  padding-top: 65px;
}
dialog.modal article p {
  font-size: 13px;
}
dialog.modal .spinner {
  text-align: center;
  font-size: 24px;
}
dialog.modal select {
  font-size: 16px;
  padding: 10px;
  margin: 0px;
  outline: none;
  background-color: transparent;
  border: none;
  color: #455863;
}
dialog.modal.noWidth article {
  max-width: 80%;
}
dialog.settings .modalTitle {
  background-color: #29aab6;
}
modal.lazyLoad {
  position: relative;
}
modal.lazyLoad .ng-hide {
  display: inline-block !important;
}
dialog.modal.ng-hide {
  display: block;
  z-index: -1;
  -webkit-perspective: 1000;
  -ms-perspective: 1000;
  perspective: 1000;
  background-color: transparent;
}
dialog.modal.ng-hide article.content {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  top: -100px;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -webkit-transform: scale(0.3);
  -ms-transform: scale(0.3);
      transform: scale(0.3);
  -webkit-transform: scale(0.3) translateZ(0);
  transform: scale(0.3) translateZ(0);
}
dialog.modal.ng-hide::after {
  display: none;
}
footer span.frame.loaded {
  display: inline-block;
}
footer {
  position: relative;
  bottom: 0px;
  width: 100%;
  text-align: center;
  background-color: #193f52;
}
footer span.frame {
  display: none;
  min-height: 10px;
  padding-bottom: 50px;
  padding-top: 25px;
}
footer ul {
  min-width: 100px;
  display: inline-block;
  list-style-type: none;
  padding: 0px;
  min-height: 50px;
  margin: 0px;
  vertical-align: top;
  margin: 20px;
  width: 200px;
}
footer ul h3 {
  color: #9ec1d4;
  font-weight: bold;
  margin: 0px;
  font-size: 20px;
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
  margin-top: 0px;
}
footer ul h3 a {
  margin-bottom: 10px;
  margin-top: 0px;
  font-size: 20px;
  color: #9ec1d4;
  font-weight: bold;
}
footer ul h3.center {
  text-align: center;
  margin-left: 0px;
}
footer ul a {
  width: 100%;
  font-weight: 300;
  font-size: 18px;
  margin-bottom: 10px;
  color: white;
  margin-top: 10px;
  float: left;
  text-decoration: none;
  display: inline-block;
}
footer ul.social li {
  font-size: 30px;
}
footer ul.social a {
  float: left;
  width: auto;
  margin: 10px;
  font-size: 30px;
}
body {
  background: #364149;
  padding: 0px;
  margin: 0px;
  font-family: 'Quicksand', monospace;
  box-sizing: border-box;
}
.mainLayout {
  position: relative;
  text-align: center;
}
.flat-color-0 {
  background-color: #2d3436;
}
.flat-color-1 {
  background-color: #00cec9;
}
.flat-color-2 {
  background-color: #fab1a0;
}
.flat-color-3 {
  background-color: #e17055;
}
.flat-color-4 {
  background-color: #a29bfe;
}
.cards {
  position: relative;
  box-sizing: border-box;
}
.cards .positionBall {
  border-radius: 100%;
  background-clip: padding-box;
  width: 34px;
  height: 34px;
  background-color: #ffffff91;
  position: absolute;
  top: 100px;
  right: 10px;
  box-sizing: border-box;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.cards .card {
  display: inline-block;
  box-sizing: border-box;
  width: 100%;
  height: 150px;
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
}
.cards .card h1 {
  color: white;
  width: 100%;
  text-align: right;
  font-weight: 100;
  box-sizing: border-box;
  padding-right: 15px;
}
.cards .card h2 {
  color: white;
  font-weight: 300;
  font-size: 21px;
  padding-left: 20px;
  display: inline-block;
}
.cards .card .controls {
  -webkit-transition: all 2s ease-in;
  transition: all 2s ease-in;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  height: 0px;
  overflow: hidden;
}
.cards .card .controls button {
  background-color: rgba(255, 255, 255, 0.34);
  padding: 18px;
  text-transform: uppercase;
  margin-right: 3px;
  outline: none;
  float: right;
  border: none;
  color: white;
  font-size: 18px;
  padding-right: 20px;
  padding-left: 20px;
}
.cards .card .controls button:active {
  background-color: #2d3436;
}
.cards .card .controls .section {
  background: #f5f5f521;
  margin-bottom: 1px;
}
.cards .card.active {
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
  height: 400px;
}
.cards .card.active .controls {
  height: auto;
  overflow: hidden;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}
.rTextbox {
  min-width: 300px;
  background-color: #ececef;
  position: relative;
  display: inline-block;
  padding: 10px;
  text-align: left;
  margin-bottom: 15px;
}
.rTextbox input {
  width: 100%;
  position: relative;
  font-size: 14px;
  font-weight: 300;
  background-color: transparent;
  display: inline-block;
  border: none;
  padding: 7px;
  outline: none;
  border-bottom: 1px solid #606E7D;
  font-family: 'Quicksand', monospace;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.rTextbox input:focus {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  border-bottom: 2px solid #369ED8;
}
.rTextbox i {
  position: absolute;
  right: 15px;
  top: 15px;
}
.rTextbox ::-webkit-input-placeholder {
  font-weight: 300;
  font-family: 'Quicksand', monospace;
  color: #606E7D;
}
.rTextbox :-moz-placeholder {
  /* Firefox 18- */
  font-weight: 300;
  font-family: 'Quicksand', monospace;
  color: #606E7D;
}
.rTextbox ::-moz-placeholder {
  /* Firefox 19+ */
  font-weight: 300;
  font-family: 'Quicksand', monospace;
  color: #606E7D;
}
.rTextbox :-ms-input-placeholder {
  font-weight: 300;
  font-family: 'Quicksand', monospace;
  color: #606E7D;
}
@media only screen and (min-width: 500px) {
  .rTextbox input {
    min-width: 400px;
  }
}
.rCheckbox {
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}
.rCheckbox input {
  outline: none;
  height: 16px;
  width: 16px;
  border: 1px solid #999DA8;
}
.rCheckbox a {
  color: #43505E;
  text-decoration: underline;
}
.rCheckbox label {
  display: inline-block;
  font-size: 12px;
  font-weight: 300;
  color: #43505e;
  top: -3px;
  position: relative;
  color: #43505E;
}
.rMultiSelect {
  font-size: 14px;
  width: 300px;
  overflow-x: scroll;
  border: 1px solid rgba(179, 179, 179, 0.44);
  border-radius: 3px;
  background-clip: padding-box;
  min-height: 400px;
  outline: none;
}
.rMultiSelect option {
  margin: 5px;
  display: block;
}
.rModalContent {
  -webkit-animation-name: scalein;
  -webkit-animation-duration: 200ms;
  -webkit-animation-iteration-count: 1;
}
@-webkit-keyframes scalein {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  20% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  40% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  46% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  80% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  90% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.rFlat {
  display: inline-block;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
  width: 200px;
  text-align: left;
}
.rFlat.full {
  width: 100%;
}
.rFlat input {
  box-sizing: border-box;
}
.rRadioList {
  width: 100%;
  height: 300px;
  overflow-x: hidden;
  overflow-y: auto;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.5);
}
.rRadioList .rRadioRowItem {
  width: 100%;
  position: relative;
  padding: 13px;
  box-sizing: border-box;
  font-size: 14px;
  border-bottom: 1px solid rgba(145, 147, 157, 0.29);
}
.rRadioList .rRadioRowItem input[type='radio'],
.rRadioList .rRadioRowItem input[type='checkbox'] {
  margin-right: 10px;
  z-index: 9;
}
.rRadioList .rRadioRowItem input[type='radio']:after,
.rRadioList .rRadioRowItem input[type='checkbox']:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: blue;
  top: 0px;
  left: 0px;
  background: transparent;
  z-index: 9;
}
.rRadioList .rRadioRowItem input[type='checkbox']:checked ~ div.rColorPicker {
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
      transform: scale(1);
  -webkit-transform: scale(1) translateZ(0);
  transform: scale(1) translateZ(0);
  -webkit-transition: all 100ms ease-in;
  transition: all 100ms ease-in;
  right: 15px;
}
.rRadioList .rRadioRowItem p {
  margin: 0px;
  display: inline-block;
}
.rColorPicker {
  right: 15px;
  display: inline-block;
  z-index: 10;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
      transform: scale(1.2);
  -webkit-transform: scale(1.2) translateZ(0);
  transform: scale(1.2) translateZ(0);
  position: absolute;
  width: 100px;
  -webkit-transition: all 100ms ease-in;
  transition: all 100ms ease-in;
}
.rColorPicker span.color {
  position: relative;
  width: 15px;
  display: inline-block;
  top: 3px;
  height: 15px;
  background-color: red;
  border-radius: 100%;
  background-clip: padding-box;
}
.rColorPicker select {
  color: #74767d;
  background: transparent;
  outline: none;
  border: none;
}
dialog.rModal .rModalFooter {
  -webkit-box-align: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: flex-end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
dialog.rModal .rModalFooter button {
  text-transform: uppercase;
  background-color: #498ee2;
  padding: 10px;
  margin-left: 5px;
  margin-right: 5px;
  border-radius: 2px;
  background-clip: padding-box;
  color: white;
  border: none;
  font-weight: 300;
  outline: none;
  cursor: pointer;
}
dialog.rModal .rModalFooter button.rButtonPlain {
  background-color: transparent;
  color: #74767d;
}
.rLink {
  text-decoration: none;
  color: #999DA8;
  font-size: 16px;
  font-weight: 300;
  font-family: 'Quicksand', monospace;
}
.rLink:hover {
  text-decoration: underline;
}
.rTable.rTableLoading {
  overflow: hidden;
  height: 100px;
  overflow-y: hidden;
  display: block;
}
.rTable.rTableLoading table {
  opacity: 0;
}
.rTable.rTableLoading:after {
  position: absolute;
  content: "\f1ce";
  font-family: 'FontAwesome';
  top: 120px;
  margin: 0px auto;
  width: 100px;
  -webkit-animation: fa-spin 2s infinite linear;
          animation: fa-spin 2s infinite linear;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-size: 100px;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.rTable.lessBorders {
  border: none;
  padding-top: 54px;
}
.rTable.lessBorders th {
  border: none;
  max-width: 200px;
  min-width: 200px;
  word-wrap: break-word;
}
.rTable.lessBorders th:first-of-type {
  border-right: 1px solid #e4e2e2;
  z-index: 2;
}
.rTable.lessBorders th:first-of-type:after {
  content: '';
  position: absolute;
  top: 0px;
  background: #eee;
  width: 10px;
  height: 100%;
  right: -1px;
}
.rTable.lessBorders th:first-of-type:before {
  content: '';
  position: absolute;
  background: #e4e2e2;
  width: 100%;
  height: 1px;
  top: 54px;
  left: 0px;
}
.rTable.lessBorders td {
  background: white;
}
.rTable.lessBorders td:first-of-type {
  border-right: 1px solid #e4e2e2;
  border-bottom: 1px solid #e4e2e2;
  position: relative;
  top: 54px;
  height: 52px;
  left: 0px;
}
.rTable.lessBorders .scrolling {
  box-shadow: 5px 0px 12px -9px #000000;
}
.rTable.lessBorders tr:not(:first-of-type) {
  max-width: 200px;
  min-width: 200px;
}
.rTable.lessBorders tr:first-of-type {
  width: auto;
  position: absolute;
}
.rTable table {
  width: 100%;
}
.rTable table {
  width: 100%;
  height: auto;
  border-collapse: collapse;
  border: 1px solid #e4e2e2;
  background: #fff;
  position: relative;
  display: block;
}
.rTable th {
  background: #eee;
  height: 54px;
  width: 25%;
  min-width: 200px;
  font-size: 12px;
  padding: 10px;
  text-align: center;
  font-weight: 400;
  color: #797b83;
  border: 1px solid #e4e2e2;
}
.rTable th:first-of-type {
  text-transform: capitalize;
  min-width: 114px;
  position: relative;
}
.rTable th h5 {
  font-size: 12px;
  font-weight: normal;
}
.rTable tr {
  border-bottom: 1px solid #e4e2e2;
}
.rTable tr.hoverable:hover {
  background-color: #eeeeee;
  cursor: pointer;
}
.rTable tr:last-child {
  border-bottom: 0px;
}
.rTable td {
  padding: 10px;
  font-size: 11px;
  text-align: center;
  font-weight: 300;
  min-width: 200px;
}
.rTable td:first-of-type {
  width: 115px;
  min-width: 116px;
  max-width: 116px;
  display: inline-block;
}
.rTable td:last-child {
  border-right: 0px;
}
.rTable td.selected {
  background: #d7e4ef;
  z-index: ;
}
.rTable td input {
  font-size: 14px;
  background: none;
  outline: none;
  border: 0;
  display: table-cell;
  height: 100%;
  width: 100%;
}
.rTable td input:focus {
  box-shadow: 0 1px 0 steelblue;
  color: steelblue;
}
.rTableGray th {
  background-color: #eeeeee;
  box-shadow: none;
  border: none;
  text-shadow: none;
  color: gray;
}
.rTableGray tr {
  border-bottom: 1px solid #eee;
}
.rTableGray td {
  border-right: none;
}
.noBorder {
  border-bottom: none !important;
}
.rTableRowWidthSmall {
  max-width: 100px;
  width: auto;
}
.rTableRowWidthMedium {
  max-width: 40px;
}
.rTableRowWidthLarge {
  max-width: 40px;
}
.analysisPlotsContainer {
  width: 85vw;
  display: inline-block;
  height: 79px;
  margin: 10px;
  margin-top: 20px;
  box-sizing: border-box;
  border-radius: 2px;
  background-color: #f1f1f1;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.23);
}
.kPlotContainer {
  position: relative;
  overflow: hidden;
  height: 500px;
  width: 85vw;
  display: inline-block;
}
.analysisAddPlotButton {
  position: relative;
  float: right;
  color: #4a90e2;
  margin: 30px;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  font-weight: bold;
}
.analysisAddPlotButton:after {
  position: absolute;
  font-family: FontAwesome;
  content: '\f067';
  color: white;
  padding: 6px;
  border-radius: 2px;
  background-color: #4a90e2;
  left: -25px;
  top: -2px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.analysisPlotItemsMinimized .analysisPlotItem {
  width: 40px;
  margin-left: 10px;
  margin-right: 10px;
  z-index: 0;
}
.analysisPlotItemsMinimized .analysisPlotItem:first-of-type .color {
  margin-left: 10px;
  margin-right: 10px;
}
.analysisPlotItemsMinimized .analysisPlotItem .color {
  margin-left: 0px;
}
.analysisPlotItemsMinimized .analysisPlotItem .info {
  -webkit-transition: all 100ms ease-in;
  transition: all 100ms ease-in;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  background-color: #f1f1f1;
  box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.23);
  min-width: 100px;
  top: 30px;
  padding: 6px;
  padding-left: 10px;
  padding-right: 10px;
  left: 0px;
  border-radius: 3px;
  background-clip: padding-box;
}
.analysisPlotItemsMinimized .analysisPlotItem:hover {
  -webkit-transition: all 50ms ease-in;
  transition: all 50ms ease-in;
}
.analysisPlotItemsMinimized .analysisPlotItem:hover .info {
  top: 50px;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}
.analysisPlotItem {
  position: relative;
  display: inline-block;
  width: 200px;
  margin: 10px;
  float: left;
  border-right: 1px solid #ebebeb;
  -webkit-animation-name: pop-in;
          animation-name: pop-in;
  -webkit-animation-duration: 300ms;
          animation-duration: 300ms;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.analysisPlotItem span.color {
  position: relative;
  float: left;
  width: 20px;
  height: 20px;
  margin: 10px;
  margin-bottom: 20px;
  margin-top: 20px;
  border-radius: 2px;
  background-color: #50e3c2;
}
.analysisPlotItem span.color i {
  -webkit-transition: all 150ms ease;
  transition: all 150ms ease;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  color: white;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
      transform: scale(0);
  -webkit-transform: scale(0) translateZ(0);
  transform: scale(0) translateZ(0);
  pointer-events: none;
}
.analysisPlotItem span.color:hover {
  cursor: pointer;
}
.analysisPlotItem span.color:hover i {
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
      transform: scale(1);
  -webkit-transform: scale(1) translateZ(0);
  transform: scale(1) translateZ(0);
  pointer-events: all;
}
.analysisPlotItem p {
  font-size: 14px;
  float: left;
  margin: 0px;
  margin-left: 5px;
  font-weight: 300;
  color: #797b83;
  padding: 0px;
  position: relative;
}
.analysisPlotItem p:first-of-type {
  margin-top: 15px;
}
@-webkit-keyframes pop-in {
  0% {
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    -webkit-transform: scale(1.3) translateZ(0);
    transform: scale(1.3) translateZ(0);
  }
  100% {
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform: scale(1) translateZ(0);
    transform: scale(1) translateZ(0);
  }
}
@keyframes pop-in {
  0% {
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    -webkit-transform: scale(1.3) translateZ(0);
    transform: scale(1.3) translateZ(0);
  }
  100% {
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform: scale(1) translateZ(0);
    transform: scale(1) translateZ(0);
  }
}
