/* ══════════════════════════════════════════════════════════════
	Work Tote css
══════════════════════════════════════════════════════════════ */
html, body {
	background: var(--page-bg);
}
::-webkit-scrollbar-thumb {
	background: var(--rdr-blue-sapphire);
	background: var(--background-b-gray);
}
.no-border {
	border: none !important;
}
.no-bg {
	background: transparent !important;
}
.pill-btn {
	font-size: 14px;
	font-weight: 500;
	line-height: normal;
	font-family: var(--fm2);
	padding: 5px 12px;
	border-radius: 20px;
	border: 1px solid var(--border1);
	cursor: pointer;
	color: var(--white);
	background: none;
	transition: all .12s;
	white-space: nowrap;
}
.content-scroll {
    overflow: auto;
    overflow-x: hidden;
}
.wt-wrappercontent {
	overflow: auto;
    overflow-x: hidden;
	max-height: calc(100vh - 50px);
	max-height: calc(100dvh - 50px);
}
.wt-mainContainer {
	background: var(--page-bg);
	position: relative;
	min-height: auto;
	height: 100%;
	max-width: 1500px;
	margin: 0 auto;
	
	overflow: auto;
    height: 100%;
	
	[data-tooltip]::after {
		left: -55%;
	}
	
	.main-section {
		padding: 20px 30px;
		position: relative;
		background: transparent;
		display: flex;
		flex-direction: column;
		gap: 15px;
	}
}
.content-body {
	display: flex;
    flex-direction: column;
    gap: 15px;
}
.card-head {
	padding: 15px;
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 5px;
	border-bottom: 1px solid var(--border1);
	
	h2 {
		font-size: 18px;
		font-weight: 500;
		line-height: normal;
		margin: 0;
		color: var(--indigo);
		color: var(--rdr-ruby);
	}
	.additional-cta {
		color: var(--bluesapphire);
	    font-size: 14px;
	    font-weight: normal;
	    line-height: normal;
	    display: flex;
	    align-items: center;
	    gap: 10px;
		
		h2,
		a {
			color: inherit;
		    font-size: inherit;
		    font-weight: normal;
		    text-decoration: none;
		    display: flex;
		    align-items: center;
		    gap: 5px;
		}
		a {
			font-size: 15px;
			color: var(--rdr-blue-sapphire);
			text-decoration: none;
			cursor: pointer;
		}
		.sub-text {
			color: rgb(138, 137, 137);
            font-size: 12px;
            font-weight: normal;
            line-height: normal;
            display: flex;
            align-items: center;
            gap: 5px;
            white-space: nowrap;
		}
	}
	i {
		display: inline;
		line-height: normal;
	}
    .preview-iconBox {
		width: 22px;
		height: 22px;
		border-radius: 50%;
		font-weight: 900;
		display: flex;
		justify-content: center;
		align-items: center;
		color: var(--rdr-blue-sapphire);
		background: #fff;
		cursor: pointer;
		transition: 0.5s ease;
		border: 1px solid var(--rdr-blue-sapphire);
	}
}
.dash-grid {
	display: grid;
	gap: 15px;
	grid-template-columns: minmax(0,1fr) minmax(0,1fr);
}
.wt-cardParent {
	background: var(--white);
	border-radius: var(--r10);
	border: 1px solid var(--border1);
	overflow: hidden;
	
	.wt-card {
		width: 100%;
		height: 100%;
		padding: 0;
		padding-bottom: 15px;
	}
}
.card-body {
	position: relative;
	padding: 0 15px;
}
.wt-table {
	width: 100%;
    border-collapse: collapse;
    font-size: 16px;
    table-layout: fixed;
	border: 1px solid var(--border1);
	
	thead th {
		text-align: center;
		padding: 8px 12px !important;
		color: var(--text);
		font-weight: normal;
		font-size: 14px;
		font-weight: normal;
		line-height: normal;
		border: 1px solid var(--border1);
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		background: var(--bg3);
		letter-spacing: 1px;
	}
    tbody tr {
		position: relative;
		height: auto;
		font-size: 14px;
		font-weight: normal;
		line-height: normal;
		padding: 0;
		text-align: center;
	}
	tbody tr:hover {
	    box-shadow: none;
	}
	tbody td {
		padding: 12px;
		border: 1px solid var(--border1);
		vertical-align: middle;
		overflow: hidden;
		color: var(--text);
	    
		a {
			color: var(--rdr-blue-sapphire);
			font-size: 16px;
			font-weight: 500;
			cursor: pointer;
			text-align: left;
			white-space: normal;
			word-break: break-word;
		}
		.pill-btn {
			font-size: 14px;
			font-weight: 500;
			line-height: normal;
			font-family: var(--fm2);
			padding: 5px 12px;
			border-radius: 20px;
			border: 1px solid var(--border1);
			cursor: pointer;
			color: var(--white);
			background: none;
			transition: all .12s;
			white-space: nowrap;
		}
		.block {
			display: flex;
			align-items: center;
			justify-content: center;
			gap: 5px;
		}
		.dash {
			span {
				background: var(--background-c-gray);
                display: inline-block;
                width: 18px;
                height: 2px;
                border-radius: var(--r4);
			}
		}
	}
	.abs-text {
		position: absolute;
		left: 0;
		top: 0;
		padding: 2px 10px !important;
		font-size: 10px;
		font-weight: normal;
		font-weight: 500;
		border-radius: 3px;
		color: #333;
		font-style: italic;
	}
	.noData {
		font-size: 14px;
		font-weight: normal;
		line-height: normal;
		text-align: left;
		color: var(--background-gray-30);
	}
}

@media only screen and (min-width: 768px) {
	.scroll-50 {
	    max-height: calc(100vh - 50px);
	}
	.scroll-120 {
	    max-height: calc(100vh - 120px);
	}
}
@media (max-width: 768px) {
	.card-body {
		max-height: max-content !important;
	}
	.dash-grid {
		grid-template-columns: minmax(0,1fr);
	}
	.wt-table {
		border: none;
		
		colgroup,
		thead {
			display: none;
		}
		tbody {
			display: flex;
			flex-wrap: wrap;
			gap: 15px;
			align-items: center;
            justify-content: center;
		}
		
		tbody tr {
			width: 100%;
	        display: flex;
	        gap: 10px;
	        align-items: center;
	        justify-content: center;
	        flex-direction: column;
	        max-width: 300px;
            border-radius: var(--r10);
            padding: 25px 15px;
            border: 1px solid var(--border1);
	        
	        td {
				border: none;
				text-align: center;
				width: 100%;
				padding: 0;
				
				.wt-jobpreview {
					text-align: center;
				}
				a {
					text-align: center;
				}
			}
		}
	}
	.ellipsisL1,
	.ellipsisL2 {
		-webkit-line-clamp: none;
	}
}
* {
	margin:0;
	padding:0;
	box-sizing:border-box;
}
* {
	margin:0;
	padding:0;
	box-sizing:border-box;
}
body {
	color: #333;
	line-height: normal;
	font-family: "Poppins", sans-serif;
}
section#header {
	margin: 0;
	min-height: 60px;
}
.wt-wrappercontent {
	max-height: calc(100vh - 60px);
	max-height: calc(100dvh - 60px);
}
.candidate-profile {
	position: relative;
	padding: 30px 15px;
	display: flex;
	gap: 15px;
	flex-direction: column;
	max-width: 1400px;
	margin: 0 auto;
}
.segment {
	background: var(--white);
	margin-bottom: 0;
	padding: 15px;
	flex-shrink: 0;
	border-radius: var(--r20);
	box-shadow:0 2px 10px rgba(0, 0, 0, 0.08);
	
	h2 {
		color: var(--rdr-cosmic-cobalt);
		margin-bottom: 15px;
		border-bottom: 1px solid var(--border1);
		padding-bottom: 15px;
		font-size: 20px;
		font-weight: 600;
		line-height: normal;
		color: var(--txt5);
		display: flex;
		align-items: center;
		gap: 5px;
		
		i {
			font-size: inherit;
			padding-right: 5px;
			font-weight: normal;
			line-height: inherit;
		}
	}
	.rubby {
          color: var(--rdr-rubby);
      }
	h6 {
		font-size: 14px;
		font-weight: 500;
		color: var(--txt4);
		margin: 0 0 9px;
	}
	.employmentItems,
	.educationItems,
	.projectItems,
	.certificationItems {
		.project-item {
			.item-description {
				margin: 0;
				padding: 0;
				padding-top: 15px;
				line-height: normal;
				color: var(--txt4);
				font-size: 16px;
				font-weight: normal;
			}
			.tags {
				flex-direction: column;
			}
			.tag {
				padding: 0;
				background: transparent;
				border: 0;
				border-radius: 0;
                font-size: 16px;
				font-weight: 500;
				line-height: normal;
				display: flex;
				align-items: baseline;
				gap: 15px;
				color: var(--txt5);
			}
		}
	}
	.employmentItems {
		position: relative;
		
		.project-item {
			position: relative;
			padding: 0 15px;
			padding-left: 30px;
			margin-bottom: 20px;
			
			.tag {
				span {
					max-width: none;
					width: 200px;
					flex-shrink: 0;
				}
			}
			.tag:nth-child(1) {
				font-size: 18px;
				font-weight: 500;
				margin: 0;
			}
		}
		.project-item .tags::before {
			content: "";
			position: absolute;
			left: 5px;
			top: 8px;
			width: 13px;
			height: 13px;
			border-radius: 50%;
			background: var(--white);
			box-shadow: 0 0 0 1.5px var(--rdr-cosmic-cobalt);
		}
		.project-item:first-child .tags::before {
			background: var(--rdr-cosmic-cobalt);
		}
		.project-item:last-child {
			padding-bottom: 0;
			margin-bottom: 0;
		}
	}
	.employmentItems::before {
		content: "";
		position: absolute;
		left: 10px;
		top: 10px;
		bottom: 10px;
		width: 2px;
		background: var(--indigo-tint);
	}
	.educationItems,
	.projectItems,
	.projectItems-main,
	.certificationItems {
		display: grid;
		gap: 15px;
		grid-template-columns: 1fr;
		
		.project-item {
			position: static;
			padding: 15px;
			background: var(--white);
			border: 1px solid var(--border1);
			border-left: 3px solid var(--rdr-cosmic-cobalt);
			border-radius: var(--r20);
			
			.tags { 
				position: static;
				display: grid;
				grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
				gap: 15px 20px;
			}
			.tag {
				position: static;
				flex-direction: column;
				gap: 5px;
				margin: 0;
				font-weight: 500;
				align-items: flex-start;
			}
		}
	}
	/* Skills */
	.skills-grid {
		display:grid;
		grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
		gap:20px;
	}
	.skill-list {
		list-style: none;
		margin: 0;
		display: flex;
		align-items: center;
		gap: 15px;
		flex-wrap: wrap;
		
		.tag {
			span {
				display: none;
			}
		}
	}
	ul.skill-list {
		margin-bottom: 20px;
	}
	.educationItems {
		.project-item {
			border-left: 3px solid var(--rdr-emerald);
		}
	}
	.projectItems-main {
		.project-item {
			display: flex;
			flex-direction: column-reverse;
			gap: 5px;

			.tag {
				flex-wrap: wrap;
				display: flex;
				justify-content: center;
				background: var(--bg2);
			}
			.item-description {
				padding: 0;
			}
		}
	}
	.certificationItems {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
		gap: 14px;
  
		.project-item {
			border: 1px solid var(--border1);
			
			.tags {
				display: flex;
				gap: 5px;
			}
			.tag {
				flex-direction: row;
				gap: 10px;
				
				span {
					max-width: none;
					width: 150px;
					flex-shrink: 0;
				}
			}
			.tag.tag-link {
				max-width: fit-content;
				padding: 5px 15px;
				border-radius: var(--r20);
				margin-bottom: 10px;
			}
		}
	}
}
/* Profile */
.profile-header {
	display:flex;
	flex-wrap:wrap;
	align-items:center;
	gap:25px;
}
.image-sec {
	width: 140px;
	height: 140px;
	border-radius: 50%;
	border: 3px solid var(--rdr-cosmic-cobalt);
	flex-shrink: 0;
	padding: 5px;
	overflow: hidden;
	box-sizing: border-box;
	
	#profile_photo {
		width: 100%;
		height: 100%;
		object-fit: contain;
		border-radius: 0;
		display: block;
	}
}
.profile-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0;
}
.profile-info h1 {
	font-size: 24px;
	color: var(--rdr-cosmic-cobalt);
	font-weight: 600;
	line-height: normal;
	
	span {
		font-size: inherit;
		color: inherit;
		font-weight: inherit;
		line-height: inherit;
	}
}
#headline {
	color: var(--txt1);
	font-size: 16px;
	margin: 8px 0 0;
	font-weight: 500;
	line-height: normal;
}
.bio_short {
	font-size: 13px;
	color: var(--txt4);
	margin: 2px 0 0;
}
.contact-links {
	margin-top: 10px;
	display: flex;
	flex-wrap: wrap;
	gap: 4px 20px;
	font-size: 14px;
	color: var(--txt4);
	
	.contacts {
		display: flex;
		align-items: center;
		gap: 5px;
		font-size: 14px;
		color: var(--txt4);
		
		a {
			font-size: inherit;
			font-weight: inherit;
			text-decoration: none;
			color: var(--rdr-cosmic-cobalt);
		}
		a:hover {
			text-decoration: underline;
		}
		i {
			color: inherit;
			font-size: inherit;
		}
	}
	.github,
	.linkedin {
		i {
			color: var(--rdr-cosmic-cobalt);
		}
	}
}
/* Summary */
.summary-grid {
	display:grid;
	grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
	gap:15px;
}
.summary-card {
	background: var(--bg2);
	border-radius: var(--r10);
	padding: 10px 15px;
	
	strong {
		display: block;
		margin-bottom: 5px;
		font-size: 14px;
		letter-spacing: .5px;
		font-weight: 500;
		color: var(--txt3);
	}
	div {
		font-size: 16px;
		font-weight: 500;
		color: var(--rdr-cosmic-cobalt);
		line-height: normal;
		color: var(--txt5);
	}
}
/* Employment */
.employment-card,
.project-card,
.education-card,
.certification-card{
	border-left:5px solid #2563EB;
	padding:20px;
	margin-bottom:20px;
	background:#fafafa;
	border-radius:8px;
}
.company_name,
.project-title,
.certification-name{
	font-size:20px;
	font-weight:bold;
	color:#111827;
}
.job-title{
	color:#2563EB;
	font-weight:600;
}
.date-range{
	color:#666;
	margin:8px 0;
}
.achievement-list,
.tool-list,
.tech-list{
	padding-left:20px;
}
.achievement-list li,
.tool-list li,
.tech-list li{
	margin-bottom:5px;
}
/* Projects */
.project-card{
	border-left-color:#06B6D4;
}
/* Certifications */
.certification-card{
	border-left-color:#10B981;
}
/* Career Intelligence */
.career-intelligence {
	display:grid;
	grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
	gap:20px;
}
.metric {
	background: var(--bg2);
	text-align: center;
	padding: 10px 15px;
	border-radius: var(--r10);
	
	div {
		display: block;
		letter-spacing: .5px;
		font-size: 14px;
		font-weight: 500;
		color: var(--txt3);
	}
	.metric-value {
		font-size: 28px;
		font-weight: 600;
		line-height: normal;
		margin-bottom: 4px;
		color: var(--rdr-cats-eye);
	}
}
/* Footer */
.metadata {
	font-size: 14px;
	color: var(--txt4);
}
.tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.tag {
	font-size: 14px;
	line-height: normal;
	font-weight: 500;
	padding: 5px 15px;
	border-radius: var(--r20);
	
	span {
		font-size: 14px;
		letter-spacing: .5px;
		font-weight: 500;
		color: var(--txt3);
	}
}
.tag-tech {
	background: var(--indigo-light);
	border-color: var(--indigo-light);
	color: var(--rdr-cosmic-cobalt);
	color: var(--txt5);
}
.tag-link {
	background:#eef6ff;
}
.tag-link {
	background: var(--blue-l) !important;
	border-color: var(--blue-l) !important;
}
.tag-link a {
	display: flex;
	align-items: center;
	gap: 4px;
	text-decoration: none;
	color: var(--rdr-cosmic-cobalt);
	font-weight: 600;
	font-size: 16px;
	width: 100%;
	
	i {
		font-size: 18px;
		padding-right: 5px;
	}
}
/* Mobile */
@media(max-width:768px) {
	section#header {
		min-height: 50px;
	}
	.wt-wrappercontent {
		max-height: calc(100dvh - 50px);
	}
	.profile-header {
		flex-direction:column;
		text-align:center;
	}
	.profile-info h1 {
		font-size:28px;
	}
}
@media only screen and (max-width: 420px) {
	.segment {
		.employmentItems,
		.certificationItems {
			.project-item {
				.tag {
					flex-direction: column;
					gap: 5px !important;
				}
			}
		}
	}
}