/*User profile avatar - must link with usr_char_avatar.js*/
.round {
	border-radius: 50%;
}

/*Padding*/
.p-t-1 {
	padding-top: 1%;
}

.p-t-2 {
	padding-top: 2%;
}

.p-t-4 {
	padding-top: 4%;
}

.p-t-5 {
	padding-top: 5%;
}

.p-b-1 {
	padding-bottom: 1%;
}

.p-b-2 {
	padding-bottom: 2%;
}

.p-b-4 {
	padding-bottom: 4%;
}

.p-b-5 {
	padding-bottom: 5%;
}

/*Long text wrap toggle*/
a.morelink {
	text-decoration: none;
	outline: none;
}

.morecontent span {
	display: none;
}

.comment {
	width: 100%;
}

/* Custom Scrollbar using CSS */
.description-scroll {
	text-align: justify;
	padding-right: 2rem;
	max-height: 8rem;
	overflow-y: auto;
}

/* scrollbar width */
.description-scroll::-webkit-scrollbar {
	width: 5px;
  }
  
/* scrollbar track */
.description-scroll::-webkit-scrollbar-track {
	background: #eee;
}

/* scrollbar handle */
.description-scroll::-webkit-scrollbar-thumb {
	border-radius: 1rem;
	background-color: #754ffe;
	background-image: linear-gradient(to top, #a997f2 0%, #754ffe 100%);
}

/*Disable the summernote upload field*/
.note-group-select-from-files {
	display: none;
}

.quoted-post-card {
	border: 1px solid #8394b2;
	border-style: dashed;
	border-left: 5px solid #8394b2;
	border-radius: 0;
}

.quoted-post-card .card-header {
	background-color: #e4eaf2;
}

.sponsor-btn {
	color: #fff;
	background: rgb(161, 102, 34);
}

.sponsor-btn:hover {
	color: #fff;
	background: rgb(196, 133, 62);
}

.payment-title {
	color: rgb(161, 102, 34);
}

#accordionSponsorship .btn-link:hover {
	color: rgb(161, 102, 34);
}

.rubric_list {
	list-style-type: decimal;
	padding-left: 1.5rem;
}

.rubric_list > li {
	margin: 10px 0;
	padding-left: 1rem;
}

.rubric_list #rubric_detail_input {
	min-width: 250px;
}

#questionnaire_profile_page #addRowBtn,
#self_evaluation_profile_page #addRowBtn,
#observation_evaluation_profile_page #addRowBtn {
	margin-left: 25px;
}

#questionnaire_profile_page #removeRowBtn,
#self_evaluation_profile_page #removeRowBtn,
#observation_evaluation_profile_page #removeRowBtn {
	margin-left: 10px;
}

/*
* Preloader
*/
#preloader {
	background: #ffffff;
	height: 100vh;
	width: 100%;
	z-index: 9999;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 1s;
}

/*
* Google Calendar
*/
.responsiveCalendar {
	position: relative;
	padding-bottom: 75%;
	height: 0;
	overflow: hidden;
}

.responsiveCalendar iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


/* --- Notification --- */
.navbar-nav .nav-item .notification-list .notification-list-item {
	white-space: normal !important;
	padding: 1rem 1.5rem;
}

.notification-list {
	min-width: 23vw;
	background-color: #fff;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	padding: 0;
}

.notification-list-item {
	border-bottom: 1px solid #eee;
}

.item-unread {
	background-color: rgb(241, 241, 241);
	border-bottom: 1px solid #fff;
}

.item-unread:hover {
	background-color: rgb(233, 233, 233);
}

.notification-expand-btn:focus,
.notification-expand-btn:active {
	outline: none !important;
	box-shadow: none;
}

.expired {
	color: #949494;
}

/* --- Ibox Page Custom CSS --- */
#ibox-nav-tab .nav-link {
	border-left: 0;
	border-right: 0;
}

/* --- Remove tiny-slider slide counter text --- */
.tns-visually-hidden {
	display: none;
}

/* --- Copy to clipboard --- */
.btnCopyToClipboard {
	font-family: 'Times New Roman', Times, serif;
}

.btnCopyToClipboard:focus {
	outline: 0;
}

.copy-notification {
	color: #ffffff;
	background-color: rgba(0, 0, 0, 0.8);
	padding: 15px;
	border-radius: 30px;
	position: fixed;
	left: 50%;
	bottom: 2%;
	width: 220px;
	margin-top: -30px;
	margin-left: -85px;
	display: none;
	text-align: center;
}

/* Inner Talents */
@keyframes fadeIn {
	0% {
	  opacity: 0;
	}
	100% {
	  opacity: 1;
	}
}
  
#visible-numbers {
animation: fadeIn 1s ease 0.5s 1 normal both;
}

#interpretation-talents {
animation: fadeIn 1s ease 2s 1 normal both;
}

#problem-solving-talents {
animation: fadeIn 1s ease 3s 1 normal both;
}

/* Overlay Styles */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
    z-index: 9999; /* Higher z-index to cover other elements */
    display: none; /* Hidden by default */
}

/* Loading Indicator Styles */
.loading-indicator {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 10000; /* Higher z-index to appear above the overlay */
    display: none; /* Hidden by default */
}

/* Default position: center (for mobile and general fallback) */
.custom-modal .modal-dialog {
    position: fixed;
    bottom: 20px;
	right: 20px;
	transform: none; /* Remove center alignment for bottom-right */
	width: auto; /* Adjust width for desktop */
    margin: 0; /* Remove any default margins */
	max-width: 430px;
}