@import url('https://fonts.googleapis.com/css?family=Roboto:100,200,300,400,500,600,700,800,900');
@import url('https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900');
@import url('https://fonts.googleapis.com/css?family=Montserrat+Alternates:300,400,500,600,700,800');
@import url('https://fonts.googleapis.com/css?family=Rubik:300,400,500,700,900');


*,
*:after,
*::before {
	box-sizing: border-box;
	margin:0px;
	padding:0px;
}

body{
	background: #fff;
    font-family: 'Rubik', sans-serif;
    color:#0c121f;
    overflow-x: hidden;
}
h1,h2,h3,h4,h5{
	font-family: 'Poppins', sans-serif;
}
/*ganti warna*//*color:#ea6825;*/
a{
	
	color:#f31212;
}
/* LOADING */
.kotak-loading{
	position: fixed;
	top:0;
	left:0;
	bottom:0;
	right:0;
	background: #fff;
	z-index: 999;
	visibility: hidden;
	opacity: 0;
	transition: .3s ease;
}
body.loading .kotak-loading{
	visibility: visible;
	opacity: 1;
}
.kotak-loading .loader{
	width: 50px;
	height: 50px;
	position: fixed;
	top:50%;
	left:50%;
	transform: translate(-50%,-50%);
	border-radius: 50%;
	border:3px solid #eee;
	border-top:3px solid #ea6825;
	animation:kotakLoading 1s linear infinite;
}
@keyframes kotakLoading{
	from{
		transform: translate(-50%,-50%) rotate(0deg);
	}
	to{
		transform: translate(-50%,-50%) rotate(360deg);	
	}
}
/* LAYOUT */

/* GENERAL */
.nomargin{
	margin:0;
}
.nopadding{
	padding:0;
}
.thumbnail{
	padding:0;
	border-radius: 0;
	margin:0;
	border:none;
	background: none;
}
/* BUTTON */
.btn:hover{
	opacity: 0.9;
}
.btn.btn-primary{
	background: #008BE7;
	border:1px solid transparent;
}
.btn.btn-rounded{
	border-radius: 50px;
}
.btn.btn-wide{
	padding-left: 30px;
	padding-right: 30px;
}
.btn-outline-info{
	border:1px solid #008FE7;
	background: none;
	color:#008FE7;
	font-weight: 200;
}
.btn-outline-info:hover{
	background: #008FE7;
	color:#fff;
}
.btn.btn-animate{
	position: relative;
	transition: .3s ease;
}
.btn.btn-animate .fa{
	margin-left: -15px;
	opacity: 0;
	visibility: hidden;
	transition: .3s ease;
}
.btn.btn-animate:hover .fa{
	margin-left: 15px;
	opacity: 1;
	visibility: visible;
}
.btn-social{
	padding:0;
	width: 40px;
	height: 40px;
	line-height: 40px;
	border-radius: 50%;
	text-align: center;
}
/*ganti warna*/
header{
	background:transparent;
	min-height: auto;
}
header .navbar-nav li a{
	color:#fff;
}
/*ganti warna*/
header .navbar-top{
	background: #f31212;
}
header .navbar-top .navbar-nav li a{
	text-transform: uppercase;
	font-weight: 300;
	font-size:12px;
	background: none!important;
}
header .navbar-top .navbar-nav li a:hover{
	background: rgba(255,255,255,0.1)!important;
}
header .navbar-top .navbar-nav li a .fa{
	font-size:20px;
	display: inline-block;
	vertical-align: middle;
	margin:-3px 5px 0 0;
}
/*ganti warna*/
header .navbar-top .navbar-nav li a .badge{
	/*background: #c0392b;*/
	background: #080808;
	color:#fff;
	padding:0;
	width: 25px;
	height: 25px;
	line-height: 25px;
	text-align: center;
	border-radius: 50%;
	position: absolute;
	top:0;
	left:30px;
	font-size:10px;
	font-family: sans-serif;
}
header .navbar-text{
	color:#fff;
	font-weight: 300;
	font-size:12px;
	text-transform: uppercase;
}
header .navbar-logo{
	padding:15px 0;
}
header .navbar-logo .input-group .form-control{
	width: 400px;
}

header .navbar-header .navbar-brand{
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	color:#fff;
	font-size:30px;
}
/*ganti warna*/
header .navigation{
	background: #f31212;
	box-shadow: 0px 3px 5px rgba(0,0,0,0.1);
	position: relative;
	z-index: 10;
}
header .navigation .navbar-nav > li{
	position: relative;
}
header .navigation .navbar-nav > li > a{
	text-transform: uppercase;
	transition: .3s ease;
	background: none!important;
}
header .navigation .navbar-nav > li > a:hover{
	background: rgba(255,255,255,0.1)!important;
}
header .navigation .navbar-nav > li.active > a{
	background: rgba(255,255,255,0.1)!important;
}
header .navigation .navbar-nav > li > ul{
	position: absolute;
	top:100%;
	left:0;
	background: #fff;
	border:1px solid #eee;
	border-top:none;
	padding:15px;
	list-style: none;
	margin:0;
	visibility: hidden;
	opacity: 0;
	transition: .3s ease;
}
header .navigation .navbar-nav > li:hover > ul{
	visibility: visible;
	opacity: 1;
}
header .navigation .navbar-nav > li > ul li a{
	color:#333;
	min-width: 200px;
	display: block;
	padding:10px;
	text-decoration: none;
	border-bottom: 1px solid #eee;
}
header .navigation .navbar-nav > li > ul li:last-child a{
	border:none;
}
header .navigation .navbar-nav > li > ul li a:hover{
	background: #f5f5f5;
}
header.float .navigation{
	position: fixed;
	top:0;
	left:0;
	right:0;
	z-index: 999;
	animation:showNav .5s ease;
}

.navbar-search{
	margin-top: 30px;
}

@keyframes showNav{
	0%{
		transform: translateY(-100%);
	}
	100%{
		transform: translateY(0);
	}
}
#intro{
	padding:30px 0;
}
.row-intro{
	display: flex;
	flex-direction: row;
	flex:1;
	flex-wrap: nowrap;
}
.row-intro > div{
	float: none;
}
#slider{
	margin-bottom: 30px; 
	background: #eee;
}
#slider .slide{
	position: relative;
	height: 400px;
}
#slider .slide img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#slider .slick-prev,
#slider .slick-next{
	position: absolute;
	top:50%;
	transform: translateY(-50%);
	z-index: 10;
	left:0;
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	border:none;
	background: rgba(0,0,0,0.3);
	color:#fff;
	outline: none;
	font-size:20px;
}
#slider .slick-next{
	left: auto;
	right:0;
}
.row-intro .banner a{
	position: relative;
	height: 185px;
	margin:0 0 30px;
	display: block;
}
.row-intro .banner a:last-child{
	margin-bottom: none;
}
.row-intro .banner img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
section#info{
	padding:30px 0;
	background: #f5f5f5;
}
section#info .row{
	display: flex;
	flex-direction: row;
	flex:1;
	flex-wrap: wrap;
}
section#info .row > div{
	text-align: center;
	border-right: 1px dashed #ddd;
}
section#info .row > div:nth-child(4n){
	border:none;
}
/*ganti warna icon home*/
section#info .fa,
section#info strong{
	/*color:#ea6825;*/
	color:#181819;;
}
section#info .fa{
	display: block;
	font-size:30px;
	margin:0 0 15px;
}
#product{
	padding:15px 0;
}
#product .heading{
	font-weight: bold;
	margin:0 0 30px;
	padding:15px 0;
	border-bottom: 1px solid #eee;
}
.row-product > div{
	/*matok ukuran frame produk*/
	margin:0 0 30px;
	/*height: 430px;*/
}
.row-product .product-image{
	background: #fff;
	position: relative;
	padding:15px;
	margin:0 0 15px;
	overflow: hidden;
	border-radius: 5px;
}
.row-product .product-image .badge{
	position: absolute;
	top:0;
	right:0;
	border-radius: 0;
	width: 80px;
	height: 80px;
	padding:0 15px;
	background: none;
}
.row-product .product-image .badge span{
	background: #333;
	color:#fff;
	position: absolute;
	top:50%;
	left:50%;
	width: 180px;
	height: 40px;
	line-height: 40px;
	transform: translate(-50%,-50%) rotate(45deg);
	box-shadow: 0px 3px 10px rgba(0,0,0,0.2);
	z-index: 90;
}
/*ganti warna*/
.row-product .new .product-image .badge span{
	/*background: #ea6825;*/
	background: #f31212;
}
.row-product .discount .product-image .badge span{
	background: #e74c3c;
}
.row-product .sold .product-image .badge span{
	background: #aaa;
}
.product-meta{
	position: relative;
	display: flex;
	flex-direction: row;
	flex:1;
	/*ganti warna icon wa home*/
	/*background: #32CD32;*/
	background: #181819;
	transition: .3s ease;
	margin:15px 0 0;
	border-radius: 5px;
}
.product-meta a{
	width: 100%;
	padding:10px 15px;
	color:#fff;
	text-transform: uppercase;
	font-size: 12px;
}
.product-meta a.btn-like{
	width: auto;
	background: rgba(249, 249, 249, 0.1);
}
.product-meta a.btn-whatsapp{
	width: auto;
}
.row-product .product-info{
	text-align: center;
}
.row-product .product-info .post-title{
	/*ganti ukuran font depan*/
	color:#333;
	font-size:16px;
}
.row-product .product-info .rating{
	color:#aaa;
}
/*ganti warna*/
.row-product .product-info .price{
	margin:15px 0 0;
	/*color:#ea6825;*/
	color:#181819;
}
#category{
	padding:30px 0;
	background: #fafafa;
}
#category .thumbnail{
	border:1px solid #eee;
	position: relative;
}
#category .thumbnail:before{
	content: "";
	position: absolute;
	top:0;
	left:0;
	bottom:0;
	right:0;
	background: rgba(0,0,0,0.5);
	visibility: hidden;
	opacity: 0;
	transition: .3s ease;
}
#category .thumbnail:after{
	content: "";
	position: absolute;
	top:15px;
	left:15px;
	bottom:15px;
	right:15px;
	border:1px solid #fff;
	visibility: hidden;
	opacity: 0;
	transition: .3s ease;
}
#category .thumbnail .more{
	position: absolute;
	top:50%;
	left:50%;
	transform: translate(-50%, -50%);
	padding:10px 20px;
	background: #fff;
	color:#333;
	font-size:12px;
	font-weight: 300;
	text-transform: uppercase;
	visibility: hidden;
	opacity: 0;
	transition: .3s ease;
}
#category .thumbnail:hover:before,
#category .thumbnail:hover:after,
#category .thumbnail:hover .more{
	visibility: visible;
	opacity: 1;
}
#brands{
	background: #fff;
	padding:15px 0;
}
#brand-slider a img{
	width: 100%;
	height: 80px;
	object-fit: contain;
}
#brand-slider .slick-arrow{
	position: absolute;
	top:50%;
	transform: translateY(-50%);
	font-size:20px;
	background: none;
	outline: none;
	border:none;
}
#brand-slider .slick-arrow.slick-prev{
	left:0;
}
#brand-slider .slick-arrow.slick-next{
	right:0;
}
/*ganti warna*/
#social{
	/*background: #ea6825;*/
	background: #f31212;
	padding:15px 0;
}
#social .form-control{
	width: 400px;
	border:none;
	box-shadow: none;
	border-radius: 0;
}
#social .btn-subscribe{
	background: #50BA9D;
	color:#fff;	
	border:none;
	border-radius: 0;
}
#social .navbar-social li a{
	color:#fff;
	font-size:20px;
	background: none!important;
}
#social .navbar-social li a:hover{
	background: rgba(255,255,255,0.1)!important;
}
/*ganti warna*/
#footer-link{
	/*background: #34495e;*/
	background: #181819;
	padding:50px 0;
	color:#fff;
}
#footer-link h3{
	margin:0 0 30px;
	font-size:16px;
	text-transform: uppercase;
	font-weight: bold;
}
#footer-link h2.logo{
	margin:0 0 30px;
	font-size:25px;
	font-weight: bold;
}
/*ganti Warna*/
#footer-link h2.logo span{
	/*color:#ea6825;*/
	color:#f31212;
}
#footer-link ul{
	list-style: none;
	margin:0;
}
#footer-link ul li{
	padding:5px 0;
}
#footer-link ul li a{
	color:#ccc;
}
/*ganti warna*/
footer{
	text-align: center;
	padding:15px 0;
	/*background: #2c3e50;*/
	background: #181819;
	color:#fff;
}
.page{
	padding:50px 0;
}
.row-product-detail .product-thumbnail .thumbnail img{
	width: 100%;
	height: 500px;
	object-fit: contain;
}
.product-info{
	line-height: 150%;
	font-size:16px;
	color:#888;
	letter-spacing: 1.1px;
	font-weight: 300;
}
.product-info strong{
	color:#333;
}
.product-info .product-title{
	font-size:30px;
	margin:0 0 15px;
	color:#333;
}
.product-info .price{
	color:#BB6734;
	font-size:30px;
	margin:0 0 15px;
}
.product-info .description{
	margin-bottom: 50px;
}
.product-info .qty{
	margin:0 0 30px;
}
.product-info .qty .form-control{
	width: 100px;
	margin-left: 30px;
}
.product-info .qty .btn-link{
	color:#333;
	font-weight: bold;
}
.product-info .extra-info{
	margin:0 0 50px;
}
.product-info-tabs{
	margin:0 0 30px;
}
.product-info-tabs .nav.nav-tabs{
	border:none;
	margin:0;
}
.product-info-tabs .nav.nav-tabs li{
	margin:0;
}
.product-info-tabs .nav.nav-tabs li a{
	border:none;
	color:#bababa;
	text-transform: uppercase;
	border-radius: 0;
	padding:10px 15px;
	border:1px solid #eee;
	border-bottom: none;
	margin:0 0 0 -1px;
	background: #fafafa;
}
.product-info-tabs .nav.nav-tabs li.active a{
	color:#333;
	font-weight: bold;
	background: #fff;
	border-bottom: 1px solid #fff;
	margin-bottom: -1px;
}
.product-info-tabs .tab-content{
	padding:15px;
	border:1px solid #eee;
} 
.product-info-tabs h4{
	color:#333;
	margin:0 0 30px;
}
.product-info-tabs ul,
.product-info-tabs ol{
	margin:0 0 15px 30px;
}
.product-info-tabs .table{
	border:1px solid #ddd;
}
.product-info-tabs .table td{
	border:1px solid #ddd;
}
.row-news{
	margin:0 0 50px;
}
.row-news .col-sm-4:nth-child(4n){
	clear: left;
}
.row-news .item{
	margin:0 0 50px;
}
.row-news .item .thumbnail{
	margin:0 0 15px;
}
.row-news .item .thumbnail img{
	width: 100%;
	height: 200px;
	object-fit: cover;
}
.meta{
	color:#888;
	font-size:12px;
	margin:0 0 15px;
}
.meta span{
	margin-right: 15px;
}
.row-news .item .desc{
	margin:0 0 30px;
	font-size:14px;
	color:#888;
	font-weight: 300;
}
.post-title{
	font-size:30px;
}
.post p{
	color:#888;
	font-size:16px;
	font-weight: 300;
	line-height: 180%;
	letter-spacing: 1.1px;
	margin:0 0 30px;
}
ul.step{
	list-style: none;
	margin:0px;padding:0;
	overflow: hidden;
	background:#fff;
	border:1px solid #ccc;
	border-radius: 3px;-moz-border-radius: 3px;-webkit-border-radius: 3px;
	font-family: 'Montserrat', Helvetica, Arial, sans-serif;
	text-rendering: optimizelegibility;
	font-size: 16px;
}
ul.step li{
	float: left;
	width: 25%;
	text-align: center;
	height: 60px;line-height: 60px;
	position:relative;
}
ul.step li a{
	color:#333;
	text-decoration: none!important;
	outline: none;
}
ul.step li::after{
	content: "";
	position: absolute;
	border:30px solid transparent;
	border-left:30px solid #fff;
	top:0px;right:-58px;
}
ul.step li::before{
	content: "";
	position: absolute;
	border:30px solid transparent;
	border-left:30px solid #ccc;
	top:0px;right:-59px;
}
ul.step li.step_current{
	/*diganti warna  #ea6825;	*/
	background:#f31212;
	color:#fff;
}
ul.step li.step_current a{
	color:#fff;
}
ul.step li.step_current::after{
	/*diganti warna border-left:30px solid #ea6825;;	*/
	border-left:30px solid #f31212;	
}
ul.step li.step_done{
	/*diganti warna background:#34495e;*/
	background:#181819;
	color:#fff;
	z-index: 10;
}
ul.step li.step_done a{
	color:#fff;
}
ul.step li.step_done::after{
	/*diganti warna #34495e*/
	border-left:30px solid #181819;	
}
#flashsale{
	background: linear-gradient(-15deg, #E48723, #3498db);
	padding:30px 0;
}
#flashsale .media{
	color:#fff;
	margin:0 0 40px;
}
#flash-time{
	padding:22px 15px 0;
}
#flash-time .title{
	margin-right:15px;
}
#flash-time span.time{
	display: inline-block;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	background: #ea6825;
	color:#fff;
	border-radius: 3px;
}
#flashsale .product-image{
	background: #fff;
	position: static;
}
#flashsale .item{
	background: #fff;
	padding:15px 0;
	border-radius: 5px;
	position: relative;
	overflow: hidden;
}
#flashsale .item .product-meta{
	margin:15px 0 -15px;
	border-radius: 0;
}
.product-thumbnail-list{
	display: flex;
	flex-direction: row;
	flex:1;
	flex-wrap: wrap;
	margin:0 -10px;
}
.product-thumbnail-list a.thumbs{
	width: calc(25% - 10px);
	height: 100px;
	border:1px solid #eee;
	margin:0 5px 10px;
	display: block;
	transition: .3s ease;
}
.product-thumbnail-list a.thumbs img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.product-thumbnail-list a.thumbs:hover{
	border:2px solid #333;
}
.row-flex{
	display: flex;
	flex-direction: row;
	flex:1;
}
.row-login > .col-sm-6{
	padding:30px;
	border-right: 1px dashed #eee;
}
.row-login > .col-sm-6:last-child{
	border-right: none;
}
.row-login h2{
	margin:0 0 30px;
}
.row-login .form-control{
	padding:20px;
	border-radius: 0;
}
.row-login .btn{
	padding:10px 30px;
	font-weight: bold;
	text-transform: uppercase;
}
.dashboard{
	background: #EFF0F4;
	padding:50px 0;
}
.dashboard .dashboard-sidebar h4 a{
	color:#333;
	margin:0 0 15px;
}
.dashboard	.dashboard-sidebar ul{
	list-style: none;
	margin:0 0 30px 15px;
}
.dashboard	.dashboard-sidebar ul li{
	padding:5px 0;
}
.dashboard	.dashboard-sidebar ul li a{
	color:#aaa;
}
.dashboard-content h2{
	margin:0 0 30px;
	font-weight: bold;
	font-size:20px;
	text-transform: uppercase;
}
.panel.panel-default{
	border:none;
}
.panel.panel-default .panel-body{
	padding:50px;
}
ul.comments{
	list-style: none;
	margin:0;
}
ul.comments li{
	padding:15px;
}

.btn-warning {
    color: #fff;
    background-color: #ea6825;
    border-color: #ea6825;
}

@media (max-width: 768px){
	header .navbar-logo .input-group .form-control{
		width: auto;
	}
	#slider .slide{
		height: 300px;
	}
	.row-intro .banner{
		height: 300px;
	}
	#social .form-control{
		width: auto;
	}
	
}
@media (max-width: 767px){
	body{
		padding-top: 53px;
	}
	header{
		min-height: auto;
		position: relative;
		position: fixed;
		top:0;
		left:0;
		right:0;
		z-index: 99;
		box-shadow: 0px 1px 3px rgba(0,0,0,0.1);
	}
	header .navbar-header .navbar-brand{
		float: none;
		text-align: center;
		height: auto;
		line-height: 50px;
		padding:0 15px;
		width: 100%;
	}
	header .navbar-header .navbar-brand span{
		font-size:20px;
	}
	header .navbar-logo{
		padding:0;
		text-align: center;
	}
	header .navbar-header{
		display: flex;
		flex-direction: row;
		flex:1;
	}
	.navbar-toggle{
		position: relative;
		float: none;
		width: 80px;
		height: 50px;
		line-height: 50px;
		margin:0;
		padding:0;
		/*color:#fff;*/
		font-size: 20px;
	}
	.navbar-toggle .icon-bar{
		background: #fff;
	}
	header .navigation, header .navbar-top{
		position: fixed;
		top:53px;
		left:0;
		bottom:0;
		width: calc(100% - 50px);
		display: block;
		max-height: none!important;
		background: #34495e!important;
		transform: translateX(-100%);
		height: auto!important;
		box-shadow: 1px 0px 3px rgba(0,0,0,0.1);
		z-index: 90;
		visibility: hidden;
		transition: .3s ease;
		padding:15px;
	}
	.navigation.in, .navbar-top.in{
		transform: translateX(0);
		visibility: visible;
	}
	header .navigation .navbar-nav li ul{
		position: relative;
		top:auto;
		left:auto;
		display: none;
	}
	header .navigation .navbar-nav li:hover ul{
		display: block;
	}
	header .navigation .navbar-nav li ul li a{
		min-width: auto;
	}
	.navbar-search{
		position: fixed;
		top:55px;
		left:0;
		right:0;
		display: block;
		max-height: none!important;
		background: #fff!important;
		height: auto!important;
		z-index: -1;
		visibility: hidden;
		transition: .3s ease;
		margin:0!important;
		padding:15px!important;
	}
	.navbar-search.in{
		visibility: visible;
	}
	header .navbar-logo .input-group .form-control{
		background: #f5f5f5;
		width: 100%;
	}
	#intro{
		padding:0;
	}
	#intro .container{
		padding:0;
	}
	.row-intro{
		display: block;
	}
	#slider .slide{
		height: auto;
	}
	.row-intro .banner{
		height: auto;
	}
	.row-intro .banner a{
		margin:0;
	}
	section#info{
		padding: 0;
		margin: 10px 0 0 0;
	}
	section#info .row{
		text-align: center;
		display: block;
	}
	section#info .row > div{
		border-bottom: 1px solid #ddd;
		padding:15px;
	}
	section#info .fa{
		display: inline-block;
		font-size: inherit;
	}
	#category .thumbnail{
		margin:0 0 30px;
	}
	#social .navbar-form{
		display: flex;
		flex-direction: row;
		flex:1;
	}
	#social .navbar-form .form-control{
		width: 100%;
	}
	#social .navbar-form .btn{
		width: auto;
	}
	#social .navbar-social li{
		display: inline-block;
	}
	.product-info .qty{
		display: flex;
		flex-direction: row;
		flex:1;
		flex-wrap: wrap;
	}
	.product-info .qty label{
		width: 100%;
	}
	.product-info .qty .form-control{
		margin:0;
		width: auto;
	}
	.product-info .qty .btn-link{
		background: #eee;
		margin-top:15px;
	}
	.page{
		padding:30px 0;
	}
	.row-flex{
		display: block;
	}
	.cart-mobile{
		height:200px;
		border: 2px solid #F5F5F5; 
		background:	#F5F5F5;
		border-top-left-radius: 30px;
		border-top-right-radius: 30px;
		border-bottom-right-radius: 30px;
		border-bottom-left-radius: 30px;
	} 
}
@media (max-width: 480px){
	.row-product > div {
		height: 100% !important;
	}
	.navbar-toggle {
		margin: 10px 0 !important;
		color: #333;
	}
	.navbar-brand > span > img{
		max-width: 260px !important;
		margin: 20px 0 !important;
	}
	#slider{
		margin-bottom: 10px;
	}
	.row-banner{
		margin-left: 0;
		margin-right: 0;
	}
	.m-banner{
		padding: 0;
	}	
	#info {
		margin-top: 10px;
	}
	.item-info{
		display: none;
	}
	
	.row-product .product-info .post-title {
		color: #333;
		font-size: 12px;
	}
	.product-info .price {
		font-size: 18px !important;
	} 
	ul.step {
		margin: 0 0 25px !important;
		font-family: inherit !important;
		text-rendering: auto !important;
	}	
	ul.step li {
		float: left;
		width: 100% !important;
		text-align: center;
		height: 50px !important;
		line-height: 50px !important;
		position: relative;
	}
}


div.timeblock {
    margin-top: 0px;
    width: 100%;
}

div.timeblock div.timer {
    color: #333;
    font-weight: 700;
    font-size: 4em;
    line-height: 1.2em;
    text-align: center;
    width: 100%
}

@media only screen and (max-width:767px) {
    div.timeblock div.timer {
        font-size: 4.8em
    }
}

@media only screen and (max-width:959px) and (min-width:768px) {
    div.timeblock div.timer {
        font-size: 7.7em
    }
}

@media only screen and (max-width:767px) and (min-width:480px) {
    div.timeblock div.timer {
        font-size: 5.7em
    }
}

@media screen and (max-width: 480px){
    .flash-title{
		display: inline-block !important;
	}
}

div.timeblock div.timer ul {
    display: inline-block;
	list-style: none;
}

div.timeblock div.timer ul li {
    float: left;
    text-align: center;
    position: relative
}

div.timeblock div.timer ul li.seperator {
    font-size: .7em
}

div.timeblock div.timer ul li p {
    font-size: .27em;
    line-height: 1em
}

/*tambahan buat btn*/
/*.btn-warning {
    color: #fff;
    background-color: #f31212;
    border-color: #eea236;
}*/

.navbar-brand{
	float: unset !important;
}

.navbar-brand > span > img {
	width: auto;
	max-width: 350px;
	margin: 20px 0 !important;
}

/*coba ubah font kapital/kecil*/
.besar{
	text-transform: uppercase;
}
.kecil{
	text-transform: lowercase;
}
.awal_besar{
	text-transform: capitalize;
}