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


  .sport-img{
	width: 2rem;
	height: 2rem;
  }
  
  .vertical-scroll {
    max-height: 400px; /* Adjust as needed */
    overflow-y: auto;
}
.input-clean {
    border: none;
    background: none;
    color: black;
    outline: none; /* Removes focus outline */
    width: 100%;
}


.qrcode{
    width: 100%;
    border-radius: 20px;
    padding: 10px;
    border: 1px solid #ffffff;
}

#qrcode {
    background: #fff;
    padding: 10px!important;
    border-radius: 12px;
}

@media all and (max-width: 375px) {
	.image-preview{
		height: 200px;
	}
	
	#qrcode img {
        background: #fff;
        padding: 10px !important;
        border-radius: 12px;
    }
}
  
