*{
	margin: 0;
	padding: 0;
	font-family: sans-serif;
	box-sizing: border-box;
}

h1 {
	font-size: 55px;
	color: #b3c1cb;
}

h1:hover {
	color: #8fa1af;
}

body {
	background-color: whitesmoke;
	color: white;

	/*display: flex;
	align-items: center;
	justify-content: center;*/
/*	height: 100vh;*/
/*	margin: 0;*/
}

/* ######## HEADER START ######## */

li {
	list-style: none;
}


a {
	text-decoration: none;
	color: white;
	font-size: 1rem;
}

a:hover {
	color: #8fa1af;
}

.header {
/*    background-color: #1b1c1b;*/

/*	background: linear-gradient(to top, rgba(0,0,0,0.8)50%, rgba(0,0,0,0.8)50%);*/
/*	background-color: gray;*/

/*	background-color: #6b8196;*/
/*    color: white;*/

	background-color: whitesmoke;
	color: #b3c1cb;
    display: flex;
    justify-content: space-between;
    align-items: center;
/*    height: 10px;*/
    padding: 5px 20px; /* 10px 20px */
    position: relative;
    z-index: 2;
    margin-top: 10px;
}

@media (max-width: 768) {
	.header {
		flex-direction: column;
		align-items: flex-start;
	}
}

.logo_h {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.responsive-logo {
	max-width: 100%;
	height: auto;
}

.nav-links {
	cursor: pointer;
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    cursor: pointer;
}

.nav-links a:first-child {
    margin-left: 0; /* Remove left margin for the first link */
    cursor: pointer;
}

.toggle_btn {
/*	color: white;*/
	font-size: 1.5rem;
	cursor: pointer;
	margin-left: 5px;
/*	display: none;*/
	background-color: whitesmoke;
	color: #b3c1cb;

}

.toggle_btn:hover {
	color: #8fa1af;
}

.action_btn {
	background-color: #6b8196;
	color: white;
/*	padding: 0.5rem 1rem;*/
    padding: 1rem 2rem; 
	border: none;
	outline: none;
	border-radius: 20px;
	font-size: 1.5rem;
	font-weight: bold;
	cursor: pointer;
	transition: scale 0.2 ease;
}

.action_btn:hover {
/*	scale: 1.05;*/
	color: #8fa1af;
/*	background-color: darkred;*/
/*	background: linear-gradient(to top, rgba(0,0,0,0.8)50%, rgba(0,0,0,0.8)50%);*/
	background-color: whitesmoke;
}

.action_btn:active {
	scale: 0.95;
}

.action_btn:hover a {
  color: inherit; /* Ensure text color remains the same on hover */
}

/* DROPDOWN MENU */
.dropdown_menu {
/*	display: none;*/
	position: absolute;
	right: 1rem;
	top: 68px;
	height: 0;
	width: 300px;
/*	background: rgba(255, 255, 255, 0.1);*/
	background-filter: blur(15px);
	border-radius: 10px;
	overflow: hidden;
	transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);

	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2); 

/*	background: linear-gradient(to top, rgba(0,0,0,0.8)50%, rgba(0,0,0,0.8)50%);*/
	background-color: #b3c1cb;

	/*border-color: #6b8196;
	border-style: solid;
	border-width: 1px;*/
	z-index: 2;
}

.dropdown_menu h2 {
	color: white;
}

.dropdown_menu.open {
	height: 350px; /* Change height of drop down menu (with calendar active: 260px) */

}

.dropdown_menu li {
	padding: 0.7rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.dropdown_menu a:hover {
	color: #8fa1af;
}

.dropdown_menu .action_btn {
	width: 100%;
	display: flex;
	justify-content: center;
}

.dropdown_menu_guest {
/*	display: none;*/
	position: absolute;
	right: 1rem;
	top: 68px;
	height: 0;
	width: 300px;
/*	background: rgba(255, 255, 255, 0.1);*/
	background-filter: blur(15px);
	border-radius: 10px;
	overflow: hidden;
	transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);

	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2); 

/*	background: linear-gradient(to top, rgba(0,0,0,0.8)50%, rgba(0,0,0,0.8)50%);*/
	background-color: #b3c1cb;

	/*border-color: #6b8196;
	border-style: solid;
	border-width: 1px;*/
	z-index: 2;
}

.dropdown_menu_guest h2 {
	color: white;
}

.dropdown_menu_guest.open {
	height: 180px; /* Change height of drop down menu (with calendar active: 260px) */

}

.dropdown_menu_guest li {
	padding: 0.7rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.dropdown_menu_guest a:hover {
	color: #8fa1af;
}

.dropdown_menu_guest .action_btn {
	width: 100%;
	display: flex;
	justify-content: center;

}



/* RESPONSIVE DESIGN */

@media(max-width: 992px) {
	.navbar .links,
	.navbar .action_btn {
		display: none;
	}

	.navbar .toggle_btn {
		display: block;
	}

	.dropdown_menu {
		display: block;
	}
	.dropdown_menu_guest {
		display: block;
	}
}

@media (max-width: 576) {
	.dropdown_menu {
		left: 2rem;
		width: unset;
	}
	.dropdown_menu_guest {
		left: 2rem;
		width: unset;
	}
}

/* ######## HEADER END ######## */

/* FOOTER START */

.main_container_bottom_border {
	border-bottom: 500px;
}

.row-container-footer {
	display: flex;
	justify-content: space-between;
	width: 100%;
	background-color: whitesmoke;
	color: #b3c1cb;
}

.row-container-form {
	display: flex;
	justify-content: space-between;
	width: 100%;

/*	background: linear-gradient(to top, rgba(0,0,0,0.8)50%, rgba(0,0,0,0.8)50%);*/
/*	background-color: #6b8196;*/
/*	background-color: whitesmoke;*/
	color: #b3c1cb;
}

.footer {
	background-color: whitesmoke;
	color: #b3c1cb;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-left {
    margin-left: 30px;
/*	flex-grow: 1;*/
}
.footer-right {
    margin-right: 30px;
/*	margin-left: auto;*/
/*	text-align: right;*/
}
.footer a {
/*    color: #fff;*/
    text-decoration: none;
    margin: 0 10px;

}

.footer-right a {
/*	background-color: whitesmoke;*/
	color: #b3c1cb;
}

.footer-right a:hover {
	color: #8fa1af;;
}

/* FOOTER END */

.form {
	width: 340px;
	height: 340px;
/*	color: #fff;*/
/*	background: linear-gradient(to top, rgba(0,0,0,0.8)50%, rgba(0,0,0,0.8)50%);*/
	background-color: #b3c1cb;
/*	position: absolute;*/
/*	top: 50%;
	left: 50%;*/
/*	transform: translate(-50%, -50%);*/
	border-radius: 10px;
	padding: 5px 25px;

	display: flex;
	flex-direction: column;
/*	align-items: center;*/

	/*border-color: #6b8196;
	border-style: solid;
	border-width: 1px;*/
	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2); 
}


.form h2 {
	width: 355px;
	text-align: left;	
	color: white;

	background-color: #6b8196;
	border-radius: 10px;

	margin-left: -20px;
	margin-bottom: 30px;
	margin-top: 0px;

	padding: 10px 5px;
	padding-left: 20px;

	/*border-color: gray;
	border-style: solid;
	border-width: 1px;*/
}

.form input {
	width: 100%;
	height: 35px;
	padding-top: 10px;
	margin-bottom: 15px;
	background: transparent;
	border-bottom: 1px solid #6b8196;
	border-top: none;
	border-left: none;
	border-right: none;
	color: #fff;
	font-size: 15px;
	letter-spacing: 1px;
	outline: none;
}

.from input:focus {
	outline: none;
}

::placeholder {
	color: #6b8196;
	font-family: sans-serif;
}

.button-container {
	display: flex;
	justify-content: space-between;
	width: 100%;
}

.btnn {
	font-size: 18px;
	padding: 10px 15px;
	background: black;
	border: none;
/*	margin-top: 15px;*/
	margin-top: 2.5px;
	cursor: pointer;
	border-radius: 10px;
	color: white;
	background-color: #6b8196;
}

.btnn a {
	text-decoration: none;
	color: white;
}

.btnn:hover {
	background-color: #8fa1af;
}

.btnn_2 {
	font-size: 18px;
	padding: 10px 15px;
	background: black;
	border: none;
	margin-top: 15px;
/*	margin-right: 200px;*/
	cursor: pointer;
	border-radius: 10px;
	color: white;
	background-color: #6b8196;

	/*border-color: gray;
	border-style: solid;
	border-width: 0.5px;*/
}

.btnn_2 a {
	text-decoration: none;
	color: white;
}

.btnn_2:hover {
	color: #8fa1af;
	background-color: whitesmoke;
}

.btnn_3 {
	font-size: 18px;
	padding: 10px 15px;
	background: black;
	border: none;
	margin-top: 15px;
/*	margin-right: 200px;*/
	cursor: pointer;
	border-radius: 10px;
	color: #6b8196;
	background-color: whitesmoke;

	/*border-color: gray;
	border-style: solid;
	border-width: 0.5px;*/
}

.btnn_3 a {
	text-decoration: none;
	color: whitesmoke;
}

.btnn_3:hover {
	background-color: #8fa1af;
}

.form .link {
	font-family: Arial, Helvetica, Sans-serif;
	font-size: 17px;
	padding-top: 10px;
	text-align: center;
	color: gray;
}

.form .link a {
	text-decoration: none;
	color: #fff;
}

/* ########### MAIN START ############### */


.main_container {

	display: flex;
	align-items: stretch; /* Ensures all children grow to the height of the tallest child */
/*	max-height: auto;*/
	justify-content: space-evenly; 
/*	align-items: center;*/
	/*min-height: 60vh;
	overflow-y: auto;*/
	background-color: white; 
	gap: 5px;
	position: relative;
	z-index: 1;
	border-radius: 20px;
}

/* ########### MAIN TABS START ############### */

.tabs_menu_container {
	display: flex;
	justify-content: flex-start;
	margin-top: 30px; /* 50px; */
}

.tabs_menu_container h2 {
	display: flex;

}

.tabs_menu {
	list-style: none;
	padding: 0;
	margin-right: 10px;
}

.tabs_menu a {
	text-decoration: none;
}

.tabs_menu ul {
	display: flex;
}

.tabs_menu li {
	display: flex;
	align-items: center;
/*	background: linear-gradient(to top, rgba(0,0,0,0.8)50%, rgba(0,0,0,0.8)50%);*/
	background-color: #b3c1cb;
	padding: 25px;
	z-index: 3;
	order: -1;
	flex: 0.05;
	gap: 5px;
	border-radius: 10px;
	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2); /* Add a subtle box shadow */

	/*border-style: solid;
	border-color: #6b8196;
	border-width: 1px;*/
/*	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2); */

}

.tabs_menu:hover li {
	color: black;
}

.tabs_menu li:hover {
	background-color: white;
	cursor: pointer;
	color: #8fa1af;
}

.tabs_menu_hidden {
	list-style: none;
	padding: 0;
	margin-right: 10px;
	display: none;
}

.tabs_menu_hidden a {
	text-decoration: none;
}

.tabs_menu_hidden ul {
	display: flex;
}

.tabs_menu_hidden li {
	display: flex;
	align-items: center;
/*	background: linear-gradient(to top, rgba(0,0,0,0.8)50%, rgba(0,0,0,0.8)50%);*/
	background-color: #b3c1cb;
	padding: 25px;
	z-index: 3;
	order: -1;
	flex: 0.05;
	gap: 5px;
	border-radius: 10px;
	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2); /* Add a subtle box shadow */

	/*border-style: solid;
	border-color: #6b8196;
	border-width: 1px;*/
	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2); 

}

.tabs_menu_hidden:hover li {
	color: black;
}

.tabs_menu_hidden li:hover {
	background-color: white;
	cursor: pointer;
	color: #8fa1af;
}


/* ########### MAIN 1 START ############### */

.main-1 {
	overflow-y: auto;
	flex: 0.5;
	flex-shrink: 0;
	background-color: #b3c1cb;
	border-radius: 10px;
	padding: 5px 25px;
	display: flex;
	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2); 
	position: relative;
	flex-direction: column;
/*	display: block;*/
}

.main-1.hidden {
	/* Hide the div */
    display: none; 
/*    width: 10px;*/
}

.main-1 h2 {
/*	width: 455px;*/
	display: flex;
	justify-content: center;
	align-items: center;	

	color: white;
	background-color: #6b8196;
	height: 50px;
/*	width: 100%;*/
	width: calc(100% + 40px);
	border-radius: 10px;
	margin-left: -20px;
	margin-right: -25px;

	margin-bottom: 30px;
	margin-top: 0px;

	padding: 10px 5px;
	padding-left: 20px;

	/*border-color: gray;
	border-style: solid;
	border-width: 1px;*/
	position: relative;
}

.main-1 input {
	width: 100%;
	height: 35px;
	padding-top: 10px;
	margin-bottom: 15px;
	background: transparent;
	border-bottom: 1px solid #6b8196;
	border-top: none;
	border-left: none;
	border-right: none;
	color: #fff;
	font-size: 15px;
	letter-spacing: 1px;
	outline: none;
}

.main-1 input:focus {
	outline: none;
}


.main-1 .link {
	font-family: Arial, Helvetica, Sans-serif;
	font-size: 17px;
	padding-top: 10px;
	text-align: center;
	color: gray;
}

.main-1 .link a {
	text-decoration: none;
	color: #fff;
}

/* ######### PROJECT LIST DROPDOWN MENU TOGGLE BUTTON START ########### */

.toggle_btn_plus_therapy_session_list {
	position: absolute;
/*	margin-left: auto;*/
    right: 20px;
    top: 50%;
    transform: translateY(-50%);

    color: white; /* Default color */
    cursor: pointer;
    transition: color 0.3s ease; /* Smooth transition for color change */
}

.toggle_btn_plus_therapy_session_list:hover {
    color: #8fa1af;
}

.dropdown_menu_therapy_session_list {
    display: none;
    position: absolute;
    top: 51px; 
    /* center the menu horizontally */
    /*left: 73%; /* 44 */
    right: 3px; 
/*	transform: translateX(-50%);*/
    min-width: 250px; /* Adjust the minimum width as needed */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2); /* Add a subtle box shadow */
/*    background-color: darkgray;*/

    transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);

/*	background: linear-gradient(to top, rgba(0,0,0,0.8)50%, rgba(0,0,0,0.8)50%);*/
	background-color: #b3c1cb;

	/* START - review, work, delivery media and showcase url - START */
	/* change height size of menu */ /* CHANGE FROM 320  HOME CURRENTLY AT 315 */
/*	height: 315px;*/

	/* review, work, delivery media and showcase url */
/*	height: 470px;*/
	/* END - review, work, delivery media and showcase url - END */

	/* removed showcase url, upload multiple media files and download media files */
/*	height: 353px;*/
	height: 40px;
	/* END - review, work, delivery media and showcase url - END */
	
	z-index: 2;
}

@media (max-width: 768px) {
    .dropdown_menu_therapy_session_list {
        right: 50%;
        transform: translateX(50%);
    }
}

.dropdown_menu_therapy_session_list.open {
    display: block;
}

.dropdown_menu_therapy_session_list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown_menu_therapy_session_list li {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown_menu_therapy_session_list a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease; /* Smooth transition for color change */
}

.dropdown_menu_therapy_session_list a:hover {
    color: #8fa1af;
}

/* Additional styling to adjust the position of the dropdown menu */
@media (max-width: 768px) {
    .dropdown_menu_therapy_session_list {

/*        right: 50%;*/
/*        transform: translateX(0);*/
		right: auto; /* Remove the right property to use the default positioning */
        left: 50%; /* Center the dropdown horizontally */
        transform: translateX(-50%); /* Adjust the position based on the width of the dropdown */
/*        height: auto;*/
    }
}

/* ######### PROJECT LIST DROPDOWN MENU TOGGLE BUTTON END ########### */

/* ########### PROJECT LIST START ############### */

.chevron-icon {
	margin-right: 5px;
}

.indent {
/*	margin-left: 60px;*/
	margin-left: 30px;
}

.indent_twice {
/*	margin-left: 120px;*/
	margin-left: 60px;
}

.indent_thrice {
/*	margin-left: 180px;*/
	margin-left: 90px;
}

.hidden {
    display: none;
}


/* Projects */

.therapy-session-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.chevron-icon-therapy-session {
	margin-right: 5px;
/*	transform: rotate(270deg);*/
	transform: rotate(-90deg);
	transition: transform 0.3s ease;
}

.rotate {
    transform: rotate(0deg);
}

.therapy-session-name {
	cursor: pointer; /* Change cursor to pointer on hover */
	margin-right: auto;
/*        margin-left: 10px;*/
}

.therapy-session-name:hover {
    color: #8fa1af; /* Change text color to red on hover */
}

.toggle-therapy-sessions {
	margin-right: 10px;
}

.toggle-therapy-sessions:hover {
	color: #8fa1af;
	cursor: pointer;
} 

/* Style for icons */
.icons-therapy-session {
	display: flex;
	align-items: center;
/*	margin-right: 5px;*/
}

.icons-therapy-session a {
	margin-left: 10px;
}

/* Style for individual icon */
.icons-therapy-session i {
	margin-left: 5px;
}

.icons-therapy-session i:hover {
	color: #8fa1af;
	cursor: pointer;
}

/* Departments */

.department-container {
	display: flex;
	align-items: center;
/*	justify-content: space-between;*/
/*	justify-content: flex-start;*/
}

.chevron-icon-department {
	margin-right: 10px;
	transform: rotate(-90deg);
	transition: transform 0.3s ease;
}

.rotate {
	transform: rotate(0deg);
}

.department-name {
	cursor: pointer;
	margin-right: auto;
}

.department-name:hover {
    color: #8fa1af; /* Change text color to red on hover */
}

.toggle-departments {
	margin-right: 10px;
}

.toggle-departments:hover {
	color: #8fa1af;
	cursor: pointer;
} 

/* Style for icons */
.icons-department {
	display: flex;
	align-items: center;
/*	justify-content: flex-end;*/
}

.icons-department a {
	margin-left: 10px;
}

/* Style for individual icon */
.icons-department i {
	margin-left: 5px;
}

.icons-department i:hover {
	color: #8fa1af;
	cursor: pointer;
}


/* Product box */

.product-box-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.chevron-icon-product-box {
	margin-right: 10px;
	transform: rotate(-90deg);
	transition: transform 0.3s ease;
}

.rotate {
	transform: rotate(0deg);
}

.product-box-name {
	flex-grow: 1;
	cursor: pointer;
}

.product-box-name:hover {
    color: #8fa1af; /* Change text color to red on hover */
}

.toggle-product-box {
	margin-right: 10px;
}

.toggle-product-box:hover {
	color: #8fa1af;
	cursor: pointer;
} 

.icons-product-box {
	display: flex;
	align-items: center;
}

.icons-product-box a {
	margin-left: 10px;
}

/* Style for individual icon */
.icons-product-box i {
	margin-left: 5px;
}

.icons-product-box i:hover {
	color: #8fa1af;
	cursor: pointer;
}

/* Product */

.product-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}

.chevron-icon-product {
	margin-right: 10px;
}

.product-name {
	cursor: pointer;
}

.product-name:hover {
    color: #8fa1af; /* Change text color to red on hover */
}

.icons-product {
	display: flex;
	align-items: center;
}

.icons-product a {
	margin-left: 10px;
}

/* Style for individual icon */
.icons-product i {
	margin-left: 5px;
}

.icons-product i:hover {
	color: #8fa1af;
	cursor: pointer;
}

/* ########### PROJECT LIST END ############### */

/* ########### MAIN 2 START ############### */

.main-2 {
	overflow-y: auto;
	flex: 1;
	flex-shrink: 0;
	object-fit: contain;
	background-color: #b3c1cb;
	border-radius: 10px;
	padding: 5px 25px;
	display: flex;
	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2); 
	flex-direction: column;
	max-height: 600px;
	min-height: 600px;
}

.main-2 h2 {
/*	width: 455px;*/

	text-align: center;	
	color: white;

	background-color: #6b8196;

	height: 50px;
/*	width: 100%;*/
	width: calc(100% + 40px);

	border-radius: 10px;

	margin-left: -20px;
	margin-right: -25px;

	margin-bottom: 30px;
	margin-top: 0px;

	padding: 10px 5px;
	padding-left: 20px;

	/*border-color: gray;
	border-style: solid;
	border-width: 1px;*/

	/*position: relative;
	display: inline-block;*/

}

/* ############ COLLAPSE START ################## */

.left-collapse {

/*	background: linear-gradient(to top, rgba(0,0,0,0.8)50%, rgba(0,0,0,0.8)50%);*/
	background-color: #b3c1cb;
	width: 60px !important;
	border-radius: 10px;
	padding: 5px 25px;
	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2); 
/*	height: 900px;*/

}

.left-collapse h2 {
/*	width: 455px;*/
	display: flex;
	justify-content: center;
	align-items: center;	

	color: white;
	background-color: #6b8196;
	height: 50px;
/*	width: 100%;*/
	width: calc(100% + 40px);
	border-radius: 10px;
	margin-left: -20px;
	margin-right: -25px;

	margin-bottom: 30px;
	margin-top: 0px;

	padding: 10px 5px;
	padding-left: 20px;

	/*border-color: gray;
	border-style: solid;
	border-width: 1px;*/
	position: relative;
}

.right-collapse {

/*	background: linear-gradient(to top, rgba(0,0,0,0.8)50%, rgba(0,0,0,0.8)50%);*/
	background-color: #b3c1cb;
	width: 60px !important;
	border-radius: 10px;
	padding: 5px 25px;
	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2); 
/*	height: 900px;*/

}

.right-collapse h2 {
/*	width: 455px;*/
	display: flex;
	justify-content: center;
	align-items: center;	

	color: white;
	background-color: #6b8196;
	height: 50px;
/*	width: 100%;*/
	width: calc(100% + 40px);
	border-radius: 10px;
	margin-left: -20px;
	margin-right: -25px;

	margin-bottom: 30px;
	margin-top: 0px;

	padding: 10px 5px;
	padding-left: 40px;

	/*border-color: gray;
	border-style: solid;
	border-width: 1px;*/
	position: relative;

/*	margin-right: 20px;*/
/*    position: absolute;*/
/*    right: 0;*/
}



.no-style {
	text-decoration: none;
	color: inherit;
	font-size: inherit;
}

.collapse-main-1 {
	margin-left: 20px;
    position: absolute;
    left: 0;
}

.chevron-icon-collapse-main-1 {
	margin-right: 5px;
	transform: rotate(-90deg);
	transition: transform 0.3s ease;
}

.chevron-icon-collapse-main-1.rotate {
    transform: rotate(90deg); /* When main-1 is hidden, face right */
}

.chevron-icon-collapse-main-1:hover {
	cursor: pointer; /* Change cursor to pointer on hover */
	color: #8fa1af;
/*	margin-right: auto;*/
/*        margin-left: 10px;*/
}

.chevron-icon-collapse-main-1-off {
	margin-right: 5px;
	transform: rotate(90deg);
	transition: transform 0.3s ease;
	color: white;
}

.chevron-icon-collapse-main-1-off:hover {
	cursor: pointer; /* Change cursor to pointer on hover */
	color: #8fa1af;
/*	margin-right: auto;*/
/*        margin-left: 10px;*/
}

.chevron-icon-collapse-main-1-on {
	margin-right: 5px;
	transform: rotate(-90deg);
	transition: transform 0.3s ease;
	color: white;
}

.chevron-icon-collapse-main-1-on:hover {
	cursor: pointer; /* Change cursor to pointer on hover */
	color: #8fa1af;
/*	margin-right: auto;*/
/*        margin-left: 10px;*/
}


.collapse-main-3 {
	margin-right: 10px;
    position: absolute;
    right: 0;
}

.chevron-icon-collapse-main-3 {
	margin-right: 5px;
/*	transform: rotate(270deg);*/
	transform: rotate(90deg);
	transition: transform 0.3s ease;
}

.chevron-icon-collapse-main-3.rotate {
    transform: rotate(-90deg); /* When main-1 is hidden, face right */
}

.chevron-icon-collapse-main-3:hover {
	cursor: pointer; /* Change cursor to pointer on hover */
	color: #8fa1af;
/*	margin-right: auto;*/
/*        margin-left: 10px;*/
}

.chevron-icon-collapse-main-3-off {
	margin-right: 5px;
/*	transform: rotate(270deg);*/
	transform: rotate(-90deg);
	transition: transform 0.3s ease;
	color: white;
}

.chevron-icon-collapse-main-3-off:hover {
	cursor: pointer; /* Change cursor to pointer on hover */
	color: #8fa1af;
/*	margin-right: auto;*/
/*        margin-left: 10px;*/
}

.chevron-icon-collapse-main-3-on {
	margin-right: 5px;
/*	transform: rotate(270deg);*/
	transform: rotate(90deg);
	transition: transform 0.3s ease;
	color: white;
}

.chevron-icon-collapse-main-3-on:hover {
	cursor: pointer; /* Change cursor to pointer on hover */
	color: #8fa1af;
/*	margin-right: auto;*/
/*        margin-left: 10px;*/
}
/* ############ COLLAPSE END ################## */ 


.main-2 input {
	width: 100%;
	height: 35px;
	padding-top: 10px;
	margin-bottom: 15px;
	background: transparent;
	border-bottom: 1px solid #6b8196;
	border-top: none;
	border-left: none;
	border-right: none;
	color: #fff;
	font-size: 15px;
	letter-spacing: 1px;
	outline: none;
}

.main-2 input:focus {
	outline: none;
}


.main-2 .link {
	font-family: Arial, Helvetica, Sans-serif;
	font-size: 17px;
	padding-top: 10px;
	text-align: center;
	color: gray;
}

.main-2 .link a {
	text-decoration: none;
	color: #fff;
}
/* ########### MAIN 2 SUB START ############ */

.main-2-sub {

	overflow-y: auto;
/*	overflow-x: auto;*/
/*	flex-grow: 0.5;*/
	flex: 1;
/*	background-color: blue;*/
	flex-shrink: 0;
/*	align-self: self-start;*/

/*	width: 340px;*/
	height: 340px;
/*	color: #fff;*/
/*	background: linear-gradient(to top, rgba(0,0,0,0.8)50%, rgba(0,0,0,0.8)50%);*/
	background-color: #8fa1af;
/*	position: absolute;*/
/*	top: 50%;
	left: 50%;*/
/*	transform: translate(-50%, -50%);*/
	border-radius: 10px;
	padding: 5px 25px;

	display: flex;
/*	flex-direction: column;*/
/*	align-items: center;*/

	/*border-color: #6b8196;
	border-style: solid;
	border-width: 1px;*/
	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2); 

	flex-direction: column;
}

.main-2-sub h2 {
/*	width: 455px;*/
	
	display: flex;
	text-align: center; /* left */
	justify-content: space-between;

	color: white;

	background-color: #6b8196;

	height: 45px;
/*	width: 100%;*/
	width: calc(100% + 40px);

	border-radius: 10px;

	margin-left: -20px;
	margin-right: -25px;

	margin-bottom: 30px;
	margin-top: 0px;

	padding: 10px 5px;
	padding-left: 20px;

	font-size: 20px;

	/*border-color: gray;
	border-style: solid;
	border-width: 1px;*/

	z-index: 1;
}

.main-2-sub-dropdown-container {
	position: relative;
	display: inline-block;
}

/* ######### PORTFOLIO MEDIA DROPDOWN MENU TOGGLE BUTTON START ########### */

.toggle_btn_plus_portfolio_media {
    margin-right: 10px;
    color: white; /* Default color */
    cursor: pointer;
    transition: color 0.3s ease; /* Smooth transition for color change */
}

.toggle_btn_plus_portfolio_media:hover {
    color: #8fa1af;
}

.dropdown_menu_portfolio_media {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 200px; /* Adjust the minimum width as needed */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2); /* Add a subtle box shadow */
    background-color: 94b9d1;

    transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);

	/*background: linear-gradient(to top, rgba(0,0,0,0.8)50%, rgba(0,0,0,0.8)50%);
	background-color: darkgray;*/
}

.dropdown_menu_portfolio_media.open {
    display: block;
}

.dropdown_menu_portfolio_media ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown_menu_portfolio_media li {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown_menu_portfolio_media a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease; /* Smooth transition for color change */
}

.dropdown_menu_portfolio_media a:hover {
    color: #8fa1af;
}

/* Additional styling to adjust the position of the dropdown menu */
@media (max-width: 768px) {
    .dropdown_menu_portfolio_media {
        right: 50%;
        transform: translateX(50%);
    }
}

/* ######### PORTFOLIO MEDIA DROPDOWN MENU TOGGLE BUTTON END ########### */

/* ######### SHOWCASE DROPDOWN MENU TOGGLE BUTTON START ########### */

.toggle_btn_plus_showcase {
    margin-right: 10px;
    color: white; /* Default color */
    cursor: pointer;
    transition: color 0.3s ease; /* Smooth transition for color change */
}

.toggle_btn_plus_showcase:hover {
    color: #8fa1af;
}

.dropdown_menu_showcase {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 200px; /* Adjust the minimum width as needed */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2); /* Add a subtle box shadow */
    background-color: #b3c1cb;

    transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);

	/*background: linear-gradient(to top, rgba(0,0,0,0.8)50%, rgba(0,0,0,0.8)50%);
	background-color: darkgray;*/
}

.dropdown_menu_showcase.open {
    display: block;
    height: 40px; /* Adjust the height as needed */
}

.dropdown_menu_showcase ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown_menu_showcase li {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown_menu_showcase a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease; /* Smooth transition for color change */
}

.dropdown_menu_showcase a:hover {
    color: #8fa1af;
}

/* Additional styling to adjust the position of the dropdown menu */
@media (max-width: 768px) {
    .dropdown_menu_showcase {
        right: 50%;
        transform: translateX(50%);
    }
}

/* ######### SHOWCASE DROPDOWN MENU TOGGLE BUTTON END ########### */


.main-2-sub input {
	width: 100%;
	height: 35px;
	padding-top: 10px;
	margin-bottom: 15px;
	background: transparent;
	border-bottom: 1px solid #6b8196;
	border-top: none;
	border-left: none;
	border-right: none;
	color: #fff;
	font-size: 15px;
	letter-spacing: 1px;
	outline: none;
}

.main-2-sub input:focus {
	outline: none;
}


.main-2-sub .link {
	font-family: Arial, Helvetica, Sans-serif;
	font-size: 17px;
	padding-top: 10px;
	text-align: center;
	color: gray;
}

.main-2-sub .link a {
	text-decoration: none;
	color: #fff;
}


/* ######### MAIN 2 PROJECT INFO START ########## */

.main-2-project-info {

/*	overflow-y: auto;*/
/*	overflow-x: auto;*/

/*	flex-grow: 0.5;*/
	flex: 0.5;
/*	background-color: blue;*/
	flex-shrink: 0;
/*	align-self: self-start;*/

/*	width: 340px;*/
/*	height: 900px;*/


	
/*	color: #fff;*/
/*	background: linear-gradient(to top, rgba(0,0,0,0.8)50%, rgba(0,0,0,0.8)50%);*/
	background-color: #b3c1cb;
/*	position: absolute;*/
/*	top: 50%;
	left: 50%;*/
/*	transform: translate(-50%, -50%);*/
	border-radius: 10px;
	padding: 5px 25px;

	display: flex;
/*	flex-direction: column;*/
/*	align-items: center;*/

/*	border-color: #323636;*/
	/*border-color: black;
	border-style: solid;
	border-width: 1px;*/

	flex-direction: column;

}


.main-2-project-info h2 {
/*	width: 455px;*/

	text-align: center;	
	color: white;

	background-color: #6b8196;

	height: 50px;
/*	width: 100%;*/
	width: calc(100% + 40px);

	border-radius: 10px;

	margin-left: -20px;
	margin-right: -25px;

	margin-bottom: 30px;
	margin-top: 0px;

	padding: 10px 5px;
	padding-left: 20px;

	/*border-color: gray;
	border-style: solid;
	border-width: 1px;*/
}

.main-2-project-info input {
	width: 100%;
	height: 35px;
	padding-top: 10px;
	margin-bottom: 15px;
	background: transparent;
	border-bottom: 1px solid #6b8196;
	border-top: none;
	border-left: none;
	border-right: none;
	color: #fff;
	font-size: 15px;
	letter-spacing: 1px;
	outline: none;
}

.main-2-project-info input:focus {
	outline: none;
}


.main-2-project-info .link {
	font-family: Arial, Helvetica, Sans-serif;
	font-size: 17px;
	padding-top: 10px;
	text-align: center;
	color: gray;
}

.main-2-project-info .link a {
	text-decoration: none;
	color: #fff;
}

.main-2-project-info p {
	width: 100%;
	height: 35px;
	padding-top: 10px;
	margin-bottom: 15px;
	background: transparent;
	border-bottom: 1px solid #6b8196;
	border-top: none;
	border-left: none;
	border-right: none;
/*	color: #fff;*/
	color: darkgray;
	font-size: 15px;
	letter-spacing: 1px;
	outline: none;
}

span.white-color {
	color: white;
}

.banner_image_larger {
	margin-top: 2.5%;
/*	border-color: grey;*/
	border-radius: 25px;
/*	border: 5px;*/
/*	height: 256px;*/
/*	width: 512px;*/
	width: 100%;

/*	border: 5px ridge grey;*/
	background-color: grey;
/*	border-image-source: url(example.png);*/
/*	border-image-width: 512px;*/
	animation-name: animated_reply;
/*	animation-duration: 2s;*/
}

.banner_image {
    margin-top: 2.5%;
    border-radius: 25px;
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    background-color: grey;
    animation-name: animated_reply;
/*    animation-duration: 2s;*/
    max-width: 512px; /* Limit maximum width */
}



@keyframes animated_reply {
	
	0% {opacity: 0.0}
/*	100% {opacity: 0.8}*/
	100% {opacity: 1.0}
	/*100% {opacity: 0.0}*/
	/*0% {background-color: none;}
	30% {background-color: black;}
	80% {background-color: black;}
	100% {background-color: black;}*/
}

/* #########  MAIN 2 PROJECT INFO END  ########## /*

/* ########### MAIN 3 START ############### */

.main-3 {
	overflow-y: auto;
	flex: 0.5;
	flex-shrink: 0;
	background-color: #b3c1cb;
	border-radius: 10px;
	padding: 5px 25px;
	display: flex;
	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2); 
	flex-direction: column;
/*	display: block;*/
}

.main-3.hidden {
    display: none; /* Hide the div */
}


.main-3 h2 {
/*	width: 455px;*/

	text-align: center;	
	color: white;

	background-color: #6b8196;

	height: 50px;
/*	width: 100%;*/
	width: calc(100% + 40px);

	border-radius: 10px;

	margin-left: -20px;
	margin-right: -25px;

	margin-bottom: 30px;
	margin-top: 0px;

	padding: 10px 5px;
	padding-left: 20px;

	/*border-color: gray;
	border-style: solid;
	border-width: 1px;*/
}

.main-3 input {
	width: 100%;
	height: 35px;
	padding-top: 10px;
	margin-bottom: 15px;
	background: transparent;
	border-bottom: 1px solid #6b8196;
	border-top: none;
	border-left: none;
	border-right: none;
	color: #fff;
	font-size: 15px;
	letter-spacing: 1px;
	outline: none;
}

.main-3 input:focus {
	outline: none;
}


.main-3 .link {
	font-family: Arial, Helvetica, Sans-serif;
	font-size: 17px;
	padding-top: 10px;
	text-align: center;
	color: gray;
}

.main-3 .link a {
	text-decoration: none;
	color: #fff;
}

.main-3 p {
	width: 100%;
	height: 35px;
	padding-top: 10px;
	margin-bottom: 15px;
	background: transparent;
	border-bottom: 1px solid #6b8196;
	border-top: none;
	border-left: none;
	border-right: none;
/*	color: #fff;*/
	color: #6b8196;
	font-size: 15px;
	letter-spacing: 1px;
	outline: none;

	white-space: nowrap;
	overflow-x: auto;
	overflow-y: hidden;
	display: inline-block;
	scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
}

span.white-color {
	color: white;
}

/* Styles for screens with a max width of 600px */
@media screen and (max-width: 600px) {
    .responsive-logo {
        width: 80%;
    }
    .chat-container {
    	height: 300px;
    }
}

/* Styles for screens with a max width of 400px */
@media screen and (max-width: 400px) {
    .responsive-logo {
        width: 60%;
    }
    .chat-container {
    	height: 300px;
    }
}

@media screen and (max-width: 900px) {
	.responsive-logo {
		width: 100%;
	}

    .main_container {
    	flex-direction: column;
    	align-items: flex-start;
    	width: 100%;
    	height: auto;
/*    	height: 100vh; */
    }
    .main-1 {
    	width: 100%;
    	height: 100%;
    	order: 2;
    	height: auto; /* Adjust height as needed */
        flex-shrink: 0; /* Prevent shrinking */
        overflow-y: auto;

    }
    .main-2 {
    	width: 100%;
    	height: 100%;
    	order: 1;
    	flex-grow: 1; /* Allow it to grow and take up remaining space */
        overflow: hidden; /* Prevent scrolling */
        overflow-y: auto;
    }
    .main-3 {
    	width: 100%;
    	height: 100%;
    	order: 3;
    	height: auto; /* Adjust height as needed */
        flex-shrink: 0; /* Prevent shrinking */
        overflow-y: auto;

    }
    .chat-container {
    	max-height: 300px;
    }
    /*.main-3 {
    	display: none;
    	height: 100%;
    }*/
    .tabs_menu_hidden {
/*    	width: 100%;*/
/*    	display: none;*/
    	height: 100%;
    	display: block;
    }

    .left-collapse {
    	display: none;
    }
    .right-collapse {
    	display: none;
    }
    .collapse-main-1 {
    	display: none;
    }
    .collapse-main-3 {
    	display: none;
    }

    /*.collapse-main-1 {
    	display: none;
    }
    .collapse-main-3 {
    	display: none;
    }*/
    
}

/*@media screen and (max-width: 375px) {
    .responsive-logo {
        width: 60%;
    }
    .chat-container {
    	max-height: 300px;
    }
}*/

/* ########### MAIN END ############### */

/* ########### FILES START ############### */


/*.dropdown-container {
	margin-left: -5px;
}*/

#select_file {
	color: white;
	background-color: black;
	border-radius: 10px;
	border: none;
	font-size: 1em; /* change overall size */
	padding: 10px 30px; /* Adjust padding for the dropdown */
	outline: none;

/*	margin-left: -5px;*/
/*	margin-right: -1px;*/
	position: relative;
	left: -10px;	
}

#select_file:hover {
	color: #8fa1af;
	cursor: pointer;
}

#files_comment {

	text-align: left;	
	color: white;
	background-color: black;

	box-sizing: border-box;
	width: 100%;
	border: none;
	border-radius: 10px;
	height: 160px;
	margin: 20px 0;
	font-size: 1.3em;
	resize: none;
	padding: 12px 20px;
	outline: none;

}

textarea {
/*	width: 100%;*/
	height: 160px;
	margin: 20px;
	border: none;
	border-radius: 10px;
	text-align: left;
	font-size: 1.3em;
	resize: none;
	padding: 12px 20px;
}

.same-width {
	width: 100%; /* set the desired width for dropdowns: 300px 100% */
	color: white;
	background-color: black;
	border-radius: 10px;
	border: none;
	font-size: 0.7em;
	padding: 10px;
	outline: none;
}

.same-width:hover {
	color: #8fa1af;
	cursor: pointer;
}

/*textarea: focus {
	border: solid 5px #00FFCE;
	outline: none;
}*/


/* ########### FILES END ############### */

/* ########### CALENDAR START ############### */

.calendar-container {
	width: 100%;
/*	min-height: 100vh;*/
	display: flex;
	align-items: center;
	justify-content: center;
}

.calendar {
	width: 100%;
	max-width: 80%;
/*	max-height: 80%;*/
	padding: 40px 30px;
	border-radius: 10px;
	background-color: #b3c1cb;
}

.calendar-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 2px solid white;

}

.calendar-month {
	display: flex;
	align-items: center;
	font-size: 25px;
	font-weight: 600;
	color: white;
}

.calendar-month:hover{
	color: #8fa1af;
}

.calendar-btns {
	display: flex;
	gap: 10px;
}

.calendar-btn {
	width: 60px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	color: white;
	font-size: 18px;
	cursor: pointer;
/*	background: linear-gradient(to top, rgba(0,0,0,0.8)50%, rgba(0,0,0,0.8)50%);*/
	background-color: #6b8196;
/*	transition: all 0.3s ease-in-out;*/
	transition: all 0.3s;
}


.calendar-btn:hover {
	background-color: white;
	transform: scale(1.5);
	color: #8fa1af;
	cursor: pointer;
}

.calendar-weekdays {
	display: flex;
	gap: 10px;
	margin-bottom: 10px;
}

.calendar-weekday {
	width: calc(100% / 7 - 10px);
	text-align: center;
	font-size: 16px;
	font-weight: 600;
}

.calendar-days {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.calendar-day {
	width: calc(100% / 7 - 10px);
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	font-size: 20px;
	font-weight: 400;
	color: white;
/*	background: linear-gradient(to top, rgba(0,0,0,0.8)50%, rgba(0,0,0,0.8)50%);*/
	background-color: #b3c1cb;
	transition: all 0.3s;
}

.calendar-day:not(.next):not(.prev):hover {
	background-color: white;
	transform: scale(1.05);
	color: #8fa1af;
	cursor: pointer;
}

.calendar-day.today {
	background-color: white;
	color: #6b8196;
}

.calendar-day.next,
.calendar-day.prev {
	color: #b3c1cb;
}

/* ########### CALENDAR END ############### */

/* ########### ADD PROJECT START ############### */
.date-picker {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

label {
  margin-bottom: 5px;
}

.select-options {
  display: flex;
  gap: 10px;
  /*color: white;
  background-color: black;*/
}

select {
  padding: 8px;
  font-size: 16px;
  border-radius: 10px;
  color: white;
  background-color: black;
  border: none;
}


/*.project_banner {

}*/

/*.project_banner input {
	width: 100%;
	height: 35px;
	padding-top: 10px;
	margin-bottom: 15px;
	background: transparent;
	border-bottom: 1px solid red;
	border-top: none;
	border-left: none;
	border-right: none;
	color: #fff;
	font-size: 15px;
	letter-spacing: 1px;
	outline: none;
}*/

.project-banner-input {
  /* additional styles for the project banner input without red border */
  border-bottom: none !important;
  /* add any other specific styles you need for the project banner input */
}
/* ########### ADD PROJECT END ############### */

/* ########### ADD PRODUCT START ############### */
.row-container {
	display: flex;
	gap: 10px;
}

.row-container-prev-next {
	display: flex;
	justify-content: space-between;
	width: 100%; /* Ensure the container takes the full width of the parent */
/*	position: relative;*/
}

.prev_item, .next_item {
	color: white;
	background-color: black;
	border-radius: 20px;
	border: 1px solid gray;
	transition: border 0.3s ease;
	display: flex;
	align-items: center;
	position: relative;
	padding: 3px; /* 3px changes the size of the buttons */
}

.prev_item:hover, .next_item:hover {
	border: 1px solid #8fa1af;
}

.chevron-icon-previous {
	margin-right: 5px;
	transition: transform 0.3s ease, color 0.3s ease;
	transform: rotate(90deg);
}

.chevron-icon-next {
	margin-right: 5px;
	transition: transform 0.3s ease, color 0.3s ease;
	transform: rotate(-90deg);
}

.prev_item:hover .chevron-icon-previous, 
.next_item:hover .chevron-icon-next {
	color: #8fa1af;
}

.tooltip {
	visibility: hidden;
	width: : 80px;
	background-color: grey;
	color: white;
	text-align: center;
	border-radius: 5px;
	padding: 6px;
	font-size: 14px;
	position: absolute;
	z-index: 1;
	bottom: -220%; 
	left: 50%;
	transform: translateX(-50%);
	opacity: 0;
	transition: opacity 0.3s;
}

.tooltip::after {
	content: "";
	position: absolute;
	bottom: -5px;
/*	top: 100%; */
	left: 50%;
/*	margin-left: -5px;*/
	transform: translateX(-50%);
	border-width: 5px;
	border-style: solid;
	border-color: grey transparent transparent transparent;
}

.prev_item:hover .tooltip,
.next_item:hover .tooltip {
	visibility: visible;
	opacity: 1;
}

#hiddenToggle {
  width: 20px;
  height: 20px;
  margin-left: 5px;
/*  margin-top: 5px;*/
}

#hiddenToggleProfile {
  width: 20px;
  height: 20px;
  margin-left: 5px;
/*  margin-top: 5px;*/
}

#hiddenToggleSessionReport {
  width: 20px;
  height: 20px;
  margin-left: 5px;
/*  margin-top: 5px;*/
}

#hiddenToggleMessage {
  width: 20px;
  height: 20px;
  margin-left: 5px;
/*  margin-top: 5px;*/
}

#hiddenToggleExercises {
  width: 20px;
  height: 20px;
  margin-left: 5px;
/*  margin-top: 5px;*/
}

#hiddenToggleAssign {
  width: 20px;
  height: 20px;
  margin-left: 5px;
/*  margin-top: 5px;*/
}

#hiddenToggleAssessments {
  width: 20px;
  height: 20px;
  margin-left: 5px;
/*  margin-top: 5px;*/
}

#hiddenToggleGeneral {
  width: 20px;
  height: 20px;
  margin-left: 5px;
/*  margin-top: 5px;*/
}

#hiddenToggleAssistant {
  width: 20px;
  height: 20px;
  margin-left: 5px;
/*  margin-top: 5px;*/
}

#hiddenToggleRemove {
  width: 20px;
  height: 20px;
  margin-left: 5px;
/*  margin-top: 5px;*/
}

#reviewMediaToggle {
  width: 20px;
  height: 20px;
  margin-left: 5px;
/*  margin-top: 5px;*/
}
/* ########### ADD PRODUCT END ############### */

/* ########### ADD PRODUCT BOX START ############### */

.scroll-container {
    background-color: black;
    padding: 10px;
    max-height: 200px; /* Set the desired height */
    overflow-y: auto;
}

.dropdown-container {
	display: flex;
    flex-direction: column;
}

.checkbox-container input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-right: 5px; /* Adjust spacing between checkbox and label */
}


/* ########### ADD PRODUCT BOX END ############### */

/* ########### DISPLAY ALL PROJECT THUMBNAILS START ############### */

.projects-container-home {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
/*    background-color: grey;*/
/*    border-radius: 20px;*/
}

.thumbnail_home_container {
    max-width: 200px; /* 250px */
    width: 100%; /* Added to ensure text centering */
    margin: 10px; /* Adjust margin between projects */
}

.thumbnail_home_container:hover {
    cursor: pointer;
    color: #8fa1af;
}

.banner_image_thumbnail_home {
    margin-top: 2.5%;
    margin-bottom: 4.5%;
    border-radius: 20px;
    width: 100%; /* Fill parent container */
    height: auto; /* Maintain aspect ratio */
    background-color: grey;
    animation-name: animated_reply;
/*    animation-duration: 5s;*/
    max-width: 100%; /* Limit maximum width */
}

.thumbnail_home_info {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center items horizontally */
    margin-top: 10px; /* Adjust margin-top as needed */
}

.thumbnail_home_info p {
    margin: 5px 0; /* Adjust vertical margin as needed */
    text-align: center; /* Center text horizontally */
}

.progress {
    width: 100%; /* Fill parent container */
    height: 10px; /* Decrease height */
    margin-top: 7px; /* Adjust as needed */
    overflow: hidden;
/*    background-color: #f3f3f3;*/
	background-color: black;
    border-radius: 5px;
}

.progress-bar {
    background-color: #4caf50;
/*	background-color: blue;*/
    width: 0%;
    height: 100%;
    transition: width 0.5s ease;
}

.row-container {
/*	flex: row;*/
	flex-direction: row;
	flex-wrap: wrap;
/*	display: flex;*/
}

#filter_status {
	color: white;

/*	background-color: black;*/

/*	background: linear-gradient(to top, rgba(0,0,0,0.8)50%, rgba(0,0,0,0.8)50%);*/
	background-color: #b3c1cb;

	border-radius: 10px;
	border: none;
	font-size: 1em; /* change overall size */
	padding: 10px 30px; /* Adjust padding for the dropdown */
	outline: none;

/*	margin-left: -5px;*/
/*	margin-right: -1px;*/

	position: relative;
	left: -10px;	
}

#filter_status:hover {
	color: #8fa1af;
	cursor: pointer;
}

/* ########### DISPLAY ALL PROJECT THUMBNAILS END ############### */

/* ########### FUNCTION START ############### */

.row-container-spinner {
	display: flex;
	justify-content: space-between;
	width: 100%;
	background-color: #b3c1cb;
}

.spinner {
/*	margin: 100px auto;*/
	width: 50px;
	text-align: center;
	/*position: absolute;
    right: 0;*/
}

.spinner > div {
	width: 10px; /* 18 */
	height: 10px; /* 18 */
/*  background-color: #333;*/
	background-color: white;
	border-radius: 100%;
	display: inline-block;
	-webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
	animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s;
}

.spinner .bounce2 {
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
	0%, 80%, 100% { -webkit-transform: scale(0) }
	40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
	0%, 80%, 100% { 
	-webkit-transform: scale(0);
	transform: scale(0);
  } 40% { 
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}
/* ########### SPINNER FUNCTION END ############### */

/* ########### CHAT START ############### */
.chat-container, .bot-container, .user-container {
    border-radius: 10px;
    padding: 5px 25px;

    /*border-color: #6b8196;
    border-style: solid;
    border-width: 1px;*/
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2); 

    box-sizing: border-box;
    margin: 5px 0;
}

.chat-container {
    background-color: #8fa1af;
    overflow-y: auto;
    flex-shrink: 0;
    height: 350px;
    display: flex;
    flex-direction: column; /* Arrange messages vertically */

    /* Scrollbar styles for Firefox */
    scrollbar-width: thin; /* Thin scrollbar */
    scrollbar-color: #8fa1af #b3c1cb; /* Thumb color and track color */

}

/* Scrollbar styles for webkit browsers */
.chat-container::-webkit-scrollbar {
    width: 12px; /* Width of the scrollbar */
}

.chat-container::-webkit-scrollbar-track {
    background: #b3c1cb; /* Background of the scrollbar track */
}

.chat-container::-webkit-scrollbar-thumb {
    background-color: #8fa1af; /* Color of the scrollbar thumb */
    border-radius: 10px; /* Roundness of the scrollbar thumb */
    border: 3px solid #b3c1cb; /* Border around the scrollbar thumb */
}

.chat-container::-webkit-scrollbar-thumb:hover {
    background: #2e3b4e; /* Darker color of the scrollbar thumb on hover */
}

.bot-container, .user-container {
    display: inline-block;
    max-width: 80%; /* Adjust based on your layout needs */
    word-wrap: break-word;
}

.bot-container {
    background-color: whitesmoke;
    color: #8fa1af;
    align-self: flex-start; /* Align to the left */
    margin-left: 0;
    margin-right: auto;
}

.user-container {
    background-color: #6b8196;
    align-self: flex-end; /* Align to the right */
    margin-left: auto;
    margin-right: 0;
}

.bot-span {
	color: #6b8196;
}

.user-span {
	color: #8fa1af;
}

.view-chat {
/*	justify-content: center;*/
	text-align: center;
	background-color: #b3c1cb;
	border-radius: 8px;
	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2); 
}

.view-chat span {
	font-size: 0.9em;
	color: #6b8196;
}

.overlay {
/*    position: absolute;*/
/*	flex-direction: row;*/
	border-radius: 10px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-align: center;
    z-index: 10; /* Ensure it covers the content */
}

.overlay p {
    margin: 0;
    padding: 20px;
	margin-top: -260px;
    color: darkgray;
    font-size: 24px;


}

/* ########### CHAT END ############### */

/* ########### PROGRESS START ############### */
.progress-container {
    text-align: center;
}

.progress-circle {
    position: relative;
    width: 100px;
    height: 100px;
    margin: auto;
}

.progress-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.progress-circle circle {
    width: 100%;
    height: 100%;
    fill: none;
    stroke-width: 10;
    stroke-linecap: round;
}

.progress-circle .background {
    stroke: #e6e6e6;
}

.progress-circle .progress {
    stroke: #6b8196;
    stroke-dasharray: 314; /* Circumference of the circle */
    stroke-dashoffset: 314; /* Start at 0% progress */
    transition: stroke-dashoffset 0.5s;
}

.progress-circle .percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    font-weight: bold;
}

.progress-text {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
    color: #8fa1af;
}

/* ########### PROGRESS END ############### */

/* ########### FORM CONTAINER START ############### */
.form-container {
    background-color: #6b8196;
    padding: 20px;
    border-radius: 8px;
    max-width: 600px;
    margin: auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: whitesmoke;
    color: #8fa1af;
}
.form-group textarea {
    resize: vertical;
}
.form-group button {
    background-color: #8fa1af;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}
.form-group button:hover {
    background-color: #333f55;
}

/* FORM CONTAINER POPUP */
.modal {
	display: none;
	position: fixed;
	z-index: 3;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
	background-color: #6b8196;
	padding: 20px;
	border-radius: 8px;
	max-width: 800px;
	margin: 100px auto;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.close {
	color: white;
	float: right;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
}

.close:hover,
.close:focus {
	color: #333f55;
	text-decoration: none;
}

.close-assessment {
	color: white;
	float: right;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
}

.close-assessment:hover,
.close-assessment:focus {
	color: #333f55;
	text-decoration: none;
}

/* ########### FORM CONTAINER END ############### */

.subscription-dropdown {
	background-color: #8fa1af;
}

.subscription-dropdown select {
	border-radius: 10px;
}

/* ########### DASHBOARD CONTAINER START ############### */

.dashboard {
	background-color: #8fa1af;
	border-radius: 10px;
	padding: 5px 25px;
	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
}

.dashboard-container {
/*	overflow-y: auto;*/
/*	height: 100%;*/
	flex: 0.5;
	flex-shrink: 0;
	background-color: #b3c1cb;
	border-radius: 10px;
	padding: 5px 25px;
	display: flex;
	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2); 
	flex-direction: column;
}

.dashboard-container h2 {
/*	width: 455px;*/

	text-align: center;	
	color: white;

	background-color: #6b8196;

	height: 50px;
/*	width: 100%;*/
	width: calc(100% + 40px);

	border-radius: 10px;

	margin-left: -20px;
	margin-right: -25px;

	margin-bottom: 30px;
	margin-top: 0px;

	padding: 10px 5px;
	padding-left: 20px;

	/*border-color: gray;
	border-style: solid;
	border-width: 1px;*/
}

.dashboard-container input {
	width: 100%;
	height: 100%;
/*	height: 35px;*/
	height: auto;
	padding-top: 10px;
	margin-bottom: 15px;
	background: transparent;
	border-bottom: 1px solid #6b8196;
	border-top: none;
	border-left: none;
	border-right: none;
	color: #fff;
	font-size: 15px;
	letter-spacing: 1px;
	outline: none;
}

.dashboard-container input:focus {
	outline: none;
}


.dashboard-container .link {
	font-family: Arial, Helvetica, Sans-serif;
	font-size: 17px;
	padding-top: 10px;
	text-align: center;
	color: gray;
}

.dashboard-container .link a {
	text-decoration: none;
	color: #fff;
}

.dashboard-container p {
/*	width: 100%;*/
/*	height: 35px;*/
/*	padding-top: 10px;
	margin-bottom: 15px;
	background: transparent;*/
	/*margin-bottom: 2px;
	border-bottom: 1px solid #6b8196;*/
	/*border-top: none;
	border-left: none;
	border-right: none;*/
/*	color: #fff;*/
/*	margin: 3px;*/
	color: #6b8196;
	font-size: 15px;
	letter-spacing: 1px;
	outline: none;

	white-space: nowrap;
	/*overflow-x: auto;
	overflow-y: hidden;*/
	display: inline-block;
	scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
}


.dashboard-sub-container {
	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
	border-radius: 10px;
	padding: 5px;
} 

/* ########### DASHBOARD CONTAINER END ############### */

/* ########### DASHBOARD MEDIA START ############### */

.main_sub_container {
	display: flex;
	justify-content: center; /* space-between */
	margin: 20px;
	padding: 25px;
	border-radius: 10px;
	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.5); /* (0, 0, 0, 0.2) */
	resize: vertical;
	overflow-y: auto;
	overflow-x: hidden;
	gap: 10px;
}

.media-thumb-container {
	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
	border-radius: 10px;
	padding: 5px;
	/*width: 100px; 
	height: 50px; */
	display: flex;
	align-items: center; /* centers items horizontally */
	justify-content: center; /* centers items vertically */
	text-align: center; /* ensures text inside is centered */
	color: whitesmoke;
	background-color: #8fa1af;
	font-size: 10px;
}

.media-thumb-container-videos {
	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
	border-radius: 10px;
	padding: 5px;
	width: 100px; 
	height: 50px; 
	display: flex;
	align-items: center; /* centers items horizontally */
	justify-content: center; /* centers items vertically */
	text-align: center; /* ensures text inside is centered */
	color: whitesmoke;
	background-color: #8fa1af;
	font-size: 10px;
}

.main_sub_thumb_container_1 {
	display: flex;
	flex-direction: column;
	align-items: center; /* centers items horizontally */
	justify-content: center; /* centers items vertically */
	text-align: center; /* ensures text inside is centered */
	/*width: 150px; 
	height: 150px; */
	box-sizing: border-box; /* ensured padding and border are included in the width and height */
	border-radius: 10px;
	padding: 5px;
	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.5); /* (0, 0, 0, 0.2) */
	color: whitesmoke;
	background-color: #8fa1af;
}

.media-thumb-container img {
	width: 90px; /* fixed width for the image */
  	height: 90px; /* fixed height for the image */
  	object-fit: cover; /* maintains aspect ratio and covers the given dimensions */
  	border-radius: 5px; /* Optional: adds rounded corners to the image */
  	margin: 10px;
}

.media-thumb-container a {
	display: block; /* ensures the link is treated as a block-level element */
	text-align: center; /* ceners the text within the link */
	width: 100%; /* ensures the link takes up the full width of its container */
	white-space: nowrap; /* prevents text from wrapping to a new line */
	font-size: 10px; /* set a base font size */
	text-decoration: none; /* remove underline */

	/* overflow: hidden; hides any overflow text */
	/* text-overflow: ellipsis;  adds ellipsis (...) if the text overflows */
}

.media-thumb-container span {
	display: block; /* ensures the link is treated as a block-level element */
	text-align: center; /* ceners the text within the link */
	width: 100%; /* ensures the link takes up the full width of its container */
	white-space: nowrap; /* prevents text from wrapping to a new line */
	font-size: 10px; /* set a base font size */
	text-decoration: none; /* remove underline */

	/* overflow: hidden; hides any overflow text */
	/* text-overflow: ellipsis;  adds ellipsis (...) if the text overflows */
}

.media-thumb-container:hover {
	background-color: #6b8196;
/*	background: linear-gradient(to top, rgba(0,0,0,0.8)80%, rgba(0,0,0,0.8)80%);*/
	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.5); /* (0, 0, 0, 0.2) */
	cursor: pointer;
	color: white;
}

.main_sub_thumb_container_1:hover a {
	color: white;
}

.media-thumb-container-videos:hover {
	background-color: #6b8196;
/*	background: linear-gradient(to top, rgba(0,0,0,0.8)80%, rgba(0,0,0,0.8)80%);*/
	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.5); /* (0, 0, 0, 0.2) */
	cursor: pointer;
	color: white;
}


/* ########### DASHBOARD MEDIA END ############### */

/* ########### PDF VIEWER START ############### */
.test-instructions {
/*    background-color: #eaf7ff;*/
    color: #007bff;
    padding: 15px;
    border-radius: 5px;
    font-size: 1em;
    text-align: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.test-instructions p {
	word-wrap: break-word;
/*	word-break: break-all;*/
	white-space: normal;
}

#pdf-viewer {
    width: 100%;
    height: 80vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid #ccc;
}
.page-container {
    position: relative;
    margin-bottom: 20px;
}
.pdf-canvas, .draw-canvas {
    position: absolute;
    left: 0;
    top: 0;
}
#page-info {
    position: fixed;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.7);
    padding: 5px 10px;
    border-radius: 5px;
}
/* ########### PDF VIEWER END ############### */

/* ########### MENTAL HEALTH PROGRESS START ############### */
.chart-container {
    width: 80%;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #b3c1cb;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    min-height: 300px;
}
.message {
    text-align: center;
    color: #666;
    margin-bottom: 10px;
    font-style: italic;
}

.empty-state {
    text-align: center;
    padding: 20px;
}

.empty-message {
    margin-bottom: 20px;
}

.empty-message h3 {
    color: whitesmoke;
    margin-bottom: 10px;
    font-size: 1.5em;
}

.empty-message p {
    color: #666;
    margin-bottom: 20px;
}

.start-button {
    display: inline-block;
    background-color: #4A90E2;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s;
    border: none;
    cursor: pointer;
}

.start-button:hover {
    background-color: #357ABD;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .chart-container {
        width: 95%; /* Wider width on mobile */
        padding: 15px 10px; /* Less padding on mobile */
        margin: 10px auto; /* Less margin on mobile */
        min-height: 350px; /* Ensure enough height for the chart */
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .chart-container {
        width: 98%; /* Almost full width on very small screens */
        padding: 10px 5px;
        margin: 5px auto;
    }
}
/* ########### MENTAL HEALTH PROGRESS END ############### */


/* ########### MEDIA CONTENT START ############### */

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    justify-items: center;
}


.modal-video {
	display: none;
	position: fixed;
	z-index: 3;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.4);
}

.modal-content-video {
	background-color: #6b8196;
	padding: 20px;
	border-radius: 8px;
	max-width: 800px;
	margin: 100px auto;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	justify-items: center;
}

.close-video {
	color: white;
	float: right;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
}

.close-video:hover,
.close-video:focus {
	color: #333f55;
	text-decoration: none;
}

/* ########### MEDIA CONTENT PROGRESS END ############### */


/* ########### RESPONSIVE ############### */


/* Styles for screens with a max width of 600px */
@media screen and (max-width: 600px) {
    .btnn {
	font-size: 14px;
	.btnn_2 {
	font-size: 14px;
	.btnn_3 {
	font-size: 14px;
}

/* Styles for screens with a max width of 400px */
@media screen and (max-width: 400px) {
    .btnn {
	font-size: 14px;
	.btnn_2 {
	font-size: 14px;
	.btnn_3 {
	font-size: 14px;
}

/*@media screen and (max-width: 900px) {
	.responsive-logo {
		width: 100%;
	}
}
*/

