body {
  font-family: Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
}
.container {
  width: 100%;
  max-width: 1010px;
  margin: 0 auto;
}
#header {
  background: #000;
  color: #fff;
  font-family: Montserrat, Helvetica, Arial, sans-serif;
  -webkit-text-stroke: 0.2px;
  text-transform: uppercase;
  margin-bottom: 30px;
}
#header h1 {
  margin: 0;
  padding: 0;
  font-size: 23px;
  display: inline-block;
  font-weight: normal;
  color: #ffda2b;
  vertical-align: middle;
}
#header h1 a {
  color: #ffda2b;
  text-decoration: none;
}
#header ul {
  display: inline-block;
  vertical-align: middle;
  list-style: none;
  text-align: right;
}
#header ul li {
  display: inline-block;
  margin-left: 100px;
}
#header ul a {
  color: #fff;
  text-decoration: none;
}
#header ul li.active a {
  text-decoration: underline;
}
#footer {
  background: #eaeaea;
  color: #fff;
  font-family: Montserrat, Helvetica, Arial, sans-serif;
  -webkit-text-stroke: 0.2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  min-height: 100px;
  display: flex;
  justify-content: center;
  border-top: 3px solid #d3d3d3;
  border-bottom: 3px solid #d3d3d3;
  margin-bottom: 59px;
}
#footer .container {
  align-self: center;
}
#footer p {
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: normal;
  vertical-align: middle;
  color: #000;
  text-align: right;
}
#footer p a {
  color: #000;
}
#calculator {
  width: 960px;
}
#calculator #text-content {
  margin-bottom: 50px;
  font-family: Montserrat, Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 23px;
}
#calculator #text-content a {
  color: #000;
}
#calculator #main-title {
  text-align: center;
  font-family: Montserrat, Helvetica, Arial, sans-serif;
  font-size: 34px;
  text-transform: uppercase;
  -webkit-text-stroke: 0.3px;
}
#calculator .section {
  overflow: auto;
  position: relative;
}
#calculator .section h2 {
  font-family: Montserrat, Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  padding-left: 20px;
  background: #eaeaea;
  padding: 15px 15px 15px 20px;
  margin: 5px 0 20px 0;
  border-radius: 15px;
}
#calculator .section .section-number {
  position: relative;
  z-index: 20;
  width: 65px;
  height: 65px;
  float: left;
  line-height: 65px;
  text-align: center;
  border-radius: 70px;
  background: #eaeaea;
  font-size: 27px;
  font-family: Montserrat, Helvetica, Arial, sans-serif;
}
#calculator .section .section-content {
  float: right;
  width: 860px;
}
#calculator .section .section-inner {
  display: none;
  opacity: 0;
  border: 3px solid #d3d3d3;
  border-radius: 15px;
  padding: 20px;
}
#calculator .section.active,
#calculator .section.confirmed {
  padding-bottom: 30px;
}
#calculator .section.active h2,
#calculator .section.confirmed h2 {
  background: transparent;
  margin-bottom: 0;
}
#calculator .section.active .section-inner,
#calculator .section.confirmed .section-inner {
  display: block;
  opacity: 1;
  overflow: auto;
}
#calculator .section.active .section-line,
#calculator .section.confirmed .section-line {
  position: absolute;
  z-index: 10;
  top: 0;
  bottom: 0;
  left: 30px;
  width: 5px;
  background: #eaeaea;
}
#calculator .section.confirmed .section-number,
#calculator .section.confirmed .section-line {
  background: #7bd55b;
  transition: all 0.1s ease-in;
}
#calculator .section.loading .section-number {
  background-image: url('../img/loader-grey-bg.gif');
  background-position: 50% 50%;
  background-repeat: no-repeat;
  text-indent: -99999px;
  transition: none;
}
#calculator .selection-image {
  width: 235px;
  display: inline-block;
  margin-right: 30px;
  vertical-align: top;
  margin-bottom: 20px;
}
#calculator .selection-image .title {
  height: 45px;
  line-height: 45px;
}
#calculator .selection-image h4 {
  font-family: Montserrat, Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0 0 5px 0;
  display: inline-block;
  vertical-align: bottom;
  line-height: 18px;
}
#calculator .selection-image img {
  margin-bottom: 5px;
}
#calculator .selection-image .select {
  display: inline-block;
  background: #ffda2b;
  font-family: Montserrat, Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: #000;
  text-decoration: none;
  text-align: center;
  width: 150px;
  padding: 10px 0;
  border-radius: 10px;
}
#calculator .selection-image.selected .select {
  background: #7bd55b;
  color: #fff;
  transition: all 0.1s ease-in;
}
#calculator .selection-image.small {
  width: 75px;
  padding: 10px 25px 15px 25px;
  margin-right: 0 !important;
  margin-bottom: 0 !important;
}
#calculator .selection-image.small .title {
  height: 35px;
  line-height: 35px;
}
#calculator .selection-image.small h4 {
  font-size: 13px;
  line-height: 14px;
}
#calculator .selection-image.small .select {
  display: block;
  width: auto;
  font-size: 12px;
  padding: 5px 0;
}
#calculator .selection-image.small img {
  border: 1px solid #999999;
  border-radius: 14px;
}
#calculator .selection-image.small.highlight {
  background: #eaeaea;
  border-radius: 10px;
}
#calculator .selection-button {
  display: inline-block;
  background: #ffda2b;
  font-family: Montserrat, Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: #000;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 10px;
  margin-right: 10px;
  margin-top: 35px;
}
#calculator .selection-button.selected {
  background: #7bd55b;
  color: #fff;
}
#calculator .section-image {
  width: 230px;
  float: left;
  text-align: center;
}
#calculator .section-right {
  float: right;
  width: 545px;
}
#calculator .dimensions-row {
  clear: both;
  overflow: auto;
  margin-bottom: 30px;
}
#calculator .dimensions-image {
  width: 300px;
  float: left;
}
#calculator .dimensions-right {
  float: right;
  width: 475px;
}
#calculator .dimensions-right h3 {
  font-family: Montserrat, Helvetica, Arial, sans-serif;
  font-size: 23px;
  text-transform: uppercase;
  font-weight: 400;
}
#calculator .dimensions-right .max-dimensions {
  float: right;
  font-family: Montserrat, Helvetica, Arial, sans-serif;
  font-size: 12px;
  line-height: 20px;
  text-align: right;
}
#calculator .dimensions-right .continue {
  display: inline-block;
  background: #ffda2b;
  font-family: Montserrat, Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: #000;
  text-decoration: none;
  text-align: center;
  width: 150px;
  padding: 10px 0;
  border-radius: 10px;
  cursor: pointer;
}
#calculator .dimensions-right .continue.disabled {
  cursor: not-allowed;
  background: #eaeaea;
}
#calculator .dimensions-form {
  background: #eaeaea;
  border-radius: 10px;
  padding: 15px 15px 1px 15px;
}
#calculator .taso-add {
  text-align: right;
  padding-bottom: 20px;
}
#calculator .taso-add a {
  display: inline-block;
  background: #ffda2b;
  font-family: Gotham, Montserrat, Helvetica, Arial, sans-serif;
  font-size: 12px;
  color: #000;
  text-decoration: none;
  text-align: center;
  width: 135px;
  padding: 8px 0;
  border-radius: 10px;
  margin-right: 30px;
}
#calculator .dimensions-form-row {
  margin-bottom: 20px;
}
#calculator .dimensions-form-row > label {
  display: inline-block;
  vertical-align: middle;
  font-family: Montserrat, Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-size: 12px;
  width: 105px;
  margin-top: 25px;
}
#calculator .dimensions-form-row > label span {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 1px solid #000;
  position: relative;
  top: 3px;
}
#calculator .dimensions-form-row > label span.pink {
  background: #e0bec1;
}
#calculator .dimensions-form-row > label span.green {
  background: #c0d7aa;
}
#calculator .dimensions-form-row > label span.yellow {
  background: #f4e58e;
}
#calculator .dimensions-form-row .control {
  display: inline-block;
  vertical-align: top;
  margin-right: 20px;
}
#calculator .dimensions-form-row .control label {
  display: block;
  font-family: Montserrat, Helvetica, Arial, sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
#calculator .dimensions-form-row .control input {
  border: 1px solid #a4a4a4;
  background: #fff;
  border-radius: 15px;
  line-height: 20px;
  padding: 5px 10px;
  width: 120px;
  outline: none;
}
#calculator .dimensions-form-row .control input.confirmed {
  border: 1px solid #7bd55b;
}
#calculator .dimensions-form-row .control .error-row {
  font-size: 11px;
  color: red;
  width: 142px;
}
#calculator .section-question {
  margin-bottom: 30px;
  margin-top: 10px;
}
#calculator .section-question h4 {
  font-family: Montserrat, Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0 0 15px 0;
  vertical-align: bottom;
  line-height: 18px;
}
#calculator .section-question img {
  margin-bottom: 5px;
}
#calculator .section-question .select {
  display: inline-block;
  background: #ffda2b;
  font-family: Montserrat, Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: #000;
  text-decoration: none;
  text-align: center;
  width: 80px;
  padding: 10px 0;
  border-radius: 10px;
}
#calculator .section-question .select.selected {
  background: #7bd55b;
  color: #fff;
}
#calculator #sink-categories {
  display: none;
}
#calculator #sink-categories > h4 {
  font-family: Montserrat, Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: normal;
}
#calculator #sink-categories ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#calculator #sink-categories li {
  display: inline-block;
  vertical-align: bottom;
  margin: 0 20px 25px 0;
  width: 180px;
}
#calculator #sink-categories li h4 {
  font-family: Montserrat, Helvetica, Arial, sans-serif;
  font-size: 14px;
  margin: 0 0 5px 0;
}
#calculator #sink-categories .select {
  display: inline-block;
  background: #ffda2b;
  font-family: Montserrat, Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #000;
  text-decoration: none;
  text-align: center;
  width: 80px;
  padding: 10px 0;
  border-radius: 10px;
}
#calculator #sink-categories .select.selected {
  background: #7bd55b;
  color: #fff;
}
#calculator #sinks {
  display: none;
}
#calculator #sinks h4 {
  font-family: Montserrat, Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: normal;
}
#calculator #sinks ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#calculator #sinks a {
  display: block;
  background: url('../img/dot.png') no-repeat 0 50%;
  padding: 0 0 0 30px;
  color: #000;
  text-decoration: none;
  font-size: 12px;
}
#calculator #sinks a.selected {
  background: url('../img/dot-selected.png') no-repeat 0 50%;
  font-weight: bold;
}
#calculator #sinks span {
  border-top: 1px solid #b3b4b7;
  display: inline-block;
  padding: 5px;
}
#calculator #sinks .productnumber {
  width: 60px;
}
#calculator #sinks .dimensions {
  width: 130px;
}
#calculator #services-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#calculator #services-section ul li {
  margin-bottom: 30px;
  margin-top: 10px;
}
#calculator #services-section ul li h4 {
  font-family: Montserrat, Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0 0 15px 0;
  vertical-align: bottom;
  line-height: 18px;
}
#calculator #services-section ul li img {
  margin-bottom: 5px;
}
#calculator #services-section ul li .select {
  display: inline-block;
  background: #ffda2b;
  font-family: Montserrat, Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: #000;
  text-decoration: none;
  text-align: center;
  width: 80px;
  padding: 10px 0;
  border-radius: 10px;
}
#calculator #services-section ul li .select.selected {
  background: #7bd55b;
  color: #fff;
}
#calculator #price-section {
  font-family: Montserrat, Helvetica, Arial, sans-serif;
}
#calculator #price-section h4 {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: normal;
}
#calculator #price-section table {
  width: 100%;
  font-size: 14px;
}
#calculator #price-section tr:nth-child(odd) {
  background-color: #f5f5f3;
}
#calculator #price-section td {
  padding: 5px;
}
#calculator #price-section td.price-total {
  text-align: right;
}
#calculator #price-section #price-total {
  border: 1px solid #000;
  padding: 5px;
  margin: 10px 0;
}
#calculator #price-section #price-total span {
  float: right;
  text-align: right;
}
#calculator #price-section #add-discount .error {
  font-size: 14px;
  color: red;
}
#calculator #price-section #add-discount input {
  border: 1px solid #a4a4a4;
  background: #fff;
  border-radius: 15px;
  line-height: 20px;
  padding: 5px 10px;
  width: 200px;
  outline: none;
}
#calculator #price-section #add-discount button {
  display: inline-block;
  background: #ffda2b;
  font-family: Montserrat, Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #000;
  text-decoration: none;
  text-align: center;
  padding: 7px 20px;
  border-radius: 10px;
  border: 0;
  outline: none;
  cursor: pointer;
}
#calculator #order-section form {
  font-family: Montserrat, Helvetica, Arial, sans-serif;
}
#calculator #order-section form p {
  clear: both;
}
#calculator #order-section form label {
  display: inline-block;
  width: 200px;
}
#calculator #order-section form input {
  border: 1px solid #a4a4a4;
  background: #fff;
  border-radius: 15px;
  line-height: 20px;
  padding: 5px 10px;
  width: 400px;
  outline: none;
}
#calculator #order-section form select {
  border: 1px solid #a4a4a4;
  background: #fff;
  border-radius: 15px;
  line-height: 20px;
  padding: 7px 0;
  text-align-last: center;
  width: 420px;
  outline: none;
  -webkit-appearance: none;
  -webkit-box-shadow: 1px 1px 1px #fff;
  -webkit-border-radius: 15px;
  padding: 0.5em 1em 0.5em 0.75em;
}
#calculator #order-section form textarea {
  border: 1px solid #a4a4a4;
  background: #fff;
  border-radius: 15px;
  line-height: 20px;
  padding: 5px 10px;
  width: 400px;
  outline: none;
}
#calculator #order-section form button {
  display: inline-block;
  background: #ffda2b;
  font-family: Montserrat, Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: #000;
  text-decoration: none;
  text-align: center;
  padding: 10px 20px;
  border-radius: 10px;
  border: 0;
  outline: none;
  cursor: pointer;
}
#calculator #order-section form span.order-error {
  display: block;
  margin-left: 210px;
  font-size: 11px;
  color: red;
}
#calculator #order-section form .dblarrow {
  margin-left: 600px;
  position: relative;
  z-index: 99;
  margin-top: -40px;
  margin-bottom: 40px;
}
#calculator #order-section form .dblarrow b {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid black;
  display: block;
  margin-bottom: 3px;
}
#calculator #order-section form .dblarrow i {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid black;
  display: block;
}
#shoppingCart {
  position: fixed;
  opacity: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-top: 3px solid #d3d3d3;
  z-index: 99999;
  background: #eaeaea;
  font-family: Montserrat, Helvetica, Arial, sans-serif;
  padding: 20px;
}
#shoppingCart.visible {
  opacity: 1;
  transition: all 0.1s ease-in;
}
#frontpage {
  width: 100%;
  background: url('../img/frontpage/bg2.jpg') no-repeat 50% 0;
}
#frontpage a {
  display: block;
}
#frontpage h2,
#frontpage h3,
#frontpage p {
  position: absolute;
  text-indent: -999999px;
}
#frontpage img {
  width: auto;
  height: auto;
  max-width: 100%;
  border: 0;
}
#frontpage * {
  margin: 0;
  padding: 0;
}
#frontpage *,
#frontpage *:before,
#frontpage *:after {
  box-sizing: border-box;
}
#frontpage .container {
  margin: 0 auto;
}
#frontpage .row {
  margin-left: -5px;
  margin-right: -5px;
  margin-bottom: 5px;
}
#frontpage .row:before,
#frontpage .row:after {
  box-sizing: border-box;
  content: " ";
  display: table;
  clear: both;
}
#frontpage .col-1,
#frontpage .col-2,
#frontpage .col-3,
#frontpage .col-4,
#frontpage .col-5,
#frontpage .col-6,
#frontpage .col-7,
#frontpage .col-8,
#frontpage .col-9,
#frontpage .col-10,
#frontpage .col-11,
#frontpage .col-12 {
  position: relative;
  min-height: 1px;
  padding-left: 5px;
  padding-right: 5px;
  float: left;
  width: 100%;
  margin-bottom: 20px;
  text-align: center;
}
#frontpage .col-m-1 {
  width: 8.33333333333%;
  margin-bottom: 0;
}
#frontpage .col-m-2 {
  width: 16.6666666667%;
  margin-bottom: 0;
}
#frontpage .col-m-3 {
  width: 25%;
  margin-bottom: 0;
}
#frontpage .col-m-4 {
  width: 33.33333333333333%;
  margin-bottom: 0;
}
#frontpage .col-m-5 {
  width: 41.6666666667%;
  margin-bottom: 0;
}
#frontpage .col-m-6 {
  width: 50%;
  margin-bottom: 0;
}
#frontpage .col-m-7 {
  width: 58.3333333333%;
  margin-bottom: 0;
}
#frontpage .col-m-8 {
  width: 66.6666666667%;
  margin-bottom: 0;
}
#frontpage .col-m-9 {
  width: 75%;
  margin-bottom: 0;
}
#frontpage .col-m-10 {
  width: 83.3333333333%;
  margin-bottom: 0;
}
#frontpage .col-m-11 {
  width: 91.6666666667%;
  margin-bottom: 0;
}
#frontpage .col-m-12 {
  width: 100%;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  #frontpage .col-1,
  #frontpage .col-2,
  #frontpage .col-3,
  #frontpage .col-4,
  #frontpage .col-5,
  #frontpage .col-6,
  #frontpage .col-7,
  #frontpage .col-8,
  #frontpage .col-9,
  #frontpage .col-10,
  #frontpage .col-11,
  #frontpage .col-12 {
    position: relative;
    min-height: 1px;
    padding-left: 5px;
    padding-right: 5px;
    float: left;
    width: 100%;
    margin-bottom: 20px;
    text-align: left;
  }
  #frontpage .col-1 {
    width: 8.33333333333%;
    margin-bottom: 0;
  }
  #frontpage .col-2 {
    width: 16.6666666667%;
    margin-bottom: 0;
  }
  #frontpage .col-3 {
    width: 25%;
    margin-bottom: 0;
  }
  #frontpage .col-4 {
    width: 33.33333333333333%;
    margin-bottom: 0;
  }
  #frontpage .col-5 {
    width: 41.6666666667%;
    margin-bottom: 0;
  }
  #frontpage .col-6 {
    width: 50%;
    margin-bottom: 0;
  }
  #frontpage .col-7 {
    width: 58.3333333333%;
    margin-bottom: 0;
  }
  #frontpage .col-8 {
    width: 66.6666666667%;
    margin-bottom: 0;
  }
  #frontpage .col-9 {
    width: 75%;
    margin-bottom: 0;
  }
  #frontpage .col-10 {
    width: 83.3333333333%;
    margin-bottom: 0;
  }
  #frontpage .col-11 {
    width: 91.6666666667%;
    margin-bottom: 0;
  }
  #frontpage .col-12 {
    width: 100%;
    margin-bottom: 0;
  }
}
#inspire {
  position: absolute;
  width: 100%;
  height: 130px;
  background: url('../img/frontpage/inspirebg.png') repeat;
  color: #fff;
  text-align: center;
  font-family: Montserrat, Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-size: 28px;
  padding: 60px 0;
  z-index: 1;
}
#inspire span {
  background: url('../img/frontpage/play.png') no-repeat;
  background-size: 100% 100%;
  display: inline-block;
  vertical-align: middle;
  width: 105px;
  height: 105px;
  cursor: pointer;
}
#mallisto #main-title {
  text-align: center;
  font-family: Montserrat, Helvetica, Arial, sans-serif;
  font-size: 34px;
  text-transform: uppercase;
  -webkit-text-stroke: 0.3px;
}
#mallisto .lightbg,
#mallisto .darkbg {
  padding: 0 0 20px 0;
  margin-bottom: 5px;
  clear: both;
  overflow: auto;
}
#mallisto .lightbg {
  background: #efefed;
}
#mallisto .darkbg {
  background: #dfdfdb;
}
#mallisto h3 {
  display: block;
  width: 281px;
  height: 122px;
  text-indent: -99999px;
  margin: 0 0 30px 0;
}
#mallisto h3.corian {
  background: url('../img/mallisto/corian.png') no-repeat;
}
#mallisto h3.getacore {
  background: url('../img/mallisto/getacore.png') no-repeat;
}
#mallisto h3.massiivi {
  background: url('../img/mallisto/massiivi.png') no-repeat;
}
#mallisto h3.himacs {
  background: url('../img/mallisto/himacs.png') no-repeat;
}
#mallisto h4 {
  font-size: 18px;
  margin-bottom: 15px;
}
#mallisto .slider {
  width: 40%;
  float: left;
}
#mallisto .flexslider {
  margin-bottom: 10px;
}
#mallisto .content {
  width: 50%;
  float: right;
  font-family: Montserrat, Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 23px;
  -webkit-text-stroke: 0.2px;
}
#mallisto .button {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  background: #454545;
  font-family: Montserrat, Helvetica, Arial, sans-serif;
  font-size: 15px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 8px 15px;
  margin-right: 20px;
  margin-top: 30px;
  -webkit-text-stroke: 0.3px;
}
#ordered-products {
  width: 100%;
  font-family: Montserrat, Helvetica, Arial, sans-serif;
}
#ordered-products tr:nth-child(odd) {
  background-color: #f5f5f3;
}
#ordered-products td {
  padding: 5px;
}
#ordered-products td.price-total {
  text-align: right;
}
#ordered-products tr.totalPrice {
  background: #fff;
}
#ordered-products tr.totalPrice td {
  border: 1px solid #000;
  padding: 5px;
  margin: 10px 0;
  border-right: 0;
}
#ordered-products tr.totalPrice td.price {
  border-right: 1px solid #000;
  border-left: 0;
}
#ordered-products tr.totalPrice span {
  float: right;
  text-align: right;
}
.login {
  width: 360px;
  margin: 20px auto;
  background: #eaeaea;
  padding: 20px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border: 1px solid #d2d2d2;
}
.login h2 {
  margin-top: 0;
  border-bottom: 1px solid #d2d2d2;
  padding-bottom: 13px;
}
.login label {
  display: block;
  margin-bottom: 5px;
  font-family: Montserrat, Helvetica, Arial, sans-serif;
}
.login input[type=text],
.login input[type=password] {
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  border: 1px solid #000;
  padding: 8px;
  font-size: 16px;
  width: 340px;
}
.login input[type=submit] {
  border: 0;
  display: inline-block;
  background: #7bd55b;
  font-family: Montserrat, Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: #000;
  text-decoration: none;
  text-align: center;
  width: 150px;
  padding: 10px 0;
  border-radius: 10px;
  cursor: pointer;
}
#discount-form p {
  clear: both;
  margin-bottom: 10px;
}
#discount-form label {
  display: inline-block;
  width: 150px;
}
#discount-form .errors {
  color: #a94442;
  background-color: #f2dede;
  border: 1px solid #ebccd1;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  padding: 15px 15px 10px 15px;
  font-size: 14px;
  margin: 0 0 20px 0;
  list-style: none;
}
#discount-form .errors li {
  margin-bottom: 5px;
}
#discount-form .success {
  font-size: 14px;
  color: #3c763d;
  background-color: #dff0d8;
  border: 1px solid #d6e9c6;
  padding: 15px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
}
#discount-form input[type=text],
#discount-form input[type=password] {
  border: 1px solid #a4a4a4;
  background: #fff;
  border-radius: 4px;
  line-height: 20px;
  padding: 5px 10px;
  width: 400px;
  outline: none;
}
#discount-form input[type=submit] {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
  text-decoration: none;
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c;
  margin-left: 155px;
}
#admin * {
  margin: 0;
}
#admin *,
#admin *:before,
#admin *:after {
  box-sizing: border-box;
}
#admin .row {
  margin-left: -5px;
  margin-right: -5px;
  margin-bottom: 5px;
}
#admin .row:before,
#admin .row:after {
  box-sizing: border-box;
  content: " ";
  display: table;
  clear: both;
}
#admin .col-1,
#admin .col-2,
#admin .col-3,
#admin .col-4,
#admin .col-5,
#admin .col-6,
#admin .col-7,
#admin .col-8,
#admin .col-9,
#admin .col-10,
#admin .col-11,
#admin .col-12 {
  position: relative;
  min-height: 1px;
  padding-left: 5px;
  padding-right: 5px;
  float: left;
  width: 100%;
  margin-bottom: 20px;
  text-align: center;
}
#admin .col-m-1 {
  width: 8.33333333333%;
  margin-bottom: 0;
}
#admin .col-m-2 {
  width: 16.6666666667%;
  margin-bottom: 0;
}
#admin .col-m-3 {
  width: 25%;
  margin-bottom: 0;
}
#admin .col-m-4 {
  width: 33.33333333333333%;
  margin-bottom: 0;
}
#admin .col-m-5 {
  width: 41.6666666667%;
  margin-bottom: 0;
}
#admin .col-m-6 {
  width: 50%;
  margin-bottom: 0;
}
#admin .col-m-7 {
  width: 58.3333333333%;
  margin-bottom: 0;
}
#admin .col-m-8 {
  width: 66.6666666667%;
  margin-bottom: 0;
}
#admin .col-m-9 {
  width: 75%;
  margin-bottom: 0;
}
#admin .col-m-10 {
  width: 83.3333333333%;
  margin-bottom: 0;
}
#admin .col-m-11 {
  width: 91.6666666667%;
  margin-bottom: 0;
}
#admin .col-m-12 {
  width: 100%;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  #admin .col-1,
  #admin .col-2,
  #admin .col-3,
  #admin .col-4,
  #admin .col-5,
  #admin .col-6,
  #admin .col-7,
  #admin .col-8,
  #admin .col-9,
  #admin .col-10,
  #admin .col-11,
  #admin .col-12 {
    position: relative;
    min-height: 1px;
    padding-left: 5px;
    padding-right: 5px;
    float: left;
    width: 100%;
    margin-bottom: 20px;
    text-align: left;
  }
  #admin .col-1 {
    width: 8.33333333333%;
    margin-bottom: 0;
  }
  #admin .col-2 {
    width: 16.6666666667%;
    margin-bottom: 0;
  }
  #admin .col-3 {
    width: 25%;
    margin-bottom: 0;
  }
  #admin .col-4 {
    width: 33.33333333333333%;
    margin-bottom: 0;
  }
  #admin .col-5 {
    width: 41.6666666667%;
    margin-bottom: 0;
  }
  #admin .col-6 {
    width: 50%;
    margin-bottom: 0;
  }
  #admin .col-7 {
    width: 58.3333333333%;
    margin-bottom: 0;
  }
  #admin .col-8 {
    width: 66.6666666667%;
    margin-bottom: 0;
  }
  #admin .col-9 {
    width: 75%;
    margin-bottom: 0;
  }
  #admin .col-10 {
    width: 83.3333333333%;
    margin-bottom: 0;
  }
  #admin .col-11 {
    width: 91.6666666667%;
    margin-bottom: 0;
  }
  #admin .col-12 {
    width: 100%;
    margin-bottom: 0;
  }
}
#admin .logout {
  clear: both;
  text-align: right;
  font-size: 14px;
  margin-bottom: 20px;
}
#admin #admin-navigation {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #e9e8e5;
  width: 200px;
  font-weight: bold;
}
#admin #admin-navigation a {
  color: #4cae4c;
  text-decoration: none;
}
#admin #admin-navigation li {
  border-bottom: 1px solid #e9e8e5;
  padding: 5px;
}
#admin #admin-navigation li.active a {
  color: #000;
}
#admin table.list {
  width: 100%;
}
#admin table.list tbody tr:nth-child(even) {
  background-color: #f3f3f3;
}
#admin table.list td,
#admin table.list th {
  padding: 5px 10px;
  border-bottom: 1px solid #e9e8e5;
}
#admin h2 {
  margin-bottom: 20px;
}
#admin h2 select {
  border: 1px solid #333;
  border-radius: 4px;
  padding: 4px;
  display: inline-block;
  vertical-align: top;
  margin-left: 20px;
}
#admin .btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
  text-decoration: none;
}
#admin .btn.default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
#admin .btn.success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}
#admin .btn.danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a;
}
.infotext {
  margin: -15px 0 30px 0;
}
.varimallit {
  font-family: Montserrat, Helvetica, Arial, sans-serif;
}
.varimallit ul {
  list-style: none;
  margin: 0;
  padding: 20px;
}
.varimallit ul li {
  display: inline-block;
  width: 105px;
  text-align: center;
}
.varimallit h2 {
  font-size: 12px;
  font-weight: 400;
}
#copyright {
  margin-bottom: 50px;
  font-family: Montserrat, Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 23px;
}
#copyright a {
  color: #000;
}
#copyright #main-title {
  text-align: center;
  font-family: Montserrat, Helvetica, Arial, sans-serif;
  font-size: 34px;
  text-transform: uppercase;
  -webkit-text-stroke: 0.3px;
}
#terms {
  margin-bottom: 50px;
  font-family: Montserrat, Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 23px;
}
#terms a {
  color: #000;
}
#terms #main-title {
  text-align: center;
  font-family: Montserrat, Helvetica, Arial, sans-serif;
  font-size: 34px;
  text-transform: uppercase;
  -webkit-text-stroke: 0.3px;
}
a.printButton {
  display: inline-block;
  background: #ffda2b;
  font-family: Montserrat, Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: #000;
  text-decoration: none;
  text-align: center;
  width: 150px;
  padding: 10px 0;
  border-radius: 10px;
  margin-top: 30px;
  cursor: pointer;
}
@media print {
  #header {
    background: none;
  }
  #navigation {
    display: none !important;
  }
  a.printButton {
    display: none;
  }
  #header h1 a {
    color: #000;
  }
}
