.dashboard-circular {
	display: flex;
	justify-content: center;
}
.dashboard-circular-button {
	color: var(--special-color);
	border-radius: 50%;
	border: 3px solid var(--special-color);
	height: 8rem;
	width: 8rem;
	text-align: center;
	font-size: 1.2rem;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 20px;
}

.dashboard-circular-button:hover {
	background-color: var(--edlx-main-s1);
	color: white;
	border: 3px solid var(--special-color);
}

.dashboard-circular-button a {
	color: var(--special-color);
}
.dashboard-circular a{
    text-decoration: none !important;
    font-weight: bold;
}

.dashboard-circular-button:hover a {
	color: white;
}
.active_button_c {
	background-color: var(--edlx-main-s1);
	color: white;
	border: 3px solid var(--special-color);
}

#eerf_programs_box a{
    color: var(--special-color);
}

.hide-steps::-webkit-outer-spin-button,
.hide-steps::-webkit-inner-spin-button{
    -webkit-appearance: none;
    margin: 0; 
}
.hide-steps{
    -moz-appearance:textfield;
    appearance: textfield; 
}

/* ? i bubbles ? */
.abbr_chk:hover::after{
	position: absolute !important;
	width: 500px !important;
	left: -550px !important;
	top: -100px !important;
	white-space: normal !important; /* allow wrapping */
}
@media screen and (max-width: 992px) {
	.abbr_chk:hover::after{
		position: absolute !important;
		left: -23px !important;
		top: 35px !important;
		white-space: normal !important; /* allow wrapping */
	}
}
.tooltip_small:hover::after {
	width: 125px;
	margin-top: 15px;
	left: -75px;
	display: block;
	padding: 5px;
}

/* ! Autocomplete ! */

.autocomplete {
	width: 100%;
	position: relative;
	display: inline-block;
}

.autocomplete input {
	width: 100%;
	border-radius: 7px;
	border: 1px solid var(--special-color);
	background-color: white;
	padding: 10px;
	border-radius: 7px;
}

.autocomplete input:focus {
	border: 2px solid var(--special-color);
}

.autocomplete-items {
	position: absolute;
	border: 1px solid #d4d4d4;
	border-bottom: none;
	border-top: none;
	z-index: 99;
	/*position the autocomplete items to be the same width as the container:*/
	top: 100%;
	left: 0;
	right: 0;
}

.autocomplete-items div {
	padding: 10px;
	cursor: pointer;
	background-color: #fff;
	border-bottom: 1px solid #d4d4d4;
}

.autocomplete-items div:hover {
	/*when hovering an item:*/
	background-color: var(--special-color);
	color: #ffffff;
}

.autocomplete-active {
	/*when navigating through the items using the arrow keys:*/
	background-color: var(--special-color) !important;
	color: #ffffff;
}

/* * Checkout buttons * */
.remove-enroll-btn{
	color: white !important;
	background: red !important;
	border: 3px solid #aa4e4e !important;
}
.remove-waitlist-btn{
	color: white !important;
	background: #39779b !important;
	border: 3px solid #144a6a !important;
}
.remove-enroll-btn:hover{
	color: #aa4e4e !important;
	background: white !important;
	border: 3px solid #aa4e4e !important;
}
.remove-waitlist-btn:hover{
	color: #39779b !important;
	background: white !important;
	border: 3px solid #144a6a !important;
}
.remove-enroll-btn:disabled {
	color: #9b9795 !important;
	background: #524d4b !important;
	border: 3px solid #4e4c4b !important;
}
@media (prefers-color-scheme: dark) {
	.remove-enroll-btn{
		color: white !important;
		background: #772323 !important;
		border: 3px solid red !important;
	}
	.remove-waitlist-btn{
		color: white !important;
		background: #144a6a !important;
		border: 3px solid #39779b !important;
	}
	.remove-enroll-btn:hover{
		color: #772323 !important;
		background: white !important;
		border: 3px solid #772323 !important;
	}
	.remove-waitlist-btn:hover{
		color: #144a6a !important;
		background: white !important;
		border: 3px solid #39779b !important;
	}
}



/* @Table to Card */
table {
	/* border: 1px solid #ccc; */
	border-collapse: collapse;
	/* margin: 0; */
	/* padding: 0; */
	/* width: 100%; */
	table-layout: fixed;
}

table caption {
	font-size: 1.5em;
	margin: .5em 0 .75em;
}
 
@media screen and (max-width: 800px) {
	#parent_children_current_enrollments_table tr:nth-child(1),
	#eeop_parents_view_details_receipts_record tr:nth-child(1),
	#receipt_table__entries tr:nth-child(1){
		display: none;
	}
	.table_m_center_button{
		display: flex;
		justify-content: center;
	}
	/* table {
	  border: 0;
	} */
  
	/* table caption {
	  font-size: 1.3em;
	} */
	
	table thead {
	  display: none;
	}
	
	table tr {
	  /* border-bottom: 3px solid #ddd; */
	  display: block;
	  margin-bottom: .625em;
	}
	
	table td {
	  /* border-bottom: 1px solid #ddd; */	  
	  border-bottom: 1px solid #0b4f0073 !important;
	  display: block;
	  font-size: .8em;
	  text-align: right;
	  padding: 15px;
	}
	
	table td::before {
	  /*
	  * aria-label has no advantage, it won't be read inside a table
	  content: attr(aria-label);
	  */
	  content: attr(data-label);
	  float: left;
	  font-weight: bold;
	  text-transform: uppercase;
	}
	
	table td:last-child {
	  border-bottom: 0;
	}
}