/* Add here all your CSS customizations */
/*Часы на шапку*/
.clock {
  width: 120px;
  height: 120px;
  border: solid 5px #CAD2D9;
  border-radius: 50%;
  position: relative;
  background: #407BE5;
  margin-left:auto;
}

.dot {
  
  width: 10px;
  height: 10px;
  position: absolute;
  border-radius: 50%;
  top: calc(50% - 5px);
  left: calc(50% - 5px);
  background: #FAFAFA;
  z-index: 5;
}

.spire {
  position: absolute;
}

.hour {
  top: calc(50% - 37.5px);
  left: calc(50% - 2.5px);
  width: 5px;
  height: 40px;
  border-radius: 0 0 5px 5px;
  background: #FAFAFA;
  z-index: 4;
  transform-origin: 1.5px 37.5px;
  transition: transform 2s ease;
}

.min {
  top: calc(50% - 57.5px);
  left: calc(50% - 2.5px);
  width: 5px;
  height: 60px;
  border-radius: 0 0 5px 5px;
  background: #FAFAFA;
 box-shadow: 0.4em 0.4em 10px rgba(0,0,0,0.3);
  z-index: 3;
  transform-origin: 1.5px 57.5px;
  transition: transform 1s ease;
}


.sec {
  top: calc(50% - 57.5px);
  left: calc(50% - 1.25px);
  width: 2.5px;
  height: 60px;
  border-radius: 0 0 2.5px 2.5px;
  background: #47443F;
  z-index: 2;
  transform-origin: 1.25px 57.5px;
  transition: transform .5s ease;
}

/*Кнопки*/
.partition {
	margin:15px 0;
	display: table;	
}
			
.partition a {
	color: #1d2127;		
	text-decoration:none;
} 
		
.partition .par-box{
	border:3px solid #0088cc;
	border-radius: 10px;		
	border-top-color: #0088cc;
	background-color: #0088cc;
    color: #fff;		
	box-shadow: 0 0 5px rgba(161,181,202,0.7);		
}
			
.partition .par-box .par-text{	
	min-height: 90px;	
	line-height: 25px;		
	display: table-cell;
	vertical-align: middle;	
}

.partition .par-padding-font{	
	padding:15px 7px;
	font-size:18px;
	text-align:center;
}

		
.partition .par-box .par-text span{				
	font-size: 25px;		
	
}
	
.partition .par-box .par-icon  {
	font-size: 48px;
	display: table-cell;
	vertical-align: middle;			
}
			
.partition .par-box .par-icon i.fa {
	font-size: 48px;
	 color: #fff;	
	float: left;
	display:inline-block;	
	line-height: 90px;	
	text-align: center;
	width: 74px;
			
}

