#filtersBox .containers{
  width: 100%;
}#filterSubmit{
  padding: 0.5em 1em;
  background-color: #fa8c23;
  color: #fff;
  font-size: 1em;
  border-radius: 0.5em;
  margin-top: 2em;
  display: inline-block;
  cursor: pointer;
}

section .flex {
  column-gap: 1em;
}
.container.flex {
  flex-direction: column;
  width: 100%;
  align-items: flex-start !important;
}
.dropdown {
  min-width: 70%;
  width: 100%;
  position: relative;
}
.container.flex:last-child {
  /*transform: translateX(115%);
  z-index: 9;*/
}
.select {
  width: 100%;
  background-color: #000;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: solid 1px rgba(255,255,255,0.95);
  padding: 0.75em;
  cursor: pointer;
  transition: all 300ms;
  font-size: 10px !important;
  border-radius: 0.5em;
}
#filtersBox em.selected{
  font-family: arial, 'sans-serif';
  font-size: 1.5em;
  text-transform: none;
  letter-spacing: unset;
  font-style: normal;
}
.select-clicked {
  border: 1px #26489a solid;
  box-shadow: 0 0 0.8em #26489a;
}
.select:hover {
  background-color: #323741;
}
.selected {
  margin: 0em;
}
.caret {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 7px solid #fff;
  transition: 0.3s;
}
.caret-rotate {
  transform: rotate(180deg);
}
.menu {
  list-style: none;
  padding: 0.2em 0.5em;
  background-color: #000 !important;
  border: 1px solid #363a43;
  box-shadow: 0 0.5em 1em rgba(0, 0, 0, 0.2);
  color: #fff;
  position: absolute;
  top: 3em;
  left: 50%;
  width: 108%;
  transform: translateX(-42%);
  opacity: 0;
  display: none;
  transition: all 300ms ease;
  z-index: 1;
}

#filtersBox ul span{
  position: relative;
  padding: 0 !important;
  font-size:0.8em;
}
@media screen and (min-width: 1440px) {
  .menu {
    left: 46%;
    top: 2.5em;
    width: 102%;
  }
}
.menu li {
  padding: 0.7em 0.5em;
  margin: 0.3em 0;
  cursor: pointer;
}
.menu li:hover {
  background-color: #2a2d35;
}
.active {
  background-color: #23242a;
}
.menu-open {
  display: block;
  opacity: 1;
}
#explorerPopup {
  /* Visibility */
  display: none;
  height: 0;
  width: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.2s ease;
}
#explorerPopup.active {
  display: block;
  position: fixed;
  border: 1px solid #fff;
  /* Visibility */
  top: 15%;
  left: 0%;
  right: 0%;
  height: 70%;
  width: 50%;
  opacity: 1;
  margin-inline: auto;
  visibility: visible;
  pointer-events: all;
  z-index: 9;
  padding: 2em;
}
#explorerPopup #closePopup:hover {
  color: #fa8c23;
}
.popupContainer.flex {
  column-gap: 2em;
}
.popupContainer img {
  width: 35%;
}
.popupContainer h2 {
  font-size: 50px;
}
.popupContainer p {
  max-width: 80%;
  margin-bottom: 3em;
}
.popupContainer h3 {
  width: 80%;
  padding: 0.5em 1em;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
#filtersBox h2 {
  font-size: 1.5em;
  margin: 0.5em 0 0.1em;
  color:rgba(255,255,255,0.9);
}
.bttmContainer.flex {
  column-gap: 3em;
}
.bttmContainer.flex span i {
  font-size: 4em;
}
.bttmContainer.flex img.bttmImg {
  width: 20%;
}
@media screen and (max-width: 768px) {
  .container.flex h2 {
    font-size: 1.8em;
  }
  .select {
    padding: 0.7em;
  }
}
