#code_bar {
	font-family: "Open Sans", sans-serif;
}
#code_bar .main_container {
	position: relative;
	background: #445155;
	min-width: 540px;
	width: 540px;
	margin: 0 auto;
	padding: 20px;
	box-sizing: border-box;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
/*intro step*/
#intro_step {
	/*display: none;*/
	position: relative;
	border: 1px solid #edcd1b;
	border-radius: 3px;
	height: 100%;
	min-height: 280px;
	text-align: center;
}
#intro_step .intro_title {
	margin-top: 90px;
	font-weight: 300;
	font-size: 18px;
	color: #edcd1b;
}
#intro_step .lang_buttons_container {
	margin: 38px auto 0 auto;
	width: 380px;
}
.lang_button,
.lang_chosen {
	font-size: 11px;
	font-weight: 600;
	color: #fff;
	padding: 10px 15px;
	margin-left: 10px;
	border: 1px solid #edcd1b;
	background: #445155;
	border-radius: 3px;
	float: left;
	transition: border-color 0.2s linear;
	-webkit-transition: border-color 0.2s linear;
	-moz-transition: border-color 0.2s linear;
	-o-transition: border-color 0.2s linear;
}
.lang_button:hover {
	border-color: #fff;
	cursor: pointer;
}

/*code step*/
#code_step {
	display: none;
}
#code_step .branch_button {
	width: 24px;
	height: 22px;
	background: url(code_bar_icons.png) no-repeat;
	background-position: 0 0;
	cursor: pointer;
	float: left;
}
#code_step .branch_button:hover {
	background: url(code_bar_icons.png) no-repeat;
	background-position: -24px 0;
}
#code_step .wide_button {
	width: 24px;
	height: 22px;
	background: url(code_bar_icons.png) no-repeat;
	background-position: -48px 0;
	cursor: pointer;
	float: right;
}
#code_step .wide_button:hover {
	background: url(code_bar_icons.png) no-repeat;
	background-position: -73px 0;
}
#code_step .branch_tip {
	left: -95px;
	display: none;
	position: relative;
}
#code_step .wide_tip {
	right: 55px;
	display: none;
	position: relative;
}
#code_step .button_tip:after {
	content: "";
	display: block;
	position: absolute;
	width: 0; 
	height: 0; 
	top: 6px;
	right: -6px;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	border-left: 6px solid #a1a1a1;
}
#code_step .branch_button:hover .branch_tip,
#code_step .wide_button:hover .wide_tip {
	display: block;
}
#code_step .button_tip {
	position: absolute;
	font-size: 11px;
	padding: 4px;
	font-weight: 600;
	color: #445155;
	background: #a1a1a1;
	border-radius: 3px;
}
#code_step .lang_switcher {
	float: left;
	margin-left: 10px;
}
#code_step .lang_buttons {
	padding: 0;
	margin: 0;
	list-style-type: none;
	display: none;
	float: left;
}
#code_step .lang_buttons.open {
	display: block!important;
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
#code_step .lang_button {
	padding: 5px 10px;
}
#code_step .lang_button:hover {
	border-color: #fff;
	cursor: pointer;
}
#code_step .lang_chosen {
	padding: 5px 10px;
	border-color: #b9bcbe;
	color: #b9bcbe;
	cursor: default;
	display: block;
	float: left;
	transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
}
#code_step .lang_chosen:hover {
	border-color: #fff;
	color: #fff;
	cursor: pointer;
}
#code_step .code_container {
	margin-top: 35px;
}
#code_step .num_col {
	float: left;
	text-align: right;
	width: 15px;
}
#code_step .code_col {
	float: left;
	margin-left: 30px;
	position: relative;
}
#code_step .num_col span {
	color: #a1a1a1;
	font-size: 13px;
	line-height: 22px;
	font-weight: 300;
	display: block;
}
#code_step .code_col code {
	font-size: 13px;
	font-family: 'Open Sans', sans-serif;
	line-height: 22px;
	letter-spacing: 0.03em;
	font-weight: 300;
	color: #fff;
	white-space: pre;
	-webkit-touch-callout: auto;
	-webkit-user-select: auto;
	-khtml-user-select: auto;
	-moz-user-select: auto;
	-ms-user-select: auto;
	user-select: auto;
}
span.grey {color: #9f9f9f;}
span.red {color: #f55d59;}
span.yellow {color: #ffd400;}
span.blue {color: #6abaef;}
span.purple {color: #e863ca;}
span.green {color: #59be7a;}

#php_code,
#python_code,
#ruby_code,
#node_code,
#iframe_code {
	display: none;
}
.code_container {
	height: 180px;
}
.code_active {
	-webkit-animation-duration: 1.5s;
	animation-duration: 1.5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	display: block!important;
}
@-webkit-keyframes fadeIn {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
@keyframes fadeIn {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
.fadeIn {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
}
.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
/* code loader */
.running {
	-webkit-animation-play-state: running!important;
	animation-play-state: running!important;
	visibility: visible;
}
.paused {
	-webkit-animation-play-state: paused!important;
	animation-play-state: paused!important;
	visibility: hidden;
}
.divider {
	display: inline-block;
	height: 1px;
	width : 540px;
	background: #9f9f9f;
	opacity: .2;
	float: right;
	position: absolute;
	top: 60px;
	left: 0;
}
.loader {
	display: inline-block;
	height: 1px;
	width : 540px;
	float: right;
	position: absolute;
	top: 60px;
	left: 0;
	z-index: 10;
}
.loader .line {
	display: block;
	position: relative;
	width: 0;
	height: 100%;
	background: rgba(237, 205, 27, 1);
	-webkit-animation: stretch 1.0s infinite;
	animation: stretch 1.0s infinite;
	-webkit-animation-play-state: paused;
	animation-play-state: paused;
	z-index: 11;
}
@-webkit-keyframes stretch {
	0%   {width: 0%;}
	100% {width: 100%;}
}
@keyframes stretch {
	0%   {width: 0%;}
	100% {width: 100%;}
}

@-webkit-keyframes fadeInLeftOne {
  0% {-webkit-transform: translateX(-5px);
    transform: translateX(-5px);}
  100% {-webkit-transform: translateX(0);
    transform: translateX(0);}
}
@-webkit-keyframes fadeInLeftTwo {
  0% {-webkit-transform: translateX(-40px);
    transform: translateX(-40px);}
  100% {-webkit-transform: translateX(0);
    transform: translateX(0);}
}
@-webkit-keyframes fadeInLeftThree {
  0% {-webkit-transform: translateX(-90px);
    transform: translateX(-90px);}
  100% {-webkit-transform: translateX(0);
    transform: translateX(0);}
}
@-webkit-keyframes fadeInLeftFour {
  0% {-webkit-transform: translateX(-150px);
    transform: translateX(-150px);}
  100% {-webkit-transform: translateX(0);
    transform: translateX(0);}
}
@-webkit-keyframes fadeInLeftFive {
  0% {-webkit-transform: translateX(-200px);
    transform: translateX(-200px);}
  100% {-webkit-transform: translateX(0);
    transform: translateX(0);}
}

.fadeInLeftOne {animation-name: fadeInLeftOne; -webkit-animation-name:fadeInLeftOne;}
.fadeInLeftTwo {animation-name: fadeInLeftTwo; -webkit-animation-name:fadeInLeftTwo;}
.fadeInLeftThree {animation-name: fadeInLeftThree; -webkit-animation-name:fadeInLeftThree;}
.fadeInLeftFour {animation-name: fadeInLeftFour; -webkit-animation-name:fadeInLeftFour;}
.fadeInLeftFive {animation-name: fadeInLeftFive; -webkit-animation-name:fadeInLeftFive;}