body {
	margin: 0 auto;
	background-color: white;
}
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro');
.head1 {
	color: black;
	font-family: 'Source Sans Pro', sans-serif;
	margin-top: -5px;
	margin-left: 15px;
}
.mylogo {
	margin: 0 auto;
	width: 220px;
	padding-top: 5px;
	margin-bottom: 3%;
}
.mycontainer2 {
	margin-top: 2%;
}
.mb {
	margin-bottom: 2%;
}
.no-pad {
    padding-right: 0 !important;
}
.content {
    background-color: #4267b2;
	font-family: 'Source Sans Pro', sans-serif;
	width: 60%;
	margin: 0 auto;
	padding-bottom: 2%;
    height: auto;
}
.content h3 {
	padding-top: 2%;
	padding-left: 2%;
	color: white;
}
.box {
    margin: 0 auto;
    width: 94%;
    border: 1px solid rgba(0,0,0,0.1);
    background-color: white;
    padding: 3% 5%;
	color: black;
}
form {
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 600;
}
/*--TABLE--*/
table {
	width: 100% !important;
	border-collapse: collapse;
}
/*--TABLE--*/
.modal-header, .modal-footer {
	border: none !important;
	font-family: 'Source Sans Pro', sans-serif;
}
/*--RADIO--*/
.control {
	position: relative;
	display: block;
	padding-left: 30px;
	cursor: pointer;
}

.control input {
	position: absolute;
	z-index: -1;
	opacity: 0;
}
.control__indicator {
	position: absolute;
	top: -1px;
	left: 0;
	width: 20px;
	height: 20px;
	background: #e6e6e6;
}

.control--radio .control__indicator {
	border-radius: 50%;
}
/* Hover and focus states */
.control:hover input ~ .control__indicator,
.control input:focus ~ .control__indicator {
	background: #ccc;
}

/* Checked state */
.control input:checked ~ .control__indicator {
	background: #2aa1c0;
}

/* Hover state whilst checked */
.control:hover input:not([disabled]):checked ~ .control__indicator,
.control input:checked:focus ~ .control__indicator {
	background: #0e647d;
}

/* Disabled state */
.control input:disabled ~ .control__indicator {
	pointer-events: none;
	opacity: .6;
	background: #e6e6e6;
}

/* Check mark */
.control__indicator:after {
	position: absolute;
	display: none;
	content: '';
}

/* Show check mark */
.control input:checked ~ .control__indicator:after {
	display: block;
}

/* Checkbox tick */
.control--checkbox .control__indicator:after {
	top: 4px;
	left: 8px;
	width: 3px;
	height: 8px;
	transform: rotate(45deg);
	border: solid #fff;
	border-width: 0 2px 2px 0;
}

/* Disabled tick colour */
.control--checkbox input:disabled ~ .control__indicator:after {
	border-color: #7b7b7b;
}

/* Radio button inner circle */
.control--radio .control__indicator:after {
	top: 7px;
	left: 7px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #fff;
}

/* Disabled circle colour */
.control--radio input:disabled ~ .control__indicator:after {
	background: #7b7b7b;
}
/*--RADIO--*/

/*--FILE BUTTON--*/
.fileUpload {
    position: relative;
    overflow: hidden;
	float: right;
	
}
.fileUpload .btn {
	margin: 0 !important;
	padding: 2px 11px;
	height: 28px;
}
.fileUpload input.upload {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    padding: 0;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    filter: alpha(opacity=0);
}
#uploadFile, #uploadFile2 {
	width: 44.4%;
	margin-right: 1%;
}
/*--FILE BUTTON--*/

/*--ON/OFF BUTTON--*/
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 24px;
	top: 10px;
}

.switch input {display:none;}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}
/*--ON/OFF BUTTON--*/

/*--FILTER--*/
.filter {
	font-family: 'Source Sans Pro', sans-serif;
	display: inline-block;
	padding: 1% 0;
	font-size: 150%;
}
.filter2 {
	font-size: 100%;
}
.slc {
	padding: 3% 0;
}
.slc:hover {
	cursor: pointer;
}
.slc2 {
	border: none;
}




.sel {
	font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  display: inline-block;
  width: 60%;
  background-color: transparent;
  position: relative;
  cursor: pointer;
}

.sel::before {
  position: absolute;
  content: '\f063';
  font-family: 'FontAwesome';
  font-size: 2em;
  color: #252525;
  right: 20px;
  top: calc(50% - 0.5em);
}

.sel.active::before {
  transform: rotateX(-180deg);
}

.sel__placeholder {
  display: block;
  font-size: 2.3em;
  color: #838e95;
  padding: 0.2em 0.5em;
  text-align: left;
  pointer-events: none;
  user-select: none;
  visibility: visible;
}

.sel.active .sel__placeholder {
  visibility: hidden;
}

.sel__placeholder::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.2em 0.5em;
  content: attr(data-placeholder);
  visibility: hidden;
}

.sel.active .sel__placeholder::before {
  visibility: visible;
}

.sel__box {
  position: absolute;
  top: calc(100% + 4px);
  left: -4px;
  display: none;
  list-style-type: none;
  text-align: left;
  font-size: 1em;
  background-color: #FFF;
  width: calc(100% + 8px);
  box-sizing: border-box;
}

.sel.active .sel__box {
  display: block;
  animation: fadeInUp 500ms;
}

.sel__box__options {
  display: list-item;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 2em;
  color: white;
  padding: 0.5em 1em;
  user-select: none;
	background-color: #2A9ED9;
}
.sel__box__options:hover {
	color: #252525;
}

.sel__box__options::after {
  content: '\f00c';
  font-family: 'FontAwesome';
  font-size: 0.5em;
  margin-left: 5px;
  display: none;
}

.sel__box__options.selected::after {
  display: inline;
}

.sel__box__options:hover {
  background-color: #ebedef;
}

/* ----- Select Box Black Panther ----- */
.sel {
  border-bottom: 2px solid rgba(0, 0, 0, 0.3);
}

.sel--black-panther {
  z-index: 3;
}
/* ===== Keyframes ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
/*--FILTER--*/

/*--Search Bar--*/
#myInput {
    background-image: url('../imgs/searchicon.png'); /* Add a search icon to input */
    background-position: 10px 15px; /* Position the search icon */
    background-repeat: no-repeat; /* Do not repeat the icon image */
    width: 50%; /* Full-width */
    float: right;
    font-size: 16px; /* Increase font-size */
    padding: 12px 20px 12px 40px; /* Add some padding */
    border: 1px solid #ddd; /* Add a grey border */
    margin-bottom: 12px; /* Add some space below the input */
}

.myInput2 {
	width: 100% !important;
}

#myTable {
    border-collapse: collapse; /* Collapse borders */
    width: 100%; /* Full-width */
    border: 1px solid #ddd; /* Add a grey border */
    font-size: 18px; /* Increase font-size */
    background-color: white;
    font-family: 'Source Sans Pro', sans-serif;
}
#myTable th {
	text-align: center;
}
#myTable td {
    text-align: left; /* Left-align text */
    padding: 12px; /* Add padding */
}

#myTable tr {
    /* Add a bottom border to all table rows */
    border-bottom: 1px solid #ddd; 
}

#myTable tr.header, #myTable tr:hover {
    /* Add a grey background color to the table header and on hover */
    background-color: #f1f1f1;
}
/*--/Search Bar--*/
button {
	border: none;
    transition: all 0.5s;
}
button:hover {
    background-color: #4267b2 !important;
}
button img {
	width: 45%;
	float: right;
	padding-top: 2%;
	padding-bottom: 30%;
}
button span {
	bottom: 20px;
    left: 35px;
	font-weight: bold;
	position: absolute;
	font-family: 'Source Sans Pro', sans-serif;
	color: white;
	font-size: 120%;
}
.previous {
    text-decoration: none;
    display: inline-block;
	text-align: center;
	width: 50px;
	height: 50px;
    color: black;
    border: 3px solid black;
    transition: all 0.5s;
}
.previous:hover {
    text-decoration: none;
    border: 3px solid white;
    color: white;
    background-color: #4267b2;
}
.round {
    border-radius: 50%;
}
.menubtn button {
    margin: 4% 1%;
    float: right;
    background-color: #0096ff;
    color: white;
    font-family: 'Source Sans Pro', sans-serif;
    padding: 0.5% 2%;
}
.menubtn2 button {
    margin: 2% 1%;
    float: left;
    background-color: #2a9ed9;
    color: white;
    font-family: 'Source Sans Pro', sans-serif;
    padding: 0.5% 2%;
}
.thebox {
	overflow: auto;
	padding: 2%;
	width: 50%;
	display: block;
	margin: 3% auto;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 3px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }
button.loginbtn {
	margin: 0 auto;
	display: block;
	float: left;
	margin-right: 5px;
    padding: 2% 7%;
    background-color: transparent;
    border: 1px solid #13e7ff;
    transition: all 0.3s;
}
button.loginbtn:hover {
    background-color: #13e7ff;
    color: white;
}
button#addnew {
	background-color: #2a9ed9;
	width: auto;
}
button#opendata {
	background-color: #2a9ed9;
}
button#opensample{
	background-color: #2a9ed9;
}
button#openbackup {
	background-color: #2a9ed9;
}
button#reg {
	background-color: #2a9ed9;
}
button#out {
	background-color: #2a9ed9;
}
button#sell {
    background-color: #2a9ed9;
}
button#logout {
    background-color: #2a9ed9;
}
button#laporan {
    background-color: #2a9ed9;
}

/*MEDIA*/
@media (min-width:320px) and (max-width:920px) {
	.content {
		width: 100% !important;
	}
	button.mobile2 {
		height: 120px;
		margin: 3% 0;
	}
	.sel {
		width: 50%;
	}
	.sel--black-panther {
		margin-bottom: 4%;
	}
	.head1 {
		margin-top: 5%;
	}
	.thebox {
		margin: 8% auto;
		width: 100%;
	}
}
@media only screen and (max-width:480px) { /*FOR MOBILE PORTRAIT ONLY*/
	.mobile3 button {
		font-size: 11px;
	}
	.mycontent {
		height: 310px !important;
	}
	.mycontent4 {
		height: 120px !important;
	}
	.mycontent5 {
		height: 580px !important;
	}
	button.mobile2 {
		height: 133px;
		margin: 3% 0;
	}
	button span {
		font-size: 12px;
		left: 20px;
		bottom: 10px;
	}
	.sel {
		width: 100%;
	}
	.sel--black-panther {
		margin-bottom: 4%;
	}
}
@media only screen and (max-width:768px) {
	.head1 {
		font-size: 30px;
	}
	.content {
		height: 360px;
	}
	.mobile {
		font-size: 80%;
	}
	.mycontent4 {
		height: 148px;
	}
	.mycontent5 {
		height: 530px !important;
	}
}
@media (min-width:480px) and (max-width:768px) {
	button.mobile2 {
		height: 200px;
		margin: 3% 0;
	}
}
@media (min-width:996px) and (max-width:1080px) { /*FOR 1024px ONLY*/
	.sel {
		width: 60%;
	}
	button.mobile2 {
		height: 191px;
		margin: 3% 0;
	}
}

@media (min-width:720px) and (max-width:920px) {
	button span {
		font-size: 13px;
		left: 20px;
		bottom: 3px;
	}
	
	button.mobile2 {
		height: 141px;
	}
}

/* toogle visibile password */
#password + .glyphicon {
	cursor: pointer;
	pointer-events: all;
	float: left;
	width: 100%;
	margin:5px;
  }

  .glyphicon{
	  float: left;
	  margin-left: 5px;
  }

  .borderdiv{
	  border: 1px solid red;
  }

  .ccombo{
	  min-width:150px;
	  z-index: 99;
  }

  .ctypex{
	width:100px;
	border: 1px solid #CCCCCC;
}
 
  /* kontak page */

  .kontak_input{
	  width:90%;
	  float: right;
	  margin:3px;
  }

  .coltable{z-index: 0;}
  .coltable1{z-index: 1;}

  .tqty{width:55px;}
  .tdiscount{width:90px;}

  .tableborder{
	  margin:3px;
	  width:100%;
  }

  .clear{ clear: both;}