.pastel-set-wrap {
  box-sizing: border-box;
  margin: 0px -3px 0px -3px;
  white-space: nowrap;
}

.pastel-set-wrap > h6 {
  margin: 30px 0 0 5px;
}

.set-row {
  box-sizing: border-box;
  display: flex;
  display: -webkit-flex;
  display: -ms-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-around;
  max-width: 100%;
}

.set-row > div {
  width: 25%;
  height: 0;
  padding-bottom: 15%;
  margin: 8px;
}

.set-row-two-items {
  box-sizing: border-box;
  display: flex;
  display: -webkit-flex;
  display: -ms-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-around;
  max-width: 100%;
}

.set-row-two-items > div {
  width: 25%;
  height: 0;
  padding-bottom: 15%;
  margin: 8px;
}

.colour-tile {
  box-sizing: border-box;
  position: relative;
  background-size: cover;
  height: 0;
  border-radius: 6px;
  box-shadow: inset 2px 2px 20px rgba(0, 0, 0, 0.11), 2px 2px 20px rgba(0, 0, 0, 0.21);
}

.colour-name, .colour-name-abbrv {
  box-sizing: border-box;
  position: absolute;
  color: white;
  font-family: sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  bottom: 0;
  text-transform: uppercase;
  background-color: rgba(30, 30, 30, 0.278);
  padding: 4px;
  width: 100%;
  border-radius: 0 0 6px 6px;
}

.one-item {
  display: flex;
  display: -webkit-flex;
  display: -ms-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  max-width: 33.3333%;
}

.one-item > div {
  width: 50%;
  padding-bottom: 50%;
  margin: 8px;
}

@media screen and (min-width: 1001px) {
  .colour-name-abbrv {
    display: none;
  }
  .set-row > div {
    margin: 4px;    
  }
}

@media screen and (min-width: 701px) and (max-width: 1000px) {
  .colour-name-abbrv {
    display: none;
  }
  .set-row > div {
    margin: 4px;    
  }
  .colour-name {
    font-size: 8px;
  }
}

@media screen and (min-width: 501px) and (max-width: 700px) {
  .colour-name {
    display: none;
  }
  .set-row > div {
    margin: 4px;    
  }
  .colour-name-abbrv {
    font-size: 12px;
  }
}

@media screen and (max-width: 500px) {
  .colour-name {
    display: none;
  }
  .set-row > div {
    margin: 2px;    
  }
  .colour-name-abbrv {
    font-size: 10px;
  }
}