.icdr-button {
	padding: 2.5px 28px !important;
	line-height: 24px;
}

/* BS5 floating labels fix */
.form-floating input::placeholder, .form-floating textarea::placeholder { color: transparent !important; }

.bg-neutral-200 {
	background: var(--neutral-200, #E5E5E5);
}

.color-purple {
	color: #6d2a84 !important
}

.hr-line {
	min-height: 1px;
	max-height: 1px;
}

/* Custom form styling */
.form-label {
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: black;
	margin-bottom: 0.5rem;
}

.custom-select-input,
.ui-autocomplete {
	margin-top: 4px;
	font-size: 14px;
	line-height: 24px;
	letter-spacing: 0.02em;
	background: #fff;
	border-radius: 0.375rem;
	border: 1px solid #dee2e6;
	height: auto;
	color: #737373;
	width: 100%;
	max-height: 40vh;
    overflow-y: auto;
    overflow-x: hidden;
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.custom-select-input:focus,
.ui-autocomplete:focus {
	border-color: #86b7fe;
	outline: 0;
	box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
	color: #212529;
	background-color: #fff;
}

.custom-select-input.color-purple {
	color: #6d2a84 !important;
	border-bottom: 2px solid #6d2a84;
}

.custom-select-input.color-purple::placeholder {
	color: #6d2a84 !important;
	opacity: 0.7;
}

.custom-select-input::placeholder {
	color: #6c757d;
	opacity: 0.7;
}

.custom-select-input:disabled {
	background-color: #e9ecef;
	opacity: 1;
}

/* Bootstrap icons position fix */
.position-relative i {
	pointer-events: none;
	color: #495057;
	z-index: 10;
	font-size: 16px;
}

/* Error states */
.has-error .custom-select-input,
.custom-select-input.is-invalid {
	border-color: #dc3545;
}

.has-error .custom-select-input:focus,
.custom-select-input.is-invalid:focus {
	border-color: #dc3545;
	box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

#seasonID {
	position: absolute;
	z-index: 1000;
	margin-top: 4px;
	padding: 0;
	background-color: #ffffff;
	border: 1px solid #dee2e6;
	border-radius: 0.375rem;
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
	max-height: 300px;
	overflow-y: auto;
	list-style: none;
}

#seasonID.show {
	display: block !important;
}

#seasonID li {
	/* border-bottom: 1px solid #e0e0e0; */
}

#seasonID li:last-child {
	/* border-bottom: none; */
}

#seasonID .dropdown-item,
.ui-autocomplete .ui-menu-item {
	padding: 0.5rem 0.75rem;
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 0.02em;
	color: #000; /* white; */
	background-color: #fff; /* #6d2a84; */
	transition: background-color 0.15s ease-in-out;
}

#seasonID .dropdown-item:hover,
#seasonID .dropdown-item:focus,
.ui-autocomplete .ui-menu-item:hover,
.ui-autocomplete .ui-menu-item:focus {
	background-color: #f8f9fa;
	color: #212529;
}

.ui-autocomplete .ui-state-focus,
.ui-widget-header .ui-state-focus {
	border: none;
	background: none;
	background-color: #f8f9fa;
	color: #212529;
}
/* floating labels has z-index = 2, so it should be at least 2 as well */
.ui-datepicker {
    z-index: 2 !important;
}
.bg-gray {
	background-color: #fafafa;
}
.ICDR-title {
	font-family: "Oswald", sans-serif;
	font-weight: 500;
}

.text-neutral-900 {
	color: #303030 !important;
}

.text-dark-blue {
	color: #26234d !important;
}
.bg-dark-blue {
	background-color: #26234d !important;
}

.btn-dark-blue {
	background-color: #26234d !important;
	color: #fff !important;
}
.btn-dark-blue:hover {
	background-color: white !important;
	color: #26234d !important;
	border-color: #26234d !important;
}

.text-purple {
	color: #6d2a84 !important;
}

.btn-primary {
	background-color: #6d2a84 !important;
	border-color: #6d2a84 !important;
	color: #fff !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
	background-color: #5a226b !important;
	border-color: #5a226b !important;
	color: #fff !important;
}
.w-fit {
	width: fit-content !important;
}

/* Competition cards */
.comp-card {
	transition: transform 0.3s ease;
}

.comp-logo-wrapper {
	overflow: hidden;
	border-radius: 0.375rem;
	margin-bottom: 0.5rem;
	aspect-ratio: 1;
}

.comp-logo-wrapper img:not(.icdr-required-logo) {
	transition: transform 0.3s ease;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.icdr-required-logo {
	display: none;
	width: 40px;
}

.competition-card.disabled {
	.enjoy-comp-logo {
		filter: grayscale(100%);
		opacity: 0.3;
	}

	.icdr-required-logo {
		display: block;
	}
}

.comp-card:hover .comp-logo-wrapper img {
	transform: scale(1.1);
}

.comp-name {
	font-weight: 500;
	color: #303030;
	margin-bottom: 0.25rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.has-error input,
.has-error .form-control {
	border-color: #dc3545;
}


.modal-body {
	max-width: 405px;
	margin: auto;
}
.modal-dialog {
	max-width: 571px;
}



.badge-redeem{
	 background-color: #F3E3F6;
	border: 1px solid #CE9ADF;
	padding: 20px 18px;
	text-transform: uppercase;
	color: #6D2A84;
	font-weight: 600;
	font-size: 14px;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-thumb {
    background-color: #D9D9D9;
    border-radius: 6px;
    border: 3px solid #D9D9D9;
}

::-webkit-scrollbar-track:hover {
    background-color: transparent;
}

@media screen and (max-width: 768px) {
	.sweet-alert {
		width: auto;
		left: 1rem;
	}
}

@media (min-width: 1600px) {
	.align-items-xxxl-center {
		align-items: center !important;
	}

	.mb-xxxl-4 {
		margin-bottom: 1.5rem !important;
	}
}