@font-face{
	font-family: alte;
	font-display:swap;
	src: url("../font/AlteHaasGroteskRegular.ttf") format("truetype");
}
@font-face{
  font-family: NotoMono;
  font-display:swap;
  src: url("../font/NotoMono-Regular.ttf") format("truetype");
}
@font-face{
	font-family: Quattrocento;
	font-display:swap;
	src: url("../font/QuattrocentoSans-Regular.otf") format("opentype");
}
@font-face{
  font-family: Quattrocento;
  font-display:swap;
  font-weight: bold;
  src: url("../font/QuattrocentoSans-Bold.otf") format("opentype");
}


:root {
  --pwd-icon-w: 45px;
  --maincolor: #008e52;
}

.dropshipper-home{
	background-image: url(../../assets/image/dropshipper/landing.jpg);
	background-size: cover;
	background-repeat: no-repeat;
  	background-color: #000;
}

/*#ffdd57*/
html body {
  background-color:#f9f9f9;
  line-height:1;
  font-size:14px;
  font-style:normal;
  height: 100%;
  -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

body.v_body{
	font-family: Quattrocento;
  letter-spacing: 0.2px;
}

.admin_font{
  font-family: NotoMono;
  letter-spacing: 0.2px;
}

.font2{
  font-family: charles!important;
}
.maincolor{
  background-color: var(--maincolor);
}
.main-fontcolor{
  color: var(--maincolor);
}
.sort-item{
  padding: .3rem 0.75rem;
}
/*=================PWD INPUT================*/
.password-container{
  width: 100%;
  position: relative;
  display: flex;
}

.password-container .password-input{
  padding-right: calc( var(--pwd-icon-w) + 2px );
}

.password-container #password-icon{
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: var(--pwd-icon-w);
  color: #8e8e8e;
  font-size: 18px;
}
.password-container #password-icon:hover{
  color: #595959;
  transition: .15s color linear;
}
/*=================Checkout=================*/
.itm-name{
  font-size: 1.25rem;
}
.qty-opt{
  font-size: 1.25rem;
  user-select: none;
}
@media(min-width: 576px){
  .itm-name{
    font-size: 1.75rem;
  }
  .qty-opt{
    font-size: 1.5rem;
  } 
}
/*=================Custom Radio Button=================*/
.c-rcontainer {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-weight: 400;
  line-height: 1.25;
  font-size: 1rem;
}
/* Hide the browser's default radio button */
.c-rcontainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 0px;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
  border-radius: 50%;
}

.c-rcontainer:hover input ~ .checkmark {
  background-color: #ccc;
  transition: .25s background-color ease;
}
.c-rcontainer input:checked ~ .checkmark {
  background-color: #01A736;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
/* Show the indicator (dot/circle) when checked */
.c-rcontainer input:checked ~ .checkmark:after {
  display: block;
}
/* Style the indicator (dot/circle) */
.c-rcontainer .checkmark:after {
  top: 6px;
  left: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

#set-category-list,#filter-modal .modal-body{
  text-transform: capitalize;
}

.custom-control-label.line-height{
  line-height: 1.65rem;
}
/*=================search&filter=================*/
.search-product{
	width: 95%;
	border-radius: 0;
}
.search-product:focus,.warehouse-lacak:focus,.checkout-userdata input:focus{
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 3px rgb(15, 155, 133);
	border-color: #03a640;
}
/*.product-filter .radio label{
	line-height: 1.5;
}*/
.floating-filter{
  position: fixed;
  bottom: 60px;
  left: 50%;
  transform: translate(-50%,0);
  -moz-transform: translate(-50%,0);
  -webkit-transform: translate(-50%,0);
  border-radius: 10%;
  padding: .5rem 1rem;
  background-color: #fdfdfd;
  border: 3px solid rgba(142,142,142,0.08);
  cursor: pointer;
}
/*=================paging=================*/
.pagination.custom-1{
  color: var(--maincolor);
}
.pagination.custom-1 .page-item{
  cursor: pointer;
  user-select: none;
}
.pagination.custom-1 .page-item.active .page-link{
  background-color: var(--maincolor);
  border-color: var(--maincolor);
  color: #fff;
}
/*=================CARD=================*/
.card.custom-1{
  border-bottom: 3px solid var(--maincolor);
}
.card.custom-1 .top-text{
  background-color: var(--maincolor);
  padding: 0.25rem;
  color: #fff;
}
.overlay-item-img{
  position: absolute;
  bottom: 2%;
  right: 1%;
  background-color: rgba(0,0,0,0.8);
}
.overlay-item-img.max{
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.overlay-item-img .overlay-text{
  color: #fff;
  font-size: 17px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}
/*=================LOADER=================*/
.c-loader{
  position:fixed;
  top: 0;
  left:0;
  height:100%;
  width:100%;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}
.c-loader{
  background-color: rgba(255,255,255,0.7);
}
.c-loader.active{
  display: flex;
}
#loader-4 span{
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background-color: var(--maincolor);
  margin: 35px 5px;
  opacity: 0;
}

#loader-4 span:nth-child(1){
  animation: opacitychange 1s ease-in-out infinite;
}

#loader-4 span:nth-child(2){
  animation: opacitychange 1s ease-in-out 0.33s infinite;
}

#loader-4 span:nth-child(3){
  animation: opacitychange 1s ease-in-out 0.66s infinite;
}

@keyframes opacitychange{
  0%, 100%{
    opacity: 0;
  }

  60%{
    opacity: 1;
  }
}
/*=================Modal=================*/
body.modal-open {
  overflow: hidden;
}
.full-modal{
  max-width: 100vw;
  margin: 0;
}
.full-modal .modal-content{
  height: 100vh;
  border-radius: 0;
  border: 0;
}
.full-modal .modal-body{
  overflow-y: auto;
}
.full-modal .modal-footer,.full-modal .modal-header{
  border-radius: 0;
}
.modal-open {
  overflow: hidden;
}
.close.white{
  color: #fff;
  opacity: 1;
  font-size: 2rem;
}
/*============================RADIO============================*/
.custom-control-input:checked ~ .custom-control-label::before {
  border-color: var(--maincolor);
  background-color:var(--maincolor);
}
/*.custom-control-label::before,.custom-control-label::after{
  width: 1.25rem!important;
  height: 1.25rem!important;
}*/
/*============================NAVBAR============================*/
.navbar.custom-1{
  padding: 0.5rem!important;
  border-bottom: 2px solid var(--maincolor);
}
.navbar-nav.custom-1 li{
  margin-top: auto;
  margin-bottom: auto;
}
.navbar-nav.custom-1 li a{
  /*color: #fff;*/
  color: var(--maincolor);
  font-size: 1rem;
  padding: 1rem;
}
.navbar-nav.custom-1 li a:hover{
  color: #000;
  text-decoration: none;
}
.navbar-nav.custom-1 .dropdown-menu{
  /*background-color: #4a4a4a;*/
  max-height: 20vh;
  overflow-y: auto;
  overflow-x: hidden;
}
.navbar-nav.custom-1 .dropdown-toggle::after{
  vertical-align: .155em;
}
@media(min-width: 576px){
  .navbar-nav.custom-1 .dropdown-menu{
    max-height: 70vh;
  }
}
/*=========================AUTOCOMPLETE=========================*/
.autocomplete {
  /*the container must be positioned relative:*/
  position: relative;
  display: inline-block;
}
.autocomplete-items {
  position: absolute;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
  padding: inherit;
  overflow-y: auto;
  /*max-height: 250px;*/
}
.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #d4d4d4;
  border-left: 1px solid #d4d4d4;
  border-right: 1px solid #d4d4d4;
}
.autocomplete-items div:last-child{
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.autocomplete-items div:hover {
  background-color: #e9e9e9;
}
.autocomplete .sku-badge{
  top: 50%;
  transform: translate(0,-50%);
  right: 1.2em;
}
/*============================ADMIN============================*/
.admin-bg{
  background-image: url("../../img/bg/1.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.panel.custom-1{
  width: 100%;
}
.btn:focus{
  box-shadow: none;
}
@media(min-width: 576px){
  .panel.custom-1{
    width: 30%;
  }
}
/*=====================MARKETPLACE=====================*/
.logistic option:disabled{
  color: #b0b0b0;
  background-color: #e4e4e4;
}
.logistic option{
  color: green;
  background-color:#fff;
  font-family: inherit;
}
/*=======================TO TOP========================*/
.to-top{
  position: absolute;
  bottom: 0.5%;
  right: 2%;
  font-size: 2rem;
  background-color: rgba(52, 58, 64,0.8);
  transition: .1s all linear;
}
.to-top:hover{
  background-color: rgba(0, 0, 0,0.8);
  color: #fff;
  cursor: pointer;
}
/*=======================SLIDE=======================*/
.active-img img{
  height: 180px;
  transition: 0.15s all linear;
}
.slide-container{
  overflow-x: auto;
  flex-wrap: nowrap;
  white-space: nowrap;
  justify-content: initial;
}

.slide-img:not(:first-child){
  margin-left: 0.25rem;
}
.slide-img.active img{
  border: 3px solid var(--maincolor);
}
@media(min-width: 576px){
  /*.slide-container{
    justify-content: center;
  }*/
}
/*=======================TEXT=======================*/
.content-custom-1{
  line-height: 1.5;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
/*=======================COPY=======================*/
table .copy-ev{
  cursor: pointer;
  height: 100%;
}
table .copy-ev:hover{
  box-shadow: 0 0 0 .2rem rgba(57, 124, 251, 0.5);
  background-color: rgba(159, 179, 198, 0.2);
  transition: 0.25s all linear;
}
/*===================PROGRESS TRACKER==============*/
.progress-tracker li { 
  display: flex; 
  color: #999;
}
.progress-tracker time { 
  position: relative;
  padding: 0 1rem 1rem 0;
  flex: 0 0 30%;
}
.progress-tracker time::after { 
  content: "";
  position: absolute;
  z-index: 2;
  right: 0;
  top: 0;
  transform: translateX(50%);
  border-radius: 50%;
  background: #fff;
  border: 1px #ccc solid;
  width: .8em;
  height: .8em;
}
.progress-tracker span {
  padding: 0 1rem 1rem 1rem;
  flex: 0 0 60%;
  position: relative;
}
.progress-tracker li:not(:last-child) span::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  height: 100%;
  border-left: 1px #ccc solid;
}
.progress-tracker strong {
  display: block;
  font-weight: bolder;
}

.progress-tracker { margin: 1em; width: 100%; }
.progress-tracker, 
.progress-tracker *::before, 
.progress-tracker *::after { 
  box-sizing: border-box; 
  /*font-family: arial;*/
}
@media(min-width: 576px){
	.progress-tracker time { 
	  position: relative;
	  padding: 0 1.5em;
	  flex: unset;
	}
	.progress-tracker span {
	  padding: 0 1.5em 1.5em 1.5em;
	  position: relative;
	  flex: unset;
	}
}
/*======================UTILITIES======================*/
.w-35{
  width: 35%;
}
.bg-light-warning{
  background-color: #fff0c1 !important;
}
.white-opacity{
  background-color: rgba(255,255,255,0.75)
}

.datepicker{
  background-color: #fff!important;
  cursor: pointer;
}
.outline-maincolor{
  border: 1px solid var(--maincolor)!important;
  border-radius: 15px;
  color: var(--maincolor)!important;
  transition: .1s all ease;
}
.outline-maincolor:hover{
  background-color: var(--maincolor)!important;
  color: #fff!important;
  transition: .2s all linear;
}
.outline-maincolor.active{
  background-color: var(--maincolor)!important;
  color: #fff!important;
}
.cursor-pointer{
  cursor: pointer;
}
.set-overflow-y{
  overflow-y: auto;
  max-height: 400px;
}
.border-dashed{
  border-style: dashed;
}
.flexfix:after, .flexfix:before{
  display: none!important;
}
.hide{
  display: none;
}
.text-medium{
  font-size: 90%;
}
.user-select-all{
  user-select: all;
}
.user-select-none{
  user-select: none;
}
.inherit-lh{
  line-height: inherit;
}
.option-icon{
  cursor: pointer;
  vertical-align: middle;
  font-size: 1.3rem;
}
.success-hover:hover{
  background-color: #2cb742;
  transition: .1s background-color linear;
}
.dark-hover:hover{
  color: #343a40!important;
}
.text-success-hover:hover{
  color: #28a745 !important;
  transition: .2s color ease;
}
.error-hover:hover{
  color: #dc3545 !important;
  transition: .2s color ease;
}
.error-text,.error-label{
  font-weight: 600;
  color: red;
}
.disabled{
  pointer-events: none;
}
.error-logo{
  width: 25vh;
}
@media(min-width: 576px){
  .error-logo{
    width: 50vh;
  }
}