/**
 * Theme Name: Ananda Washington
 * Theme URI: https://www.anandawashington.org
 * Author: Ananda Communications
 * Author URI: https://www.anandawashington.org
 * Description: Make all of your modifications in this child theme.
 * Version: 1.0.0
 * Template: ananda-designs
 */
.sub-menu {
	background-color: #fffbee !important
}

/*************************
    MENU EVENTS WIDGET 
**************************/

.ananda-menu-tribe-event-image {

    display: inline-block;
    width: 30%;
    border-radius: 8px;
    overflow: hidden;
    vertical-align: top;
    margin-right: 3%;
}

.ananda-menu-tribe-list-info {
  width: 65%;
  display: inline-block;
  vertical-align: top;
}

.ananda-menu-tribe-list-info .h2 {
  font-family: "myriad-pro", MyriadPro, "Myriad Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 17px;
  font-weight: 400 !important;
  margin-bottom: 3px !important;
}

.ananda-menu-tribe-list-info .tribe-events-duration {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
}

#custom_html-54 {
  padding-top: 0;
}

.ananda-menu-tribe-events-event {
  margin-bottom: 11px !important;
}

/*************************
   END MENU EVENTS WIDGET 
**************************/

.live-button {
	background-color: #ff5f6d; /* Gradient top color */
	background-image: linear-gradient(to right, #ff5f6d, #ff3d6d); /* Gradient effect */
	border: none;
	color: white;
	padding: 6px 14px;
	font-weight: bold;
	font-size: 16px;
	border-radius: 20px;
	display: inline-flex;
	align-items: center;
	cursor: pointer;
	outline: none;
	box-shadow: 0 2px 4px rgba(0,0,0,0.2); /* Slight shadow for depth */
	transition: all 0.3s ease;
  }
  
  .live-button:hover {
	background-image: linear-gradient(to bottom, #ff3d6d, #ff5f6d); /* Invert gradient on hover */
	text-decoration: none !important;
	color: rgba(255,255,255,0.7) !important;
  }
  
  .live-dot {
	height: 10px;
	width: 10px;
	background-color: white; /* Bright green color */
	border-radius: 50%;
	display: inline-block;
	margin-right: 10px;
	box-shadow: 0 0 8px white; /* Glowing effect */
  }
  
  /* Optional: Animation for the LIVE dot to draw attention */
  @keyframes pulse {
	0% { box-shadow: 0 0 0 0 lightgray; }
	70% { box-shadow: 0 0 8px 10px rgba(0, 255, 0, 0); }
	100% { box-shadow: 0 0 0 0 rgba(0, 255, 0, 0); }
  }
  
  .live-dot {
	animation: pulse 2s infinite;
  }