.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;
} */