/* ============================
Imports
============================ */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&family=Roboto:wght@400;500;700;900&display=swap');
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css");

/* ============================
Root Variables
============================ */
:root {
	/* Brand Colors */
	--color-primary: #2981bb;
	--color-secondary: #2371a4;
	--color-accent: #4daf7c;
	--color-accent-hover: #3d8c63;

	/* Utility Colors */
	--color-dark: #333;
	--color-light: #fff;
	--color-gray: #666;
	--color-muted: #999;
	--color-border: rgba(0,0,0,0.1);

	/* Error Colors */
	--color-error-bg: #f2dede;
	--color-error-text: #a94442;
	--color-error-border: #ebccd1;

	/* Backgrounds */
	--body-bg: #FAFAFA;
	--modal-bg: #0e88b1;
	--modal-input-bg: rgba(255,255,255,0.8);

	/* Typography */
	--font-primary: "Open Sans", sans-serif;
	--font-secondary: "Roboto", sans-serif;
	--font-size-base: 1.1rem;

	/* Layout */
	--radius-md: 12px;
	--radius-lg: 25px;
	--radius-xl: 55px;

	/* Shadows */
	--shadow-sm: 0 0 10px rgba(0,0,0,0.1);
	--shadow-md: 0 0 10px rgba(0,0,0,0.2);
	--shadow-lg: 0 0 20px rgba(0,0,0,0.5);

	/* Effects */
	--transition: all 0.3s ease;
}

/* ============================
Animations
============================ */
@keyframes subtleBounceIn {
	0% {
		transform: translateY(30px) scale(0.95);
		opacity: 0;
	}
	60% {
		transform: translateY(-6px) scale(1.02);
		opacity: 1;
	}
	80% {
		transform: translateY(3px) scale(0.99);
	}
	100% {
		transform: translateY(0) scale(1);
	}
}

@keyframes scaling {
	to {
		opacity: 0;
		transform: translate(-50%, -50%) scale(3);
	}
}

@keyframes bounceIn {
	0% {
		transform: scale(0.8);
		opacity: 0;
	}
	60% {
		transform: scale(1.1);
		opacity: 1;
	}
	100% {
		transform: scale(1);
	}
}
textarea{
	min-height:120px;	
}
body{
	background:rgba(250,250,250,1)	
}
#header{
	border-radius: 0px 0px 25px 25px;
	display: grid;
	align-items: center;
	background:#007dbb;
	position: sticky;
	top: -385px;
	box-shadow:0px 0px 10px rgba(00,00,00,0.3);
}
#menu {
	display: block !important;
	background: transparent;
	padding: 0px 24px;
}
.navbar-nav{
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}
.navbar-nav>li {
	float: none;
	margin: 0;
	padding: 0;
}
.navbar-nav>li>a{
	font-size: 1.1rem;
	line-height: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: normal;
	padding: 15px 20px !important;	
}
#content-middle{
	background:rgba(255,255,255,1);
	border-radius:25px;
	box-shadow:0px 0px 20px rgba(00,00,00,0.1);
	margin:25px 0px;
}
.row{
	margin:0 !important;	
}
#content-middle .panel{
	border-radius:25px;
}
.tab-content{
	background:transparent;	
}
#button-wrapper{
	display:flex;
	align-items: center;
	justify-content: space-between;
	padding:0 15px;
}
/* ============================
Fancybox / Overlay
============================ */
.fancybox-bg {
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(20px);
	opacity: 1;
	transition: all 0.3s ease;
}

.fancybox-bg {
	opacity: 0.6 !important;
}
.presentation-page .fancybox-bg{
	opacity: 1 !important;	
}
.fancybox-slide--current .password-modal {
	transform: scale(1);
	opacity: 1;
}

/* ============================
Alerts
============================ */
.alert.alert-success {
	display: none;
}

/* ============================
Tables
============================ */
table.table-rates thead td,
table.table-rates tbody td {
	text-align: center;
}

table.table-materials tbody th {
	font-weight: bold;
}

table.table-materials td em {
	font-style: italic !important;
}

.table-materials td strong {
	color: #007dbb;
}

.table-materials a:hover img {
	opacity: 0.8;
}

/* ============================
Value / Form Notes
============================ */
.valueSpan.de_cols_1 label em {
	font-style: italic !important;
	font-size: 0.9rem;
	margin: 4px 0 11px 0;
	display: block;
}

/* ============================
Layout / Containers / Header
============================ */
#header,
#content {
	max-width: 90% !important;
	width: 100%;
}

#header .container,
.navbar-nav {
	width: 100%;
}

.navbar .container-fluid {
	padding: 0;
}

.modal-dialog {
	width: 75% !important;
}

div.col-sm-3 {
	background: #ffffff !important;
}

/* ============================
FontAwesome / Icons
============================ */
.fas {
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.session-operations a.loadSummary .fas {
	margin-right: 5px;
}

/* ============================
Seminar List / Tabs / Sessions
============================ */
.m-seminar-list__list__items__item {
	width: 100% !important;
}

.tabarea .nav-tabs li {
	padding-left: 0 !important;
	margin-left: 0 !important;
	margin-top: 18px !important;
}

.tabarea .nav-tabs li a {
	background: none !important;
	border: none !important;
	font-size: 18px !important;
	color: #0e96da !important;
	margin: 0 !important;
	padding: 0 0 5px 0 !important;
}

.m-seminar-list__list__row__header {
	width: 25% !important;
	background: #007dbb !important;
	border: none !important;
	font-weight: bold !important;
	text-align: center !important;
	font-size: 16px !important;
	padding-top: 39px !important;
}

.m-seminar-list__list__items__item {
	list-style: none !important;
	background: transparent !important;
}

.session-schedule-card .session-header .download-btn:nth-child(5) {
	display: block !important;
}

/*.session-date-time {*/
/*	display: none !important;*/
/*}*/

.expired {
	display: none !important;
}

.session-title .left-side h4 {
	font-weight: 600;
	text-transform: uppercase;
}

.feature-speaker-card .col-sm-3 img {
	width: 100%;
}

/* ============================
Attendee / Alphabet List
============================ */
.letters-container,
.attendee_list .title,
.attendee_list hr,
.alphabet-title {
	display: none !important;
}

/* ============================
Bio UI / Banner
============================ */
.bio-ui.container.text-base {
	width: 100%;
	padding: 0;
}

.bio-ui.container.text-base .row {
	margin: 0;
	padding: 0;
}

.bio-ui.container.text-base .row .col-md-8 {
	width: 76%;
	padding-right: 0;
}

.bio-banner .avatar {
	width: 23%;
	float: left;
}

.bio-banner .avatar img {
	border: 1px solid rgba(0,0,0,0.3);
	box-shadow: 2px 2px 5px 0 rgb(0 0 0 / 10%);
	margin-top: 7px;
}

.bio-banner .details {
	width: 75%;
	float: left;
}

.bio-banner .details h3 {
	margin-top: 0;
	padding: 4px 0;
	border-bottom: 1px solid rgba(0,0,0,0.1);
	margin-left: 15px;
}

/* ============================
Global Typography
============================ */
html,
body,
input,
select,
textarea,
legend,
legend.left,
label,
label.left {
	font-size: 1rem !important;
}

/* ============================
File Upload Block
============================ */
div.file-upload label {
	width: auto !important;
	margin-right: 0 !important;
}

div.file-upload input {
	max-width: 86%;
	width: 100%;
}

div.file-upload legend {
	float: left;
	font-size: 14px;
	border: none;
	margin-right: 10px;
	width: 20%;
}

div.file-upload div.form-group {
	margin-bottom: 0;
}

div[data-group="file"] .form-group fieldset div {
	position: relative;
	width: 100%;
	height: 80px;
	margin: 15px;
}

div[data-group="file"] .help-block.error-help-block {
	position: absolute;
	bottom: 0;
}

div[data-group="file"] .form-group fieldset div:after {
	content: attr(data-text);
	font-size: 18px;
	position: absolute;
	top: 0;
	left: 0;
	background: #fff;
	padding: 10px 15px;
	display: block;
	width: calc(100% - 40px);
	pointer-events: none;
	z-index: 2;
	height: 47px;
	line-height: 27px;
	color: #999;
	border-radius: 5px 10px 10px 5px;
	font-weight: 300;
	border: 1px solid rgba(0,0,0,0.1);
	box-shadow: 1px 1px 3px rgb(0 0 0 / 10%);
}

div[data-group="file"] .form-group fieldset div:before {
	content: 'Upload';
	position: absolute;
	top: 0;
	right: 0;
	display: inline-block;
	height: 47px;
	background: #4daf7c;
	color: #fff;
	font-weight: normal;
	z-index: 3;
	font-size: 1rem;
	line-height: 40px;
	padding: 4px 10px;
	text-transform: uppercase;
	pointer-events: none;
	border-radius: 0 5px 5px 0;
}

div[data-group="file"] .form-group fieldset div:hover:before {
	background: #3d8c63;
}

div[data-group="file"] .form-group fieldset div input {
	opacity: 0;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 99;
	height: 47px;
	margin: 0;
	padding: 0;
	display: block;
	cursor: pointer;
	width: 100%;
}

div[data-group="file"] fieldset legend {
	border: none;
	width: 30%;
	float: left;
	padding-left: 15px;
}

div[data-group="file"] div.form-group fieldset {
	margin-right: 0;
	margin-bottom: 5px;
}

div[data-group="file"] div.form-group fieldset div {
	width: 68% !important;
	margin: 0;
	padding: 0;
}

div[data-group="file"] div.form-group fieldset legend {
	font-weight: 400 !important;
	padding-top: 10px;
}

div[data-group="file"] p {
	display: none;
}

div[data-group="file"] p.foot {
	display: block;
	width: 74%;
	float: right;
	margin-top: 0;
	padding: 5px;
	color: #a94442;
	background-color: #f2dede;
	border-color: #ebccd1;
	border-radius: 4px;
	margin-right: 0;
}

/* ============================
Radio / Checkbox Custom Styles
============================ */
[type="radio"],
[type="checkbox"] {
	opacity: 0;
	position: absolute;
}

[type="radio"] + label,
[type="checkbox"] + label {
	position: relative;
	padding-left: 30px;
	cursor: pointer;
	display: inline-block;
	color: #666;
	line-height: 25px;
}

[type="radio"] + label:before,
[type="checkbox"] + label:before {
	content: "";
	position: absolute;
	left: 0;
	top: 4px;
	width: 20px;
	height: 20px;
	border-radius: 100%;
	border: 2px solid rgba(0,83,109,0.5);
	background: #fff;
}

[type="checkbox"] + label:before {
	border-radius: 0;
}

[type="radio"]:checked + label:after,
[type="checkbox"]:checked + label:after {
	content: "";
	position: absolute;
	left: 3px;
	top: 7px;
	width: 14px;
	height: 14px;
	border-radius: 100%;
	background: rgba(41,128,185,1);
	transform: scale(1);
	opacity: 1;
	transition: all .3s ease;
}

[type="checkbox"]:checked + label:after {
	border-radius: 0;
}

[type="radio"]:checked + label:before,
[type="checkbox"]:checked + label:before {
	border-color: rgba(0,83,109,1);
}

[type="radio"]:not(:checked) + label:after,
[type="checkbox"]:not(:checked) + label:after {
	content: "";
	position: absolute;
	left: 3px;
	top: 7px;
	width: 14px;
	height: 14px;
	border-radius: 100%;
	background: #fff;
	transform: scale(0);
	opacity: 0;
}

[type="checkbox"]:not(:checked) + label:after {
	border-radius: 0;
}

label.full:after {
	content: "Full" !important;
	font-size: 14px;
	color: orangered;
}

/* Make specific radios visible in payment form */
#paymentForm input[type="radio"] {
	opacity: 1 !important;
	float: none;
	position: relative;
}

/* ============================
Form Layout / Field Groups
============================ */
div[data-group="wide"] div.text-editable {
	width: 100% !important;
}

div.field div.form-group div {
	width: 68% !important;
}

div.field div.form-group label {
	width: 29% !important;
}

fieldset legend.left {
	float: left;
	width: 29%;
	border: none;
	font-weight: normal;
}

div.field div.form-group fieldset div.de_fieldset span.de_cols_1 label {
	width: 100% !important;
	float: left;
	padding-left: 6%;
	padding-top: 3px;
}

/* Yes/No group */
div[data-group="yesno"] fieldset legend {
	border: none;
	float: left;
	width: 75%;
}

div[data-group="yesno"] fieldset div.de_fieldset {
	width: 23%;
	float: left;
	padding-left: 0;
	margin-left: 0;
}

div[data-group="yesno"] fieldset div.de_fieldset .de_cols_1 {
	width: 44%;
	float: left;
	display: inline-block;
	clear: none;
}

div[data-group="yesno"] fieldset div.de_fieldset .de_cols_1 label {
	padding-left: 35% !important;
}

/* Consent group */
div[data-group="consent"] p {
	display: none;
}

div[data-group="consent"] fieldset legend {
	width: 80% !important;
	display: none;
}

div[data-group="consent"] fieldset div {
	width: 18% !important;
}

div[data-group="consent"] fieldset div .de_cols_1 {
	float: left !important;
	clear: none !important;
	display: inline !important;
	width: 50%;
}

div[data-group="consent"] p.consent_txt {
	display: block !important;
	width: 76%;
	float: left;
	margin-top: 0;
	margin-left: 0;
}

div[data-group="consent"] fieldset div.de_fieldset {
	float: left;
	width: 19% !important;
	padding-left: 0;
}

div[data-group="consent"] fieldset div.de_fieldset span.de_cols_1 label {
	padding-left: 25px !important;
}

/* Note group */
div[data-group="note"] div.form-group p.information {
	display: none;
}

div[data-group="note"] div.form-group .text-editable {
	width: 100% !important;
}

div[data-group="note"] div.form-group .text-editable .alert {
	width: 98% !important;
	margin: 15px;
}

/* Text-small group */
div[data-group="text-small"] div.form-group label {
	width: 67% !important;
	font-weight: bold;
	color: #c0392b;
}

div[data-group="text-small"] div.form-group div {
	width: 30% !important;
}

/* ============================
Headings / Details / Program Time
============================ */
h2,
fieldset legend {
	color: #333333 !important;
}

a#details {
	display: table;
	background: rgba(251,226,183,1);
	border: 1px solid #ebca92;
	color: #333333;
	padding: 5px 5px;
	border-radius: 4px;
	font-size: 0.9rem;
	margin: 8px 0;
	text-decoration: none;
	font-weight: bold !important;
}

span.prog-time {
	font-size: 1.2rem;
	font-weight: bold;
	padding-bottom: 5px;
	display: inline-block;
	width: 100%;
	border-bottom: 1px solid rgba(0,0,0,0.1);
	margin: 5px 0 10px 0;
	position: relative;
}

span.prog-time:before {
	width: 10px;
	height: 10px;
	background: #195ea1;
	position: absolute;
	left: -24px;
	content: "";
	display: block;
	top: 8px;
}

/* ============================
Responsive
============================ */
/* Small devices */
@media (min-width: 299px) and (max-width: 999px) {
	.panel-body .col-sm-9,
	.panel-body .col-sm-3 {
		height: 100%;
		overflow: hidden;
		display: block;
		float: none;
		width: 100%;
		max-width: 100%;
		margin: 15px 0;
	}
}

/* ============================
Password Modal / Fancybox
============================ */
.password-modal {
	text-align: center;
	padding: 30px;
	max-width: 400px;
	border-radius: 15px;
	background: var(--modal-bg);
	backdrop-filter: blur(15px);
	box-shadow: var(--shadow-lg);
	transform: scale(0.9);
	opacity: 0;
	transition: 0.4s ease;
	color: var(--color-light);
}

.password-modal h3 {
	margin: 0 0 20px 0;
	padding: 0;
	border: none;
	font-size: 1.6rem;
}

.password-modal .error-message,
.password-modal .success-message {
	padding: 15px;
	margin-bottom: 20px;
	border: 1px solid transparent;
	border-radius: 4px;
	font-size: 0.9rem;
	display: none;
}

.password-modal .error-message {
	color: #a94442;
	background-color: #f2dede;
	border-color: #ebccd1;
}

.password-modal .success-message {
	color: #3c763d;
	background-color: #dff0d8;
	border-color: #d6e9c6;
}

.password-modal #pagePassword {
	height: auto;
	font-size: 1.4rem !important;
	line-height: normal;
	margin: 5px 0;
	border-radius: 12px;
	text-align: center;
}

#submitPassword {
	padding: 15px 20px;
	border-radius: 55px;
	font-size: 1.2rem;
	color: #fff;
	background-color: rgba(92,184,92,0.8);
	border: 2px solid rgba(92,184,92,1);
	transition: all 0.3s ease;
	transform: scale(1);
}

#submitPassword:hover,
#submitPassword:focus {
	background-color: rgba(92,184,92,1);
	border-color: rgba(92,184,92,1);
	transition: all 0.3s ease;
	transform: scale(1.05);
	box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}
.sidebarSticky{
	position: sticky;
	top: 50px;
}

#returning, #register,
a.previousButton, a.nextButton,
#regList, #addAdt,
#button input.navButton,
a.btn-primary,
#paybtn {
	font-size:1.2rem !important;
	padding: 20px 34px !important;
	border-radius: var(--radius-xl);
	transition: 0.3s ease;
	border: 2px solid var(--color-light);
	box-shadow: var(--shadow-md);
	font-weight: 500 !important;
}

#returning:hover, #register:hover,
a.previousButton:hover, a.nextButton:hover,
#regList:hover, #addAdt:hover,
#button input.navButton:hover,
a.btn-primary:hover, #paybtn:hover {
	transform: scale(1.1);
	border-radius: var(--radius-xl) !important;
	text-shadow: var(--shadow-lg);
	text-decoration: none;
}

#returning:before,
#returning:after,
#register:before,
#register:after,
a.previousButton:before,
a.previousButton:after,
a.btn-primary:before,
a.btn-primary:after{
	display:none !important
}

.file-display-wrapper {
max-width: 100%;
    margin: 0 auto;
    padding: 38px;
}

.row.file-grid{
    display: grid;
    /*grid-template-columns: repeat(4, 25%);*/
	grid-template-columns:repeat(3, 32.6%);
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    max-width: 100%;	
}
.row.file-grid:before{
	display:none;	
}
.file-grid .file-card {
	background: #ffffff;
	border-radius: 12px;
	padding: 25px 15px;
	margin-bottom: 25px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.06);
	transition: all 0.25s ease;
	text-align: center;
	min-height: 250px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.file-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.file-icon-large {
	font-size: 50px;
	margin-bottom: 10px;
}

.icon-pdf { color: #e74c3c; }
.icon-doc { color: #2980b9; }
.icon-img { color: #27ae60; }
.icon-zip { color: #f39c12; }
.icon-generic { color: #7f8c8d; }

.file-grid .slide-title,
.file-grid .slide-sub-title,
.file-grid .slide-present {
	display: block;
	width: 100%;
	text-align: center;
}

.file-grid .slide-title {
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 8px;
	line-height: 1.3;
}

.file-grid .slide-sub-title {
	font-size: 13px;
	margin-bottom: 8px;
	color: #777;
}

.file-grid .slide-present {
	font-size: 12px;
	color: #555;
	font-style: italic;
}

.file-thumb {
	width: 90px;
	height: 90px;
	object-fit: cover;
	border-radius: 6px;
	margin: 0 auto 10px;
	box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
.file-actions{
	    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.file-actions .btn-primary {
    padding: 12px 12px !important;
    font-size: 0.8rem !important;
    text-transform: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    margin: 0;
}
.file-actions .btn-primary .fa-solid:before{
	font-size:1rem;	
}
.file-card-holder{
    justify-content: center;
    display: flex;
    height: 100%;
    width: 100% !important;
    float: none !important;
    padding: 0px;
}
span.sectiontitle h5{
	    font-weight: bold;
    margin: 10px 0 !important;
    display: block;
    padding: 6px 0;
    font-size: 0.8rem;	
}
@media (max-width: 768px) {
	.file-card {
		min-height: auto;
	}
	.file-icon-large {
		font-size: 40px;
	}
}
html.presentation-page .panel-body .row>.col-sm-9{
	width:100%;	
}
.presentation-page .panel-body .row>.col-sm-3.sidebarSticky{
	display:none;
}