:root {
  --main-red: #c60004;
  --dark-red: #a50202;
  --light-grey: #F4F6F4;
}

* {
  font-family: 'Helvetica', 'Arial', sans-serif;
  font-size: 13.5px;
}

body {
  background-color: var(--light-grey) !important;
}


/* =========================================
	ANIMATIONS
========================================= */
/* Simple CSS3 Fade-in-down Animation */
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}



/* =========================================
  COMMON CLASSES
========================================= */
.htext {
  font-family: inherit;
  font-size: 1.4em;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.2px;
  padding: 50px 30px 10px 30px;
}

.order_div {
  background: none;
}

.order_div .tab {
  margin-top: 10px;
  background: #fff;
  border: 0;
  border-radius: 3px;
  padding: 8px 16px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.order_div .tab button {
  padding: 8px 10px;
  margin: 0 10px;
  font-size: inherit;
  font-weight: bold;
  color: #949494;
  border-bottom: 3px solid #fff;
}

.order_div .tab button:hover {
  background-color: #fff;
  border-color: #949494 !important;
}

.order_div .tab button.active {
  background: none;
  color: #000 !important;
  border-color: #000 !important;
}

.order_div .tabcontent {
  border: 0;
  padding: 8px 0 0 0;
}

.order_div h5 {
  margin-bottom: 30px;
  font-weight: bold;
}



/* =========================================
  LINK
========================================= */
a {
  color: inherit;
}


/* =========================================
	BUTTON
========================================= */
.general-btn {
	background-color: var(--main-red);
  width: 100%;
  padding: 9px 50px;
  border: 0;
  border-radius: 3px;
  box-shadow: 0 0 3px #ccc;
  color: #fff;
  letter-spacing: 0.2px;
  transition: 0.5s;
}

.general-btn:hover {
	background-color: var(--dark-red);
}

.small-btn {
  width: fit-content;
  max-width: 100%;
}

.cancel-btn {
  background-color: #787878;
}

.cancel-btn:hover {
  background-color: #686868;  
}



/* =========================================
  TABLE
========================================= */
.sort_table_div {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 0 3px #ccc;
}

table.dataTable,
.sort_table {
  border: 1px solid #e4e4e4 !important;
  border-collapse: collapse !important;
}

.sort_table tr th, 
.sort_table tr td {
  padding: 10px;
  border: 1px solid #E4E4E4;
  background: #fff;
  color: #000;
  text-align: center;
}

.sort_table tr th {
  font-weight: bold;
  border-bottom: 3px solid #e4e4e4 !important;
  background-color: #F1F1F1;
}

.sort_table tr td {
  font-size: 12.5px;
}

.sort_table .material-icons {
  font-size: 20px;
}



/* =========================================
  SORT / FILTER
========================================= */
.sort_div {
  padding-left: 0;
}

.sort_div label {
  font-weight: bold;
}

.sort_div .input_search {
  height: 40px;
  width: 230px;
  padding: 0 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.sort_div .input_search:focus {
  outline: none;
}

.sort_div .search_btn {
  border: none;
  background-color: var(--main-red);
  color: white;
  padding: 0;
  margin-left: 5px;
  font-weight: normal;
  min-width: 100px;
  height: 36px;
  font-size: inherit;
  transition: 0.3s;
  border-radius: 0.25rem;
}

.sort_div .search_btn:hover {
  background-color: var(--dark-red);
}


/* =========================================
  FORM
========================================= */
.input_text {
  height: auto;
  padding: 6px 10px;
  border: 1px solid #ccc;
}

.dataTables_filter input[type="search"] {
  border: 1px solid #ccc;
  padding: 6px 10px;
  font-weight: normal;
  outline: 0;
}



/* =========================================
  LOGIN
========================================= */
.login_div .company-logo {
  padding: 35px 20px 20px 20px;
}

.login_div img.company_logo {
  height: auto !important;
  max-height: 120px;
  width: 100% !important;
  max-width: 220px;
  margin-bottom: 12px;
  object-fit: contain;
}



/* =========================================
  HEADER
========================================= */
.header {
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  background: #fff;
}

.header a {
  display: block;
  width: fit-content;
  text-decoration: none;
  color: var(--main-red);
  font-size: 14px;
}

.header img.company_logo {
  width: 100% !important;
  height: 70px !important;
  max-width: 150px;
  object-fit: contain;
}

.main_menu {
  background-color: var(--main-red);
}

.main_menu ul li {
  margin: 5px;
  padding: 10px;
  border-radius: 5px;
}

.main_menu ul li:hover {
  background-color: var(--dark-red);
}

.main_menu > ul > li > ul { 
  background-color: var(--main-red);
}