@charset "utf-8";
/* CSS Document */

* {
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-image: url("/assets/images/premierfilters-bg.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

/* Style the header */
.header {
  background-image: url("/assets/images/premierfilters-bg.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-color: #fff;
  padding: 5px;
  text-align: center;
  font-size: 35px;
}

/* Create three unequal columns that floats next to each other */
.column {
  float: left;
  padding: 10px;
   /* Should be removed. Only for demonstration     height: 300px;    */
}

/* Left and right column */
.column.side {
  width: 25%;
}

/* Middle column */
.column.middle {
  width: 50%;
}

/* Full centered column */
.fullwidth {
  width: 100%;
}

/* 3/4 centered column */
.cent3qtrlength {
  width: 50%;
  margin: 0 auto;
text-align: center;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* For responsive images */
.img-responsive { max-width: 100%; max-height: 100%; }

/* Style the footer */
.footer {
  background-color: #0f75bc;
  padding: 10px;
  text-align: center;
  color: #fff;
}

a.footer:link {
  color: white;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
  .column.side, .column.middle {
    width: 100%;
  }
}
