/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Oct 07 2023 | 08:30:23 */
/*** MHT PROJECT CUSTOMIZATION ***/

/*** MAIN THEME COLOR VARIABLES BEGIN ***/
/*
	--e-global-color-primary: #17161A;
	--e-global-color-secondary: #54595F;
	--e-global-color-text: #7A7A7A;
	--e-global-color-accent: #D22730;
*/

/*** MAIN THEME FONT VARIABLES ***/
/*
	--e-global-typography-primary-font-family: "Roboto";
	--e-global-typography-primary-font-weight: 600;
	--e-global-typography-secondary-font-family: "Roboto Slab";
	--e-global-typography-secondary-font-weight: 400;
	--e-global-typography-text-font-family: "Roboto";
	--e-global-typography-text-font-weight: 400;
	--e-global-typography-accent-font-family: "Roboto";
	--e-global-typography-accent-font-weight: 500;
*/


/* Portfolio Styles Begin */
/*.page-container.top-offset { margin-top: 2.5rem; } /* Main Portfolio Archive */

.portfolio-filter { padding: 2.5rem 0 3rem 0; font-size: 1rem; } /* Portfolio Filter */

.project { margin-bottom: 5rem; } /* Main Project Maring */

.single:not(.with-spacer):not(.with-header-5):not(.with-header-6):not(.with-header-7) .project.-layout4 .project-content {
	/* margin-top: 12vh; */
	margin-top: 0;
}

.project-content .options-group { font-size: 1rem; } /* Project Fields Font Size */

.options-group.-unlist { /*margin-bottom: 1.25rem;*/ }
.options-group li { min-width: calc(53% - 1.75rem); margin: 0; padding: 0; border: none !important; } /* Custom fields */
.options-group li p { /*margin: 0 !important;*/ margin: 0 0 1.25rem 0 !important }

.headline { font-size: 3rem; } /* Project Title */

.project-details { /*margin-top: 3rem;*/ } /* Description Top Margin */

.project-details p { margin: 1rem 0; font-size: 1rem; } /* Project Desc ription Font Size */

.project-title .headline { padding-bottom: 1rem; } /* Project Title */
/* Portfolio Styles End */


/* Feature Icons Begin */
.feature-icons {
/*	width: 150px; */
/*	width: 36px;*/
/*	height: auto;*/
/*	height: 30px;*/
/*	margin: 1.25rem 0 3rem 0;*/
	margin-bottom: 3rem;
	display: flex;
}

.feature-icons img {
	/*margin-right: 0.5rem;*/
	height: 25px;
	width: 25px;
}
/* Feature Icons End */


/* Style the tooltip container */
.tooltip-container {
	position: relative;
	display: inline-block;
	margin-right: 10px; /* Adjust as needed */
}

/* Style the tooltip text */
.tooltip {
	visibility: hidden;
/*	background-color: rgba(0, 0, 0, 0.7); /* Tooltip background color */
/*	backdrop-filter: saturate(180%) blur(50px); /* Tooltip backdrop filter */
/*	-webkit-backdrop-filter: saturate(180%) blur(50px); /* Tooltip backdrop filter */
	background-color: #000000;
	color: white;
	text-align: center;
	border-radius: 4px;
	padding: 4px 8px;
	position: absolute;
	z-index: 1;
	bottom: 135%;
	left: 50%;
	transform: translateX(-50%);
	white-space: nowrap;
	opacity: 0;
	transition: opacity 0.2s;
}

/* Show the tooltip on hover */
.tooltip-container:hover {
    cursor: pointer;
}

.tooltip-container:hover .tooltip {
	visibility: visible;
	opacity: 1;
}

.tooltip::before {
	background-color: #000000;
/*	background-color: rgba(0, 0, 0, 0.7); /* Tooltip background color */
/*	backdrop-filter: saturate(180%) blur(50px); /* Tooltip backdrop filter */
/*	-webkit-backdrop-filter: saturate(180%) blur(50px); /* Tooltip backdrop filter */
}
