

.career-intro {
    text-align: justify;
}

.career-intro-container {
    flex-grow: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
	margin-bottom: 5px;
    /*display: block;*/
}

.intro-icon {
    width: 50px;
    display: inline-block;
}

.intro-icon.icon-left {
    /*float: left;*/
    margin-right: 20px;
}
.intro-icon.icon-right {
    /*float: right;*/
    margin-left: 20px;
}
.intro-icon img {
    width: 100%;
}

.intro-text {
    display: inline-block;
}
.career-intro p {
    line-height: 1.2;
	margin-bottom: 10px;
}




/*
Skills list
*/

/* Circular skill */
.circular-skills-container {
    max-width: 500px;
	flex-grow: 1;
}
.circular-skills-container h3 {
	text-align: center;
	margin-bottom: 20px;
}
.circular-skills-inner-container {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    -moz-column-gap: 20px;
    -webkit-column-gap: 20px;
	justify-content: space-evenly;
}
.circular-skills-container .circular-skill-visual {
	position: relative;
}
.circular-skills-container .circular-skill-item {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 150px;
}

.circular-skills-container .circular-skill-item svg {
	width: 124px;
	height: 124px;
}
.circular-skills-container .circular-skill-item svg circle {
	width: 100%;
	fill: none;
	/*transform: translate(12px, 12px);*/
}

.circular-skills-container .outer-bar {
	stroke: #EEE;
	stroke-width: 14px;
}
.circular-skills-container .inner-bar {
	stroke: orange;
	stroke-width: 10px;
	stroke-dasharray: 1000;
	transform: rotate(-90deg) translate(-124px, 0px);
	stroke-linecap: round;
}

.circular-skills-container .inner-bar.skill-percent-analytical {
	stroke-dashoffset: calc(1000 - (345 * 92) / 100);
}
.circular-skills-container .inner-bar.skill-percent-problemsolving {
	stroke-dashoffset: calc(1000 - (345 * 80) / 100);
}
.circular-skills-container .inner-bar.skill-percent-feedback {
	stroke-dashoffset: calc(1000 - (345 * 87) / 100);
}
.circular-skills-container .circular-skill-item {
	margin-top: 10px;
	margin-bottom: 10px;
}
.circular-skills-container .circular-skill-item img {
	position: absolute;
	width: 45px;
	top: calc((124px / 2) - (45px / 2));
	left: calc((124px / 2) - (45px / 2));
}
.circular-skills-container .bar {
	width: 100%;
	text-align: center;
	margin-top: 10px;
	white-space: nowrap;
}

/* Linear skill */
.linear-skills-container {
    display: flex;
    flex-wrap: wrap;
    column-gap: 50px;
    -moz-column-gap: 50px;
    -webkit-column-gap: 50px;
	margin-bottom: 10px;
}

.linear-skills-container .skills-inner-container {
    width: 350px;
	flex-grow: 1;
}
.linear-skills-container .skills-inner-container h3 {
	margin-left: 10px;
	margin-bottom: 10px;
	margin-top: 20px;
	text-align: center;
}

/* Animation keyframes */
@keyframes load{
	from {
	  width: 0%
	}
  }
  @-webkit-keyframes load{
	from {
	  width: 0%
	}
  }
  @-moz-keyframes load{
	from {
	  width: 0%
	}
  }
  @-o-keyframes load{
	from {
	  width: 0%
	}
  }

  .linear-skills-container .outer-bar{
	background-color: #EEE;
	padding: 2px;
	border-radius: 15px;
	margin-bottom: 5px;
	font-size: 14px;
	font-weight: bold;
	/*text-shadow: 1px 1px 1px rgba(0,0,0,0.5);*/
  }
  .linear-skills-container .bar{
	color: rgba(0, 0, 0, 0.8);
	background-color: orange;
	display: inline-block;
	padding: 5px 0 5px 10px;
	border-radius: inherit;
	animation: load 2s 0s;
	-webkit-animation: load 2s 0s;
	-moz-animation: load 2s 0s;
	-o-animation: load 2s 0s;
	width: 100%;
	white-space: nowrap;
  }



/*
Timeline
*/

/*
Grand container
*/
.container {
	margin-left: 25px;
}


/*
Entry container
*/
.timeline {
	margin-left: 20px;
}
.timeline-event{
	position: relative;
	padding-bottom: 10px;
}
.timeline-event:first-child {
	padding-top: 20px;
}
.timeline-event:last-child {
	padding-bottom: 30px;
}


.timeline-event:before {
	content: "";
	float: left;
	position: absolute;
	left: -20px;
	top: 10px;
	border: 4px solid orange;
	border-radius: 100%;
	background-color: white;
	width: 10px;
	height: 10px;
	z-index: 2;
}
.timeline-event:first-child:before {
	top: 30px;
}
.timeline-event:after {
	content: "";
	position: absolute;
	left: -12px;
	top: 0px;
	width: 4px;
	bottom: 0px;
	background-color: rgba(0,0,0,0.2);
}
.timeline-event:first-child:after {
	background-image: linear-gradient(to bottom, rgba(0,0,0,0) 0px, rgba(0,0,0,0.2) 75px);
	background-color: unset;
	top: -20px;
}
.timeline-event:last-child:after {
	background-image: linear-gradient(to top, rgba(0,0,0,0) 0px, rgba(0,0,0,0.2) 75px);
	background-color: unset;
}
	
@media (min-width: 900px) {
	.timeline-margin-double .timeline-event{
		margin-left: 200px;
	}
	.timeline-margin-single .timeline-event{
		margin-left: 100px;
	}
}

/*
timeline-timecontainer/time block
*/
.timeline-timecontainer {
	padding: 10px;
	padding-bottom: 0;
}
@media (min-width: 900px) {
	.timeline-timecontainer {
		position: absolute;
		top: 0px;
		left: -240px;
		text-align: right;
		width: 200px;
	}
	.timeline-event:first-child .timeline-timecontainer {
		top: 20px;
	}
}
.timeline-year {
	display: inline;
	font-weight: bold;
}
.timeline-year:after {
	display: inline;
	content: "\2014";
	margin-left: 15px;
	margin-right: 12px;
}
.timeline-company {
	display: inline;
	font-style: italic;
}
@media (min-width: 900px) {
	.timeline-year {
		display: block;
	}
	.timeline-year:after {
		display: none;
	}
	.timeline-company {
		display: block;
	}
}

/*
Text block
*/

.timeline-description {
	padding: 10px;
}
.timeline-description.timeline-description_has-intent {
	margin-left: 25px;
}
@media (min-width: 900px) {
	.timeline-description.timeline-description_has-intent {
		margin-left: 0;
	}
}