/** © Artem Malcov **/

.black_button * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.black_button *:before, .black_button *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.black_button {
	height: 61px;
    width: 265px;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    border-radius: 99px;
    background: #ffffff;
    background: -moz-linear-gradient(top, #313131 0%, #242424 100%);
    background: -webkit-linear-gradient(top, #313131 0%, #242424 100%);
    background: linear-gradient(to bottom, #00897b 0%, #00897b 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#313131", endColorstr="#242424", GradientType=0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: .2s;
    margin: 0 auto;
}

.black_button:hover {
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
	transition: .2s;
}

.black_button_one {
	color: #ffffff;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 25px;
    height: 60px;
    line-height: 60px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
    width: 200px;
    margin: 0 auto;
    text-align: center;
}

.left_button span {
	font-size: 13px;
}

.black_button_progress {
	width: 200px;
    margin: 0 auto;
    color: #ffffff;
    font-family: "Roboto Condensed", sans-serif;
    display: none;
}

.right_button {
	font-size: 24px;
	float: left;
	width: 60px;
	text-align: right;
	height: 60px;
	line-height: 60px;
}

.left_button {
	float: left;
	width: 140px;
	padding: 8px 0 0 0;
}

.progress_bar {
	background: #ffffff;
    border-bottom: 1px solid #ffffff;
    height: 10px;
    border-radius: 99px;
    box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.5);
    padding: 2px 0 0 0;
    margin: 7px 0 0 0;
}

.progress_line {
	background: #2c4c7f;
	background: -moz-linear-gradient(left,  #2c4c7f 0%, #c95cc6 50%, #f7b401 100%);
	background: -webkit-linear-gradient(left,  #2c4c7f 0%,#c95cc6 50%,#f7b401 100%);
	background: linear-gradient(to right,  #2c4c7f 0%,#c95cc6 50%,#f7b401 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2c4c7f", endColorstr="#f7b401", GradientType=1);
	height: 5px;
	margin: 0 2px 0 2px;
	border-radius: 99px;
	position: relative;
	max-width: 136px;
	width: 0;
}

.progress_line div {
	position: absolute;
	height: 1px;
	background: #fff;
	border-radius: 99px;
	opacity: 0.4;
	left: 1px;
	right: 1px;
}