/*
    ____                      _ _
   | __ ) _ __ __ _ _ __   __| (_)_ __   __ _
   |  _ \| '__/ _` | '_ \ / _` | | '_ \ / _` |
   | |_) | | | (_| | | | | (_| | | | | | (_| |
   |____/|_|  \__,_|_| |_|\__,_|_|_| |_|\__, |
                                        |___/
*/
/*

   __     ___    ____  ____
   \ \   / / \  |  _ \/ ___|
    \ \ / / _ \ | |_) \___ \
     \ V / ___ \|  _ < ___) |
      \_/_/   \_\_| \_\____/

*/
@import url("https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,500,500i|Montserrat:300,300i,400,400i,500,500i|");
:root {
  --text-blue:  #225C88;
  --text-light: #7D8296;
  --text-white: #FFFFFF;
  --text-black: #000000; }

:root {
  --font-family: ProximaNovaA-Regular;
  --font-weight: normal;
  --font-medium-font-weight: normal;
  --font-regular-font-weight: normal;
  --font-semibold-font-weight: normal;
  --font-italic-font-weight: normal;
  --font-thin-font-weight: normal;
  --font-italic-font-style: normal; }

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg); }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg); }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg); }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg); }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); } }

@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg); }
  40% {
    -webkit-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg); }
  60% {
    -webkit-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    transform: rotate(5deg); }
  80% {
    -webkit-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg); }
  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg); } }

.swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing; }

@keyframes twerk {
  15% {
    transform: rotate(-5deg); }
  50% {
    transform: rotate(25deg); }
  85% {
    transform: rotate(-5deg); }
  100% {
    transform: rotate(0deg); } }

.twerk {
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
  -webkit-animation-name: twerk;
  animation-name: twerk; }

@keyframes buzz {
  0% {
    transform: translateY(-5px); }
  33% {
    transform: translateY(5px); }
  66% {
    transform: translateY(-3px); }
  100% {
    transform: translateY(0); } }

@keyframes bounce {
  0% {
    transform: translateY(0); }
  50% {
    transform: translateY(-2px); }
  100% {
    transform: translateY(0); } }

.fade-enter {
  opacity: 0.01; }

.fade-enter.fade-enter-active {
  opacity: 1;
  transition: opacity 300ms ease-in; }

.fade-leave {
  opacity: 1; }

.fade-leave.fade-leave-active {
  opacity: 0.01;
  transition: opacity 300ms ease-in; }
  .fade-leave.fade-leave-active.delay {
    transition-delay: 600ms; }

@keyframes report-fade-out {
  to {
    filter: grayscale(75%) contrast(20%) brightness(110%); } }

@keyframes report-fade-in {
  to {
    filter: grayscale(0%) contrast(100%) brightness(100%); } }

@keyframes fade-in {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.buzz {
  animation: buzz 0.3s 1; }

/*
NOTE: when you reference one of these vars, comment underneath the element you've used it for. Mandem organised
*/
/*
USED FOR:
plan inputs
dashboard-panel
dashboard panel buttons
modal-body.report-options-modal > span.glyphicon
*/
/*
USED FOR:
dashboard panel header
dashboard panel buttons
typeahead
editable table > page header
*/
/*
USED FOR:
.modal-body.report-options-modal > .Select-menu-outer
*/
/*
USED FOR:
menu
dashboard panel
charts > drillup
.dashboard-filter-sentence-container > #fixed-version
superbutton overlay content
*/
/*
context menu
USED FOR:
header
pinned nav
dashboard panel
simple sidebar
spark chart

*/
/*
USED FOR:
modals
tooltip box
c tooltip

*/
/*
USED FOR:
error messages

*/
.dashboard-header, .planning-header {
  padding: 1em;
  margin: 0;
  background: white;
  color: #2B324C; }
  .dashboard-header h1, .planning-header h1 {
    margin: 0; }

@keyframes report-fade-out {
  to {
    filter: grayscale(75%) contrast(20%) brightness(110%); } }

@keyframes report-fade-in {
  to {
    filter: grayscale(0%) contrast(100%) brightness(100%); } }

.dashboard-child-style-container {
  height: 100%; }

.dashboard-child-container, .resizing-placeholder {
  transition: all 0.2s ease-out;
  border-radius: 2px;
  padding: 0;
  background: white;
  border: 0.5px solid #eef1f2;
  min-width: 40px;
  min-height: 40px; }
  .dashboard-child-container.grid-resizing div, .resizing-placeholder.grid-resizing div {
    pointer-events: none; }
  .dashboard-child-container > div, .resizing-placeholder > div {
    padding: 0.5rem; }
  .dashboard-child-container.currently-editing-child, .resizing-placeholder.currently-editing-child {
    box-shadow: -7px 0 14px -10px #e9514f, 0px -7px 14px -10px #4283d1, 7px 0px 14px -10px #644883, 0px 7px 14px -10px #79b829; }
  .dashboard-child-container header, .resizing-placeholder header {
    position: relative;
    margin: 0;
    padding: 0;
    cursor: -webkit-grab;
    cursor: grab;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-bottom: 0.5rem; }
    .dashboard-child-container header:active, .resizing-placeholder header:active {
      cursor: -webkit-grabbing;
      cursor: grabbing; }
    .dashboard-child-container header hr, .resizing-placeholder header hr {
      margin: 0;
      padding: 0;
      flex: 0 0 80%;
      align-self: center;
      margin-left: auto;
      margin-right: auto;
      margin-top: 5px;
      display: none; }
    .dashboard-child-container header .button-group-right, .resizing-placeholder header .button-group-right {
      margin-left: auto; }
  .dashboard-child-container .report-header span, .dashboard-child-container .report-header input, .resizing-placeholder .report-header span, .resizing-placeholder .report-header input {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1 1; }
  .dashboard-child-container .report-header input, .resizing-placeholder .report-header input {
    border: none;
    outline: none;
    box-shadow: 0 1px 0 var(--text-main); }

.report-header .counter-circle {
  width: 1.4rem;
  height: 1.4rem;
  display: inline-block;
  font-size: 1.1rem;
  border-radius: 100%;
  outline: none;
  border: 1px solid var(--line);
  background: rgba(240, 240, 240, 0.3);
  text-align: center;
  padding: 0;
  margin-right: 0.3rem;
  line-height: 0.75;
  -webkit-transition: all 300ms cubic-bezier(0.515, 0.105, 0.615, 1);
  -webkit-transition: all 300ms cubic-bezier(0.515, 0.105, 0.615, 1.65);
  -moz-transition: all 300ms cubic-bezier(0.515, 0.105, 0.615, 1.65);
  -o-transition: all 300ms cubic-bezier(0.515, 0.105, 0.615, 1.65);
  transition: all 300ms cubic-bezier(0.515, 0.105, 0.615, 1.65); }
  .report-header .counter-circle:hover {
    background: rgba(240, 240, 240, 0.6);
    box-shadow: 0 0 0 2px #6ba324; }
  .report-header .counter-circle.refresh-true {
    background: #42B04B;
    border: 1px solid #3b9d43;
    box-shadow: 0 0 0 0px #F8FAFA, 0 0 0 0px #42B04B;
    animation: pulse 0.65s infinite;
    color: white; }

@keyframes pulse {
  0% {
    background-color: #42B04B; }
  45% {
    background-color: #74cb7b; }
  90% {
    background-color: #42B04B; } }
    .report-header .counter-circle.refresh-true:hover {
      background: #3b9d43;
      border-color: #389640;
      box-shadow: 0 0 0 2px #F8FAFA, 0 0 0 3px #4fbd58, 0 0 0 5px #F8FAFA, 0 0 0 6px #61c469; }
  .report-header .counter-circle.report-readiness-warning {
    background: #e28a74;
    color: white; }

.dashboard-child-container .save-clear-overrides-button-group {
  position: relative;
  bottom: 1.5rem;
  left: 0;
  width: 200px;
  background: RGBA(255, 255, 255, 0.75); }
  .dashboard-child-container .save-clear-overrides-button-group button {
    font-size: 1rem;
    padding: 0.25rem 0.5rem;
    background: RGBA(255, 255, 255, 0.75);
    outline: 1px solid #E0E4E7;
    transition: all 0.3s ease-in-out;
    width: 100px; }
    .dashboard-child-container .save-clear-overrides-button-group button:hover {
      background: var(--highlight);
      color: white; }

.dashboard-child-container {
  overflow-y: hidden; }
  .dashboard-child-container.panel-open-true {
    box-shadow: 0 0 10px var(--highlight);
    transition: 0.3s ease-in-out; }
  .dashboard-child-container .report-header .dropdown-menu > li > a {
    padding: 3px 10px; }
    .dashboard-child-container .report-header .dropdown-menu > li > a:hover {
      background: var(--highlight);
      color: white; }
    .dashboard-child-container .report-header .dropdown-menu > li > a i.export-option-icon {
      margin-right: 5px; }

.report-no-data, .report-no-metrics {
  font-size: var(--text-size-medium);
  color: var(--highlight);
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 2rem;
  border-radius: 3px; }
  .report-no-data i, .report-no-metrics i {
    margin-right: 0.5rem; }

.ba-filters-icon.active {
  color: var(--highlight); }
  .ba-filters-icon.active:hover {
    color: #fff; }

/*

    ____                 _      ____      _     _
   |  _ \ ___  __ _  ___| |_   / ___|_ __(_) __| |
   | |_) / _ \/ _` |/ __| __| | |  _| '__| |/ _` |
   |  _ <  __/ (_| | (__| |_  | |_| | |  | | (_| |
   |_| \_\___|\__,_|\___|\__|  \____|_|  |_|\__,_|

*/
.reports-container {
  min-height: calc(100vh - 10rem);
  overflow: hidden;
  height: auto;
  padding-bottom: 10rem; }

.react-grid-item.react-grid-placeholder {
  opacity: 0.05;
  background: black; }

.react-grid-item.resizing > div {
  width: 100%;
  height: 100%;
  overflow: hidden; }

/*

    _____     _     _
   |_   _|_ _| |__ | | ___  ___
     | |/ _` | '_ \| |/ _ \/ __|
     | | (_| | |_) | |  __/\__ \
     |_|\__,_|_.__/|_|\___||___/

*/
.uplift-cell {
  transition: 0.3s ease-out;
  backface-visibility: hidden; }
  .uplift-cell * {
    backface-visibility: hidden; }
  .uplift-cell small.uplift-metadata {
    height: 0;
    color: #a7abb8;
    font-family: var(--font-thin-font-family);
    font-weight: var(--font-thin-font-weight);
    font-style: normal;
    display: block;
    transition: 0.3s ease-out;
    transform: translateY(48px) translate3d(0, 0, 0); }
  .uplift-cell:hover small.uplift-metadata {
    height: 16px;
    color: #7D8296;
    transform: translate3d(0, 0, 0); }

.html-container {
  height: 100%;
  width: 100%; }

.html-iframe-wrapper {
  height: 100%;
  width: 100%;
  margin: 0px;
  padding: 0;
  border: 0px;
  line-height: 0; }

.html-iframe {
  height: 100%;
  width: 100%;
  margin: 0px;
  padding: 0px;
  border: 0px;
  line-height: 0; }

.error-message {
  z-index: 1000000;
  position: absolute;
  margin: 0 auto;
  top: 56px;
  left: 0;
  right: 0;
  max-width: 360px;
  border-radius: 6px;
  color: #ffffff;
  background-color: #ED6447;
  text-align: center; }
  .error-message span {
    font-size: 16px;
    margin-top: 50px; }
  .error-message p {
    line-height: 16px;
    font-size: 16px;
    margin: 5px; }

.not-found-message {
  width: 100vw;
  height: 100vh;
  margin-top: -5rem;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center; }
  .not-found-message h2 {
    flex: 1 1 400px;
    max-width: 600px; }

.report-warning-button {
  display: flex;
  align-items: center;
  justify-content: center; }

.fade-in-message {
  text-align: center;
  -webkit-animation: fade-in 6s cubic-bezier(0.39, 0.575, 0.565, 1) 3s both;
  animation: fade-in 6s cubic-bezier(0.39, 0.575, 0.565, 1) 3s both; }
