.input-icon-holder {
  position: relative;
}

.input-icon-holder i {
  position: absolute;
  right: 5px;
  top: 10px;
  color: #666;
}

#search-bar {
  box-shadow: 0 15px 35px rgba(50, 50, 93, 0.2), 0 5px 15px rgba(0, 0, 0, 0.17);
  border-radius: 4px;
  padding: 20px 30px;
  position: fixed;
  z-index: 10000;
  top: 20px;
  background: #fff;
}

#search-bar input {
  background: none;
  border: none;
  outline: none;
  font-weight: 100;
  width: 80%;
  margin-top: 5px;
}

#search-bar button {
  margin: 0px 0 0 0;
  padding: 0;
  background: none;
  border: none;
  font-weight: 100;
  color: #000;
  font-size: 30px;
  line-height: 30px;
}

#search-bar input::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #333;
  font-weight: 100;
  text-transform: uppercase;
  opacity: 1;
  /* Firefox */
}

#search-bar input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #333;
  font-weight: 100;
  text-transform: uppercase;
  opacity: 1;
  /* Firefox */
}

#search-bar input::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #333;
  font-weight: 100;
  text-transform: uppercase;
  opacity: 1;
  /* Firefox */
}

#search-bar i {
  color: #999;
}

#search-bar .search-extended {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#search-bar .search-extended .searcheable-category-info {
  font-weight: lighter;
  font-size: 0.8rem;
  padding: 4px 0;
  color: #999;
}
#search-bar .search-extended .searcheable-category-info span.category-on {
  display: block;
}
#search-bar .search-extended .searcheable-category-info span.category-off {
  display: none;
}
#search-bar .search-extended .searcheable-category-info.active span.category-on {
  display: none;
}
#search-bar .search-extended .searcheable-category-info.active span.category-off {
  display: block;
}
#search-bar .search-extended .searcheable-category {
  color: #222;
  font-weight: lighter;
  font-size: 0.8rem;
  cursor: pointer;
  padding: 4px 0;
  color: #999;
  display: block;
}
#search-bar .search-extended .searcheable-category span.category-on {
  display: inline-block;
  margin-left: 0.5rem;
}
#search-bar .search-extended .searcheable-category span.category-off {
  display: none;
}
#search-bar .search-extended .searcheable-category.active {
  color: #222;
}
#search-bar .search-extended .searcheable-category.active span.category-on {
  display: none;
}
#search-bar .search-extended .searcheable-category.active span.category-off {
  margin-left: 0.5rem;
  display: inline-block;
}

#sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 94%;
}

#sidebar ul li {
  margin: 2px;
}

#sidebar ul li a {
  padding: 5px 10px 5px 15px;
  width: 220px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

#sidebar ul#products-groups li a {
  width: 240px;
  font-size: 90%;
}
#sidebar ul#products-groups li a strong {
  font-size: 110%;
}

#menu-toggle {
  margin: 0px 15px;
  border: 1px solid #eee;
  padding: 1px;
  border-radius: 5px;
  transform: scale(0.8);
}
#menu-toggle .btn {
  display: inline-block;
  margin: 0;
  padding: 5px 10px;
  position: relative;
  text-align: center;
  transition: background 600ms ease, color 600ms ease;
}
#menu-toggle input[type=radio].toggle {
  display: none;
}
#menu-toggle input[type=radio].toggle + label {
  cursor: pointer;
  min-width: 50%;
  color: #fff;
}
#menu-toggle input[type=radio].toggle + label:hover {
  background: none;
  color: #fff;
}
#menu-toggle input[type=radio].toggle + label:after {
  background: #fff;
  border-radius: 3px !important;
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  transition: left 200ms cubic-bezier(0.77, 0, 0.175, 1);
  width: 100%;
  z-index: -1;
}
#menu-toggle input[type=radio].toggle.toggle-left + label {
  border-right: 0;
  margin: 0;
}
#menu-toggle input[type=radio].toggle.toggle-left + label:after {
  left: 100%;
}
#menu-toggle input[type=radio].toggle.toggle-right + label {
  margin-left: -5px;
}
#menu-toggle input[type=radio].toggle.toggle-right + label:after {
  left: -100%;
}
#menu-toggle input[type=radio].toggle:checked + label {
  cursor: default;
  color: #000;
  transition: color 200ms;
}
#menu-toggle input[type=radio].toggle:checked + label:after {
  left: 0;
}

.row.basket-item {
  font-size: 0.8em;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.center {
  text-align: center;
}

.justify {
  text-align: justify;
}

#info-triangle {
  margin: -25px auto 0;
  width: 50px;
  height: 50px;
  background: #EB4845;
  position: fixed;
  border-radius: 5px;
  transform: rotate(45deg);
  left: 50%;
  right: 50%;
  top: 50px;
  z-index: 1028;
}

#info-triangle a {
  display: block;
  position: relative;
  transform: rotate(-45deg);
}

#info-triangle i {
  position: absolute;
  top: 25px;
  left: 2px;
  color: #fff;
}

#info-bar {
  margin: 0px auto;
  position: fixed;
  width: 50%;
  left: 25%;
  right: 25%;
  color: #fff;
  padding: 10px 20px;
  background: #EB4845;
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
  z-index: 1029;
  top: 56px;
  box-shadow: 0 15px 35px rgba(50, 50, 93, 0.2), 0 5px 15px rgba(0, 0, 0, 0.17);
}

#info-bar .close {
  margin: 0;
  padding: 0;
  text-shadow: none;
  color: #fff;
  font-size: 30px;
  line-height: 30px;
  font-weight: 100;
  opacity: 1;
}

#info-bar p {
  margin-top: 10px;
  margin-right: 30px;
  font-weight: 300;
}

.clickable {
  cursor: pointer;
}

.data {
  margin-top: 30px;
}

.ui-pnotify {
  background: #EB4845;
  z-index: 10000;
  border-radius: 5px;
  opacity: 0.9;
}

.modal-content .btn-link {
  color: #999;
}

#promoted-categories li a i.yellow, .navbar-nav li a i.yellow {
  color: #FEAB19;
  text-shadow: 1px 1px 0px white;
}
#promoted-categories li a i.red, .navbar-nav li a i.red {
  color: #EF5B58;
  text-shadow: 1px 1px 0px white;
}
#promoted-categories li a i.green, .navbar-nav li a i.green {
  color: #23BFA5;
  text-shadow: 1px 1px 0px white;
}

.page-content {
  font-weight: 300;
}
.page-content strong {
  font-weight: 600;
}
.page-content h2 {
  margin-bottom: 1rem;
  margin-top: 2rem;
}
.page-content h3 {
  font-size: 1.4rem;
}
.page-content kbd.key {
  border-radius: 3px;
  padding: 1px 2px 0;
  border: 1px solid #eee;
}

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