﻿.dle-live-badge {
  display: inline-block;
  position: relative;
  z-index: 100; }
  .dle-live-badge.live-now .dle-live-badge-button {
    background-color: crimson; }
  .dle-live-badge.live-now .dle-live-badge-dd-arrow {
    border-top-color: crimson; }
  .dle-live-badge-dd-arrow {
    content: "";
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-top: 10px solid royalblue;
    position: absolute;
    bottom: 7px;
    left: calc(50% - 10px);
    transition: all 150ms ease-in-out 100ms; }
  .dle-live-badge-container {
    position: relative;
    padding-bottom: 16px;
    cursor: pointer; }
    .dle-live-badge-container .lead-in-event {
      display: none; }
      .dle-live-badge-container .lead-in-event .event-title-text {
        transition: opacity 150ms ease-out; }
  .dle-live-badge-button {
    padding: 8px 24px;
    border-radius: 3px;
    background-color: royalblue;
    font-family: sans-serif;
    text-transform: uppercase;
    overflow: visible;
    display: flex;
    align-items: center; }
  .dle-live-badge-title {
    padding: 0;
    background: none;
    font-size: 14px;
    letter-spacing: 1px;
    color: #FFF;
    font-weight: 700;
    white-space: nowrap; }
  .dle-live-badge-dropdown {
    display: none;
    position: absolute;
    background-color: #121212;
    top: 49px;
    padding: 20px 20px 0 20px;
    z-index: 1001;
    min-width: 600px;
    opacity: .98; }
    @media screen and (max-width: 1200px) {
      .dle-live-badge-dropdown {
        max-width: 600px; } }
    @media screen and (max-width: 600px) {
      .dle-live-badge-dropdown {
        min-width: 0; } }
    .dle-live-badge-dropdown .event-list {
      margin-bottom: 20px; }
    .dle-live-badge-dropdown .drop-item {
      margin-bottom: 10px; }
    .dle-live-badge-dropdown .event-list-heading {
      text-transform: uppercase;
      color: #adadad;
      margin-bottom: 10px;
      font-size: 0.7em;
      font-weight: bold; }
    .dle-live-badge-dropdown .event-title {
      font-size: 0.7em;
      color: #fff; }
      .dle-live-badge-dropdown .event-title .time {
        font-weight: bold;
        margin-right: 4px; }
    @media screen and (max-width: 1200px) {
      .dle-live-badge-dropdown .event-list-heading {
        font-size: 13px; }
      .dle-live-badge-dropdown .event-title {
        font-size: 13px; } }
  @media screen and (min-width: 768px) {
    .dle-live-badge:hover .dle-live-badge-dropdown {
      display: block !important;
      left: 0; }
    .dle-live-badge:hover .dle-live-badge-dd-arrow {
      bottom: -3px; } }

.dle-pulsating-circle {
  width: 12px;
  height: 12px;
  margin-right: 12px;
  position: relative;
  display: inline-block !important;
  pointer-events: none; }
  .dle-pulsating-circle:before {
    content: '';
    position: absolute;
    top: -75%;
    left: -75%;
    display: inline-block;
    width: 250%;
    height: 250%;
    box-sizing: border-box;
    border-radius: 100%;
    background-color: #fff;
    animation: pulse-ring 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
    pointer-events: none; }
  .dle-pulsating-circle:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: white;
    border-radius: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    animation: pulse-dot 1.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) -0.4s infinite;
    pointer-events: none; }

@keyframes pulse-ring {
  0% {
    transform: scale(0.33); }
  80%, 100% {
    opacity: 0; } }

@keyframes pulse-dot {
  0% {
    transform: scale(0.8); }
  50% {
    transform: scale(1); }
  100% {
    transform: scale(0.8); } }

[v-cloak] {
  display: none; }
