@charset "utf-8";
/* CSS Document */


.circle-timeline #circle{
   
position: relative;
  display: block;
	width : 100%;
	height : 100%;
	border-radius : 50%;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    border-radius: 100%;
  background-color: transparent;
	  margin: 4em 0;
	text-align: center;
	

    box-sizing: border-box;
    text-align: center;
    display: block;
    padding: 5px;
}

.circle-timeline .circle .largetext {
  color: #245B82;
	font-family: arial;
	font-size: 5em;
}

.circle-timeline #area {
    width: auto;
    height: 100%;
}

.circle-timeline #blue_circle, .circle-timeline #yellow_circle, .circle-timeline #gray_circle, .circle-timeline #green_circle, .circle-timeline #red_circle {
    position: relative;
    width: 200px;
    height: 200px;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    background: transparent;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.5), inset 2px 2px 4px rgba(0,0,0,.5);
    -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), inset 2px 2px 4px rgba(0,0,0,.5);  
    -moz-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), inset 2px 2px 4px rgba(0,0,0,.5);
}

.circle-timeline #blue_circle {
    border: 8px solid #1C3564;
    z-index: 1;
	
	 -webkit-transition: all 1s ease-out;
    -moz-transition: all 1s ease-out;
    -o-transition: all 1s ease-out;
    transition: all 1s ease-out;
	 background-color: transparent;
}

.circle-timeline #blue_circle p {
    border: 8px solid #1C3564;
    z-index: 1;
	right:590px;
}



.circle-timeline #gray_circle {
    border: 8px solid #999999;
    z-index: 1;
    left: 180px;
    top: -220px;
	 -webkit-transition: all 1s ease-out;
    -moz-transition: all 1s ease-out;
    -o-transition: all 1s ease-out;
    transition: all 1s ease-out;
	 background-color: transparent;
	
}


.circle-timeline #red_circle {
    border: 8px solid #991B1E;
    z-index: 1;
    left: 370px;
	 -webkit-transition: all 1s ease-out;
    -moz-transition: all 1s ease-out;
    -o-transition: all 1s ease-out;
    transition: all 1s ease-out;
	 background-color: transparent;
}



.circle-timeline #blue_p, .circle-timeline #gray_p, .circle-timeline #red_p {
    position: absolute;
    width: 90px;
    height: 90px;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    z-index: 3;
}

.circle-timeline #blue_p {
    border: 8px solid #1C3564;
    border-bottom-color: transparent;
    border-top-color: transparent;
    border-left-color: transparent;
	right:190px;
}

.circle-timeline #gray_p {
    border: 8px solid #991B1E;
    border-bottom-color: transparent;
    border-top-color: transparent;
    -webkit-transform: rotate(-46deg);
    -moz-transform: rotate(-46deg);
    -ms-transform: rotate(-46deg);
    -o-transform: rotate(-46deg);
    transform: rotate(-46deg);
    left:110px;
}

.circle-timeline #red_p {
    border: 8px solid #991B1E;
    border-left-color: transparent;
    border-top-color: transparent;
    border-right-color: transparent;
    left:290px;
}

.circle-timeline .circle:after {
  display: block;
  padding-bottom: 100%;
  width: 100%;
  height: 0;
  border-radius: 50%;
  background-color: #ddd;
  content: "";
}

.circle-timeline .circle__inner {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.circle-timeline .circle__wrapper {
  display: table;
  width: 100%;
  height: 100%;
}

.circle-timeline .circle__content {
  display: table-cell;
  padding: 2em;
  vertical-align: middle;
	color: #245B82;
	font-family: arial;

	  font-weight: bold;
	
	/*border-bottom: 1px solid #245B82;*/
}

.circle-timeline .circle__content p {
  
	color: #245B82;
	font-family: arial;
  font-weight: bold;
	/*border-bottom: 1px solid #245B82;*/
}

@media (min-width: 480px) {
  .circle-timeline .circle__content {
    font-size: 1em;
    text-align: center;
  }
}

@media (min-width: 768px) {
  .circle-timeline .circle__content {
    font-size:  1em;
    text-align: center;
  }
	
	 .circle-timeline .circle__content .bigger{
    font-size:  2em;
  }
}

@media screen and (max-width: 600px) {
  .circle-timeline #gray_circle {
    width: 120px;
    height: 120px;
    left: 102px;
    top: -135px;
    border: 4px solid #999999;
  }

  .circle-timeline #red_circle {
    width: 120px;
    height: 120px;
    left: 210px;
    top: -6px;
    border: 4px solid #991B1E;
  }


  .circle-timeline #blue_circle {
    width: 120px;
    height: 120px;
    border: 4px solid #1C3564;

  }

  .circle-timeline .circle__content {
    font-size:  .7em;
    text-align: left;
  }
  
  .circle-timeline .circle__inner {
    left: 7px;
	}
  
  
}

