.font-work-sans {
	font-family: 'Work Sans', sans-serif !important;
}

.text-light-green {
	color: #A1D1BF !important;
}

.text-gray {
	color: #5F5F5F !important;
}

.bg-light-green {
	background-color: #A1D1BF !important;
}

.bg-light-gray {
	background-color: #F2F5F9 !important;
}

.bg-medium-gray {
	background-color: #F4F6F8 !important;
}

.bg-dark-blue {
	background-color: #232363 !important;
}

.bg-black {
	background-color: #000000 !important;
}

.w-h-5 {
	width: 41px !important;
	height: 41px !important;
}

.font-weight-medium {
	font-weight: 500 !important;
}

.font-weight-semibold {
	font-weight: 600 !important;
}

.e-404 h1{
	font-size: 80px;
	font-weight: bold;
}

.e-404 h2{
	font-size: 22px;
	margin-bottom: 40px;
}

.arrow-up {
	width: 0; 
	height: 0; 
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-bottom: 12px solid #F4F6F8;
}

.-mt-6 {
	margin-top: -1.3rem;
}

.cursor-pointer {
	cursor: pointer;
}

.text-xs {
	font-size: 0.75rem;
}

.text-sm {
	font-size: 0.875rem;
}

.text-base {
	font-size: 1rem;
}

.text-lg {
	font-size: 1.125rem;
}

.flex-col {
	flex-direction: column;
}

.px-2-5 {
	padding-left: 0.75rem;
	padding-right: 0.75rem;
}

.py-2-5 {
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
}

.lpa-right > li::marker {
	color: #C4C4C4;
	font-size: 1.2rem;
	padding-right: 0;
	margin-right: 0;
}

.lpa-right > li > span {
	position: relative;
	left: 0px;
}

.max-h-full {
	max-height: 100%;
}

.overflow-y-auto {
	overflow-y: auto;
}

.h-plan-widget {
	height: auto;
}

.event-item {
	border-top: 1px solid #e4e6f6;
}

.event-item:first-child {
	border-top: 0;
}

.event-item2 {
	margin-top: 0.75rem;
}

.event-item2:first-child {
	margin-top: 0;
}

/* width */
.custom-scrollbar::-webkit-scrollbar {
	width: 5px;
}
  
/* Track */
.custom-scrollbar::-webkit-scrollbar-track {
	background: rgba(255,255,255,0);
}
   
/* Handle */
.custom-scrollbar::-webkit-scrollbar-thumb {
	background: #AEAEAE;
	border-radius: 9999px;
}
  
/* Handle on hover */
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
	background: #8F8F8F; 
}

/* Event Page */

.date-event{
	position: relative;
}
.date-event .date{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 12px 20px;
	background: #FFFFFF;
	border: 1px solid #E7EAEE;
	box-sizing: border-box;
	border-radius: 4px;
}
.date-event .date h3{
	color: #082221;
	font-size: 18px;
	font-weight: 600;
	font-family: Inter;
}
.date-event .date h6{
	color: #5F5F5F;
	font-size: 12px;
	margin-bottom: 0;
}

.date-event .date.today h3,
.date-event .date.today h6{
	color: white !important;
}


.date-event .date.today{
	background: #A1D1BF;
	border: 1px solid #E7EAEE;
}

.date-event::before{
	content: "";
    position: absolute;
    width: 2px;
    height: calc(100% - 70px);
    background: #DEE6F1;
    left: 45px;
    top: 86px;
}

.date-event:last-child::before{
	display: none;
}

.weekly-container {
	width: auto;
}

.staff-img {
	width: 44px;
	height: 44px;
}

.space-x-2 > * + * {
	margin-left: 0.5rem;
}

.space-x-4 > * + * {
	margin-left: 1rem;
}

.space-y-2 > * + * {
	margin-top: 0.5rem;
}

.space-y-3 > * + * {
	margin-top: 0.75rem;
}

.space-y-4 > * + * {
	margin-top: 1rem;
}

.space-y-8 > * + * {
	margin-top: 2rem;
}

.search-result {
	top: 80px; 
	max-height: 450px; 
	overflow-y: auto;
}

.transition-transform {
	transition-property: transform;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 150ms;
}

.rotate-180 {
	transform: rotate(180deg);
}

.btn-month-prev:hover:not([disabled]), .btn-month-next:hover:not([disabled]), .select-month:hover {
	background: #F4F6F8;
}

.event-loading {
	animation: tailwindPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes tailwindPulse {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.5;
	}
}

@media (max-width: 576px) { 
	.sm-border {
		border: 1px solid #e4e6f6 !important;
	}

	.sm-space-y-4 > * + * {
		margin-top: 1rem;
	}

	.w-staff-table {
		width: 100% !important;
		max-width: 100%;
	}

	.sm-d-none {
		display: none !important;
	}

	.sm-d-flex {
		display: flex;
	}

	.staff-name {
		font-style: normal;
		font-weight: 600;
		font-size: 16px;
		line-height: 19px;
	}

	.staff-email {
		font-style: normal;
		font-weight: normal;
		font-size: 12px;
		line-height: 14px;
	}
}

@media (max-width: 768px) {
	.w-staff-table {
		width: 900px !important;
	}
	.navbar-search-box {
		position: fixed !important;
		width: 100%;
		height: 50px;
		top: 80px;
		background: white;
		box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
		z-index: 3;
	}
	.navbar-menu-wrapper {
		padding-left: 0px !important;
		padding-right: 0px !important;
	}
	.search-result {
		top: 50px;
		max-width: none !important;
		width: 100%;
	}
	.lg-justify-content-center {
		justify-content: center !important;
	}
}

@media (max-width: 1300px) {
	.w-h-5 {
		width: 35px !important;
		height: 35px !important;
	}
}

@media (max-width: 1200px) {
	.w-h-5 {
		width: 30px !important;
		height: 30px !important;
		font-size: 12px !important;
	}
}

@media (max-width: 1120px) {
	.w-h-5 {
		width: 25px !important;
		height: 25px !important;
	}
}

@media (min-width: 576px) { 
	.border-sm-right {
		border-right: 1px solid #e4e6f6 !important;
	}
}

@media (min-width: 768px) { 
	.e-404 h1{
		font-size: 150px;
		margin-bottom: 12px;
	}
	.e-404 h2{
		font-size: 32px;
		margin-bottom: 52px;
	}
	.h-plan-widget {
		max-height: 710px;
	}
	.weekly-container {
		width: 768px;
		overflow-x: auto;
		overflow-y: hidden;
	}
 }

@media (min-width: 992px) { 
	.weekly-container {
		width: auto;
	}
	.h-plan-widget {
		max-height: 512px;
	}
 }

@media (min-width: 1200px) { 
	.w-xl-75 {
		width: 75% !important;
	}
}