/**
 * @package         JD Process
 * @version         1.0
 * @author          JoomDev <support@joomdev.com>
 * @link            https://www.joomdev.com
 * @copyright       Copyright © 2018 Regular Labs All Rights Reserved
 * @license         http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
 */

/* Process
=========================== */
.process-wrapper .rounded-circle{
	font-family:Oswald,Arial,Helvetica,sans-serif;
	background: #fff;
    border: 1px solid #ffffff;
    font-size: 42px;
    height: 100px;
    line-height: 90px;
    display: inline-block;
	border-radius: 100px;
    text-align: center;
    webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    width: 100px;
    z-index: 1;
	position: relative;
	color: #171717;
	font-weight: 600;
}
.process-wrapper .rounded-circle:hover{
	background: #e43935;
	color: #fff;
	cursor: pointer;
	border: 1px solid #e43935;
	webkit-box-shadow: 0 0 25px 50px #e43935 inset;
    -moz-box-shadow: 0 0 25px 50px #e43935 inset;
    -ms-box-shadow: 0 0 25px 50px #e43935 inset;
    -o-box-shadow: 0 0 25px 50px #e43935 inset;
    box-shadow: 0 0 25px 50px #e43935 inset;
}
.working-process .row{
	position: relative;
}
.working-process .row:after{
	border-top: 2px solid rgba(255, 255, 255, 0.26);
	content: "";
	display: block;
	left: 0;
	position: absolute;
	right: 0;
	top: 100px;
}
/* Responsive Css */
@media screen and (max-width:992px) {
	.working-process .row:after{
		content: none;
	}
}