body {
  background: #fafafa;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.rowC {
  display: flex;
  flex-direction: row;
}

.rowRL {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.hidden {
  display: none;
}

/*Right aligns last flex item in a row*/
.rowRightAlign {
  display: flex;
  justify-content: space-between;
}

.centering {
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-right {
  position: fixed;
  top: 0px;
  right: 0px;
}

.bottom-left {
  position: fixed;
  bottom: 0;
  left: 0;
}

.coverScreen {
  position: fixed;
  padding: 0;
  margin: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  border-style: solid;
  border-width: 0;
  border-bottom-width: 75;
  border-bottom-color: #424242;
  background-color: white;
  z-index: 1200;
  visibility: hidden;
  transition: height 0.3s ease, visibility 0.3s;
}

.coverScreen.visible {
  height: 100%;
  visibility: visible;
  z-index: 1300;
}

.analytics-options {
  height: 300px;
  visibility: visible;
  transition: height 1s ease, visibility 1s ease;
}

.analytics-options.hidden {
  height: 0;
  visibility: hidden;
  transition: height 1s ease, visibility 1s;
}

.options-toggle-button {
  font-size: 0.7rem;
  color: white;
  position: relative;
  border-radius: 50%;
  background-color: #ffe082;
  padding: 8px;
  cursor: pointer;
  margin-top: -40px;
}

.options-toggle-button:hover {
  background-color: #ffecb3;
}

.tooltip-container .tooltip-text {
  visibility: hidden;
  width: 90px;
  background-color: #424242;
  color: #fff;
  font-size: 10px;
  font-family: "PT Sans";
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  margin-left: -75px;
  margin-top: 65px;

  /* Fade in tooltip - takes 1 second to go from 0% to 100% opac: */
  opacity: 0;
  transition: opacity 1s;
}

.tooltip-container:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
  transition: opacity 1s;
}

.centeringPad {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.centeringRow {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.rightArrow,
.lastRightArrow {
  display: table-cell;
  height: 75px;
  position: relative;
  padding: 0px;
  margin: 0px;
  text-align: center;
  border: 1px solid #d6dbdf;
  position: relative;
  background-color: white;
}

.rightArrow:after,
.rightArrow:before {
  content: "";
  display: inline-block;
  border-width: 38px;
  border-style: solid;
  border-color: transparent transparent transparent #ffffff;
  width: 0px;
  height: 0px;
  left: 100%;
  top: -1px;
  position: absolute;
  z-index: 1;
}
.rightArrow:after {
  border-color: transparent transparent transparent #d6dbdf;
}
.rightArrow:before {
  border-width: 36px;
  display: block;
  border-color: transparent transparent transparent #ffffff;
  z-index: 2;
  top: 1px;
}

.chart-row {
  margin-bottom: 15px;
}

.inline-chart {
  display: inline-block;
  width: 48%;
  margin-left: 1%;
}

.container {
  display: flex;
}
.container > div {
  flex: 1;
}

.align-bottom {
  position: absolute;
  right: 0;
  bottom: 0;
}

.app-bar {
  -moz-transition: left 218ms cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: left 218ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition: left 218ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: left 218ms cubic-bezier(0.4, 0, 0.2, 1);
  left: 0;
  width: auto !important;
  right: 0 !important;
  position: fixed !important;
}
.app-content {
  -moz-transition: padding-left 218ms cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: padding-left 218ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition: padding-left 218ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: padding-left 218ms cubic-bezier(0.4, 0, 0.2, 1);
  padding-top: 75px !important;
  left: 0;
}
.app-bar-expanded {
  left: 280px;
}

.app-content-expanded {
  padding-left: 280px;
}

.selected-link {
  border-style: solid;
  border-left-color: #388e3c;
  border-left-width: 20px;
}

.modal-container {
  position: relative;
}
.modal-container .modal,
.modal-container .modal-backdrop {
  position: absolute;
}

.cover-enter {
  height: 0px;
}

.cover-enter.cover-enter-active {
  height: 0;
  -webkit-transition: height 0.3s ease;
  -moz-transition: height 0.3s ease;
  -o-transition: height 0.3s ease;
}

.cover-leave.cover-leave-active {
  height: 0px;
  -webkit-transition: height 0.3s ease;
  -moz-transition: height 0.3s ease;
  -o-transition: height 0.3s ease;
}

.pb-container {
  display: inline-block;
  text-align: center;
  width: 100%;
}
.pb-container .pb-button {
  background: transparent;
  border: 2px solid currentColor;
  border-radius: 27px;
  color: currentColor;
  cursor: pointer;
  padding: 0.7em 1em;
  text-decoration: none;
  text-align: center;
  height: 54px;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  transition: background-color 0.3s, width 0.3s, border-width 0.3s,
    border-color 0.3s, border-radius 0.3s;
}
.pb-container .pb-button span {
  display: inherit;
  transition: opacity 0.3s 0.1s;
  font-size: 2em;
  font-weight: 100;
}
.pb-container .pb-button svg {
  height: 54px;
  width: 54px;
  position: absolute;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.pb-container .pb-button svg path {
  opacity: 0;
  fill: none;
}
.pb-container .pb-button svg.pb-progress-circle {
  animation: spin 0.9s infinite cubic-bezier(0.085, 0.26, 0.935, 0.71);
}
.pb-container .pb-button svg.pb-progress-circle path {
  stroke: currentColor;
  stroke-width: 5;
}
.pb-container .pb-button svg.pb-checkmark path,
.pb-container .pb-button svg.pb-cross path {
  stroke: #fff;
  stroke-linecap: round;
  stroke-width: 4;
}
.pb-container.disabled .pb-button {
  cursor: not-allowed;
}
.pb-container.loading .pb-button {
  width: 54px;
  border-width: 6.5px;
  border-color: #ddd;
  cursor: wait;
  background-color: transparent;
  padding: 0;
}
.pb-container.loading .pb-button span {
  transition: all 0.15s;
  opacity: 0;
  display: none;
}
.pb-container.loading .pb-button .pb-progress-circle > path {
  transition: opacity 0.15s 0.3s;
  opacity: 1;
}
.pb-container.success .pb-button {
  border-color: #a0d468;
  background-color: #a0d468;
}
.pb-container.success .pb-button span {
  transition: all 0.15s;
  opacity: 0;
  display: none;
}
.pb-container.success .pb-button .pb-checkmark > path {
  opacity: 1;
}
.pb-container.error .pb-button {
  border-color: #ed5565;
  background-color: #ed5565;
}
.pb-container.error .pb-button span {
  transition: all 0.15s;
  opacity: 0;
  display: none;
}
.pb-container.error .pb-button .pb-cross > path {
  opacity: 1;
}
@keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
    transform-origin: center center;
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
    transform-origin: center center;
  }
}

.Resizer {
  background: #000;
  opacity: 0.2;
  z-index: 1;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-background-clip: padding;
  -webkit-background-clip: padding;
  background-clip: padding-box;
}

.Resizer:hover {
  -webkit-transition: all 2s ease;
  transition: all 2s ease;
}

.Resizer.horizontal {
  height: 11px;
  margin: -5px 0;
  border-top: 5px solid rgba(255, 255, 255, 0);
  border-bottom: 5px solid rgba(255, 255, 255, 0);
  cursor: row-resize;
  width: 100%;
}

.Resizer.horizontal:hover {
  border-top: 5px solid rgba(0, 0, 0, 0.5);
  border-bottom: 5px solid rgba(0, 0, 0, 0.5);
}

.Resizer.vertical {
  width: 11px;
  margin: 0 -5px;
  border-left: 5px solid rgba(255, 255, 255, 0);
  border-right: 5px solid rgba(255, 255, 255, 0);
  cursor: col-resize;
}

.Resizer.vertical:hover {
  border-left: 5px solid rgba(0, 0, 0, 0.5);
  border-right: 5px solid rgba(0, 0, 0, 0.5);
}
Resizer.disabled {
  cursor: not-allowed;
}
Resizer.disabled:hover {
  border-color: transparent;
}

.split-screen {
  -moz-transition: padding-left 218ms cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: padding-left 218ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition: padding-left 218ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: padding-left 218ms cubic-bezier(0.4, 0, 0.2, 1);
}

.td-column-error {
  background-color: #e57373;
}

.td-column-warning {
  background-color: #ffee58;
}

.custom-tooltip {
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.5);
  padding-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 5px;
}

.rechart-dot:hover {
  stroke: white;
  stroke-width: 0.2em;
  cursor: pointer;
}

.chat-toolbar {
  width: 100%;
  font-size: 30px;
  background-color: #eeeeee;
  padding: 0px 16px 0px;
}

/*Fancy rotating buttons*/

i.rotating-button {
  font-size: 0.7rem;
  color: white;
  position: relative;
  border-radius: 50%;
  padding: 5px;
  margin: 3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.3s ease;
  border: solid 2px;
  border-color: transparent;
}

i.rotating-button.green {
  background-color: #88b999;
}

i.rotating-button.green:hover {
  color: #88b999;
}

i.rotating-button.green {
  border-color: #88b999;
}

i.rotating-button.teal {
  background-color: #88b2b9;
}

i.rotating-button.teal:hover {
  color: #88b2b9;
}

i.rotating-button.teal {
  border-color: #88b2b9;
}

i.rotating-button.blue {
  background-color: #8897b9;
}

i.rotating-button.blue:hover {
  color: #8897b9;
}

i.rotating-button.blue {
  border-color: #8897b9;
}

i.rotating-button.purple {
  background-color: #af88b9;
}

i.rotating-button.purple:hover {
  color: #af88b9;
}

i.rotating-button.purple {
  border-color: #af88b9;
}

i.rotating-button.pink {
  background-color: #d59acb;
}

i.rotating-button.pink:hover {
  color: #d59acb;
}

i.rotating-button.pink {
  border-color: #d59acb;
}

i.rotating-button.red {
  background-color: #cd8484;
}

i.rotating-button.red:hover {
  color: #cd8484;
}

i.rotating-button.red {
  border-color: #cd8484;
}

i.rotating-button.orange {
  background-color: #ec9f83;
}

i.rotating-button.orange:hover {
  color: #ec9f83;
}

i.rotating-button.orange {
  border-color: #ec9f83;
}

i.rotating-button.yellow {
  background-color: #daa520;
}

i.rotating-button.yellow:hover {
  color: #daa520;
}

i.rotating-button.yellow {
  border-color: #daa520;
}

i.rotating-button:hover {
  border: solid 2px;
  background-color: transparent;
  transform: rotate(90deg) scale(1.1);
  cursor: pointer;
  box-shadow: 10px 0 20px rgba(0, 0, 0, 0.19), 6px 0 6px rgba(0, 0, 0, 0.23);
}

i.rotating-button.disable-rotation:hover {
  transform: scale(1.1);
}

@media (min-width: 601px) {
  i.rotating-button {
    padding: 10px;
    margin: 5px;
    font-size: 2rem;
  }
}

@media (min-width: 993px) {
  i.rotating-button {
    padding: 10px;
    margin: 10px 5px 10px;
    font-size: 2.5rem;
  }
  i.rotating-button:after {
    border-width: 3px;
    top: -3px;
    left: -3px;
  }
}

/*Chat bubbles*/

.speech-bubble {
  position: relative;
  border-radius: 0.4em;
  width: 50%;
  font-family: "PT Sans";
  padding: 16px;
  margin: 5px;
}

.bubble-author {
  background: #ffca28;
  left: 50%;
  margin-left: -35px;
}

.bubble-author:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 0;
  height: 0;
  border: 29px solid transparent;
  border-left-color: #ffca28;
  border-right: 0;
  border-bottom: 0;
  margin-top: -14.5px;
  margin-right: -29px;
}

.bubble-other {
  background: #e0e0e0;
  margin-left: 35px;
}

.bubble-other:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 0;
  border: 29px solid transparent;
  border-right-color: #e0e0e0;
  border-left: 0;
  border-bottom: 0;
  margin-top: -14.5px;
  margin-left: -29px;
}

.autocomplete-selection {
  background: #1d976c; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to left,
    #1d976c,
    #93f9b9
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to left,
    #1d976c,
    #93f9b9
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  color: white;
}

.sticky {
  position: sticky;
  top: 0;
}

.is-table-row {
  display: table;
}
.is-table-row [class*="col-"] {
  float: none;
  display: table-cell;
  vertical-align: top;
}

.product-group-radio {
  color: #757575;
}

.product-group-radio:hover {
  color: #424242;
}

#nav-cresicor .container {
  margin: 0;
  width: 100%;
  padding-bottom: 25px;
}

#nav-cresicor {
  padding: 0;
}
