/* ACF IMAGE SELECT */
.image-select {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  
  overflow: auto;
  max-width: 70vw;
  padding: 10px;
  list-style-type: none !important;
  box-shadow: inset 0 0 9px rgba(0,0,0, 0.5);
  border-radius: 3px;
}

.image-select * {
  box-sizing: border-box;
}

.image-select__item {
  box-sizing: border-box;
  flex: 0 1 auto;
  max-width: 50%;
  margin: 0;
  padding: 2px;
}

/* .image-select__item--none {
  flex: 1 0 auto;
  width: 100%;
} */

.image-select__item input {
  display: none;
}

.image-select__item label {
  overflow: hidden;
  position: relative;
  display: block;
  /* width: 100%;
  height: 0;
  padding-bottom: 90%; */
  border: 4px solid #ccc;
  border-radius: 5px;
  background: url('../img/bg-transparent-style-ps.gif');
}

.image-select__item label i,
.image-select__item label img {
  display: block;
  /* position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%); */
  line-height: 1;
}

.image-select__item label img {
  width: auto;
  max-width: 400px;
  height: auto;
  max-height: 60px;
}
.image-select__item label img[src$=".svg"] {
  /* width: 100%;
  height: 100%; */
}

.image-select__item label i {
  font-size: 55px;
  font-style: normal;
}

.image-select__item label i[class*="icon-"]::before {
  font-family: "icomoon";
}

.image-select__item input:checked + label {
  border: 4px solid #0085ba;
}