/*================================================================================
	Item Name: Materialize - Material Design Admin Template
	Version: 5.0
	Author: PIXINVENT
	Author URL: https://themeforest.net/user/pixinvent/portfolio
================================================================================

NOTE:
------
PLACE HERE YOUR OWN CSS CODES AND IF NEEDED, OVERRIDE THE STYLES FROM THE OTHER STYLESHEETS.
WE WILL RELEASE FUTURE UPDATES SO IN ORDER TO NOT OVERWRITE YOUR STYLES IT'S BETTER LIKE THIS.  */
@media screen and (max-width: 600px) {
	.responsive-table {
	  display: block;
	}
  
	.responsive-table thead {
	  display: none;
	}
  
	.responsive-table tbody tr {
	  display: block;
	  margin-bottom: 10px;
	}
  
	.responsive-table tbody tr td {
	  display: block;
	  text-align: right;
	}
  
	.responsive-table tbody tr td:before {
	  content: attr(data-label);
	  float: left;
	  text-transform: uppercase;
	  font-weight: bold;
	}
  }
  @keyframes flame {
	0% { opacity: 0.1; }
	50% { opacity: 1; }
	100% { opacity: 0.1; }
  }
  
  /* .flame-icon {
	animation: flame 2s infinite;
  } */

  .flame-icon {
	background: -webkit-linear-gradient(red, orange, yellow);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
  }

  .agenda {
	margin: 10px 0;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 5px;
  }
  
  .agenda-title {
	margin: 0 0 10px 0;
	color: black;
  }

  .agenda-title h5 {
	font-weight: bold;
  }
  
  .agenda-item {
	margin: 0 0 5px 0;
	color: black;
  }
  @media screen and (max-width: 600px) {
	.agenda {
	  padding: 6px;
	  font-size: 10px;
	}
  
	.agenda-title {
	  font-size: 10px;
	}
  
	.agenda-item {
	  margin-bottom: 8px; 
	}
  }
  
  @media screen and (min-width: 601px) {
	.agenda {
	  padding: 12px;
	  font-size: 12px; 
	}
  
	.agenda-title {
	  font-size: 18px; 
	}
  
	.agenda-item {
	  margin-bottom: 8px; 
	}
  }
  /* CommentCard.css */
@media (max-width: 768px) {
	.ant-typography.ant-typography-strong {
	   font-size: 14px;
	}
   
	.ant-typography.ant-typography-secondary {
	   font-size: 12px;
	}
   
	.ant-typography {
	   font-size: 12px;
	}
   }
   


@keyframes colorChange {
	0% { color: #ffffff; } /* Flame */
	25% { color: #ff6200; } /* Orange */
	50% { color: #FFD700; } /* Gold */
	75% { color: #FF8C00; } /* Orange */
	100% { color: #FF4500; } /* Flame */
}
  .loading-text {
   color: white;
   font-size: 24px;
   margin-left: 10px;
   animation: move 2s infinite, colorChange 4s infinite;
  }

  .loading-screen {
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.9);
	z-index: 9999;
  }
  
  .flame-icon {
	animation: burn 2s infinite;
	color: red;
  }

  .swal2-container {
	z-index: 1300 !important;
}