/**
colors:
       hitam: #000000
   biru-muda: #0193cf
    biru-tua: #014d6f
  merah-muda: #f1635f
      kuning: #f4d00c
      oranye: #e0a024

**/

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
body {
	font-size: 13px;
	font-weight: normal;
	font-family: "Roboto Condensed", arial, sans-serif;
	background: #f4d00c;
	background: #fe9;
	xbackground: linear-gradient(0deg, #f4d00c 80%, #fff 100%);
}
html {
	xbackground: #466F82;
}


/* HEADER */
.header {
	xbackground: #666;
}
.header a.normallink {
	text-decoration: none;
}
.header-logo-container {
	display: inline-block;
	xpadding: 1em 2em 2em 2em;
	padding: 5px 20px;
	color: white;
	xbackground: black;
	margin-right: 120px;
	margin-top: 10px;
}
h1.header-logo-brand {
	font-family: "Times New Roman", times, serif;
	font-size: 3em;
	font-weight: normal;
}
h2.header-logo-tagline {
	font-size: 1em;
	font-weight: normal;
}
input[type=button].header-subscription {
	position: absolute;
	right: 20px;
	top: -10px;
	display: inline-block;
	width: 100px;
	height: 100px;
	margin-top: 10px;
	background: url(../images/subscribe.png) center center no-repeat; 
	background-size: 100% 100%;
	border: none;
	padding: 0px;
	outline: none;
	cursor: pointer;
	xtransform: rotate(10deg);
}

/* SEARCH */
.search {
	xmargin-top: 2em;
}
ul.search-tab {
	list-style-type: none;
	xpadding-left: 20px;
}
ul.search-tab > li {
	display: block;
	float: left;
	margin-left: 10px;
	xmargin-top: 7px;
}
ul.search-tab > li.active {
	margin-top: 0;
	xborder-top: 7px solid #f1635f;
	xborder-top: 7px solid black;
}
ul.search-tab > li > input[type=button] {
	display: block;
	padding: .5em 1em;
	font-family: inherit;
	font-size: 1.2em;
	color: black;
	color: white;
	background: #e0a024;
	xbackground: #f4d00c;
	border: none;
	min-width: 150px;
	text-align: center;
	outline: none;
	border-radius: 2px 2px 0 0;
	cursor: pointer;
}
ul.search-tab > li.active > input[type=button] {
	color: white;
	background: #444;
}

.search-box {
	padding: 1.5em 2em 2.5em 2em;
	color: white;
	background: #444;
	xborder-top: 3px solid black;
}
.search-box > table {
	border-spacing: .5em;
}
.search-box > table > tbody > tr > td {
	padding: 0;
	text-align: center;
	vertical-align: middle;
}
.search-box select,
.search-box input[type=text] {
	width: 100%;
	font-family: inherit;
	background: #f7f7f7;
	border: 1px solid #ccc;
	border: none;
	border-radius: 1px;
	padding: .25em .5em;
	outline: yellow;
}
.search-box input[type=submit].search-button {
	padding: 1em 2em;
	font-family: inherit;
	font-size: 1.4em;
	color: white;
	background: black;
	border: none;
	width: 100%;
	xheight: 100%;
	
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	xoutline: yellow;
	
}


/* SEARCH RESULT */
table.search-result {
	background: #f7f7f7;
	background: #f0f0f0;
}
.search-one-result-link {
	position: relative;
	display: block;
	float: left;
	color: inherit;
	margin: 0 15px 15px 0;
	text-decoration: none;
	box-shadow: 0 0 0px rgba(0,0,0,0.2);
	border-radius: 3px;
	overflow: hidden;
	transition: transform .1s ease-out;
	z-index: 0;
}
.search-one-result-link:hover {
	box-shadow: 0 5px 10px rgba(0,10,20,0.25);
	xtransform: scale(1.03);
	transform: translateY(-4px);
	z-index: 2;
}
.search-one-result-container {
	width: 210px;
}
.search-one-description {
	display: block;
	padding: 1em;
	background: white;
	line-height: 1.1em;
}
p.search-one-description-paragraph {
	margin: .5em 0;
}


/* DETAIL RESULT */
.detail-result {
	padding: 2em;
}
.detail-photo-container {
	display: block;
	position: relative;
}
.detail-one-photo-container {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	box-shadow: 0 0 10px rgba(0,0,0,0.15);
	z-index: 1;
}
img.detail-one-photo {
	display: block;
	background: #eee;
	z-index: 1;
}
.detail-one-caption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: .5em;
	color: white;
	font-size: 1.4em;
	text-align: center;
	background: linear-gradient(0deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 100%);
	z-index: 2;
}
.detail-one-information {
	padding: 1em 2em;
	xbackground: white;
	line-height: 1.2em;
}
.spinner {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 64px;
	height: 64px;
	border: none;
	transform: translate(-50%, -50%);
	outline: none;
	z-index: 6;
}
button.detail-arrow-left {
	position: absolute;
	top: 50%;
	left: 0;
	width: 60px;
	height: 60px;
	border: none;
	background: url(../images/icon-arrow-left-black.svg) center center no-repeat;
	background-size: 100% 100%;
	transform: translateY(-50%);
	cursor: pointer;
	outline: none;
	opacity: .25;
	z-index: 5;
}
button.detail-arrow-right {
	position: absolute;
	top: 50%;
	right: 0;
	width: 60px;
	height: 60px;
	border: none;
	background: url(../images/icon-arrow-right-black.svg) center center no-repeat;
	background-size: 100% 100%;
	transform: translateY(-50%);
	cursor: pointer;
	outline: none;
	opacity: .25;
	z-index: 5;
}
button.detail-arrow-left:hover,
button.detail-arrow-right:hover {
	opacity: 1;
}


/* SIDEBAR */
.sidebar-container {
	width: 25%;
	color: black;
	
	background: #f4d00c;
	padding: 2em;
	font-size: 1.1em;
}
img.sidebar-sales-image {
	display: inline-block;
	border-radius: 50%;
	background: white;
}
.sidebar-sales-arrow {
	position: absolute;
	left: -2em;
	width: 30px;
	height: 60px;
	top: 50%;
	transform: translateY(-50%);
	background: url(../images/sales-triangle.svg) center center no-repeat;
}
.sidebar-nice-text {
	position: relative;
	margin-top: 5em;
	color: white;
	background: rgba(0,0,20,0.15);
	padding: 1em;
	border-radius: 3em 3em 3em 0;
}
.sidebar-nice-text-footer {
	margin-top: 1.5em;
	xcolor: #B1C0C9;
	color: white;
	text-align: center;
}


/* SUBSCRIBE */
.subscribe {
	color: #ccc;
	xbackground: #333;
	xbackground: #35464C;
	xbackground: #24424C;
	background: #555;
}
.subscribe-header {
	font-weight: normal;
}
input[type=text].subscribe-email,
input[type=text].subscribe-code {
	color: white;
	background: rgba(0,0,0,0.2);
	width: 100%;
	border: 1px solid rgba(255,255,255,0.2);
	line-height: 1em;
	padding: .5em;
	height: 2.25em;
	box-sizing: border-box;
	outline: none;
}
input[type=text].subscribe-code {
}
input[type=submit].subscribe-button {
	font-family: "Roboto Condensed", arial, sans-serif;
	color: white;
	background: black;
	border: none;
	line-height: 1em;
	padding: 1em 1em;
}
.subscribe-warning {
	font-size: 1.1em;
	color: white;
	background: #a00;
	padding: 1em;
	margin-bottom: 1.5em;
	animation: subscribe-blink .2s 5 linear;
}
.subscribe-information {
	font-size: 1.1em;
	color: white;
	background: rgba(0,0,0,0.3);
	padding: 1em;
	animation: subscribe-blink .2s 2 linear;
}

@keyframes subscribe-blink {
	0% { opacity: 0; }
	100% { opacity: 1; }
}


/* FOOTER */
.footer {
	font-size: .9em;
	line-height: 1.1em;
	color: #777;
	background: #333;
}
.footer-link {
	color: #666;
	font-weight: bold;
	text-decoration: none;
}


/* CAPTCHA */
img.captcha-image {
	height: 2.25em;
	width: 7em;
}


/* GLOBAL */
.width-limiter {
	max-width: 1000px;
	min-width: 800px;
	margin: 0 auto;
	xbox-shadow:0 0 15px rgba(0,0,0,0.15);
}
div.fullwidth {
	display: block;
}
button.button-round-lt {
	width: 40px;
	height: 40px;
	border: none;
	outline: none;
	background: url(../images/icon-arrow-left-black.svg) center center no-repeat;
	background-size: 100% 100%;
	cursor: pointer;
}
button.button-round-gt {
	width: 40px;
	height: 40px;
	border: none;
	outline: none;
	background: url(../images/icon-arrow-right-black.svg) center center no-repeat;
	background-size: 100% 100%;
	cursor: pointer;
}
table {
	border-spacing: 0;
	
}
table.fullwidth {
	width: 100%;
}
a.paging {
	position: relative;
	display: inline-block;
	width: 2em;
	height: 2em;
	line-height: 2em;
	text-align: center;
	color: black;
	text-decoration: none;
}
a.paging.active {
	color: white;
	background: black;
	border-radius: 50%;
}
h1 {
	font-size: 1.8em;
}
h2 {
	font-size: 1.5em;
}
h3 {
	font-size: 1.3em;
}
h4 {
	font-size: 1.2em;
}
h1,h2,h3,h4 {
	font-weight: normal;
	margin: .25em 0;
	letter-spacing: -.02em;
}
.align-left {
	text-align: left;
}
.align-center {
	text-align: center;
}
.align-right {
	text-align: right;
}
.align-top {
	vertical-align: top;
}
.align-middle {
	vertical-align: middle;
}
.align-bottom {
	vertical-align: bottom;
}
.clearfix:after {
	content: "";
	display: table;
	clear: both;
}

/* OFFLINE */
.offline-container {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 67%;
	padding: 3em;
	color: black;
	background: white;
	text-align: center;
	box-shadow: 0 0 15px rgba(0,0,0,0.15);
	transform: translate(-50%, -50%);
	border-radius: 2px;
	z-index: 1;
}
.offline-background {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	xbackground: linear-gradient(0deg, #466F82 0%, #E0E9ED 100%);
	background: linear-gradient(0deg, #e0a024 0%, #f4d00c 100%);
	z-index: 0;
}

/* UNDER CONSTRUCTION */

img.logo-underconstruction {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	transition: opacity .5s ease;
	z-index: 100;
	
}
img.logo-underconstruction:hover {
	opacity: 0;
}

/* COLORS */
/*

  DARK BLUISH GRAY
   .
   . #466F82
   . #809EAD
   . #B1C0C9B1C0C9
	. #E0E9ED
	.
  LIGHT BLUISH GRAY
*/