.tcp p{
    text-align: justify;
}
.text-white,.text-white *{
	color: #fff !important;
}
.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    color: #fff;
    padding: 5px 10px;
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 15s linear infinite;
    white-space: nowrap;
}

.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.v-align{
	vertical-align: middle;
}
.image-preview{
    height: 235px;
	overflow: hidden;
}

@media all and (max-width: 375px) {
	.image-preview{
		height: 300px;
	}
}
.box-area{
	border: 2px dashed #ccc;
	border-radius: 8px;
	padding: 5px;
	text-align: center;
	width: 100%;
	/* min-height: 200px; */
	}
@media (min-width: 376px) and (max-width: 575.98px) {
	.image-preview{
		height: 150px;		
	}
	.box-area{
		width: 50%;
	}
}

.notice-box {
	width: 100%;
	/* max-width: 600px; */
	height: 300px; /* Adjust height as needed */
	overflow-y: auto;
	border: 1px solid #ccc;
	padding: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	position: relative;
}

.notice {
	padding: 8px 0;
	border-bottom: 1px dashed #ccc;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 14px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.notice:last-child {
	border-bottom: none;
}

.new-tag {
	background-color: #ff0000;
	color: #ffffff;
	font-size: 10px;
	padding: 2px 4px;
	border-radius: 3px;
	margin-left: 10px;
	animation: blink 1s infinite;
}

@keyframes blink {
	0% { opacity: 1; }
	50% { opacity: 0; }
	100% { opacity: 1; }
}

/* .select2-container .select2-selection--single {
	height: calc(2.25rem + 27px) !important;
	border: 1px solid #f4f5f8 !important;
	background-color: #f4f5f8 !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 55px !important;
	padding-left: 12px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	top: 10px !important;
} */

.capsule-btn {
	display: inline-block;
    padding: 0px 13px;
    font-size: 14px;
    font-weight: bold;
    color: #ffd000;
    background-color: transparent;
    border: 1px dashed #ffd000 !important;
    border-radius: 50px !important;
    cursor: pointer;
    text-align: center;
    margin: -1px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  .capsule-btn:hover {
	background-color: #ffd000;
	color: #000;
	/* transform: scale(1.05); */
  }
  
  .capsule-btn:active {
	background-color: #ffd000;
	color: #000;
	/* transform: scale(0.95); */
  }
  
  
  .support-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.support-icon {
  width: 60px;
  height: 60px;
  background-color: #007bff;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.support-icon:hover {
  transform: scale(1.1);
}

.support-icon i {
  font-size: 24px;
}

.support-options {
  position: absolute;
  bottom: 70px;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.support-option {
  width: 50px;
  height: 50px;
  background-color: #25d366; /* WhatsApp green */
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.support-option.live-chat {
  background-color: #007bff; /* Live Chat blue */
}

.support-option i {
  font-size: 20px;
}

.support-container.open .support-options {
  opacity: 1;
  visibility: visible;
}

.support-container.open .support-option {
  opacity: 1;
  transform: translateY(0);
}

  