@charset "utf-8";

/* ==========================================================================
  GENERAL
========================================================================== */


* {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-family: 'Lora', 'Arial', 'Helvetica', sans-serif;
	font-size: 0.99em;
	font-weight: normal;
}

body{
	background-color: #F4F6F4;
	padding:0px;
	margin:0px;
}

.group{
	display:table;
	content:'';
	clear:both;
}

.header{
	background-color:white;
	padding: 10px;
}

.htext{
	padding: 50px 30px 10px 30px;
	font-size: 1.4em;
	text-transform: uppercase;
}

select:focus{
	outline: none;
}

.material-icons{
	color: black;
	cursor: pointer;
}

.material-icons:hover{
	color: #8B9C6D;
}

.delete_icon:hover{
	color: #DC143C;
}

.btn{  
    border: 2px solid #8B9C6D;
    background-color: #8B9C6D; 
    color: #ffffff;
    font-size: 0.95em; 
    width: 60px;
    height: 35px;
    border-radius: 5px;
	transition: 0.3s;
}

.btn:hover{
    background-color: #F4F6F4;
    color: #8B9C6D;
    cursor: pointer; 
}

.btn:active:focus {
	outline: none;
}

.general_btn{
    width: 110px;
    height: 40px;
}

input:focus {
	outline: none;
}

input:focus::placeholder {
  color: transparent;
}


/* ==========================================================================
  LOGIN
========================================================================== */


.login_div{
	width:400px;
	margin:10% auto;
	box-shadow: 0 0 3px #ccc;
}

.company-logo{
	width: 100%;
	background-color: #ffffff;
	padding: 14px;
}

.table_login{
	width:100%;
	margin-top: 30px;
}

.table_login tr td{
	padding-bottom:10px;
}

.table_login tr td:first-child{
	width:30%;
}

.table_login tr td:last-child{
	width:70%;
}

.input_login{
	width:100%;
	padding:10px 0px;
	padding-left:2%;
}

.login_btn{
	border: 1px solid #8B9C6D;
	width: 100%;
	padding:10px 50px;
	background-color: #8B9C6D;
	color:white;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	box-shadow: 0 0 3px #ccc;
}

.login_btn:hover{
	background-color: #ffffff;
	color: #8B9C6D;
	cursor: pointer;
}

.login_btn:focus {
	outline: none;
}

/* Simple CSS3 Fade-in-down Animation */
.login_div {
	-webkit-animation-name: login_div;
	animation-name: login_div;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

@-webkit-keyframes login_div {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes login_div {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
	
	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}


/* ==========================================================================
  HEADER
========================================================================== */


.header{
	background-color: #ffffff;
	padding: 10px 30px;
}

.header_right{
	padding-top: 40px;
	float:right;
	text-align: right;
}

.header_right a {
	text-decoration: none;
	color: #789185;
}

.main_menu{
	background-color:#8B9C6D;
}

.main_menu > ul{
	margin: 0;
    padding-left: 30px;
}

.main_menu > ul > li{
	display: inline-block;
    padding: 15px 0px;
    margin-right: 30px;
	position:relative;
}

.main_menu > ul > li > a{
	letter-spacing: 1px;
	color:white;
	text-decoration:none;
}

.main_menu ul li {
	margin: 5px;
	padding: 10px;
	border-radius: 5px;
}

.main_menu ul li:hover {
	background-color: #76865B;
}

.main_menu ul li.active {
	background-color: #76865B;
}

.main_menu  > ul > li:hover > ul{
	display:block;
}

.main_menu > ul > li > ul{
	position: absolute;
    margin: 0px;
    padding: 15px 10px;
    list-style-type: none;
    background-color: #8B9C6D;
    display: none;
    top: 40px;
    left: -11px;
    min-width: 150px;
	z-index: 9;
}

.main_menu > ul > li > ul > li{
	margin-bottom: 15px;
}

.main_menu > ul > li > ul > li > a{
	letter-spacing: 1px;
	color:white;
	text-decoration:none;
}


/* ==========================================================================
  DASHBOARD / PRODUCT
========================================================================== */


.padding_div{
	padding: 10px;
    width: 100%;
}

.padding_div h1{
	color:black;
	margin:0px;
}

.dashboard{
	padding: 1%;
    width: 98%;
	display:flex;
}

.sort_table_div{
	margin-top:10px;
	background-color: #ffffff;
	border-radius: 8px;
	box-shadow: 0 0 3px #ccc;
}

.order_div{
	padding:20px;
}

.order_div p{
	padding-left:10px;
	margin: 0px 0px 15px 0px;
}

.sort_table, th, td{
	border: 1px solid #E8E8E8;
}

.sort_table{
	text-align: center;
	width:100%;
	border-collapse:collapse;
	margin-bottom: 1%;
}

.sort_table tr th {
	font-weight: bold;
	border-bottom-width: 3px;
}

.sort_table tr td, .sort_table tr th{
	padding: 10px;
}

.sort_table tr td {
	font-size: 0.92em;
}

.sort_table tbody tr:hover {
    background-color: #E8E8E8;
}

.dataTables_paginate{
	float: right;
	margin-right: 90px;
}

.dataTables_paginate a{
	cursor: pointer;
}

.dataTables_paginate a:hover{
	color: #8B9C6D;
}

.dataTables_paginate a:focus{
	outline: none;
}

.dataTables_paginate a:not(:last-child){
 	margin-right: 8%;
}

.dataTables_filter{
	padding-bottom: 20px;
}

.dataTables_filter input{
	height: 40px;
	width: 230px;
	padding: 0 10px;
	border-radius: 8px;
	border: 1px solid #ccc;
	margin-left: 1%;
}

.dataTables_filter input:focus{
	outline: none;
}


/* ==========================================================================
  PRODUCT-VIEW
========================================================================== */


.parallel_div{
	display:flex;
	width:100%;
	padding: 0;
}

.parallel_left{
	margin-right:0.5%;
}

.back_div {
	margin: 10px 30px;
}

.productview_div .row .col-lg-4 {
	padding: 0;
}

.product_img {
	margin: 20px 28px;
	background-color: #ffffff;
    box-shadow: 0 0 3px #ccc;
    border-radius: 8px;
    padding: 20px;
}

.product_img img {
	width: 100%;
	height: auto;
}

.product_details, .company_details {
	background-color: #ffffff;
	box-shadow: 0 0 3px #ccc;
	border-radius: 8px;
	padding: 30px 40px;
	margin: 20px 40px 20px 20px;
}

.product_details {
	margin-top: 65px;
}

.product_details p:first-child, .company_details p:first-child {
	border-bottom: 1px solid #ccc;
	padding-bottom: 5px;
	font-weight: 600;
}

.parallel_header{
	padding: 10px 0;
	font-size: 0.95em;
	font-weight: 600;
	margin: 0 30px;
	width: 95%;
}

.parallel_header{
	border: none;
}

.parallel_right{
	margin-top: 33px;
}

.parallel_text_left{
	display:inline-block;
	width:30%;
	margin: 2px 0;
	padding: 5px 0;
}

.parallel_text_right{
	display:inline-block;
	width:60%;
	margin: 2px 0;
	padding: 5px 0;
}


/* ==========================================================================
  PRODUCT-EDIT
========================================================================== */


.admin_content{
	padding: 10px;
	width: 60%;
	margin: auto;
	margin-top:10px;
	background-color: #ffffff;
	border-radius: 8px;
	box-shadow: 0 0 3px #ccc;
}

.admin_content .product_add_table img{
	border: 1px solid #A9A9A9;
	width: 300px;
	height: auto;
}

.product_add_table{
	width:100%;
	border-collapse: collapse;
}

.product_add_table tr td{
	border: none;
	padding: 8px 0px;
}

.product_add_table tr td:first-child{
	width:25%;
	font-weight: 600;
}

.product_add_table tr td:last-child{
	width:69%;
}

.input_text{
	width: 100%;
    height: 30px;
    padding-left: 2%;
}


/* ==========================================================================
  RESPONSIVE
========================================================================== */


/* For mobile phones: */
@media only screen and (max-width: 768px) {
	.login_div{
		margin-top: 30%;
		width: 100%;
	}
}


/* ==========================================================================
  END
========================================================================== */