@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;
}
a{
	color:#008BE7;
}
/* 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 .box{
	position: absolute;
	top:50%;
	left:50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	text-align: center;
}
.kotak-loading .box img{
	height: 60px;
	width: auto;
}
.kotak-loading .box .loader{
	width: 150px;
	height: 4px;
	background: #eee;
	margin:30px auto 0;
	position: relative;
	overflow:hidden;
	border-radius: 50px;
}
.kotak-loading .box .loader:before{
	content: "";
	position: absolute;
	top:0;
	left:0;
	bottom:0;
	width:50px;
	background: #008BE7;
	border-radius: 50px;
	animation:kotakLoading 1s linear infinite;
}
@keyframes kotakLoading{
	from{
		transform: translateX(-50px);
	}
	to{
		transform: translateX(200px);
	}
}
/* LAYOUT */
header{
	background: #fff;
	position: relative;
	z-index: 99;
	min-height: 80px;
}
header .navbar{
	background: #fff;
	border:none;
	margin:0;
	border-radius: 0;
	padding:15px 0;
	transition: .3s ease;
}
header .navbar-header .navbar-brand{
	color:#333;
	font-weight: bold;
	font-family: 'Montserrat Alternates', sans-serif;
	font-size:24px;
	letter-spacing: -1px;
	padding:0;
}
header .navbar-header .navbar-brand img{
	height: 50px;
}
header .navigation .nav.navbar-nav{
	margin-top:6px;
}
header .navigation .nav.navbar-nav li a{
	color:#333;
	font-family: 'Poppins', sans-serif;
	text-transform: uppercase;
	font-size: 13px;
	background: none!important;
	padding:8px 0;
	margin:0 15px;
}
header .navigation .nav.navbar-nav li a:hover{
	text-decoration: none;
	color:#008BE7 !important;
}
header .navigation .nav.navbar-nav li.active a{
	border-bottom: 2px solid #008BE7;
}
header.float .navbar{
	background: #fff;
	position: fixed;
	top:0;
	left:0;
	right:0;
	z-index: 10;
	animation:showNav .5s ease;
	box-shadow: 0px 10px 50px -30px rgba(0,0,0,0.3);
}
header .navbar-btn{
	text-transform: uppercase;
}

@keyframes showNav{
	0%{
		transform: translateY(-100%);
	}
	100%{
		transform: translateY(0);
	}
}

/* GENERAL */
.nomargin{
	margin:0;
}
.nopadding{
	padding:0;
}
.thumbnail{
	padding:0;
	border-radius: 0;
	margin:0;
	border:none;
	background: none;
}
hr.blue-line{
	width: 50px;
	border:none;
	border-bottom: 2px solid #008BE7;
}
.text-success{
	color:#2ecc71;
}
/* 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;
}
/* INTRO */
#intro{
	padding:50px 0 120px;
	position: relative;
	z-index: 10;
}
#intro .text{
	padding:50px 0 0;
}
#intro h5{
	margin:0 0 15px;
	font-weight: 600;
	font-size:20px;
}
#intro h3{
	font-weight: 700;
	font-size:40px;
	margin:0 0 15px;
}
#intro p{
	font-size:18px;
	font-weight: 400;
	line-height: 28px;
}
#intro .btn{
	margin:30px 0 0;
	font-size:14px;
	text-transform: uppercase;
	transition: .3s ease;
	padding:15px 30px;
	position: relative;
}
#feature{
	background:#008BE7;
	color:#fff;
	text-align: center;
	padding:50px 0;
	position: relative;
}
#feature:before{
	content: "";
	position: absolute;
	top:-100px;
	left:0;
	right:0;
	height: 200px;
	background: inherit;
	transform: skewY(-6deg);
}
#feature:after{
	content: "";
	position: absolute;
	bottom:-100px;
	left:0;
	right:0;
	height: 200px;
	background: inherit;
	transform: skewY(-6deg);
}
#feature .container{
	position: relative;
	z-index: 1;
}
#feature .divider{
	height: 100px;
	width: 1px;
	background: #fff;
	margin:0 auto;
	display: inline-block;
}
#feature .heading{
	margin:0 0 100px;
}
#feature .heading h2{
	font-weight: 600;
}
#feature .heading p{
	font-size:16px;
	font-weight: 200;
}
.row-feature{
	margin:50px 0 0;
}
.row-feature .thumbnail{
	margin:0 0 30px;
}
.row-feature .thumbnail img{
	width: 80px;
	height: auto;
}
.row-feature h3{
	margin:0 0 30px;
	font-size:20px;
}
.row-feature p{
	font-size:14px;
	line-height: 150%;
	font-weight: 200;
}

#premium{
	padding:50px 0 100px;
	position: relative;
}
#premium .text{
	padding-top:150px;
}
#premium .text h2{
	font-size: 35px;
	font-weight: bold;
	line-height: 120%;
	margin:0 0 30px;
}
#premium .text p{
	color:#555;
	line-height: 150%;
	font-size: 16px;
	font-weight: 300;
}
#premium .text .btn{
	padding:10px 30px;
	border-width: 2px;
}
#subscription{
	padding:100px 0;
	position: relative;
}
#subscription:before{
	content: "";
	position: absolute;
	top:0;
	left:0;
	right:0;
	height: 50%;
	background: #0A71B5;
}
#subscription .container{
	position: relative;
	z-index: 1;
}
#subscription .row-heading{
	margin:0 0 30px;
	text-align: center;
	color:#fff;
}
#subscription .row-heading h2{
	font-size:30px;
	margin:0 0 30px;
}
#subscription .row-heading p{
	font-size:16px;
	font-weight: 200;
}
#subscription .nav.nav-pills{
	text-align: center;
	margin:0 0 50px;
}
#subscription .nav.nav-pills li{
	display: inline-block;
	float: none;
	margin:0 10px;
}
#subscription .nav.nav-pills li a{
	border:2px solid #fff;
	color:#fff;
	border-radius: 50px;
	padding:5px 30px;
	margin:0 0 15px;
}
#subscription .nav.nav-pills li.active a{
	background: #fff;
	color:#1a70bb;
}
#subscription .box{
	background: #fff;
	padding:60px;
	box-shadow: 0px 10px 50px -30px rgba(0,0,0,0.5),
	10px 0px 50px -10px rgba(0,0,0,0.1),
	-10px 0px 50px -10px rgba(0,0,0,0.1);
}
#subscription .float-image{
	width: 500px;
	position: absolute;
	top:-120px;
	left:-200px;
}
.row-subscription h4{
	margin:0 0 15px;
	font-size: 16px;
	color:#333;
}
.row-subscription p{
	color:#888;
	font-size:14px;
	font-weight: 300;
}
.row-subscription > div:nth-child(2n+1){
	clear: left;
}
.row-subscription > div{
	margin:0 0 30px;
}
#testimony{
	padding:50px 0;
	position: relative;
	background: url(../img/background/testimonial-bg.jpg) no-repeat center;
	background-size: cover;
	color:#fff;
}
#testimony:before{
	content: "";
	position: absolute;
	top:0;
	left:0;
	bottom:0;
	right:0;
	background:rgba(0,115,176,0.8);
}
#testimony .container{
	position: relative;
	z-index: 1;
}
#testimony .heading{
	margin:0 0 50px;
}
.testimoni-slider .item{
	text-align: center;
}
.testimoni-slider .item p{
	font-size:18px;
	font-style: italic;
	font-family: serif;
	font-weight: 200;
}
.testimoni-slider .item .client{
	margin-top:50px;
}
.testimoni-slider .item .client .thumbnail{
	width: 100px;
	height: 100px;
	margin:0 auto 15px;
	border-radius: 50%;
	overflow: hidden;
	border:5px solid #fff;
}
.testimoni-slider .item .client .name{
	font-weight: bold;
}
.testimoni-slider .item .client .url a{
	color:#E89337;
}
.slick-dots{
	position: relative;
	text-align: center;
	list-style: none;
	margin:30px 0 0;
	padding:0;
	bottom:auto;
}
.slick-dots li{
	display: inline-block;
	margin:5px;
}
.slick-dots li button{
	width: 12px;
	height: 12px;
	border:none;
	outline: none;
	text-indent: -9999px;
	background:rgba(255,255,255,0);
	border:2px solid #fff;
	border-radius: 50%;
	transition: .3s ease;
}
.slick-dots li.slick-active button{
	background: rgba(255,255,255,1);
}
#our-client{
	padding:60px 0 200px;
	position: relative;
	overflow: hidden;
}
#our-client:before{
	content: "";
	position: absolute;
	bottom:-100px;
	left:0;
	right:0;
	height: 200px;
	background: #008BE7;
	transform: skewY(-7deg);
}
#our-client h5{
	color:#aaa;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin:0 0 10px;
	font-weight: 300;
	font-size:12px;
}
#our-client h2{
	color:#333;
	margin:0 0 30px;
}
#our-client .heading h2 span{
	color:#008BE7;
}
#our-client .heading p{
	font-size:16px;
	color:#888;
	font-weight: 200;
}
.brand-list{
	display: flex;
	flex-direction: row;
	flex:1;
	flex-wrap:wrap;
	margin:30px -10px 0;
	border:1px solid #eee;
}
.brand-list .item{
	display: block;
	text-decoration: none;
	border:1px solid #eee;
}
.brand-list .item{
	width: calc(20%);
	height: 100px;
	margin:0;
	padding:15px 0;
}
.brand-list .item img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.brand-slider .slide{
	padding:0 30px!important;
}
.brand-slider .slick-arrow{
	position: absolute;
	top:50%;
	margin-top:-5px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	background: #ddd;
	color:#333;
	border-radius: 50%;
	text-align: center;
	border:none;
	outline: none;
}
.brand-slider .slick-arrow:before{
	content: "";
	position: absolute;
	top:-5px;
	left:-5px;
	bottom:-5px;
	right:-5px;
	border:1px solid #ddd;
	border-radius: 50%;
}
.brand-slider .slick-arrow.slick-prev{
	left: 0;
}
.brand-slider .slick-arrow.slick-next{
	right:0;
}
#footer-link{
	background: #008BE7;
	color:#fff;
	padding:50px 0;
	font-weight: 200;
}
#footer-link h3{
	margin:0 0 30px;
	font-size:20px;
	font-weight: 400;
}
#footer-link ul{
	list-style: none;
	margin:0;
	padding:0;
}
#footer-link ul li{
	padding:5px 0;
}
#footer-link a{
	color:#fff;
}
#footer-link .nav-social{
	margin:30px 0 0;
}
.nav-social{
	list-style-type: none;
}
.nav-social li{
	float: left;
}
.nav-social li a{
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	color:#fff;
	background: rgba(0,0,0,0.1);
	border-radius: 2px;
	display: block;
	margin:0 5px 0 0;
}
footer{
	background: #008BE7;
	color:#fff;
	padding:30px 0;
	border-top:1px solid rgba(255,255,255,0.1);
}
footer a{
	color:#fff;
}
footer ul{
	list-style-type: none;
	margin:0;
	padding:0;
}
footer ul li{
	float: left;
}
footer ul li a{
	color:#fff;
	padding:0 15px 0 0;
}

#page-feature{
	padding:100px 0;
	background: #eee url(../img/background/people-woman-coffee-meeting.jpg) no-repeat center;
	background-size: cover;
}
.nav-fitur{
	margin:0 0 30px;
}
.nav-fitur li a{
	background:#fff;
	border-radius: 0!important;
	border:none!important;
	margin:0 3px;
	padding:15px 0;
	color:#888;
}
.nav-fitur li a img{
	width: auto;
	height: 32px;
	vertical-align: middle;
	margin:0 15px 0 0;
}
.nav-fitur li.active a{
	background:#008BE7!important;
	color:#fff!important;
}
.nav-fitur li.active a img{
	filter: brightness(0) invert(1);
}
#page-feature .tab-content{
	border:none;
	background:#fff;
	padding:30px;
}
#page-feature .tab-content .text{
	padding:30px;
	color:#888;
}
.banner{
	background:#fff url(../img/background/banner-bg.png);
	padding:30px 0;
	background-size: 100%;
}
.page{
	padding:50px 0;
}
.table-price{
	border:none;
}
.table-price thead td{
	border:1px solid #eee!important;
}
.table-price td{
	border:1px solid #eee;
}
.table-price td.blank{
	border:none!important;
}
.table-price .heading td{
	padding:30px;
}
.table-price tbody tr:nth-child(even){
	background:#fafafa;
}
.table-price tbody td{
	padding:15px!important;
	color:#555;
}
.product-nav{
	display: block;
	margin:0 0 50px;
	text-align: center;
	float: none;
}
.product-nav.nav.navbar-nav li{
	display: inline-block;
	float: none;
}
.product-nav.nav.navbar-nav li a{
	padding:10px 20px;
	color:#aaa;
	border:1px solid #1a70bb;
	font-size: 18px;
	background:none!important;
	border-radius: 5px;
}
.product-nav.nav.navbar-nav li a:hover{
	background: none;
}
.product-nav.nav.navbar-nav li.active a{
	border: 1px solid #1a70bb;
	color:#fff;
	background:#1a70bb!important;
}
.row-product{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	flex:1;
}
.row-product > div{
	margin:0 0 30px;
}
.row-product a.thumbnail{
	display: block;
	height: 100%;
	position: relative;
	background: #fff;
	box-shadow: 0px 5px 10px rgba(0,0,0,0.1);
	text-decoration: none;
}
.row-product a.thumbnail img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 2s ease;
}
.row-product a.thumbnail .caption .info{
	overflow:hidden;
	padding:10px 0;
}
.row-product a.thumbnail .caption .info .title{
	float: left;
}
.row-product a.thumbnail .caption .info .category{
	float: right;
	border-left: 1px solid #ddd;
	padding:0px 10px;
	color:#aaa;
	text-transform: uppercase;
}
.row-template a.thumbnail{
	display: block;
	height: 200px;
	position: relative;
	margin:0 0 15px;
}
.row-template a.thumbnail .badge{
	position: absolute;
	top:0;
	left:0;
	font-size: 12px;
	text-transform:uppercase;
	border-radius: 0;
	opacity: 1;
	color:#fff;
	z-index: 10;
	font-weight: 300;
	padding:5px 15px;
}
.badge.badge-premium{
	background: #305be6;
}
.badge.badge-new{
	background: #fdbb40;
}
.badge.badge-free{
	background: #ef2727;
}
.row-template a.thumbnail:before,
.row-template a.thumbnail:after{
	content: "";
	position: absolute;
	bottom:0;
	left:10px;
	right:10px;
	height: 50%;
	background: linear-gradient(90deg, rgba(0,0,0,0.8), rgba(0,0,0,0));
	transform: skewY(4deg);
	filter:blur(3px);
}
.row-template a.thumbnail:after{
	transform: skewY(-4deg);
	background: linear-gradient(-90deg, rgba(0,0,0,0.8), rgba(0,0,0,0));
}
.row-template a.thumbnail img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 2s ease;
	position: relative;
	z-index: 1;
}
.row-template .title{
	margin:5px 0 30px;
	font-weight: normal;
}
.row-template .title span{
	color:#008DE0;
	display: inline-block;
	margin-right: 10px;
}
.row-berita > div{
	margin:0 0 30px;
}
.row-berita > div:nth-child(2n+1){
	clear: left;
}
.row-berita .thumbnail{
	position: relative;
	height: 200px;
	margin:0 0 15px;
}
.row-berita .thumbnail img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.row-berita .thumbnail .badge{
	position: absolute;
	top:15px;
	left:15px;
	background:rgba(0,0,0,0.7);
	color:#fff;
	border-radius: 50px;
	padding:10px 15px;
}
.row-berita .post-title{
	font-weight: bold;
	color:#222;
	font-size:24px;
	line-height: 120%;
	margin:0 0 15px;
	display: block;
	text-decoration: none;
}
.row-berita p{
	color:#888;
}
.row-berita .meta{
	margin:30px 0 0;
}
.row-berita .meta .author{
	font-weight: bold;
	color:#222;
}
.row-berita .meta .date{
	color:#aaa;
	margin-left: 15px;
}
.widget{
	margin:0 0 30px;
}
.widget h3{
	font-size:14px;
	text-transform: uppercase;
	margin:0 0 15px;
	padding:15px 0;
	border-bottom: 1px solid #eee;
}
.widget ul{
	list-style-type: none;
	margin:0;
}
.widget ul li{
	padding:5px 0;
}
.widget ul li a{
	color:#333;
}
.widget .media-news{
	border-bottom: 1px solid #eee;
	margin:0 0 15px;
	padding-bottom: 15px;
}
.widget .media-news .media-left img{
	width: 60px;
	height: 60px;
	object-fit: cover;
}
.widget .media-news .post-title{
	display: block;
	color:#222;
	font-weight: bold;
}
.widget .media-news .date{
	color:#aaa;
	margin:5px 0 0;
}
.pagination{
	text-align: right;
	float: none;
	width: 100%;
	margin: 0px !important;
	padding: 0px !important;
}
.pagination li{
	float: none;
	display: inline-block;
}
.pagination li a{
	display: block;
	border-radius: 0!important;
	color:#333;
}
#template-intro{
	background: #008DE0;
	padding:150px 0 100px;
	color:#fff;
	position: relative;
	overflow: hidden;
}
#template-intro:before{
	content: "";
	position: absolute;
	top:-100px;
	left:0;
	right:0;
	height:150px;
	background: #fff;
	transform: skewY(-3deg);
}
#template-intro h2{
	font-weight: 400;
	max-width: 100%;
	margin:0 auto 80px;
	font-size:35px;
}
#template-intro .text{
	padding-top: 60px;
}
#template-intro .box{
	position: relative;
	width: 100%;
	margin:0 auto;
}
#template-intro .box .thumbnail{
	animation: templateShow 2s ease;
}
@keyframes templateShow{
	0%{
		transform: scale(1.1);
		opacity: 0;
	}
	100%{
		transform: scale(1);
		opacity: 1;
	}
}
#template-intro .box .thumbnail-laptop{
	position: absolute;
	bottom:0;
	right:0;
	left:0;
}
#template-intro .box .thumbnail-laptop img{
	margin-left: 50%;
}
#template-intro .box .thumbnail-mobile{
	position: absolute;
	bottom:0;
	left:0;
	right:0;
}
#template-intro .box .thumbnail-mobile img{
	margin-left:-80px;
	width: 40%;
}
#template-intro .box .marker{
	position: absolute;
	top:0;
	left:0;
}
#template-intro .box .marker .circle{
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #DA0012;
	border:5px solid #fff;
	animation:pulse 2s infinite ease;
}
#template-intro .box .info{
	position: absolute;
	top:0;
	left:100%;
	padding-left: 80px;
	width: 300px;
	overflow: hidden;
}
#template-intro .box .info.info-left{
	padding-left: 0;
	padding-right: 80px;
	left:auto;
	right:100%;
	text-align: right;
}
#template-intro .box .info .title{
	margin:0 0 10px;
	font-size:20px;
	position: relative;
	transform: translateX(-100%);
	transition: .5s ease;
	opacity: 0;
	visibility: hidden;
}
#template-intro .box .info .title:before{
	content: "";
	position: absolute;
	top:15px;
	left:-80px;
	width: 60px;
	border-bottom: 1px dashed #fff;
}
#template-intro .info.info-left .title{
	transform: translateX(100%);
}
#template-intro .box .info.info-left .title:before{
	left:auto;
	right:-80px;
}
#template-intro .box .info .text{
	font-weight: 300;
	color:rgba(255,255,255,0.8);
	transition: .5s ease;
	transform: translateY(-30px);
	opacity: 0;
	visibility: hidden;
	transition-delay: .1s;
}
#template-intro .marker:hover .title{
	transform: translateX(0);
	visibility: visible;
	opacity: 1;
}
#template-intro .marker:hover .text{
	transform: translateY(0);
	visibility: visible;
	opacity: 1;
}
#template-intro .box .marker.marker-1{
	top:10%;
	left:80%;
}
#template-intro .box .marker.marker-2{
	top:57%;
	left:100%;
}
#template-intro .box .marker.marker-3{
	top:15%;
	left:12%;
}
#template-intro .box .marker.marker-4{
	top:40%;
	left:-5%;
}
@keyframes pulse{
	0%{
		transform: scale(1);
	}
	70%{
		transform: scale(1.2);
	}
	100%{
		transform: scale(1);
	}
}
.social-share a{
	display: inline-block;
	text-decoration: none;
	color:#fff;
}
.social-share a .fa{
	width: 30px;
	height: 30px;
	line-height: 30px;
	border-radius: 3px;
	text-align: center;
}
.social-share a .fa.fa-facebook{
	background: #395A93;
}
.social-share a .fa.fa-twitter{
	background: #00A3EC;
}
.social-share a .fa.fa-pinterest{
	background: #CF1B2C;
}
.social-share a .fa.fa-linkedin{
	background: #0079B0;
}
.social-share a .fa.fa-envelope{
	background: #848484;
}
article{
	font-size:16px;
	line-height: 150%;
	color:#333;
	font-weight: 400;
}
article .thumbnail{
	margin:0 0 30px;
}
article p{
	margin:0 0 30px;
}
#float-box.affix{
	top:80px;
	width: 350px;
}
#float-box.affix-bottom{
	top:auto!important;
	bottom:0px!important;
	position: absolute!important;
	width: 350px;
}
section.hero{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding:30px 0;
}
section.hero .bg{
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
section.hero .container{
	position: relative;
	color:#fff;
	z-index: 2;
}
section.hero h2{
	margin:0;
	font-size:50px;
	font-weight: 200;
}
section.hero.hero-blue:before{
	content: "";
	position: absolute;
	top:0;
	left:0;
	bottom:0;
	right:0;
	background:#008BE7;
	z-index: 1;
	opacity: 0.5;
}
#contact{
	overflow: hidden;
	width: 100vw;
}
.row-contact{
	display: flex;
	flex:1;
	flex-direction: row;
	flex-wrap: wrap;
	width: 100vw;
	color:#555;
	font-size:16px;
	line-height: 150%;
}
.row-contact .col{
	width: 50%;
}
.row-contact #maps{
	height: 100%;
	width: 100%;
}
.row-contact .box{
	padding:80px;
}
.row-contact .thumbnail{
	width: 100%;
	height: 100%;
}
.row-contact .thumbnail img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.row-contact h3{
	font-size:30px;
	color:#008BE7;
	margin:0 0 30px;
}
.row-contact .form-control{
	background:#f5f5f5;
	border-radius: 3px;
	border:none;
	box-shadow: none;
	padding:25px;
}
.row-contact .form{
	margin-top:30px;
}
#blog-page{
	position: relative!important;
}
#blog-page .container,
#blog-page .row-berita-layout,
#blog-page .blog-sidebar{
	position: static!important;
}
#page-header{
	padding:50px 0;
}
#page-header .text{
	padding:60px 0 0;
}
#page-header .text h3{
	color:#078cd1;
	font-size: 30px;
	margin:0 0 30px;
}
#page-header .text p{
	color:#555;
	font-size:16px;
	font-weight: 200;
}
#page-header.page-fitur{
	position: relative;
	padding:15px 0;
}
.page-fitur:before{
	content: "";
	position: absolute;
	top:100px;
	left:0;
	bottom:100px;
	right:0;
	background: #131313;
}
#page-header.page-fitur .text{
	padding:120px 0;
}
#page-header.page-fitur .text h3{
	color:#fff;
}
#page-header.page-fitur .text h3 span{
	color:#2c6def;
}
#page-header.page-fitur .text p{
	color:#fff;
}
#fitur-page{
	padding:30px 0;
}
.page-fitur .container{
	position: relative;
}
.row-fitur{
	display: flex;
	flex-direction: row;
	flex:1;
	flex-wrap: wrap;
}
.row-fitur > div{
	margin:0 0 30px;
}
.row-fitur .card{
	height: 100%;
	border:1px solid #ddd;
	padding:30px;
}
.row-fitur .card .thumbnail{
	width: 50px;
	margin:0 0 10px;
}
.row-fitur .card h4{
	color:#2fa5d3;
	font-size:16px;
	margin:0 0 15px;
}
.member-nav{
	background: #1B6FB8;
	border-radius: 5px;
}
.member-nav .nav.nav-pills li a{
	padding:20px 30px;
	color:#fff;
	font-size: 16px;
}
.member-nav .nav.nav-pills li a:hover{
	background: rgba(255,255,255,0.1);
}
.member-nav .nav.nav-pills li.active a{
	background: rgba(255,255,255,0.4);
}
.member-nav .btn-logout{
	margin:14px 15px;
	border:1px solid #fff;
	border-radius: 5px;
	padding:5px 30px;
	color:#fff;
}
.panel-body-lg{
	padding:50px;
}
table.table-detail tr td{
	border:none;
	border-bottom: 1px solid #eee;
}
table.table-detail tr:last-child td{
	border-bottom: none;
}
.row-login{
}
.row-login > div{
	padding:50px;
}
.row-login .col-sm-4:first-child{
	border-right: 1px solid #ddd;
}
.dashboard-section{
	padding:50px 0;
	position: relative;
	z-index: 9;
	background: #eee;
}
.dashboard{
	display: flex;
	flex-direction: row;
	flex:1;
	min-height: 400px;
	background: #fff;
	border-radius: 10px;
	overflow:hidden;
	box-shadow: 0px 10px 50px -20px rgba(0,0,0,0.3);
}
.dashboard-sidebar{
	width: 30%;
	background: #1C8BE7;
	padding:30px;
}
.dashboard-profile{
	color:#fff;
	text-align: center;
	margin:0 0 30px;
}
.dashboard-profile .thumbnail{
	width: 100px;
	height: 100px;
	background: #fff;
	border-radius: 50%;
	overflow:hidden;
	margin:0 auto 15px;
	border:5px solid #fff;
	box-shadow: 0px 5px 30px -10px rgba(0,0,0,0.5);
}
.dashboard-profile .thumbnail img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.dashboard-profile h4{
	font-size:14px;
	margin:0 0 10px;
}
.dashboard-profile .status{
	font-weight: 200;
	color:rgba(255,255,255,0.8);
	margin:0 0 15px;
}
.dashboard-content{
	width: 100%;
}
.dashboard-nav li a{
	color:#fff;
	text-transform: uppercase;
	border-bottom: 1px solid rgba(255,255,255,0.1);
	background: none;
	border-radius: 3px;
	font-size:12px;
	letter-spacing: 1.5px;
	padding-left: 35px;
}
.dashboard-nav li:last-child a{
	border:none;
}
.dashboard-nav li a:hover{
	background: rgba(0,0,0,0.1);
}
.dashboard-nav li.active a{
	background: #3498db;
	color:#fff;
}
.dashboard-nav li a .fa{
	width: 30px;
	text-align: center;
	position: absolute;
	left: 0px;
	top: 12px;
}
.dashboard-content{
	padding:30px;
}
.dashboard-content h2{
	margin:0 0 30px;
	font-weight: bold;
	text-transform: uppercase;
	font-size:20px;
	border-bottom: 1px solid #eee;
	padding:15px 0;
}
@media (max-width: 1200px){
	#float-box.affix{
		width: 283.33px;
	}
	#float-box.affix-bottom{
		width: 283.33px;
	}
}
@media (max-width: 768px){
	header{
		min-height: 130px;
	}
	header .navbar .navbar-header{
		display: block;
		float: none;
		text-align: center;
	}
	header .navbar .navbar-header .navbar-brand{
		margin:0 auto;
		float: none;
		display: block;
		text-align: center;
	}
	header .navbar .navbar-header .navbar-brand img{
		float: none;
		display: inline-block;
	}
	.navigation .navbar-nav.navbar-right{
		float: left!important;
	}
	#intro{
		padding-bottom: 200px;
	}
	#intro .thumbnail{
		width: 70%;
		margin:0 auto;
	}
	#intro .text{
		text-align: center;
	}
	#intro h3{
		font-size:40px;
	}
	#premium .text{
		text-align: center;
	}
	#page-feature{
		padding:30px 0;
	}
	.nav-fitur{
		display: flex;
		flex:1;
		flex-wrap: wrap;
		flex-direction: row;
	}
	.nav-fitur.nav-justified > li{
		width: 33.33%;
		display: block;
		margin-bottom: 5px;
	}
	#template-intro .box{
		transform: scale(0.6);
		margin:-100px auto 0;
	}
	#float-box.affix{
		top:130px;
		width: 210px;
	}
	#float-box.affix-bottom{
		width: 210px;
	}
	.row-contact .box{
		padding:30px;
	}
	.device{
		margin:100px 0 0;
	}
}
@media (max-width: 767px){
	body{
		padding-top: 70px;
	}
	header{
		min-height: 0!important;
	}
	header .navbar{
		padding:10px 0;
		position: fixed;
		top:0;
		left:0;
		right:0;
		z-index: 99;
		box-shadow: 0px 10px 50px -30px rgba(0,0,0,0.3);
	}
	header .navbar .navbar-header .navbar-toggle{
		border:none;
		background: none!important;
	}
	header .navbar .navbar-header .navbar-toggle > span.icon-bar{
		background:#008DE0;
	}
	header .navbar .navbar-header .navbar-toggle > span.icon-bar:nth-child(3){
		width: 15px;
	}
	.page{
		padding:30px 0;
	}
	#subscription .float-image{
		position: relative;
		top:auto;
		left:auto;
		width: auto;
		margin:0 0 30px;
	}
	.brand-list .item{
		width: calc(50% - 20px);
	}
	.navigation{
		position: fixed;
		top:0;
		left:0;
		bottom:0;
		right:0;
		display: block;
		max-height: none!important;
		background: #fff;
		transform: translateX(-100%);
		height: auto!important;
		box-shadow: 1px 0px 3px rgba(0,0,0,0.1);
		z-index: 999;
		visibility: hidden;
		transition: .3s ease;
		padding-top: 60px;
		margin:0!important;
	}
	.navigation.in{
		transform: translateX(0);
		visibility: visible;
		width: 100%;
	}
	.navigation .navbar-nav.navbar-right{
		float: none!important;
		margin:0;
	}
	.navigation .navbar-nav.navbar-right > li > a{
		color:#333!important;
		border-bottom: 1px solid #eee!important;
		padding:20px!important;
	}
	.navigation .navbar-nav.navbar-right > li.active > a{
		color:#34495e;
	}
	.navigation .navbar-btn{
		display: block;
		margin:15px;
		padding:10px;
		border-radius: 2px;
	}
	.navigation .btn-close{
		color:#aaa;
		position: absolute;
		top:0;
		right:0;
		background: none;
		border:none;
		outline: none;
		width: 50px;
		height: 50px;
		line-height: 50px;
		text-align: center;
		font-size:20px;
		display: block;
		margin:0;
	}
	.navbar-nav > li.has-child:before {
		right: 25px;
		top: 25px;
	}

	.navbar-nav li:hover .sub-menu, .navbar-nav li:focus .sub-menu {display: none;}

	.navbar-nav li.open .sub-menu {
		position: relative;
		width: 100%;
		border: 0;
		padding: 0px 40px;
		padding-right: 0;
		display: block;
	}

	.navbar-nav .sub-menu li > a {
		padding: 20px!important;
		padding-right: 0!important;
		border-bottom: 1px solid #eee!important;
	}

	.nav-fitur.nav-justified{
		margin:0 0 15px;
	}
	.nav-fitur.nav-justified > li{
		width: 50%;
		display: block;
		margin-bottom: 2px;
	}
	#footer-link .col-sm-3{
		margin:0 0 30px;
	}
	footer .pull-left,
	footer .pull-right{
		float: none!important;
		text-align: center!important;
	}
	#footer-link .nav-social li{
		float: none;
		display: inline-block;
	}
	.product-nav li a{
		margin:5px;
	}
	#template-intro{
		padding:30px 0;
	}
	#template-intro h2{
		font-size:20px;
	}
	#template-intro:before{
		display: none;
	}
	#template-intro .box{
		width: 70%;
		transform: none!important;
		margin:0 auto; 
	}
	#template-intro .box .thumbnail-mobile{
		width: 100px;
		left:-50px;
	}
	#template-intro .marker .info{
		position: fixed!important;
		bottom:0!important;
		top:auto!important;
		left:0!important;
		right:0!important;
		visibility: hidden;
		opacity: 0;
		width: auto;
		background: #fff!important;
		color:#333;
		padding:15px!important;
		text-align: center!important;
		transform:translateY(100%);!important;
		z-index: 9;
		box-shadow: -1px 0px 3px rgba(0,0,0,0.1);
		transition: .3s ease;
	}
	#template-intro .marker:hover .info{
		visibility: visible;
		opacity: 1;
		transform: translateY(0)!important;
	}
	#template-intro .box .marker .circle{
		border:2px solid #fff;
		width: 20px;
		height: 20px;
	}
	#template-intro .marker .info .title,
	#template-intro .marker .info .text{
		transform: none!important;
		opacity: 1!important;
		visibility: visible!important;
		color:#333!important;
	}
	.row-contact{
		display: block;
	}
	.row-contact .col{
		width: auto;
	}
	.row-contact #maps{
		height: 300px;
	}
	.dashboard{
		display: block;
	}
	.dashboard-sidebar{
		width: auto;
	}
	.dashboard-content{
		width: auto;
	}	
	.device .ipad{
		width: 40%;
		transform: translateX(0);
	}
	.device .iphone{
		width: 20%;
		transform: translateX(-20%);
	}
	#intro{
		padding:30px 0;
	}
	#intro h3{
		font-size: 30px;
	}
}
@media (max-width: 480px){
	
}

/*Custom*/
.box, .panel {
	background: rgba(255,255,255,0.7);
	border-top: 3px rgba(0,0,0,0.2);
	border-radius: 0;
	border: 0;
}
.box > .box-header, .panel > .panel-heading {
	color: #333E56;
	background-color: rgba(64, 77, 108, 0.15);
	border-color: rgba(0, 0, 0,0.1);
	border-top: 1px rgba(0,0,0,0.2)!important;
	border-radius: 0 0 0 0;
}
.box .box > .box-header, .panel .panel > .panel-heading {
	background-color: rgba(0,0,0,0.05);
}
.small-box, .info-box {
	opacity: 0.95;
}
.content-wrapper hr {
	border-top: 1px solid rgba(0,0,0,0.1);
}
.btn-box-tool {
	padding: 5px;
	font-size: 12px;
	background: transparent;
	color: #141f2d;
}
.btn-box-tool:hover {}

.bg-theme {
	background-color: #038e31 !important;
	color: #fff;
}
.bg-theme-2 {
	background-color: #fe9039!important;
	border: 1px solid #edebe8;
	color: rgb(255, 255, 255);
}
.bg-theme-3 {
	background-color: rgba(171, 159, 141, 0.21) !important;
	color: rgba(154, 131, 106, 0.62);
}
.bg-yellow {
	background-color: rgb(234, 140, 17) !important;
}

.box-body {padding: 30px 15px;}
.promo-section {
	padding: 30px 0 10px;
	position: relative;
	z-index: 9;
	background: #eee;
	margin-bottom: 0px;
}
.promos {
	display: flex;
	flex-direction: row;
	flex: 1;
	height: 100px;
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0px 10px 50px -20px rgba(0,0,0,0.3);
	position: relative;
}
.promos:before {
	width: 50px;
	height: 50px;
	position: absolute;
	left: 45px;
	top: 25px;
	content: '';
	background: url(../img/promo.png) center center no-repeat;
	background-size: 100% auto;

	-moz-animation: bounce 2s infinite;
	-webkit-animation: bounce 2s infinite;
	animation: bounce 2s infinite;
}

.promos:after {
	width: 2px;
	height: 60px;
	position: absolute;
	left: 125px;
	top: 20px;
	border-right: 1px solid #ddd;
	content: '';
}

.promos .promo-item {
	display: inline-block;
	width: 100%;
	height: 100px;
	padding: 15px;
	padding-left: 150px;
}
.promos .promo-item .promo-title {
	font-weight: bolder;
	font-size: 18px;
	display: block;
	color: orange;
	text-transform: capitalize;
}
.promos .promo-item .promo-title:hover, .promos .promo-item .promo-title:focus {
	text-decoration: none;
	color: #0A4F7D;
}
.promos .promo-item .promo-content {
	display: inline-block;
	width: 100%;
	height: 40px;
	overflow: hidden;
	padding-right: 100px;
	position: relative;
}
.promos .promo-item > div {
	display: inline-block;
	width: 100%;
	position: relative;
	height: 100px;
}
.promos .promo-item .promo-btn {
	width: 80px;
	height: 60px;
	right: 0;
	top: 5px;
	padding: 10px;
	line-height: 40px;
	position: absolute;
	text-align: center;
}


.dashboard-section {padding-top: 20px;}

.bounce {
	-moz-animation: bounce 2s infinite;
	-webkit-animation: bounce 2s infinite;
	animation: bounce 2s infinite;
}
.slick-initialized .slick-slide {position: relative;}

.list_promo, .promo_info {
	display: inline-block;
	width: 100%;
	position: relative;
}

.list_promo ul {
	display: inline-block;
	width: 100%;
	position: relative;
	margin: 0;
	padding: 0;
	list-style: none;
}

.list_promo ul li {
	display: inline-block;
	position: relative;
	height: 458px;
	background: #fff;
	border-radius: 4px;
	overflow: hidden;
	margin-bottom: 25px;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	color: rgba(0, 0, 0, 0.7);
}

.list_promo ul li .promo_:hover {
	-webkit-box-shadow: 0 2px 20px 2px rgba(0,0,0,0.1);
	-moz-box-shadow: 0 2px 20px 2px rgba(0,0,0,0.1);
	box-shadow: 0 2px 20px 2px rgba(0, 0, 0, 0.1);
}

.promo_info > h4 {
	height: 40px;
	font-size: 15px;
	overflow: hidden;
	font-weight: 500;
	color: rgba(0, 0, 0, 0.7);
	margin: 0;
	padding: 0px;
}

.promo_info .promo-date, .promo_info .promo-code {
	display: inline-block;
	width: 100%;
	position: relative;
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 10px;
	height: 45px;
	/*overflow: hidden;*/
}
.promo-code-detail, .promo-date-detail {
	position: relative;
	padding-left: 30px;
}
.promo-date-detail:before, .promo-code-detail:before {
	position: absolute;
	content: " ";
	left: 0;
	top: 50%;
	background-repeat: no-repeat;
	background-size: 20px 20px;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
}
.promo-box-label {
	color: rgba(0, 0, 0, 0.54);
	font-size: 12px;
}
.promo-box-value {
	font-size: 13px;
	line-height: 13px;
}
.promo-box-value > span {
	display: inline-block;
	width: 100%;
	margin: 5px 0;
	font-weight: 450;
}
.promo_thumbs {
	height: 189px;
	overflow: hidden;
	display: inline-block;
	width: 100%;
}
.promo_thumbs img {
	width: auto;
	max-width: none;
	display: inline-block;
	height: 100%;
}
.promo_info {
	border-color: #E0E0E0;
	border-style: solid;
	border-width: 1px;
	padding: 18px;
	margin-top: -5px;
	height: 200px;
}

.promo-box-label-tooltip-text {
	display: none;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%,-100%);
	margin-top: -5px;
	background: rgba(0, 0, 0, 0.8);
	color: #FFF;
	border-radius: 4px;
	padding: 7px;
	font-size: 11px;
	text-align: center;
	width: 162px;
	z-index: 10;
}

.promo_act {
	border: 1px solid #E0E0E0;
	padding: 15px;
	display: inline-block;
	width: 100%;
	position: relative;
}
.sticky-code-voucher {
	color: #FF5722;
	font-weight: 600;
	border: none;
	width: 100%;
	min-width: 160px;
	padding: 0;
}

.promo-box-tooltip {
	display: inline-block;
	position: relative;
}

.promo-box-label-tooltip-icon {
	background-image: url(../img/ic_info.png);
	background-repeat: no-repeat;
	background-size: 10px 10px;
	font-size: 10px;
	display: block;
	width: 10px;
	height: 10px;
	position: absolute;
	top: 0;
	right: -16px;
}

.promo-date-detail:before, .promo-code-detail:before {
	position: absolute;
	content: " ";
	left: 0px;
	top: 15px;
	background-repeat: no-repeat;
	background-size: 20px 20px;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
}

.promo-date-detail:before {
	background-image: url(../img/promo-time.png);
}

.promo-code-detail:before {
	background-image: url(../img/coupon.png);
	top: 10px;
}

.btn-promo-code {
	position: relative;
	margin-top: 5px;
}

.promo_view {
	display: inline-block;
	width: 100%;
	position: relative;
	margin-bottom: 20px;
	color: rgba(0, 0, 0, 0.7);
}

.promo_view .promo_img {
	display: inline-block;
	width: 100%;
	position: relative;
}
.promo_view .promo_img > img {
	display: inline-block;
	width: 100%;
	max-width: 100%;
	height: auto;
	position: relative;
}
.promo_view .promo_titles {
	margin-bottom: 30px;
}
.promo_view .promo_content {
	display: inline-block;
	width: 100%;
	position: relative;
	margin-bottom: 30px;
}
.promo_view .promo_content > p {
	text-align: justify;
}

.promo_view .sticky-code-voucher {
	font-size: 1.5em;
	font-weight: 450;
	padding: 5px 0;
}

.promo_view ul li .sticky-code-voucher {
	font-size: 14px;
	padding: 5px 0px;
	margin-top: 7px;
}

.table-item-promo td ul {
	display: inline-block;
	width: 100%;
	padding-left: 15px;
}

.table-item-promo td ul li {
	width: 100%;
	position: relative;
}

.table-item-promo td ul li > span {
	color: #1A70BB;
	font-weight: 450;
}

.table-item-promo td ul li > a {
	font-weight: 450;
}
.promo_lain > h3 {
	margin-top: 10;
	margin-bottom: 20px;
}
.promo_lain .promo_info {height: 170px;}


.list_addon, .addon_info {
	display: inline-block;
	width: 100%;
	position: relative;
}

.list_addon ul {
	display: inline-block;
	width: 100%;
	position: relative;
	margin: 0;
	padding: 0;
	list-style: none;
}

.list_addon ul li {
	display: inline-block;
	position: relative;
	height: 458px;
	background: #fff;
	border-radius: 4px;
	overflow: hidden;
	margin-bottom: 25px;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	color: rgba(0, 0, 0, 0.7);
}

.list_addon ul li .addon_:hover {
	-webkit-box-shadow: 0 2px 20px 2px rgba(0,0,0,0.1);
	-moz-box-shadow: 0 2px 20px 2px rgba(0,0,0,0.1);
	box-shadow: 0 2px 20px 2px rgba(0, 0, 0, 0.1);
}

.addon_info {
	border-color: #E0E0E0;
	border-style: solid;
	border-width: 1px;
	padding: 18px;
	margin-top: -5px;
	height: 150px;
	text-align: center;
}

.addon_info > h4 {
	height: 40px;
	font-size: 18px;
	overflow: hidden;
	font-weight: 500;
	color: rgba(0, 0, 0, 0.7);
	margin: 0;
	padding: 0px;
	color: #1a70bb;
}

.addon_thumbs {
	height: 189px;
	overflow: hidden;
	display: inline-block;
	width: 100%;
}
.addon_thumbs img {
	width: 100%;
	max-width: none;
	display: inline-block;
	min-height: 100%;
	height: auto;
}

.addon_act {
	border: 1px solid #E0E0E0;
	padding: 15px;
	display: inline-block;
	width: 100%;
	position: relative;
}

.addon_desc {
	display: inline-block;
	color: rgba(0,0,0,0.7);
	height: 75px;
	font-size: 13px;
	overflow: hidden;
}

.table-responsive {
	overflow-x: visible !important;
}

.dataTables_filter {float: right;width: 60%;}
.dataTables_filter input[type="text"],
.dataTables_filter input[type="search"] {
	position: relative; 
	width: 70%;
	margin-left: 13px;
	padding: 5px;
	padding-left: 30px;
	background: #fff url(../img/search.png) 6px 7px no-repeat;
	border: 1px solid #ccc;
	color: #222;
}
.dataTables_filter label {width: 100%; text-align: right;color: #639534;}

.dataTables_length label {text-transform: capitalize; width: 100%; text-align: left;color: #639534;}
.dataTables_length select {
	position: relative; 
	margin-right: 13px;
	padding: 5px;
	color: #222;
}

.dataTable thead {
	background: #000;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,f6f6f6+47,ededed+100;White+3D+%231 */
	background: #ffffff; /* Old browsers */
	background: -moz-linear-gradient(top,  #ffffff 0%, #f6f6f6 47%, #ededed 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed',GradientType=0 ); /* IE6-9 */

}

.dataTable thead tr th {
	vertical-align: middle;
}
.dataTable thead tr th.sorting {
	background: transparent url(../img/sort-normal.png) 97% 50% no-repeat;
	padding-right: 3%;
}
.dataTable thead tr th.sorting_asc {
	background: transparent url(../img/sort-up.png) 97% 50% no-repeat;
	padding-right: 3%;
}
.dataTable thead tr th.sorting_desc {
	background: transparent url(../img/sort-down.png) 97% 50% no-repeat;
	padding-right: 3%;
}

.dataTable tfoot {background: #e5e5e5;}
.dataTable tfoot tr th {
	border-color: rgba(0,0,0,0.1);
}

.dataTables_paginate {text-align: right;}
.dataTables_paginate .pagination {
	margin: 0;
}
.dataTables_paginate .pagination li a {
	padding: 4px 10px;
	font-size: 14px;
}

.dataTables_paginate .pagination .prev a,
.dataTables_paginate .pagination .next a {}

table.dataTable tbody tr.selected {
	background-color: rgba(0, 166, 90, 0.2);
}
table.dataTable.hover tbody tr:hover.selected, table.dataTable.display tbody tr:hover.selected {
	background-color: rgba(0, 166, 90, 0.4);
}

.login-box .has-error {
	display: inline-block;
	padding: 15px 5px;
	background: rgba(181, 2, 2, 0.85);
	text-align: center;
	position: relative;
	top: 0;
	width: 100%;
	left: 0;
	z-index: 999;
	min-height: 40px;
	line-height: normal;
}
.login-box .has-error p {margin-bottom: 0;color: #ecd71a; font-size: 12px;}

.navbar-nav .sub-menu {
	display: none;
	width: 220px;
	position: absolute;
	top: 100%;
	left: 0;
	list-style: none;
	margin: 0;
	padding: 15px 10px;
	border: 1px solid rgba(0,0,0,0.1);
	background: #fff;
	border-top: 2px solid #008BE7;
}

.navbar-nav .sub-menu li > a {
	display: block;
	width: 100%;
	position: relative;
	margin: 0;
	padding: 15px 0;
}

.navbar-nav li:hover .sub-menu,
.navbar-nav li:focus .sub-menu {display: block}

.navbar-nav li:focus > a,
.navbar-nav li:hover > a {color: #008BE7!important;}


.navbar-nav > li.has-child {
	padding-right: 14px;
}

.navbar-nav > li.has-child:before {
	display: block;
	position: absolute;
	right: 5px;
	top: 14px;
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 7px 6px 0 6px;
	border-color: #333333 transparent transparent transparent;

}

.navbar-nav > li.has-child:hover:before,
.navbar-nav > li.has-child:focus:before {
	border-style: solid;
	border-width: 7px 6px 0 6px;
	border-color: #008BE7 transparent transparent transparent;

}

.loading_ {
	display: block;
	width: 100%;
	position: relative;
	height: 30px;
	line-height: 30px;
	color: #18B8EC;
	font-size: 15px;
	padding-left: 40px;
	background: url(../img/loading.gif) -46px -16px no-repeat;
	background-size: auto 60px;
	margin-top: 10px;
	display: none;
}

.info-indisc {
	border-radius: 0;
	padding: 35px 35px 25px 35px;
	min-height: 80px;
	padding-left: 140px;
	background: #d9edf7 url(../img/cashback.png) 25px center no-repeat;
	background-size: auto 80px;
}

.info-indisc > h3 {
	margin-top: -10px;
	color: #1a70bb;
	font-size: 20px;
}

.info-indisc .date-diskon, .info-indisc .val-diskon {
	font-weight: bold;
	color: #0c396a;
}
.info-indisc .count-diskon {
	font-weight: bold;
	color: #ca0000;
	font-size: 18px;
}

@media (max-width: 767px) {
	.promos .promo-item .promo-content {display: none!important;}
	.promos .promo-item {padding-left: 100px;}
	.promos:before {left: 20px;}
	.promos:after {left: 86px;}
	.promos .promo-item .promo-title {
		vertical-align: middle;
		display: table-cell;
		height: 70px;
	}
	.promos .slick-track {height: 200px;}

	.row-login .col-sm-4:first-child {
		margin: 5%;
		width: 90%;
		padding: 30px 20px;
	}

	.row-login > .clearfix {padding: 0;}
}

@media (max-width: 479px) {
	.promos .promo-item .promo-content {display: none!important;}
	.promos {
		height: 250px;
	}
	.promos .promo-item .promo-btn {
		top: 130px;
		right: auto;
		left: 0;
		width: 100%;
		height: 40px;
		line-height: normal;
	}
	.promos .promo-item {
		padding-left: 15px;
		margin-top: 50px;
		height: 180px;
	}
	.promos:before {left: 40%}
	.promos:after {display: none;}
	.promos .promo-item .promo-title {
		width: 100%;
		text-align: center;
		height: 100px;
		overflow: hidden;
		display: block;
		margin-top: 25px;
		text-transform: uppercase;
	}
	.promos .promo-item > div {
		height: 180px;
	}

	.dashboard-content, .dashboard-sidebar {
		padding: 15px;
	}
	.list_addon ul li {padding: 0;}
	#footer-link .col-sm-3 {opacity: 1!important;}
}


@media (max-width: 768px) {

	section.hero h2 {
		margin: 0;
		font-size: 28px;
		font-weight: 200;
	}

	#domain {
		border: 1px solid #ccc!important;
		margin: 15px 0;
	}

	#btn-form-domain, #btn-form-dns-domain {
		padding: 15px 20px;
		margin-bottom: 10px;
	}

	.box-renewal > .text-center > .form-group .row > div {
		display: inline-block;
		width: 100%;
		float: left;
		margin: 0!important;
	}

	.box-renewal > .text-center > .form-group .row > div > .col-md-6 {
		display: inline-block;
		width: 50%;
		float: left;
	}

	.box-renewal > .text-center > .form-group .row-button > .col-sm-6 .btn {
		padding: 15px 20px;
		margin-bottom: 10px;
	}

	.col-info-cart, .col-total {
		display: inline-block;
		width: 100%;
		position: relative;
		margin-bottom: 15px;
	}

	.row-act > .col-sm-4 {width: 100%;}

	.col-checkout-info {
		width: 100%;
		margin: 0!important;
	}

	.voucher-group .input-group .input-group-btn,
	.voucher-group .input-group .input-group-btn .btn,
	.voucher-group .input-group input {
		width: 100%;
		display: inline-block;
		border-radius: 0;
	}

	.payment-act .btn {
		padding: 15px 20px;
		margin-bottom: 10px;
	}

	.addon_thumbs {
		height: 250px;
	}

}

.btn-whatsapp{
	position:fixed;
	bottom:0;
	right:15px;
	width:auto;
	height:40px;
	line-height: 40px;
	text-align:center;
	color:#fff!important;
	border-radius:10px 10px 0 0;
	background:linear-gradient(#2ecc71,#1ABF60);
	overflow: hidden;
	padding:0 55px 0 15px;
	font-size: 12px;
	box-shadow: 0px -10px 50px -10px rgba(0,0,0,0.5);
	text-decoration: none!important;
	z-index: 100;
}
.btn-whatsapp .fa{
	width: 40px;
	height: 40px;
	line-height: 40px;
	position: absolute;
	top:0;
	right:0;
	background: rgba(0,0,0,0.1);
	display: block;
	font-size: 20px;
}
.whatsapp-box{
	position: fixed;
	bottom:50px;
	right:15px;
	z-index: 99;
	background: #fff;
	width: 350px;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0px 1px 10px rgba(0,0,0,0.1);
	transform: translateY(100%);
	opacity: 0;
	visibility: hidden;
	transition: .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.whatsapp-box.active{
	transform: translateY(0);
	visibility: visible;
	opacity: 1;
}
.whatsapp-box .welcome-text svg{
	width: 20px;
	height: auto;
}
.whatsapp-box .welcome-text svg{
	height: 18px;
	width: auto;
	fill:#aaa;
	vertical-align: middle;
}
.whatsapp-box .welcome-text .time{
	font-size: 12px;
	color:#aaa;
}
.whatsapp-box .whatsapp-form svg{
	height: 20px;
	width: auto;
	fill:#aaa;
}
.whatsapp-box .heading{
	background:linear-gradient(#2ecc71,#1ABF60);
	padding:15px;
	color:#fff;
	text-align: center;
	position: relative;
}
.whatsapp-box .heading .btn-close{
	background: none;
	border:none;
	outline: none;
	box-shadow: none;
	position: absolute;
	top:0;
	left:0;
	color:#fff;
	padding:15px 30px;
	font-size: 20px;
}
.whatsapp-box .heading .avatar{
	width: 80px;
	height: 80px;
	background: #fff;
	border-radius: 50%;
	overflow: hidden;
	margin:0 auto 10px;
}
.whatsapp-box .heading .avatar img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.whatsapp-box .name{
	font-weight: 700;
}
.whatsapp-box .chatbox{
	padding:15px;
	background: #eee;
}
.whatsapp-box .whatsapp-form{
	display: flex;
	flex-direction: row;
	flex:1;
	padding:10px;
}
.whatsapp-box .whatsapp-form .form-control{
	width: 100%;
	border:none;
	box-shadow: none;
	background: none;
}
.whatsapp-box .whatsapp-form .btn-send{
	width: auto;
	background: none;
	border:none;
	outline: none;
}
.whatsapp-box .welcome-text{
	background: #E4FDC7;
	font-size: 14px;
	position: relative;
	padding:15px;
	box-shadow: 0px 1px 3px rgba(0,0,0,0.1);
	border-radius: 5px;
	font-family: "roboto", sans-serif;
	margin-left:15px;
	line-height: 120%;
	transform: translateY(50px);
	opacity: 0;
	visibility: hidden;
	transition: .3s ease;
	transition-delay: .6s;
}
.whatsapp-box.active .welcome-text{
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.whatsapp-box .welcome-text:before{
	content: "";
	position: absolute;
	top:0;
	left:-16px;
	border:8px solid transparent;
	border-right: 8px solid #E4FDC7;
	border-top: 8px solid #E4FDC7;
}
.whatsapp-box .welcome-text .notice{
	float: right;
	margin:5px 0 0;
}