@charset "utf-8";
/* CSS Document */

/******************************

[Table of Contents]

1. Fonts
2. Body and some general stuff
3. Header
	3.1 Top Bar
	3.2 Header Content
	3.3 Logo
4. Menu
5. Home
6. Contact
7. Footer



/*********************************
4. Menu
*********************************/

.menu_container {
	position: fixed;
	top: 0;
	right: -50vw;
	width: 50vw;
	height: 100vh;
	background: #FFFFFF;
	z-index: 101;
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;
	-ms-transition: all 0.6s ease;
	-o-transition: all 0.6s ease;
	transition: all 0.6s ease;
	visibility: hidden;
	opacity: 0;
}

.menu_container.active {
	visibility: visible;
	opacity: 1;
	right: 0;
}

.menu {
	position: absolute;
	top: 150px;
	left: 0;
	padding-left: 15%;
}

.menu_inner {
	width: 100%;
	height: 100%;
}

.menu_list {
	-webkit-transform: translateY(1.5rem);
	-moz-transform: translateY(1.5rem);
	-ms-transform: translateY(1.5rem);
	-o-transform: translateY(1.5rem);
	transform: translateY(1.5rem);
	-webkit-transition: all 1000ms 400ms ease;
	-moz-transition: all 1000ms 400ms ease;
	-ms-transition: all 1000ms 400ms ease;
	-o-transition: all 1000ms 400ms ease;
	transition: all 1000ms 400ms ease;
	opacity: 0;
}

.menu_container.active .menu_list {
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	-ms-transform: translateY(0px);
	-o-transform: translateY(0px);
	transform: translateY(0px);
	opacity: 1;
}

.menu_item {
	margin-bottom: 5px;
}

.menu_item a {
	font-family: 'Roboto', sans-serif;
	font-size: 36px;
	font-weight: 700;
	color: #272727;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

.menu_item a:hover {
	color: #ffb606;
}

.menu_close_container {
	position: absolute;
	top: 86px;
	right: 79px;
	width: 21px;
	height: 21px;
	cursor: pointer;
	z-index: 10;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

.menu_close {
	top: 9px;
	width: 21px;
	height: 3px;
	background: #3a3a3a;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

.menu_close::after {
	display: block;
	position: absolute;
	top: -9px;
	left: 9px;
	content: '';
	width: 3px;
	height: 21px;
	background: #3a3a3a;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

.menu_close_container:hover .menu_close,
.menu_close_container:hover .menu_close::after {
	background: #f28b00;
}

.menu_extra {
	position: absolute;
	left: 0;
	bottom: 0;
	padding-left: 15%;
	padding-bottom: 25px;
}

.menu_appointment a {
	font-size: 13px;
	color: #283290;
}

.menu_emergencies {
	font-size: 13px;
	color: #272727;
}

/*********************************
5. Home
*********************************/

.home {
	width: 100%;
	height: 473px;
}

.home_background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.home_container {
	position: absolute;
	left: 0;
	bottom: 118px;
	width: 100%;
}

.home_title {
	font-size: 30px;
	font-weight: 900;
	color: #f28b00;
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: #ffffff;
}

.home_title span {
	color: #f28b00;
}

.breadcrumbs {
	margin-top: -2px;
}

.breadcrumbs ul li {
	display: inline-block;
	position: relative;
}

.breadcrumbs ul li:not(:last-child)::after {
	display: inline-block;
	position: relative;
	content: '/';
	margin-left: 7px;
	margin-right: 2px;
}

.breadcrumbs ul li,
.breadcrumbs ul li a {
	font-size: 14px;
	font-weight: 900;
	color: #000;
	-webkit-text-stroke-width: 0.7px;
	-webkit-text-stroke-color: #ffffff;
}

/*********************************
6. Buttons
*********************************/

.buttons {
	width: 100%;
	background: #FFFFFF;
	padding-top: 95px;
}

.ele_button:not(:last-child) {
	margin-right: 34px;
}

.ele_button_2 {
	background: #f28b00;
}

.ele_button_2::after {
	background: #283290;
}

.ele_button_3 {
	background: #FFFFFF;
	border: solid 2px #283290;
}

.ele_button_3::after {
	bottom: -2px;
}

.ele_button_3:hover::after {
	height: calc(100% + 2px);
}

.ele_button_3 a {
	color: #283290;
}

/*********************************
7. Accordions & Tabs
*********************************/

.accordions_tabs {
	width: 100%;
	background: #FFFFFF;
	padding-top: 65px;
}

.accordions_tabs_row {
	margin-top: 35px;
}

.accordion_container:not(:last-child) {
	margin-bottom: 10px;
}


.accordion2::before {
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 3px;
	content: '';
	background: #f28b00;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

.accordion_panel {
	padding-right: 8px;
	max-height: 0px;
	overflow: hidden;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}

.accordion_panel>div {
	padding-bottom: 19px;
}

.accordion_panel p {
	padding-top: 35px;
}

.tabs {}

.tabs_container {
	width: 100%;
}

.tab {
	height: 60px;
	background: #f4f5fb;
	font-size: 18px;
	color: #232323;
	font-weight: 500;
	line-height: 60px;
	text-align: center;
	cursor: pointer;
	padding-left: 42px;
	padding-right: 44px;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

.tab:not(:last-child) {
	margin-right: 7px;
}

.tab::after {
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 3px;
	content: '';
	background: #f28b00;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

.tab.active,
.tab:hover {
	background: #283290;
	color: #FFFFFF;
}

.tab_panels {
	padding-left: 2px;
	padding-right: 2px;
	padding-top: 41px;
	padding-bottom: 32px;
}

.tab_panel {
	display: none !important;
	width: 100%;
	height: 100%;
	-webkit-animation: fadeEffect 1s;
	animation: fadeEffect 1s;
}

/* Fade in tabs */
@-webkit-keyframes fadeEffect {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes fadeEffect {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.tab_panel.active {
	display: block !important;
}

.tab_panel_content p:last-of-type {
	margin-bottom: 0;
}

.tab_text p {
	-webkit-transform: translateY(-6px);
	-moz-transform: translateY(-6px);
	-ms-transform: translateY(-6px);
	-o-transform: translateY(-6px);
	transform: translateY(-6px);
}

.tab_text img {
	width: 190px;
	height: 177px;
	float: right;
	margin-left: 15px;
}

/*********************************
8. Milestones
*********************************/

.milestones {
	width: 100%;
	background: #FFFFFF;
	padding-top: 95px;
}

.milestones_container {
	margin-top: 73px;
}

.milestone {
	width: 100%;
}

.milestone_icon {
	display: inline-block;
	height: 81px;
	width: 81px;
}

.milestone_icon img {
	max-width: 100%;
}

.milestone_counter {
	font-size: 30px;
	font-weight: 500;
	color: #232323;
	line-height: 0.75;
	margin-top: 37px;
}

.milestone_text {
	font-size: 18px;
	font-weight: 500;
	color: #696969;
	margin-top: 23px;
	line-height: 0.75;
}

/*********************************
9. Loaders
*********************************/

.loaders {
	width: 100%;
	background: #FFFFFF;
	padding-top: 95px;
	padding-bottom: 34px;
}

.loaders_container {
	margin-top: 85px;
}

.loader {
	width: 118px;
	height: 118px;
	margin: 0 auto;
}

.loader span {
	position: absolute;
	left: 50%;
	bottom: -42px;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	font-size: 18px;
	font-weight: 500;
	color: #232323;
	white-space: nowrap;
}

/*********************************
10. Icon Boxes
*********************************/

.icon_boxes {
	width: 100%;
	background: #FFFFFF;
	padding-top: 95px;
	padding-bottom: 65px;
}

.services_row {
	margin-top: 79px;
}

.service_col {
	margin-bottom: 30px;
}


/*********************************
10. Sub Product
*********************************/
.product-page {
	padding-top: 115px;
	background-color: #e5f3f5;
}

.product-page .namaKategori {
	color: #007bff;
	margin-bottom: 10px;
}

.product-page .serviceprod {
	background-color: #76bbe3 !important;
	color: #fff;
}

.product-page .serviceprod :hover {
	color: #e4e4e4;
}


/*********************************
10. Detail Product
*********************************/
.title-product {
	background-color: #fff;
	padding-bottom: 224px;
	padding-top: 0px;
	position: relative;
}

.detail_product {
	padding-top: 65px;
}


.detail_product_page {
	padding-top: 120px;
}

.main-image-container {
	width: 100%;
	transform: translate(0%, -35%);
	position: absolute;
	background: white;
	border-radius: 10px;
	padding: 15px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.main-image-container img {
	width: 100%;
	height: 350px;
	object-fit: cover;
	border-radius: 10px;
}

.position-image {
	top: 10%;
	z-index: 0;
	background-color: #52bdea;
}

.width-section {
	width: 500px;
}

.thumbnail-row {
	margin-top: 266px;
}

.thumb-img {
	width: 120px;
	height: 80px;
	object-fit: cover;
	border-radius: 10px;
	cursor: pointer;
	border: 1px solid transparent;
	transition: border 0.3s;
	margin-right:10px;
}

.thumb-img.active {
	border-color: #007bff;
}

.detail_product_page .description {
	margin-top: 46px;
}

.ketersediaan p {
	color: #ffffff;
}

@media (max-width: 768px) {
	.main-image-container {
		width: 100%;
	}

	.width-section {
		width: 380px;
	}	
}

.detail-spesifikasi .accordion .card {
	background-color: transparent;
	border: none;
	border-bottom: 1px solid #fff;
	border-radius: 0;
}

.detail-spesifikasi .accordion .card-header {
	background-color: transparent;
	padding: 1rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
}

.detail-spesifikasi .accordion .card-header h5 {
	margin: 0;
	font-weight: bold;
}

.accordion-button {
	background-color: #e5f3f5;
	color: #2688ab;
	border: none;
	border-radius: 50%;
	width: 32px;
	height: 32px;
	font-size: 20px;
	line-height: 1;
	text-align: center;
	transition: all 0.3s ease;
}

.accordion-body {
	padding: 0 1rem 1rem 1rem;
	color: white;
}

.accordion p{
	color:white;
}

.caption{
	color:white;
}

.caption p {
	color:white;
}

.description .h3{
	color: #0d7fcb;
}

.detail-spesifikasi{
	color: #fff;
}

.detail-spesifikasi .accordion .card-header {
	border: 0px;
}

.button-keranjang{
	cursor: pointer;
}

/* // keranjang */

.keranjang {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.keranjang img.bg-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	top: 0;
	left: 0;
	z-index: 1;
}

.overlay {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to bottom, rgba(0, 123, 255, 0.6), rgba(0, 123, 255, 0.3));
	z-index: 2;
}

.content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 3;
	color: white;
	text-align: center;
}

.content h1 {
	font-size: 3rem;
	font-weight: bold;
	margin-bottom: 1rem;
}

.content .btn {
	font-size: 1.2rem;
	padding: 0.75rem 2rem;
}

/* CART */
.cart {
	padding-top: 79px;
	background-color: #cfeffc;
	height: 100vh;
	overflow: auto;
}

.no-gutters{
	background-color: #9ad4ec;
	padding: 15px;
	height: 100vh;
	overflow: auto;
}

.labelHead{
	border-bottom: 1px solid #fff;
}

.right-side {
	background-color: #65c5ee;
	height: 100vh;
	padding: 40px;
	overflow-y: auto;
}

.product-card {
	background: none;
	padding: 20px 0;
}

.product-img {
	border-radius: 10px;
}

.qty-control {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	overflow: hidden;
}

.qty-control .minus {
	background-color: #159d99;
	color: #fff;
	border: none;
	padding: 0.5rem 1rem;
	font-size: 20px;
	border-radius: 10px 0px 0px 10px;
}

.qty-control .plus {
	background-color: #159d99;
	color: #fff;
	border: none;
	padding: 0.5rem 1rem;
	font-size: 20px;
	border-radius: 0px 10px 10px 0px;
}

.qty-control input {
	width: 50px;
	text-align: center;
	border: none;
	font-size: 18px;
	background-color: #fff;
	padding: 10px;
}

.product-img.item-produk{
	width: 80px !important;
}

.judul-kategori{
	color: #0d7fcb;
	margin-bottom: 50px;
}

   
@media only screen and (max-width: 500px) {
	.qty-control .minus {
		background-color: #159d99;
		color: #fff;
		border: none;
		padding: 0.2rem 0.5rem;
		font-size: 18px;
		border-radius: 10px 0px 0px 10px;
	}
	
	.qty-control .plus {
		background-color: #159d99;
		color: #fff;
		border: none;
		padding: 0.2rem 0.5rem;
		font-size: 18px;
		border-radius: 0px 10px 10px 0px;
	}
	
	.qty-control input {
		width: 40px;
		text-align: center;
		border: none;
		font-size: 14px;
		background-color: #fff;
		padding: 5px;
	}
  }