.flex-container-row {
  display: flex;
  flex-direction: row;
}

.flex-container-column {
  display: flex;
  flex-direction: column;
}

.kleur-lichaam {
  fill: #CDA524;
  cursor: pointer;
  -webkit-transition: fill 200ms;
  -moz-transition: fill 200ms;
  -o-transition: fill 200ms;
  transition: fill 200ms;
}

.kleur-lichaam:hover {
  fill: #cc8826;
  cursor: pointer;
}

.width_25 {
  width: 25%;
}

.width_50 {
  width: 50%;
}

.width_65 {
  width: 65%;
}

.page-width {
  width: 70%;
}

.paddingHeight {
  padding: 2% 0 2% 0;
}

.padding {
  padding: 2%;
}

.transition {
  transition: color 300ms, border 300ms, background 300ms;
}

.margin_25 {
  margin-right: 25px;
}

.margin-center {
  margin: auto;
}

.margin-center-right {
  margin: auto auto auto 15%;
}

/* Global box-shadow */
.box-shadow {
  box-shadow: 0 3px 4px 1px rgba(0, 0, 0, 0.2);
}

/* Global background-colors */
.white {
  background: rgba(255, 255, 255, 0.8);
  -webkit-transition: background 1s;
  -moz-transition: background 1s;
  -o-transition: background 1s;
  transition: background 1s;
}

/* global box */
.settings {
  margin: auto auto 1% auto;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  flex-direction: column;
  border-radius: 4px;
  display: flex;
}

/* global product */
.marginBox {
  margin: 1% 1% calc(1% + 4px) 1%;
}

.product_placement {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.2);
  width: calc(23% - 2px);
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  display: none;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 200ms, opacity 200ms;
  box-shadow: 0 3px 4px 1px rgba(0, 0, 0, 0.2);
  opacity: 1;
}

.product_placement:hover {
  box-shadow: 0 0 0;
  opacity: 0.5;
}

.product_placement img {
  position: relative;
  float: left;
  height: 150px;
  /*background: no-repeat 50% 50%;*/
  background-size: cover;
  padding: 5px;
}

.product_placement-info {
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  cursor: pointer;
  display: flex;
  height: 50px;
  justify-content: center;
  width: 100%;
}

.boxSpaceHeight {
  height: fit-content;
}

.timerPlacement {
  margin: 20px 40px auto auto;
  border-radius: 4px;
  color: white;
  width: 265px;
}

#timerInfo {
  line-height: 1.25;
  margin: auto auto 0 0;
  font-size: 120%;
  cursor: default;
  padding-bottom: 4px;
}

#timerClock {
  margin: auto 15px 0 auto;
  padding-bottom: 4px;
  line-height: 1.25;
  font-size: 120%;
  cursor: default;
}

#timerStop {
  padding-bottom: 4px;
  height: 30px;
  width: 30px;
}

#timerStop:hover {
  box-shadow: 0 3px 4px 1px rgba(0, 0, 0, 0.2);
}

/* To be honest I don't even know */
button:focus {
  outline: 0;
}

div:focus {
  outline: 0;
}

svg:not(:root) {
  overflow: hidden;
}

svg g {
  margin: auto;
}

@media screen and (max-width: 1400px) {
  .page-width {
    width: 90%;
  }
}

@media screen and (max-width: 1081px) {
  .timerPlacement {
    width: 220px;
  }

  #timerInfo {
    line-height: 2;
  }

  #timerClock {
    line-height: 2;
  }

  #timerStop {

  }

  .product_placement img {
    height: 150px;
    padding: 5px;
  }
}

@media screen and (max-width: 800px){
  .product_placement img {
    height: 100px;
    padding: 5px;
  }
}

@media screen and (max-width: 700px) {
  .product_placement {
    width: 44%;
  }
}

@media screen and (max-width: 400px) {
  .product_placement {
    width: 90%;
  }

  .product_placement img {
    height: 175px;
  }
}
/* for edge */
@supports (-ms-ime-align: auto) {
  .settings{
    padding-top: 1.5%;
    padding-bottom: 1%;
  }
}
