/* DASHBOARD STYLES */
.sidemenu {
	width: 100%;
	min-width: 240px;
	height: auto;
	position: fixed;
	bottom: 0;
	box-shadow: 0 0px 10px rgba(0, 0, 0, .15);
	z-index: 301;
}

.links {
	height: auto;
	overflow-y: auto;
	scrollbar-width: none;
	padding-top: 0;
	padding-bottom: 0;
}

.links ul {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	justify-content: space-between;
	align-items: center;
	align-content: center;
}

.links ul li i {
	font-size: 24px;
}

.links ul li.disabled a,
.links ul li.disabled i {
	color: var(--grey-2);
	pointer-events: none;
}

.nav-item-btn {
	padding: 10px 6px;
	color: var(--black);
	background-color: var(--white);
	border-radius: 8px;
	transition: color .2s ease, background-color .2s ease;
}

.nav-item-btn span:not(.dropdown-menu .nav-item-btn span) {
	font-size: 12px;
}

.nav-item-btn:disabled {
	color: var(--grey-2);
}

.nav-item-btn:hover {
	background-color: transparent;
	color: var(--primary-hover);
}

.nav-item-btn:active,
.nav-item-btn.active {
	background-color: transparent;
	color: var(--primary-active);
}

.nav-item-btn i {
	font-size: 20px;
	color: var(--grey-3);
	transition: color .2s ease;
}

.nav-item-btn:hover i {
	color: var(--primary-hover);
}

.nav-item-btn:active i,
.nav-item-btn.active i {
	color: var(--primary-active);
}

.nav-item-btn.active {
	justify-content: space-between;
}

.nav-item-btn.active .message-notifications span,
.nav-item-btn:active .message-notifications span {
	background-color: var(--primary-active);
	color: var(--white);
}

.message-notifications span {
	display: inline-block;
	position: absolute;
	top: 18px;
	width: 20px;
	height: 20px;
	background-color: var(--primary);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 500px;
	color: white;
	font-size: 10px;
	transition: color .2s ease, background-color .2s ease;
}

@media (min-width: 768px) {
	.sidemenu {
		height: 100%;
		top: 0;
		width: 257px;
		position: fixed;
		box-shadow: none;
	}

	.content {
		max-width: calc(100% - 257px);
		margin-left: auto;
		height: 100%;
	}

	.links {
		height: calc(100vh - 80px);
		padding-top: 12px;
		padding-bottom: 12px;
	}

	.links ul {
		display: flex;
		flex-direction: column;
		gap: 4px;
		align-items: start;
		width: 100%;
	}

	.links ul li {
		width: 100%;
	}

	.links ul li i {
		font-size: 20px;
	}

	.nav-item-btn {
		padding: 10px 12px;
	}
	
	.nav-item-btn span:not(.dropdown-menu .nav-item-btn span):not(.message-notifications span) {
		font-size: 16px;
	}

	.nav-item-btn:hover {
		background-color: var(--outline-light);
		color: var(--black);
	}
	
	.nav-item-btn:hover i {
		color: var(--grey-3);
	}

	.nav-item-btn:active,
	.nav-item-btn.active {
		background-color: var(--primary);
		color: var(--white);
	}

	.message-notifications span {
		position: static;
	}
	
	.nav-item-btn.active .message-notifications span,
	.nav-item-btn:active .message-notifications span {
		background-color: var(--white);
		color: var(--primary);
	}

	.nav-item-btn:active i,
	.nav-item-btn.active i {
		color: var(--white);
	}

}

/* TOP BAR / CONTENT HEADER */
.user-img {
	width: 40px;
	height: 40px;
}

.user-img img {
	border: 4px solid var(--primary);
}

.dropdown-btn[aria-expanded="true"] button > .icon::before {
	transform: rotate(-180deg);
}

.dropdown-menu {
	transform: translate(0px, 40px) !important;
	border-color: var(--outline-light);
	border-radius: 8px;
}

.top-bar .dropdown-menu li:first-child {
	padding: 10px 12px;
}

.dropdown-menu p {
	line-height: 1;
}

.top-bar .dropdown-menu {
	--bs-dropdown-min-width: 250px;
}


/* PROFILE STRENGTH BAR */
.progress-bar {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	width: 60%;
	height: 8px;
	border-radius: 2px;
	gap: 2px;
}

.progress-box {
	--progress-box-bg: var(--bg-clr, var(--grey-1));
	
	display: block;
	background-color: var(--progress-box-bg);
	width: 8px;
	height: 100%;
}

.progress-bar.strength-1 .progress-box {
	--bg-clr: #E54B2A;
}

.progress-bar.strength-2 .progress-box {
	--bg-clr: #e5652a;
}

.progress-bar.strength-3 .progress-box {
	--bg-clr: #FF7C4B;
}

.progress-bar.strength-4 .progress-box {
	--bg-clr: #FF7C4B;
}

.progress-bar.strength-5 .progress-box {
	--bg-clr: #FFD43C;
}

.progress-bar.strength-6 .progress-box {
	--bg-clr: #EFFF3C;
}

.progress-bar.strength-7 .progress-box {
	--bg-clr: #D8FF3C;
}

.progress-bar.strength-8 .progress-box {
	--bg-clr: #9DD66F;
}

.publish-profile-icon {
	width: 48px;
	height: 48px;
	background-color: var(--grey-1);
	border-radius: 500px;
}

.publish-profile-icon i {
	color: var(--grey-3);
	font-size: 24px;
}

.more-options-btn.dropdown-toggle {
	padding-left: 12px;
	padding-right: 12px;
}

.more-options-dropdown .dropdown-menu {
	transform: translate(0px, 50px) !important;
	padding: 8px;
}

.more-options-dropdown .dropdown-menu button {
	padding: 10px 12px;
}

.more-options-dropdown .dropdown-menu button:hover {
	color: var(--primary) !important;
}

.more-options-dropdown .dropdown-menu button:hover i {
	color: var(--primary) !important;
}

.more-options-dropdown .dropdown-menu button:active {
	color: var(--primary-active) !important;
}

.more-options-dropdown .dropdown-menu button:active i {
	color: var(--primary-active) !important;
}


.more-options-btn.secondary-btn:hover {
	border-color: var(--primary);
}

.more-options-btn.secondary-btn:hover {
	border-color: var(--primary);
}

.more-options-btn.dropdown-toggle::after {
	display: none;
}

@media (max-width: 560px) {
	.profile-strenght {
		flex-direction: column;
		gap: 16px;
	}

	.profile-strenght button {
		width: 100%;
	}

	.profile-strenght .preview-link {
		width: 100%;
	}

	.progress-bar {
		width: 100%;;
	}
}

@media (min-width: 992px) {
	.progress-bar {
		width: 300px;
	}

	.publish-profile-icon {
		width: 64px;
		height: 64px;
		background-color: var(--grey-1);
	}
	
	.publish-profile-icon i {
		color: var(--grey-3);
		font-size: 32px;
	}
}

@media (min-width: 1200px) {

	.publish-profile-icon {
		width: 96px;
		height: 96px;
		background-color: var(--grey-1);
	}
	
	.publish-profile-icon i {
		color: var(--grey-3);
		font-size: 40px;
	}
}

@media (min-width: 1280px) {
	.progress-bar {
		width: 469px;
	}

	
}

.profile-strength-info .info-message-box {
	max-width: 500px;
	min-width: 250px;
	height: min-content;
	visibility: hidden;
	opacity: 0;
	left: 0px;
	top: 30px;
	transition: opacity .3s ease;
}

.profile-strength-info i:hover + .info-message-box {
	visibility: visible;
	opacity: 1;
}

.profile-strength-info i.active + .info-message-box {
	visibility: visible;
	opacity: 1;
}

/* MY PROFILE CONTENT */
.myProfile-content {
	max-height: calc(100vh - 191px);
	overflow-y: auto;
	border-radius: 9px;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
	padding-bottom: 80px;
	-ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
}

.myProfile-content::-webkit-scrollbar { 
    display: none;  /* Safari and Chrome */
}

.myProfile-section {
	margin-bottom: 4px;
	border-radius: 8px;
	background-color: var(--white);
	border: 1px solid var(--outline-light);
}

.section-header {
	padding: 10px 20px;
}

.myProfile-section:last-child {
	margin-bottom: 0;
}

.status-icon {
	display: none;
}

.fields-status span:last-child {
	display: none;
}

.fields-status.missing-nice-to-have {
	background-color: var(--grey-1);
}

.fields-status.missing-nice-to-have .status-icon.icon-Nice-to-have-2 {
	display: inline-block;
}

.fields-status.missing-required {
	background-color: var(--error-light);
}

.fields-status.missing-required .status-icon.icon-Info {
	display: inline-block;
}

.fields-status.missing-desired {
	background-color: var(--yellow-light);
}

.fields-status.missing-desired .status-icon.icon-Desired {
	display: inline-block;
}

.fields-status.checked {
	background-color: var(--green-light);
}

.fields-status.checked .status-icon.icon-Check {
	display: inline-block;
}

.section-dropdown-icon {
	background-color: transparent;
}

.icon-Dropdown::before {
	transition: transform .2s ease;
}

.section-header[aria-expanded="true"] .icon-Dropdown::before,
.section-dropdown-icon[aria-expanded="true"] .icon-Dropdown::before {
	transform: rotate(-180deg);
}

.section-body-wrapper {
	padding: 16px;
}

.info-message-box {
	display: flex;
	align-items: center;
	width: fit-content;
	max-width: 900px;
	height: 0%;
	overflow: hidden;
	gap: 12px;
	padding: 8px;
	font-size: 14px;
	border-radius: 8px;
	background-color: var(--primary-light)
}

.sector-item {
	width: max-content;
}

@media (min-width: 380px) {
	.profile-strength-info .info-message-box {
		left: 0px;
		top: 30px;
		min-width: 310px;
	}
}

@media (min-width: 640px) {
	.profile-strength-info .info-message-box {
		left: 150px;
		top: auto;
		min-width: 310px;
	}
}

@media (min-width: 768px) {
	.myProfile-content {
		height: 100%;
		border-radius: 9px;
		border-bottom-right-radius: 0;
		border-bottom-left-radius: 0;
	}
	
	.fields-status span:last-child {
		display: inline-block
	}
	
	.section-body-wrapper {
		padding: 24px 20px;
	}
}

@media(min-width: 1200px) {
	.myProfile-content {
		max-height: calc(100vh - 179px);
	}

	.info-message-box {
		height: 100%;
	}
}

/* PITCH DECK */
.file-icon {
	width: 44px;
	height: 44px;
	flex-shrink: 0;
}

.file-icon i {
	font-size: 24px;
}

.files_container, .uploaded_files_container {
	border: 1px dashed var(--outline);
	display: flex;
}

.files_container.empty, .uploaded_files_container.empty{
	display: none;
}

.uploaded_file {
	min-width: 100px;
	max-width: 200px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.uploaded_file button {
	top: 4px;
	right: 4px;
	padding: 8px;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.uploaded_file button i {
	transition: color .2s ease;
}

.uploaded_file button:hover i {
	color: var(--primary);
}

.uploaded_file button:active i {
	color: var(--primary-active);
}

.uploaded_file .file_name {
	max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}



/* FUNDRAISING - PREVIOUS AND FUTURE ROUNDS */
/* .new-previous-round .round-wrapper .row:nth-child(2),
.new-future-round .future-round-wrapper .row:nth-child(2) {
	margin-top: 16px !important;
}
 */
.prev-stage-select {
	color: var(--grey-2);
	font-size: 14px;
}

.prev-stage-select option:not(:first-of-type) {
	color: var(--black);
	font-size: 16px;
}

.prev-stage-select option:first-of-type {
	font-size: 16px;
}

.prev-stage-select.active {
	color: var(--black);
	font-size: 16px;
}

/* @media (min-width: 1200px) {
	.new-previous-round .round-wrapper .row.title,
	.new-future-round .future-round-wrapper .row.title {
		margin-bottom: -24px !important;
	}
} */



/* MY PROFILE - UPDATES */
.update-box .update-description {
	word-wrap: break-word;
}

/* MY PROFILE - DATA ROOM */
.data-room-options.disabled {
	opacity: .4;
	pointer-events: none;
}



/* MY PROFILE - TEAM */
.team-member-img-placeholder {
	width: 88px;
	height: 88px;
	border-radius: 500px;
	border: 1px dashed var(--outline);
	display: flex;
	justify-content: center;
	align-items: center;	
}

.editable-div {
	border-bottom: 1px solid red;
}

.legend-info {
	display: grid;
	grid-template-columns: 58px 1fr;
}

.legend-info > div.missing-nice-to-have {
	background-color: var(--grey-1);
}

.legend-info > div.missing-nice-to-have .status-icon.icon-Nice-to-have-2 {
	display: inline-block;
}

.legend-info > div.missing-required {
	background-color: var(--error-light);
}

.legend-info > div.missing-required .status-icon.icon-Info {
	display: inline-block;
}

.legend-info > div.missing-desired {
	background-color: var(--yellow-light);
}

.legend-info > div.missing-desired .status-icon.icon-Desired {
	display: inline-block;
}

.legend-info > div.checked {
	background-color: var(--green-light);
}

.legend-info > div.checked .status-icon.icon-Check {
	display: inline-block;
}

/**********************************************************************
                Snackbar
***********************************************************************/

#snackbar {
    visibility: hidden;
    width: auto;
	max-width: 500px;
    color: #fff;
    border-radius: 10px;
    padding: 16px;
    position: fixed;
    z-index: 9990;
    right: 1rem;
    bottom: 86px;
}

#snackbar i {
	position: relative;
	z-index: 2;
}

#snackbar i:after {
	position: absolute;
	content: '';
	width: 20px;
	height: 20px;
	left: 50%;
	top: 45%;
	transform: translate(-50%, -50%);
	border-radius: 500px;
	background-color: white;
	z-index: -1;
}

.show-snackbar {
    visibility: visible !important;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
    from {bottom: 56px; opacity: 0;}
    to {bottom: 86px; opacity: 1;}
}

@keyframes fadein {
    from {bottom: 56px; opacity: 0;}
    to {bottom: 86px; opacity: 1;}
}

@-webkit-keyframes fadeout {
    from {bottom: 86px; opacity: 1;}
    to {bottom: 56px; opacity: 0;}
}

@keyframes fadeout {
    from {bottom: 86px; opacity: 1;}
    to {bottom: 56px; opacity: 0;}
}

@-webkit-keyframes fadein-desktop {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
}

@keyframes fadein-desktop {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout-desktop {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}

@keyframes fadeout-desktop {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}


@media (min-width: 992px) {
	#snackbar {
		right: 1rem;
		bottom: 2rem;
	}

	.show-snackbar {
		-webkit-animation: fadein-desktop 0.5s, fadeout-desktop 0.5s 2.5s;
		animation: fadein-desktop 0.5s, fadeout-desktop 0.5s 2.5s;
	}

}
