


.print-btn{
	position: fixed; /* make it always available fixed at bottom right */

	bottom: 15px;
	right: 20px;

	z-index: 3;
	transition: all 0.34s;
    display: inline-flex;
    gap: 12px;
    background: rgba(255,255,255,0.8)
}
.print-btn:hover{
	opacity: 0.5
}
#resume .profile {
	display: flex;
	border-radius: 10px 10px 0 0;
	padding: 2vh 1vw;
	align-items: center;
	justify-content: center;
	gap: 5px;
	.profile-description {
		padding: 1vw;
		h1{
			margin-top: 0;
			text-align: left;
			width: 100%;
			font-weight: 600;
		}
	
		p{
			font-size: var(--default-font-size);
			line-height: 37px;
			text-align: left;
			margin-top: 20px;
		}
	}
}
.resume-wrapper {
	height: fit-content;
}
.resume-description{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap-reverse;
	height: 100%;
	gap: 20px;
}
.resume-description .left{
	padding: 10px;
	word-break:break-word;
	background: #ddd;
	border-radius: 10px;

}

.left, .right{
    flex: 1;
    min-width: 400px;   
}




/* smaller screen tablet and phones */
@media only screen and (max-width: 885px) {
	.left {
		width: 100%;
	}
	#resume .profile {
		flex-wrap: wrap;
		padding-top: 1vw;
	}
	#resume .profile .profile-image-container{
		width: 100%;
	}
	#resume .profile .profile-image-container img{
		width: 100%;
		border-radius: 5px;
	}
}
.left-spacer{
	padding: 10px;
}
.resume-description .flexer{
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 10px;
	margin-top: 10px;
}

/* icon*/
.resume-description .flexer i{
	background: rgba(255,255,255,0.1);
	padding: 10px;
	color: #555;
	height: 35px;
	width: 35px;
	text-align: center;
	align-content: center;
	border-radius: 50%;
	font-size: 16px;
}
.resume-description {
	word-wrap: break-word;
}
.education span{
	display: block;
	font-size: 16px;
}
.expertise li, .education p{
	font-size: calc(var(--default-font-size) - 2px);
	color: #333;
	line-height: 35px;
}
.expertise ul{
	padding: 0 20px;
	margin: 0;
}
.resume-description .left h3{
	margin: 0;
	font-weight: 600;
	padding: 5px 0;
	color: #555;
	font-size: calc(var(--default-font-size) + 1px);
}
.resume-description .right{

    padding: 10px;
	flex-basis: 300px;
	display: flex;
	flex-direction: row;
	height:auto;
	width: auto;
	gap: 10px;
    min-width: 400px;
}


/* long visual chronoligical indicator */
.guide-rail{
	height: 100%;
	width: 10px;
	background: linear-gradient(180deg, transparent 0% 1%, #aaa 10% 90%, transparent 98% 100%);
}
.resume-description h2{
	font-weight: 500;
	margin: 0;
}
.title-creative {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 20px;
}
.title-creative h2{
	flex:0 0 auto;
	font-size: 30px;
}

/* fill the space after the header */
.title-creative div{
	height: 5px;
	width: 100%;
	border-radius: 10px;
	background: rgba(0, 0, 0, 0.294);
}
#resume .sectioner{
	padding: 17px 15px;
	border-radius: 6px;
}
.company-setup{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding:0 10px;
	border-radius: 5px;
	.company-name{
		font-size: calc(var(--default-font-size) - 2px);
		font-weight: 500;
		color: #666;
		line-height: 24px;
	}
	.job-name{
		margin-top:3px;
		font-size: calc(var(--default-font-size) + 1.7px);
		font-weight: 600;
	}
	.year{
		color: #555;
		font-weight: 600;
		font-size: 18px;
		margin-bottom: 0;
		font-size: calc(var(--default-font-size) - 3px);
		position: relative;
	}
}
/* semi circle year indicators*/
.year:after{
	content: "";
	position: absolute;
	height: 20px;
	width: 10px;
	border-radius: 50%;
	left: -42.5px;
	top: 2.5px;
	background: white;
	border:2px solid #aaa;
	box-shadow: 0 0 0 2px white;
}
.job-description p{
	padding: 0px 13px;
	margin-top: 10px;
	line-height: 33px;
	font-size: calc(var(--default-font-size) - 1px);
	position: relative;
	color: #333;
}


/*

different style for clean printing: 
Remove unncessary buttons, nav bars, footers, paddings, margins.]

*/
@media print{
	nav, footer{
		display: none;
	}
	.top-section{
		padding: 0%
}
	.resume-description .left{
		width: 100%;
		background-color: #ddd!important;
		-webkit-print-color-adjust: exact!important;
		page-break-inside: avoid !important;
		break-inside: avoid !important;
	}
	.profile{
		margin-top: 0;
		margin-bottom: 0;
	}
	.guide-rail{
		-webkit-print-color-adjust: exact!important; /* overrwite to use origina lbackground*/
	}
	.resume-description{
		flex-direction: column-reverse
}
	.title-creative div {
		-webkit-print-color-adjust: exact!important;
	}
	.print-btn{
		display: none
}
}



table{
    text-align: left;
    width: 100%;
}


table, td, th{
    border-bottom: 2px solid rgba(0, 0, 0, 0.15);
    border-collapse: collapse;
    padding: 10px;
}

td:nth-child(even){
    border-left:2px solid rgba(0, 0, 0, 0.15);
}