/* Main Stylesheet of pricelist application */
/*-------------------------------- Variables ------------------------------------------*/
/*------------------- Colors ---------------------*/
/*------------------- Fonts ----------------------*/
/*-------------------------------- General --------------------------------------------*/
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Raleway", sans-serif;
  color: #727272;
}

.flex {
  display: flex;
}

.center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.horizontal-center {
  display: flex;
  justify-content: center;
}

.vertical-center {
  display: flex;
  align-items: center;
}

.strong {
  font-weight: 600;
}

.hidden {
  visibility: hidden;
}

/*-------------------------------- Elements --------------------------------------------*/
button.btn {
  border-radius: 2px;
  background-color: #288CF5;
  color: #FFF;
}

.content-box {
  width: 100%;
  padding: 15px;
  margin-top: 15px;
  border: 1px solid #F3F3F3;
  border-radius: 2px;
  box-shadow: 0 2px 5px #F3F3F3;
  background-color: #FFF;
}
.content-box.transparent {
  border: none;
  box-shadow: none;
}

/*--------------------- Textfields ---------------------*/
/*------------ Input-Standard------------*/
input.form-control::-webkit-input-placeholder {
  color: #bbb;
}
input.form-control:focus::-webkit-input-placeholder {
  color: #727272;
}

/*------------ underline ---------------*/
.input-underline {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #bbb;
  box-sizing: border-box;
  font-family: "Raleway", sans-serif;
  height: 50px;
}
.input-underline:focus {
  outline: none;
  border-bottom: 1px solid #727272;
  color: #727272;
}
.input-underline::-webkit-input-placeholder {
  color: #bbb;
}
.input-underline:focus::-webkit-input-placeholder {
  color: #727272;
}

/*------------ home-search ---------------*/
.home-search {
  width: 50%;
  font-size: 35px;
  font-weight: 300;
  background-image: url("../images/icon_search_light.png");
  background-repeat: no-repeat;
  background-position: 0 50%;
  text-indent: 50px;
  margin-bottom: 35px;
}

.home-search:focus {
  background-image: url("../images/icon_search.png");
}

/*------------ pricelist-search ---------------*/
.search-box {
  margin-left: auto;
  display: flex;
}
.search-box input.searchfield {
  padding: 5px;
  outline: none;
  border-radius: 2px 0 0 2px;
  border: 1px solid #bbb;
}
.search-box button.btn {
  padding: 5px;
  width: 42px;
  background-color: #288CF5;
  border-radius: 0 2px 2px 0;
}
.search-box button.btn img.search-icon {
  width: 15px;
}

/*-------------------------------- Navigation -----------------------------------------*/
nav#main-nav {
  width: 70px;
  height: 100%;
  float: left;
  background-color: #288CF5;
  padding: 50px 0 50px 0;
  position: fixed;
  align-items: center;
}
nav#main-nav div.container {
  display: flex;
  flex-flow: column;
  padding: 0;
  margin: 0;
  text-align: center;
  height: 100%;
}
nav#main-nav div.container .menu-item {
  margin-top: 30px;
  padding: 10px 0 10px 0;
  cursor: pointer;
}
nav#main-nav div.container .menu-item img#profile-image {
  width: 50px;
  border-radius: 50%;
}
nav#main-nav div.container .menu-item:first-child {
  margin: 0;
}
nav#main-nav div.container .menu-item:last-child {
  margin-top: auto;
}
nav#main-nav div.container .menu-item.current {
  background-color: #70B0F5;
}

/*-------------------------------- Content -----------------------------------------*/
#content {
  margin: 0 0 0 70px;
  padding: 50px 20px 50px 50px;
}

/*-------------------------------- Dashboard -----------------------------------------*/
.content-box.dashboard {
  margin-bottom: 25px;
}
.content-box.dashboard div.container {
  padding: 10px;
}
.content-box.dashboard div.container div.row {
  display: flex;
  justify-content: center;
  align-items: center;
}
.content-box.dashboard div.container div.row div h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}
.content-box.dashboard div.container div.row div p {
  margin: 0;
}
.content-box.dashboard div.container div.row div img {
  margin: 0;
}

/*-------------------------------- Bestellung -----------------------------------------*/
form.bestellung button.bestellung {
  margin-top: 25px;
  width: 50%;
}

/*-------------------------------- Preisliste -----------------------------------------*/
/*------------------- Header ---------------------*/
.pricelist-header {
  position: sticky;
  top: 0;
  padding-top: 20px;
  margin-top: -20px;
  background-color: #fff;
}
.pricelist-header .top {
  width: 100%;
  display: flex;
  margin-bottom: 20px;
}
.pricelist-header .top h2 {
  margin: 0;
}
.pricelist-header .top #filter-icon {
  margin-left: 20px;
  cursor: pointer;
}
.pricelist-header .table-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 0.6em;
  padding: 5px;
}
.pricelist-header .table-header .header-item {
  padding: 0 5px 0 5px;
  margin: 0 2.5px 0 2.5px;
  color: #727272;
  font-weight: 600;
}

/*------------------- Content ---------------------*/
.pricelist-content .subBrand {
  padding: 10px;
  margin-top: 10px;
  font-size: 1em;
}
.pricelist-content .product {
  padding: 10px 5px 10px 5px;
  margin-top: 5px;
  font-size: 0.8em;
  display: flex;
  flex-flow: row;
}
.pricelist-content .product .product-item {
  padding: 0 5px 0 5px;
  margin: 0 2.5px 0 2.5px;
}

/*-------------------------------- Inhaltsverzeichnis -----------------------------------------*/
.directory-link {
  cursor: pointer;
}

.subCategory .down {
  float: right;
  cursor: pointer;
}
.subCategory .down img {
  width: 15px;
}

.collapse {
  border: 1px solid #F3F3F3;
  border-radius: 2px;
}
.collapse .card {
  border: none;
}
.collapse .card-body {
  border: none;
}

/*-------------------------------- Warenkorb -----------------------------------------*/
/*------------------- Total ---------------------*/
#total {
  display: flex;
}
#total div.total-item {
  display: flex;
  flex: 1;
  justify-content: center;
}
#total div.total-item div p {
  margin: 25px 0 0 0;
}
#total div.total-item div h2 {
  margin: 0 0 25px 0;
}

/*------------------- Action --------------------*/
#action {
  display: flex;
}
#action div {
  display: flex;
  justify-content: center;
  flex: 1;
}
#action div img.action-img {
  margin: 25px 0 25px 0;
}

/*-------------- Zusammenfassung ----------------*/
#zusammenfassung h3 {
  font-weight: 400;
}
#zusammenfassung table {
  width: 100%;
}
#zusammenfassung table thead th {
  padding: 5px;
}
#zusammenfassung table tbody td {
  border-collapse: collapse;
  border-top: 1px solid #bbb;
  border-bottom: 1px solid #bbb;
  padding: 5px;
}

/*# sourceMappingURL=style.css.map */
