/* ----- /css/ambition-2021.css ----- */
/* 
	-- arena chat settings at the bottom 
	-- video settinga at the bottom
	-- utilizing color variables
*/
:root {
  --color-blue: #27aae1;
  --color-green: #90ce9c;
  --color-maroon: #9e1f63;
  --color-purple: rgb(63, 27, 81);
  --color-orange: #df6235;
  --color-darkblue: #043452;
  --color-blueish: rgb(25, 50, 130);

  --black: #000000;
  --white: #ffffff;
  --off-white: #fafafa;

  --brand: var(--color-maroon);
  --accent: var(--color-orange);

  --text-date: white;

  --bg-btn-start: var(--color-maroon);
  --bg-btn-end: var(--color-orange);
  --bg-chatbot: var(--color-blue);
  --bg-totop: var(--color-blue);
  --bg-content: var(--brand);
  --bg-feature: #496964;
  --bg-footer: var(--brand);
  --bg-nav: var(--brand);

  --grad-blue: var(--color-blueish);
  --grad-purple: var(--color-purple);
}
.bluepurple-gradient {
  background: rgb(63, 27, 81);
  background: -moz-linear-gradient(
    90deg,
    rgba(63, 27, 81, 1) 0%,
    rgb(25, 50, 130) 100%
  );
  background: -webkit-linear-gradient(
    90deg,
    rgba(63, 27, 81, 1) 0%,
    rgba(26, 51, 132, 1) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(63, 27, 81, 1) 0%,
    rgba(26, 51, 132, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#3f1b51",endColorstr="#1a3384",GradientType=1);
}
.bluepurpledark-gradient {
  background: rgb(64, 22, 113);
  background: -moz-linear-gradient(
    90deg,
    rgba(64, 22, 113, 1) 0%,
    rgba(1, 30, 78, 1) 100%
  );
  background: -webkit-linear-gradient(
    90deg,
    rgba(64, 22, 113, 1) 0%,
    rgba(1, 30, 78, 1) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(64, 22, 113, 1) 0%,
    rgba(1, 30, 78, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#401671",endColorstr="#011e4e",GradientType=1);
}
body {
  font-family: OpenSans, Helvetica, Arial, sans-serif;
}
.bar-theme-g {
  background: var(--grad-purple);
  background-color: #f99d1c;
  background-image: linear-gradient(to right, #f99d1c, #d06e41);
}
.normal-case {
  text-transform: none;
}

.navbar {
  background-color: var(--bg-nav);
  border: none;
}
.navbar .nav-item {
  text-transform: uppercase;
  padding: 0 1vh;
}
.navbar .ambition-logo {
  min-width: 200px;
  max-width: 207px;
  width: 100%;
}
.live-layout .event-background {
  background: var(--accent)
    url("https://events.int.ambitenergy.io/uploads/ambition-hero-bck-lowres-b.jpg")
    center center;
  background-size: cover;
}
.chevron {
  margin-top: 20px;

  display: block;
  -webkit-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
  color: #ff4081;
}
.chevron img {
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, 10px);
    transform: translate(0, 10px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, 10px);
    transform: translate(0, 10px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
.feature {
  xbackground-color: var(--bg-feature);
  /*background-image: url(/rsrc/ambition-2020/bg-feature.jpg);*/
  xbackground-image: url(/images/opening-image.jpg);
  background-position: center center;
  background-size: cover;
  /* Set a specific height */
  min-height: 500px;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.feature .flexible-spacer {
  height: 10vw;
}
.flexible-spacer {
  height: 10vw;
}
.feature .btn {
  background-image: linear-gradient(
    to right,
    var(--bg-btn-start),
    var(--bg-btn-end)
  );
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: normal;
}
.feature .btn:hover {
  color: var(--off-white);
  background: var(--color-darkblue);
}
.feature .btn.disabled,
.feature .btn:disabled {
  opacity: 1;
  color: white;
}

.content {
  background-color: var(--bg-content);
  background-image: url(/images/ambition-2021-background.png);
  background-position: center center;
  background-size: cover;
}
.content .container {
  position: relative;
}
.content .date {
  color: var(--text-date);
}
.content .date .month {
  font-family: Energy, Helvetica, Arial, sans-serif;
  font-size: 12vw;
  font-weight: bold;
  line-height: 1;
  margin: 0;
  padding: 0;
}
.content .date .days {
  line-height: 1;
  margin: 0;
  padding: 0;
  font-size: 25vw;
  font-weight: 300;
}
@media (min-width: 576px) {
  .content .date .month {
    font-size: 5vw;
  }
  .content .date .days {
    font-size: 10vw;
  }
  .navbar .ambition-logo {
    min-width: 250px;
    max-width: 350px;
    width: 100%;
  }
}

.countdown-cell {
  color: var(--white);
  font-size: 10vw;
  line-height: 1;
  padding: 0 2vh;
  text-align: center;
  width: 20vw;
}
.countdown-number {
  font-weight: bold;
  font-size: 1em;
  opacity: 0.5;
}
.countdown-label {
  display: block;
  font-size: 0.3em;
  text-transform: uppercase;
}
@media (min-width: 576px) {
  .countdown-cell {
    font-size: 8vw;
  }
  .countdown-label {
    font-size: 0.2em;
  }
}
@media (min-width: 992px) {
  .countdown-cell {
    font-size: 80px;
  }
}

.to-top {
  background: var(--bg-totop);
  border-radius: 200px;
  color: white;
  height: 80px;
  margin-left: auto;
  position: relative;
  top: 40px;
  width: 80px;
}

.description {
  position: relative;
}
.description:before {
  background-color: var(--color-green);
  background-image: url(/rsrc/ambition-2020/bg-description.jpg);
  background-position: center center;
  background-size: cover;
  bottom: 10px;
  content: " ";
  left: 10px;
  position: absolute;
  right: 10px;
  top: 10px;
}
.description > * {
  color: white;
  z-index: 1;
}

.footer {
  background-color: var(--bg-footer);
}

/* ----- Spinner from Bootstrap 4.2 ----- */

@keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}

.spinner-border {
  animation: spinner-border 0.75s linear infinite;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  display: inline-flex;
  height: 2rem;
  vertical-align: baseline;
  width: 2rem;
}

.spinner-border-sm {
  border-width: 0.2em;
  height: 1rem;
  width: 1rem;
}

/* Classes that make a video fill it's container
 /* ========================================================================== */
.video-container {
  position: absolute;
  top: 5px;
  left: 0%;
  height: 100%;
  width: 100%;
  overflow: hidden;
  z-index: -100;
}
.video-container .video-overlay {
  background-color: rgba(0, 0, 0, 0.2);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  z-index: 0;
}
.video-container .fullscreen-video {
  object-fit: cover;
  width: 100%;
}

/* Chat attributes
 /* =========================================================================== */
/* overrides for simulcast-2021 */
.fitvids {
  box-shadow: var(--black) 0 0 10px;
  background: var(--black);
}
footer {
  border-top: 1px solid var(--color-darkblue);
  box-shadow: var(--color-darkblue) 2px 2px 100px;
}

.arena-chat-widget--container:before {
  /* background: rgb(158, 31, 99); */
  color: var(--white);
  content: "AMBITION Chat";
  height: 10px;
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
  top: 10px;
  /*top: -10px; 
	 border-radius: 10px 10px 0 0;*/
  z-index: 1;
}
