/* here down */
*,
*::before,
*::after {
  box-sizing: border-box;
}
#out {
  background-color: #ae192c;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  min-height: 320px;
  /* logos */
}
#out #suppliersSelectorNav {
  background-color: rgba(255, 255, 255, 0);
  display: flex;
  justify-content: center;
  text-align: center;
}
@media (max-width: 640px) {
  #out #suppliersSelectorNav {
    flex-direction: column;
  }
}
#out #suppliersSelectorNav select {
  appearance: none;
  border: 0;
  outline: 0;
  font: inherit;
  width: 16em;
  height: 2.5em;
  margin: 0 0.5rem;
  padding: 0 4em 0 1em;
  background: url(https://upload.wikimedia.org/wikipedia/commons/9/9d/Caret_down_font_awesome_whitevariation.svg) no-repeat right 0.8em center / 1.4em, linear-gradient(to left, rgba(255, 255, 255, 0.3) 3em, rgba(255, 255, 255, 0.2) 3em);
  color: white;
  border-radius: 0.25em;
  box-shadow: 0 0 1em 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
@media (max-width: 640px) {
  #out #suppliersSelectorNav select {
    margin-top: 0.7rem;
  }
}
#out #suppliersSelectorNav select option {
  background: rgba(255, 255, 255, 0.3);
  color: inherit;
  color: #000;
}
#out #suppliersSelectorNav select:focus {
  outline: none;
}
#out #suppliersSelectorNav select::-ms-expand {
  display: none;
}
#out #suppliersSelectorNav .select.message {
  margin-top: 10px;
}
#out #suppliersSelectorNav .tech-message {
  display: none;
}
#out #messageFeatured {
  cursor: pointer;
  font-size: 85% !important;
  text-align: center;
}
#out #marketsOuter {
  margin: auto;
  left: 0;
  right: 0;
  position: absolute;
  max-width: 100%;
  text-align: center;
  z-index: 10;
}
#out #logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#out #logos .slogo {
  background-color: rgba(255, 255, 255, 0);
  padding: 0.2rem 0.5rem;
  margin: 0.1rem;
  max-width: 295px;
  /* NOT SHOWING THIS RIGHT NOW */
}
#out #logos .slogo:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTciIGhlaWdodD0iMTEiIHZpZXdCb3g9IjAgMCAxNyAxMSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGxpbmUgeDE9IjEuNDE0MjEiIHkxPSIyIiB4Mj0iOCIgeTI9IjguNTg1NzkiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIi8+CjxsaW5lIHgxPSIxNSIgeTE9IjIuNDE0MjEiIHgyPSI4LjQxNDIxIiB5Mj0iOSIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiLz4KPC9zdmc+Cg==);
  background-repeat: no-repeat;
  background-position: 50%;
  display: none;
  content: '\00a0';
  font-size: 2rem;
  text-align: center;
  visibility: hidden;
  width: 100%;
}
#out #logos .slogo:hover:after {
  visibility: visible;
}
#out #logos .slogo img {
  background-color: rgba(255, 255, 255, 0);
  cursor: pointer;
  width: 100%;
  max-width: 295px;
}
#out #logos .slogo .desc {
  display: none;
  font-size: 14px;
  transform: scale(0);
  opacity: 0;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
#out #logos .slogo .desc a {
  color: #fff;
}
#out #logos .slogo.active .desc {
  display: block;
  transform: scale(1);
  opacity: 1;
  animation: anim 0.3s ease-in-out;
}
@keyframes anim {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
    transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
