/* DEFAULT */
body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  background-color: #000;
  color: #fff;
  font-size: 16px;
  font-weight: 400; }

main {
  background-color: #fff;
  color: #000;
  overflow: hidden; }

a {
  text-decoration: none;
  color: inherit; }
  a:hover {
    color: #f37621; }

h1 {
  margin: 0;
  display: inline-block; }

h2 {
  margin: 20px 0;
  font-size: 30px;
  font-weight: normal;
  line-height: 100%; }

h3 {
  font-size: 18px;
  font-weight: normal; }

table {
  border-right: 1px solid grey;
  border-top: 1px solid grey;
  border-collapse: collapse; }
  table td,
  table th {
    border-left: 1px solid grey;
    border-bottom: 1px solid grey;
    padding: 10px; }

.hidden {
  display: none !important; }

/* LAYOUT */
.Frame {
  margin: 20px auto;
  padding: 0 5%;
  max-width: 1400px;
  clear: both;
  /*
  	@media (min-width: 700px) { // 3 in a row
  		ul.col3 {
  			> li {
  				width: 31.3333%;
  				margin-left: 3%;
  				&:nth-child(3n+1) {
  					margin-left: 0;
  				}
  			}
  		}
  	}
   */
  /*
  	@media (min-width: 1450px) { // 5 in a row
  		ul.col5 {
  			> li {
  				width: 17.60%;
  				margin-left: 3%;
  				&:nth-child(5n+1) {
  					margin-left: 0;
  				}
  			}
  		}
  	}
  */ }
  @media (min-width: 500px) {
    .Frame > .left {
      float: left;
      clear: left;
      width: 220px; }
    .Frame > .right {
      margin-left: 240px; } }
  .Frame ul.col2,
  .Frame ul.col3,
  .Frame ul.col4,
  .Frame ul.col5 {
    overflow: auto; }
    .Frame ul.col2 > li,
    .Frame ul.col3 > li,
    .Frame ul.col4 > li,
    .Frame ul.col5 > li {
      display: inline-block;
      vertical-align: top;
      float: left;
      width: 100%; }
  @media (min-width: 700px) {
    .Frame ul.col2 > li {
      width: 48.5%; }
      .Frame ul.col2 > li:nth-child(2n+1) {
        margin-right: 3%;
        clear: left; } }
  @media (min-width: 1200px) {
    .Frame ul.col4 > li {
      width: 22.75%; }
      .Frame ul.col4 > li:nth-child(1n+1) {
        margin-right: 0;
        clear: none; }
      .Frame ul.col4 > li:nth-child(4n+1) {
        clear: left; }
      .Frame ul.col4 > li:nth-child(4n+1), .Frame ul.col4 > li:nth-child(4n+2), .Frame ul.col4 > li:nth-child(4n+3) {
        margin-right: 3%; } }

.Button {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 10px;
  background: grey;
  color: white; }

header {
  text-align: right; }
  header h1 {
    float: left;
    font-size: 0; }
    header h1 a {
      display: block; }
      header h1 a img {
        height: 25px;
        vertical-align: top; }
  header .order {
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 0 35px;
    padding: 3px 0; }
    header .order i.fa-shopping-cart {
      margin-right: 5px; }
  header .burger {
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 0 35px; }
    header .burger .bar1, header .burger .bar2, header .burger .bar3 {
      width: 30px;
      height: 3px;
      background-color: #fff;
      margin: 4px 0;
      transition: 0.4s; }
    header .burger.open .bar1 {
      -webkit-transform: rotate(-45deg) translate(-5px, 5px);
      transform: rotate(-45deg) translate(-5px, 5px); }
    header .burger.open .bar2 {
      opacity: 0; }
    header .burger.open .bar3 {
      -webkit-transform: rotate(45deg) translate(-5px, -5px);
      transform: rotate(45deg) translate(-5px, -5px); }
  header ul,
  header ol {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0; }
  header ul {
    text-align: left; }
    header ul li {
      padding-top: 15px; }
      header ul li i.fa-chevron-down {
        float: right;
        font-size: 10px;
        margin: 5px 0 0 10px; }
      header ul li ol li {
        padding-left: 20px; }
  @media (min-width: 1200px) {
    header h1 a img {
      height: 30px; }
    header .order {
      padding: 5px 0 6px 0; }
    header .burger {
      display: none; }
    header ul {
      display: inline-block !important;
      vertical-align: middle; }
      header ul > li {
        display: inline-block;
        padding: 5px 0 6px 35px;
        position: relative; }
        header ul > li ol {
          position: absolute;
          background: #000;
          top: 29px;
          right: -25px;
          padding: 15px 25px;
          z-index: 1;
          white-space: nowrap;
          text-align: right; }
          header ul > li ol li {
            padding: 6px 0; } }

.Search {
  position: relative; }
  .Search input {
    width: 100%;
    outline: none;
    line-height: 200%;
    border: 1px solid #ddd;
    box-sizing: border-box;
    font-size: 18px;
    padding: 0 0 0 10px; }
  .Search a {
    position: absolute;
    right: 0;
    line-height: 200%;
    background: #f37621;
    border: 1px solid #f37621;
    color: #fff;
    box-sizing: border-box;
    font-size: 18px;
    padding: 0 10px; }

.Menu {
  background: #eee;
  margin: 0 0 20px 0;
  padding: 0;
  font-size: 14px; }
  .Menu,
  .Menu ul {
    list-style: none; }
  .Menu a {
    display: block;
    padding: 5px 15px; }
  .Menu > li {
    border-top: 1px solid #ddd; }
    .Menu > li:first-child {
      border-top: 0; }
    .Menu > li > a {
      line-height: 28px; }
    .Menu > li > a[href="#"] {
      float: right; }
      .Menu > li > a[href="#"]:before {
        display: block;
        width: 11px;
        content: '\00a0';
        background: url(/assets/icons/plus-minus.png) left center no-repeat; }
    .Menu > li ul {
      display: none;
      padding: 0 0 10px 15px; }
    .Menu > li.open > a[href="#"]:before {
      background-position: right center; }
    .Menu > li.open ul {
      display: block; }

.Groups {
  margin: 0;
  padding: 0; }
  .Groups li {
    margin-bottom: 40px; }
    .Groups li a {
      display: block;
      border: 1px solid red;
      min-height: 40px; }

.Items {
  margin: 0;
  padding: 0; }
  .Items li {
    margin-bottom: 40px;
    text-align: center; }
    .Items li div {
      padding-top: 70%;
      border: 1px solid #ddd;
      position: relative;
      margin-bottom: 10px;
      text-align: right; }
      .Items li div img {
        position: absolute;
        top: 5px;
        right: 0;
        bottom: 35px;
        left: 0;
        margin: auto;
        max-width: 96%;
        max-height: calc(100% - 40px); }
      .Items li div span {
        display: inline-block;
        position: relative;
        z-index: 2; }
        .Items li div span.Price {
          padding: 0 8px;
          line-height: 32px;
          background: #fff;
          color: #000;
          margin-left: 30px; }
          .Items li div span.Price.old {
            background: #ddd;
            color: #666;
            text-decoration: line-through;
            font-size: 14px;
            margin-left: 0; }
        .Items li div span.buy {
          position: absolute;
          left: 0;
          bottom: 0;
          z-index: 3;
          width: 31px;
          height: 31px;
          margin: 0 0 -1px -1px;
          border: 1px solid #ddd;
          background: url("/assets/icons/buy.png") 0 -31px; }
          .Items li div span.buy:hover {
            background-position: 0 -62px; }
          .Items li div span.buy.ordered {
            background-position: 0 0;
            border: 1px solid #f37621; }
  .Items tr td.Price {
    width: 1%;
    white-space: nowrap; }
  .Items tr td:nth-child(3) {
    width: 1%; }
  .Items tr td:last-child {
    width: 1%;
    white-space: nowrap; }
    .Items tr td:last-child input[type="number"],
    .Items tr td:last-child .minus,
    .Items tr td:last-child .plus {
      display: inline-block;
      vertical-align: middle;
      width: 19px;
      height: 19px;
      padding: 0;
      border: 1px solid #ccc; }
    .Items tr td:last-child input[type="number"] {
      width: 35px;
      text-align: center; }
    .Items tr td:last-child .minus:before,
    .Items tr td:last-child .plus:before {
      display: block;
      content: '';
      width: 11px;
      height: 11px;
      background: red;
      margin: 4px 0 0 4px; }
    .Items tr td:last-child .minus:before {
      background: url(/assets/icons/plus-minus.png) right center no-repeat; }
    .Items tr td:last-child .plus:before {
      background: url(/assets/icons/plus-minus.png) left center no-repeat; }
    @media (max-width: 600px) {
      .Items tr td:last-child .minus,
      .Items tr td:last-child .plus {
        display: none; } }

.Orders {
  width: 100%; }
  .Orders tr[data-order_id] td:nth-child(1) {
    width: 1%; }
  .Orders tr[data-order_id] td:nth-child(2) {
    width: 5%; }
  .Orders tr[data-order_id] td:nth-child(3) {
    width: 5%; }
  .Orders tr[data-order_id] td:nth-child(4) {
    width: 10%; }
  .Orders tr[data-order_id] td:nth-child(6) {
    width: 1%;
    white-space: nowrap; }
  .Orders tr[data-order_id] td:nth-child(7) {
    width: 1%;
    white-space: nowrap; }
    .Orders tr[data-order_id] td:nth-child(7) a {
      margin: 0 3px; }
  .Orders tr[data-order_id].rent_late td:nth-child(4) {
    background: red; }
  .Orders tr.more {
    display: none; }
    .Orders tr.more td {
      padding: 0; }
      .Orders tr.more td > div {
        display: none;
        padding: 10px; }

/* SLIDER */
.Slider ul,
.Slider ol {
  margin: 0;
  padding: 0;
  white-space: nowrap; }
  .Slider ul li,
  .Slider ol li {
    display: inline-block; }
.Slider .preview {
  position: relative; }
  .Slider .preview ul {
    position: relative; }
    .Slider .preview ul li {
      position: relative;
      width: 100%;
      padding-bottom: 56%; }
      .Slider .preview ul li img {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        margin: auto;
        max-width: 100%;
        max-height: 100%; }
  .Slider .preview .next,
  .Slider .preview .prev {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 10%;
    opacity: 0.3; }
    .Slider .preview .next:before,
    .Slider .preview .prev:before {
      position: absolute;
      top: 50%;
      margin-top: -15px;
      left: 0;
      width: 100%;
      text-align: center;
      font-size: 30px; }
    .Slider .preview .next:hover,
    .Slider .preview .prev:hover {
      opacity: 1; }
  .Slider .preview .prev {
    left: 0; }
  .Slider .preview .next {
    right: 0; }
.Slider ol {
  text-align: center; }
  .Slider ol li a {
    display: block;
    width: 10px;
    height: 10px;
    background-color: #999;
    border-radius: 50%;
    margin: 0 5px; }
  .Slider ol li.active a {
    background-color: #333; }

.Form > div,
.Form > label {
  margin: 0 0 10px 0; }
  .Form > div.wrong,
  .Form > label.wrong {
    color: red; }
  @media (min-width: 800px) {
    .Form > div,
    .Form > label {
      margin-left: 1%;
      margin-right: 1%; }
      .Form > div.half,
      .Form > label.half {
        /* split in first/second */
        display: inline-block;
        width: 48%; } }
.Form > div label {
  display: table; }
.Form label {
  display: block;
  position: relative; }
.Form select,
.Form input[type="text"],
.Form input[type="password"],
.Form input[type="tel"] {
  padding: 5px 10px;
  width: 100%;
  box-sizing: border-box; }

.tmp_img {
  background: deeppink;
  height: 150px;
  width: 100%; }
  .tmp_img.blue {
    background: blue; }
  .tmp_img.red {
    background: red; }
  .tmp_img.green {
    background: green; }
  .tmp_img.purple {
    background: purple; }
  .tmp_img.yellow {
    background: yellow; }
  .tmp_img.black {
    background: black; }

/* SEARCH */
/*
a.Button{
display: inline-block;
border: 1px solid black;
}
.search a.Button{
float: right;
height: 19px;
width: 49px;
}
.search form {
margin-right: 51px;
display: block;
}
.search form input {
width: 100%;
box-sizing: border-box;
outline: none;
}
*/
/*
.Tabs {
	display: block;
	border: 1px solid black;

	ul.menu {
		list-style: none;
		padding-left: 0;
		border-bottom: 1px solid #ddd;
		display: none;

		li {
			display: inline-block;
			margin: 0 0 -1px 10px;
			a {
				display: block;
				background: #eee;
				border: 1px solid #ddd;
				border-radius: 3px 3px 0 0;

				&:hover {
					background: none;
					border-bottom: 1px solid #fff;
					color: #f37621;
				}
			}
			&.open {
				a {
					background: none;
					border-bottom: 1px solid #fff;
					color: #f37621;
				}
			}
		}
	}
	h3 {
		margin: 0;
		padding-bottom: 20px;
		a {
			display: block;
			border: 1px solid black;
		}
	}
	.tab {
		ul {
			display: none;
		}
		&.open {
			ul {
				display: block;
			}
		}
	}
}


@media (min-width: 710px) {
	.Tabs {
		h3 {
			display: none;
		}
		ul {
			&.menu {
				display: block;
			}
		}
	}
}
*/
.Order input.error {
  border: 1px solid red; }
.Order ._totals {
  text-align: right; }
  .Order ._totals span {
    display: inline-block;
    min-width: 95px; }

.Price.eur:before {
  content: '\20AC\00a0'; }
.Price input {
  width: 60px;
  text-align: right; }

._layout {
  float: right;
  color: #cccccc;
  line-height: 30px; }

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