@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,300&display=swap');

:root{
    --accent-color:#F68A1E;
    --accent-hover-color:#C87D21;
    --gray-color :#979797;
    --app-height : calc(100vh - 100px);
}
html{
	font-size: 14px;
}
body{
	background: #fff;
	font-family: 'Poppins', sans-serif;
}
.sticky-bottom{
	position: sticky;
	position: -webkit-sticky;
	bottom: 0;
}
.mulish{
	font-family: 'Mulish', sans-serif;
}
.fw-medium{
	font-weight: 500;
}
.fw-semibold{
	font-weight: 600;
}
.rounded-10{
	border-radius: 10px;
}
.rounded-20{
	border-radius: 20px;
}
.object-fit-cover{
	object-fit: cover;
}
.object-fit-contain{
	object-fit: contain;
}
.bg-accent{
	background: var(--accent-color)!important;
}
.btn{
	outline: none!important;
	border-radius: 10px;
	min-height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.btn:active{
	box-shadow: none!important;
	outline: none!important;
}
.btn-accent{
	background: var(--accent-color)!important;
	border-color: transparent!important;
	color: #fff!important;
}
.btn-accent:hover{
	background: var(--accent-hover-color)!important;
}

.btn-outline-accent{
	background: none!important;
	border: 1px solid var(--accent-color)!important;
	color: var(--accent-color)!important;
}
.btn-check:active+.btn-outline-accent, .btn-check:checked+.btn-outline-accent, .btn-outline-accent.active, .btn-outline-accent.dropdown-toggle.show, .btn-outline-accent:active{
	background: var(--accent-hover-color)!important;
	color: #fff!important;	
}
.btn-outline-accent:hover{
	background: var(--accent-color)!important;
	color: #fff!important;
}
.btn-secondary{
	background: #475963;
}
.btn-warning{
	background-color: #f68014!important;
}
.btn-light{
	background-color: #fafafa;
}
.btn-light:hover{
	background-color: #eee;
}
.btn-light-border{
	background-color: #fafafa!important;
	border: 1px solid #c8d8e1!important;
}
.btn-light-border:hover{
	background-color: #c8d8e1!important;
	border: 1px solid #c8d8e1!important;
}
.btn-outline-light{
	border-color: #e1e1e1!important;
	color: #475963;
}
.btn-outline-light:hover{
	background-color: #e1e1e1!important;
}
.bg-warning{
	background-color: #f68014!important;
}
.bg-danger{
	background-color: #960707!important;
}
.text-accent{
	color: var(--accent-color)!important;
}
.text-gray{
	color: var(--gray-color);
}
.text-warning{
	color: #f68014!important;
}
.opacity-1{
	opacity: 0.1;
}
.opacity-2{
	opacity: 0.2;
}
.opacity-3{
	opacity: 0.3;
}
.opacity-4{
	opacity: 0.4;
}
.opacity-5{
	opacity: 0.5;
}
.opacity-6{
	opacity: 0.6;
}
.opacity-7{
	opacity: 0.7;
}
.opacity-8{
	opacity: 0.8;
}
.opacity-9{
	opacity: 0.9;
}
.form-label{
	font-size: 12px;
	font-weight: 500;
}
.form-control{
	background: #f6f6f6;
	border-radius: 10px;
	min-height: 46px;
	border: 1px solid transparent;
}
.form-control:focus{
	background: #f6f6f6;
	border: 1px solid transparent;
	box-shadow: none;
}
.form-control::placeholder{
	color: var(--gray-color);
}
.form-select{
	background: #f6f6f6;
	border-radius: 10px;
	min-height: 46px;
	border: 1px solid transparent;
}
.form-switch-alt .form-check-input{
	display: none;
}
.form-switch-alt .form-check-label{
	width: 76px;
	height: 40px;
	background-color: #e1e1e1;
	border-radius: 20px;
	position: relative;
	cursor: pointer;
}
.form-switch-alt .form-check-label:before{
	content: "";
	width: 38px;
	height: 38px;
	display: block;
	border-radius: 50%;
	background-color: #fff;
	position: absolute;
	inset: 0 auto auto 0;
	margin: 1px;
	z-index: 10;
	transition: .3s ease;
}
.form-switch-alt .form-check-input:checked~.form-check-label{
	background-color: #85e440;
}
.form-switch-alt .form-check-input:checked~.form-check-label:before{
	transform: translateX(36px);
}
.fs-sm{
	font-size: 10px;
}
.fs-md{
	font-size: 12px;
}
.btn .badge{
	min-width: 24px;
	height: 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 24px;
	font-size: 14px;
	padding: 0;
	font-weight: 400;
}
.app{
	width: 375px;
	margin: 0 auto;
	min-height: 100vh;
	background: #fff;
	transition: 500ms ease;
	opacity: 0;
	visibility: hidden;
	transform: translate(0,0);
}
.app.done{
	opacity: 1;
	visibility: visible;
}
.navbar{
	background: #fff;
}
.navbar .container{
	position: relative;
	min-height: 44px;
}
.navbar .action-left{
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
}
.navbar .action-right{
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
}
.navbar .btn{
	height: auto;
}
.navbar.bg-transparent{
	color: #fff;
	transition: .3s ease;
}
.navbar.bg-transparent .btn{
	color: #fff;
}
.navbar.fixed-top.float{
	background: #fff!important;
	color: #333!important;
	position: sticky;
	position: -webkit-sticky;
}
.navbar.fixed-top.float .btn{
	color: #333;
}
.splash-screen{
	background: #2e414b;
	font-weight: 300;
}
.splash-screen .logo img{
	width: 185px;
	transition: .3s ease;
}
.splash-screen .logo.fadeout img{
	opacity: 0;
}
.splash-screen-login{
	padding-top: 86px;
	color: #fff;
}
.splash-screen .bootstrap-select{
	width: 100%!important;
}
.splash-screen .bootstrap-select .dropdown-toggle{
	background: none;
	border: 1px solid #979797;
	color: #fff;
	height: 46px;
	line-height: 46px;	
	padding: 0 15px;
	border-radius: 10px;
}
.splash-screen .bootstrap-select .dropdown-toggle.show{
	background: #f6f6f6;
	color: #000;
}
.splash-screen .bootstrap-select .dropdown-menu{
	background: #f6f6f6;
	color: #979797;
	padding: 16px;
	border-radius: 10px;
}
.splash-screen .bootstrap-select .dropdown-menu li a{
	color: #979797;
	background: none;
	padding: 13px 0;
	border-bottom: 1px solid #c4c4c4;
	display: flex;
	justify-content: space-between;
}
.splash-screen .bootstrap-select .dropdown-menu li:last-child a{
	border: none;
}
.splash-screen .bootstrap-select .dropdown-menu li.active a:after{
	content: "\f272";
  	font-family: "bootstrap-icons";
}
.text-center .bootstrap-select .dropdown-toggle .filter-option{
	text-align: center;
}
.splash-screen .btn-submit{
	background: #f9cea4;
	color: #fff;
	font-weight: bold;
	font-size: 16px;
	color: #2e414b;
	border-radius: 10px;
	height: 46px;
	line-height: 46px;
	padding: 0 15px;
}
.splash-screen a{
	color: #fff;
	text-decoration: none;
}
.input-phone{
	border-radius: 10px;
	background: #f6f6f6;
	padding: 2px;
}
.input-phone .btn{
	background: #fff!important;
	border-radius: 8px!important;
}
.input-phone .form-control{
	background: none;
	border: none;
	outline: none;
	box-shadow: none;
}
.input-phone .form-control::placeholder{
	color: var(--gray-color);
}
.input-password{
	border-radius: 10px;
	background: #f6f6f6;
	padding: 2px;
}
.input-password .btn{
	background: none;
	border: none;
	outline: none;
	box-shadow: none;
}
.input-password .form-control{
	background: none;
	border: none;
	outline: none;
	box-shadow: none;
}
.input-password .form-control::placeholder{
	color: var(--gray-color);
}
.list-country .list-group-item{
	padding: 16px;
	color: #000!important;
}
.popup{
	position: fixed;
	inset: 0 50%;
	width: 375px;
	overflow: auto;
	z-index: 9999;
	height: auto!important;
	display: block!important;
	transition: .3s ease;
	visibility: hidden;
	opacity: 0;
	transform: translateY(50%) translateX(-50%);
	background: #fff;
}
.popup.show{
	visibility: visible;
	opacity: 1;
	transform: translateY(0) translateX(-50%);;
}
.content-full{
	min-height: var(--app-height);
}
.input-checkbox{
	position: relative;
}
.input-checkbox input{
	position: absolute;
	top: 0;
	left: 0;
	visibility: hidden;
	opacity: 0;
	display: none;
}
.input-checkbox label{
	display: flex;
	width: 100%;
	grid-gap: 16px;
	align-items: center;
	border: solid 1px #c8d8e1;
	padding: 15px;
	border-radius: 10px;
	color: #32353f;
}
.input-checkbox label .check-square{
	width: 16px;
	height: 16px;
	line-height: 16px;
	text-align: center;
	color: #f4f4f4;
	font-style: normal;
}
.input-checkbox label .check-square:before{
	content: "\f582";
	font-family: "bootstrap-icons";
}
.input-checkbox input:checked~label{
	border: solid 1px #f2994a;
  	background-color: #fff4eb;
}
.input-checkbox input:checked~label .check-square{
	background: #fff;
	color: #f68014;
}
.input-checkbox input:checked~label .check-square:before{
	content: "\F633";
}
.input-group .input-group-text{
	background: #f6f6f6;
	border: none;
}
.form-search{
	border-radius: 12px;
	overflow: hidden;
}
.btn-all{
	width: 24px!important;
	height: 24px!important;
	min-height: 24px!important;
	line-height: 24px;
	text-align: center;
	border-radius: 50%;
	padding: 0;
	color: #fff;
	background: #f68014;
	border: none;
}
.list-category .item{
	text-align: center;
	display: block;
	text-decoration: none;
	margin: 0 0 10px;
	width: 50px;
}
.list-category .item .icon{
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
  	border: solid 1px #f4f4f4;
	background-color: #fcfcfc;
	border-radius: 20px;
	margin: 0 auto 5px;
}
.list-category .item .title{
	font-size: 9px;
	color: #898a8d;
	display: block;
	line-height: 1.5;
	min-height: 30px;
}
.card-product{
	background-color: #f9f9f9;
	border: none;
	border-radius: 12px;
	overflow: hidden;
	text-decoration: none;
}
.card-product .title{
	color: #475963;
	font-size: 12px!important;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.card-product img.card-img{
	border-radius: 12px;
	overflow: hidden;
	object-fit: cover;
}
.card-product .start-bid{
	color: #6f6f6f;
	font-size: 6px;
}
.card-product .price{
	color: #f68014;
	font-size: 10px;
}
.card-product .images{
	position: relative;
}
.card-product .images.not-sold:before{
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(246, 20, 20, 0.4);
}
.card-product .images.not-sold:after{
	content: "NOT SOLD";
	position: absolute;
	inset: 50% auto auto 50%;
	transform: translate(-50%,-50%);
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 3px;
	white-space: nowrap;
	padding:8px;
	border: 3px solid #fff;
	color: #fff;
}
.card-product .images.sold:before{
	content: "";
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.6);

}
.card-product .images.sold:after{
	content: "SOLD";
	position: absolute;
	inset: 50% auto auto 50%;
	transform: translate(-50%,-50%);
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 3px;
	white-space: nowrap;
	padding:8px;
	border: 3px solid #fff;
	color: #fff;
}
.flex-nowrap .card-product{
	width: 140px;
}
.flex-nowrap .card-product img.card-img{
	width: 140px;
	height: 140px;
} 
.flex-nowrap .card-product.card-product-sm{
	width: 120px;
}
.flex-nowrap .card-product.card-product-sm img.card-img{
	width: 120px;
	height: 120px;
}
.see-all{
	color: #475963;
	font-size: 12px;
	font-weight: 300;
	text-decoration: none;
}
.navbar-menu{
	position: sticky;
	position: -webkit-sticky;
	inset: auto 0 0 0;
	z-index: 10;
	background: #f4f4f4;
	justify-content: space-around;
	text-align: center;
	padding: 15px 0;
}
.navbar-menu .nav-item	a.nav-link{
	text-align: center;
	text-decoration: none;
	color: #475963;
	padding: 10px 0;
}
.navbar-menu .nav-item	a.nav-link:hover{
	color: var(--accent-color);
}
.navbar-menu .icon{
	margin-bottom: 5px;
}
.navbar-menu a{
	font-size: 9px;
	color: #c4c4c4;
	text-decoration: none;
}
.navbar-menu .icon{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.navbar-menu a.active{
	color: #475963;
}
.nav-pills-secondary .nav-link{
  	border: solid 0.8px #929292;
  	border-radius: 8px;
  	 padding: 6px 12px;
  	 color: #929292;
}
.nav-pills-secondary .nav-link.active{
	background-color: #475963;
	color: #fff;
}
.modal .modal-dialog{
	justify-content: center;
}
.modal-content{
	width: 325px;
	max-width: calc(100% - 50px);
	border-radius: 30px;
	overflow: hidden;
	border: none;
}
.modal-content .modal-footer{
	padding: 0;
}
.modal-content .modal-footer{
	flex-wrap: nowrap;
}
.modal-content .modal-footer .btn{
	width: 100%;
}
.modal-notification .modal-content .image{
	position: relative;
}
.modal-notification .modal-content .image .caption{
	position: absolute;
	inset: auto 0 0;
	padding: 24px;
	color: #fff;
}
.modal-notification .modal-content .image .badge{
	position: absolute;
	inset: 20px 20px auto auto;
	padding: 5px 10px;
}
.card-link{
	display: flex;
	text-decoration: none;
	grid-gap: 16px;
	align-items: center;
	border: solid 1px #c8d8e1;
	padding: 15px;
	border-radius: 10px;
	color: #32353f;
}
.card-link .title{
	color: #32353f;
}
.card-link:active{
	border: solid 1px #f2994a;
  	background-color: #fff4eb;
}
.nav-filter{
	flex-wrap: nowrap;
	overflow: auto;
	white-space: nowrap;
	grid-gap: 10px;
	padding: 10px 0;
}
.nav-filter .nav-item .nav-link{
	background-color: none;
	border: 1px solid #9fa9b1;
	border-radius: 10px;
	padding: 6px 16px;
	color: #9fa9b1;
	font-size: 12px;
}
.nav-filter .nav-item .nav-link.active{
	color: #f68014;
	border: 1px solid #f68014;
	background-color: #fef0e2;
}
.cover{
	position: relative;
}
.cover .item{
	position: relative;
}
.cover .item .video-play{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 10;
	width: 50px;
	height: 50px;
	background-color: #0008;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 24px;
	transition: .3s ease;
}
.cover .item .video-play:hover{
	background: #000a;
}
.slick-dots{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0;
	padding: 0;
	text-align: center;
}
.slick-dots li{
	display: inline-block;
	margin: 2px;
}
.slick-dots li button{
	width: 8px;
	height: 8px;
	padding: 0;
	border-radius: 50%;
	background: #fff5;
	text-indent: -9999px;
	overflow: hidden;
	outline: none;
	border: none;
}
.slick-dots li.slick-active button{
	background: #fff;
}
.section-divider{
	height: 8px;
	background: #f7f9fe;
}
.table-pedigree{
	width: 100%;
	border-collapse: collapse;
}
.table-pedigree tr td{
	border-bottom: 1px solid #f68014;
	padding: 5px 0;
}
.badge-close-in{
	background: #fff3;
	padding: 6px;
	border-radius: 6px;
}
.badge-extra-time{
	background: #ed864a;
	padding: 6px;
	border-radius: 6px;
}
.form-upload-photo-button{
	position: relative;
}
.form-upload-photo-button input{
	display: none;
}
.form-upload-photo-button label{
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #f6f6f6;
	min-height: 46px;
	border-radius: 10px;
	padding-left: 15px;
	padding-right: 15px;
	cursor: pointer;
	color: #979797;
}
.form-upload-photo-preview{
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #f6f6f6;
	border-radius: 10px;
	padding: 16px;
	color: #979797;
}
.form-upload-photo-preview .preview{
	width: 118px;
}
.form-upload-photo-preview .btn-remove{
	background: none;
	color: #ef5350;
	border: none;
	outline: none;
	box-shadow: none;
	font-size: 24px;
}
.alert{
	border-radius: 10px;
}
.alert-warning{
	background-color: #fef0e2;
	border: none;
	border-radius: 10px;
	color: #898a8d;
	text-align: center;
}
.alert-danger{
	background-color: #e5f5e8;
	border-color: transparent;
}
.nav-tabs{
	border-bottom: 1px solid #E1E1E1;
}
.nav-tabs .nav-link{
	color: #9FA9B1;
	border: none;
}
.nav-tabs .nav-link.active{
	color: #475963;
	font-weight:500;
	border-bottom: 2px solid var(--accent-color);
}
.avatar{
	width: 40px;
	height: 40px;
	background-color: #eee;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	border-radius: 50%;
}
.admin-menu-item{
	display: flex;
	flex: 1;
	flex-wrap: nowrap;
	grid-gap: 15px;
	background: #fafafa;
	border: none;
	border-radius: 10px;
}
.admin-menu-item .title{
	flex-grow: 1;
	text-align: left;
}
.admin-menu-item .icon{
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
  	border: solid 1px #f4f4f4;
	background-color: #fcfcfc;
	border-radius: 20px;
	margin: 0 auto 5px;
}
.admin-menu-item .icon img{
	width: 24px;
	height: 24px;
	object-fit: contain;
}
.admin-menu-item i.bi-chevron-right{
	color: #c8d8e1;
}
.upload-photo-box{
	border-radius: 20px;
	border: 1px dashed #e1e1e1;
	min-height: 112px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.upload-photo-grid{
	border-radius: 20px;
	border: 1px dashed #e1e1e1;
}
.upload-photo-grid .preview{
	position: relative;
	cursor: pointer;
}
.upload-photo-grid .preview img{
	width: 100%;
	height: 80px;
	object-fit: cover;
	border-radius: 10px;
	overflow: hidden;
}
.upload-photo-grid .preview .remove{
	border: none;
	width: 16px;
	height: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	border-radius: 50%;
	background-color: #9fa9b1;
	position: absolute;
	inset: -8px -8px auto auto;
}
.upload-photo-grid .button-add{
	width: 100%;
	height: 80px;
	border: 1px solid #e1e1e1;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
}
@media (max-width: 480px){
	.app{
		width: 100%;
	}
}
@media (max-width: 480px) and (min-height: 700px){
	.splash-screen .logo img{
		width: 250px;
	}	
	.splash-screen-login{
		padding-top: 150px;
	}
	.popup{
		width: 100%;
	}
}

.modal-custom {
    position: absolute;
    top:0;
    left:0;
    height:100%;
    width: 100%;

    z-index:101;
    background-color: #000;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.5s, visibility 0s 0.5s;
  }

  .modal-custom.active {
    opacity: 0.7;
    visibility: visible;
    transition: opacity 0.5s;
}

.modal-window {
    width: 60%;
    flex-grow: 0;
    position: fixed; /* or absolute */
    top: 50%;
    left: 50%;
    border-radius: 50px;
    background-color: #fff;
    opacity: 1 !important;
    z-index:103;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0s 0.3s;
	margin-left:-30%;
  }

  .modal-window-active {
    visibility: visible;
    transition: opacity 0.3s;
  }

  .loader {
    margin:0px auto;
    width: fit-content;
  }

  .loader img {
	width: 150px;
    height: 150px;
    margin-top: 20px;
  }

  .loader-text {
    display: block;
    font-family: Poppins;
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #2e414b;
	margin-bottom: 20px;
  }

  .input-invalid {
      background-color:#f7d7d7 !important;
  }

  .div-error {
	  width:100%;
	  height:50px;
	  position:absolute;
	  top:0;
	  background-color: #ffb0b0;
	  border-bottom: solid 1px #ad0000;
	  z-index: 1999;
	  color: #ad0000;
	  padding:15px 0 0 20px;
	  display: none;
  }

  .gak-kelihatan {
	  display:none !important;
  }