/* @import url('colors.css'); */
@import url('preloader.css');

.eeop_section_header {
    text-align: center;
}
.eeop_section_header h2, .header_text {
    border-radius: 17px;
    background: var(--special-bg-color);
    color: var(--special-text-color);
    width: 40vw;
    margin: auto;
    margin-bottom: 20px;
    text-align: center;
}
a{
    cursor: pointer;
    color: var(--special-color) !important;
}
a:hover{
    color: var(--edlx-main-dark) !important;
}
/* * Table * */
table {
    border-collapse: separate !important;
    border-spacing: 0 5px !important;
}
table tr {
    border-style: hidden !important;
    background: var(--shadow-color);
    text-align: center;
    line-height: 1.8;
    border-collapse: separate;
    /* allow spacing between cell borders */
    border-spacing: 0 7px;
    /* NOTE: syntax is <horizontal value> <vertical value> */
}
table td{
    border-style: hidden !important;
    background: transparent;
    text-align: center;
    line-height: 1.8;
    border-collapse: separate;
    /* allow spacing between cell borders */
    border-spacing: 0 7px;
    /* NOTE: syntax is <horizontal value> <vertical value> */
}
tr:nth-child(1) {
    background: var(--special-bg-color);
    color: white;
    border-style: hidden !important;
    font-size: 18px;
}
table .circle_counter {
    height: 30px;
    width: 30px;
    background: var(--special-bg-color);
    display: block;
    border-radius: 50%;
    color: white;
    text-align: center;
    font-size: 15px !important;
    margin: 0;
    padding: 0;
}
.course_tags{
	display: flex;
	flex-wrap: wrap;
	gap: 20px;   
  	padding: 5px 20px;
	margin-bottom: 12px;
    background: transparent !important;
}
.course_tags span{
	/* border: 1px solid var(--special-color); */
	background: var(--special-color) !important;
	color: white;
	cursor: default;
	border-radius: 7px;
	padding: 2px 5px;
	font-size: 14px;
}
#receipt_table .table tr{
    color: black !important;
    background: transparent !important;
}
#receipt_table .table tr th,
#receipt_table .table tr td{
    color: black !important;
    background: transparent;
    border: 1px solid black !important;
}

/* * Dash button * */
.dash-buttons,
.ee_button {
    background: var(--special-bg-color) !important;
    color: white !important;
    width: 100%;
    text-align: center;
    padding: 5px 15px;
    margin-top: 20px;
    font-size: 1rem;
    border-radius: 7px;
    border: 3px solid var(--outline-color) !important;
    text-decoration: none;
}
.dash-buttons-dark{
    background: var(--special-mark-color) !important;
    color: var(--special-color);
    width: 100%;
    text-align: center;
    padding: 5px 15px;
    margin-top: 20px;
    font-size: 1rem;
    border-radius: 7px;
    border: 3px solid var(--outline-color) !important;
}
.btn-primary{
    background: var(--special-bg-color) !important;
    color: white !important;
    border: 3px solid var(--outline-color) !important;
}
.dash-buttons:hover,
.ee_button:hover {
    color: var(--special-color) !important;
    background: white !important;
    border: 3px solid var(--special-color) !important;
}
.dash-buttons-dark:hover{
    background: rgb(70, 68, 68);
}
.btn-primary:hover{
    color: var(--special-color) !important;
    background: white !important;
    border: 3px solid var(--special-color) !important;
}
.btn-primary:disabled,
.dash-buttons:disabled,
.ee_button:disabled {
    color: #333 !important;
    background: #666 !important;
    border: 3px solid #3336 !important;
}
.dash-buttons-dark:disabled{
    background: var(--dark-color) !important;
    cursor: not-allowed;
}



/* Radio */
/* The container */
.ee_radio {
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 12px;
	cursor: pointer;
	font-size: 15px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Hide the browser's default radio button */
.ee_radio input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

.ee_radio input:disabled {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	background-color: #333;
}

.ee_radio input:disabled .ee_radio_circle {
	background-color: #333;
}

input:disabled .ee_radio_circle {
	background-color: #333;
}

/* Create a custom radio button */
.ee_radio_circle {
	position: absolute;
	top: 0;
	left: 0;
	height: 25px;
	width: 25px;
	background-color: #eee;
	border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.ee_radio:hover input~.ee_radio_circle {
	background-color: #ccc;
}

.ee_radio input:disabled~.ee_radio_circle {
	background-color: #333;
}

/* When the radio button is checked, add a orange background */
.ee_radio input:checked~.ee_radio_circle {
	background-color: var(--special-color);
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.ee_radio_circle:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the indicator (dot/circle) when checked */
.ee_radio input:checked~.ee_radio_circle:after {
	display: block;
}

/* Style the indicator (dot/circle) */
.ee_radio .ee_radio_circle:after {
	top: 9px;
	left: 9px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}
input[type=checkbox]:checked{
    background-color: var(--special-color);
}

.border-primary{
    border-color: var(--special-color) !important;
}

/** tier 2 modal **/
dialog{
    background-color: var(--bg-color);
    color: var(--text-color);
    /* margin: 25% auto; */
    /* 15% from the top and centered */
    padding: 20px;
    border: 3px solid var(--special-mark-color);
    border-radius: 17px;
    width: 82vw;
    /* Could be more or less, depending on screen size */
    overflow-y: scroll; /* Add the ability to scroll */
    /* Hide scrollbar for IE, Edge and Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
#tier_2__modal{
    background-color: var(--bg-color);
    color: var(--text-color);
    /* margin: 25% auto; */
    /* 15% from the top and centered */
    padding: 20px;
    border: 3px solid var(--special-mark-color);
    border-radius: 17px;
    width: 70vw;
    /* Could be more or less, depending on screen size */
    overflow-y: scroll; /* Add the ability to scroll */
    /* Hide scrollbar for IE, Edge and Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
/* Hide scrollbar for Chrome, Safari and Opera */
#tier_2__modal::-webkit-scrollbar, dialog::-webkit-scrollbar{
    display: none;
}
#tier_2__modal::backdrop, dialog::backdrop{
    background-color: rgba(0, 0, 0, 0.6);
}
#tier_2__modal_content{
    margin: auto;
}

/** tier 3 modal **/
#tier_3__modal{
    background-color: var(--bg-color);
    color: var(--text-color);
    /* margin: 25% auto; */
    /* 15% from the top and centered */
    padding: 20px;
    border: 3px solid var(--special-mark-color);
    border-radius: 17px;
    width: 50vw;
    /* Could be more or less, depending on screen size */
    overflow-y: scroll; /* Add the ability to scroll */
    /* Hide scrollbar for IE, Edge and Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
/* Hide scrollbar for Chrome, Safari and Opera */
#tier_3__modal::-webkit-scrollbar{
    display: none;
}
#tier_3__modal::backdrop{
    background-color: rgba(0, 0, 0, 0.7);
}
#tier_3__modal_content{
    margin: auto;
}

/* i bubbles */
abbr[data-title],
.abbr_tooltip_right[data-title] {
    position: relative;
    /* ensure consistent styling across browsers */
    text-decoration: none;
    background: transparent;
}

abbr[data-title]:hover::after,
abbr[data-title]:focus::after {
    content: attr(data-title);
    /* position tooltip like the native one */
    position: absolute;
    left: 0;
    bottom: -35px;
    width: auto;
    white-space: nowrap;

    background: var(--special-bg-color);
    color: var(--special-text-color);
    border-radius: 7px;
    box-shadow: 1px 1px 5px 0 var(--shadow-color);
    font-size: 1rem;
    padding: 3px 5px;

    z-index: 999;
}
.abbr_tooltip_right[data-title]:hover::after,
.abbr_tooltip_right[data-title]:focus::after{
    left: 220px;
    bottom: 5px;
}
.i-box{
    background: transparent !important;
    color: var(--special-color) !important;
}
.custom-tooltip {
    --bs-tooltip-bg: var(--edlx-main-dark);
    --bs-tooltip-color: var(--bs-white);
}
.text-primary{
    color: var(--special-color) !important;
}
.bg-primary,.text-bg-primary{
    background: var(--special-color) !important;
}
.border-primary{
    border-color: var(--special-color) !important;
}