.ibc-contacts {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  column-gap: 1em;
  row-gap: 1em;
  width: var(--site_width) !important;
  justify-self: center;
}

.ibc-contacts h3 {
  width: 100% !important;
}

.ibc-contacts h4 {
  color: var(--awb-color3);
}

.ibc-contact {
  padding: 1em;
  border-top-right-radius: 4rem;
  border-left: 1px solid var(--awb-custom_color_2);
  width: 32%;
  box-sizing: border-box;
  align-self: stretch;
}

.ibc-contact h4,
.ibc-contact h5 {
  margin-top: 0;
  margin-bottom: 0.2em;
}
.ibc-contacts-filter-wrap {
  position: sticky;
  left: 20vw;
  width: 86vw;
  top: 166px;
  margin-bottom: 1em;
  padding: 0.5em 1em 0.5em 5em;
  border-radius: 0 0 0 var(--radius200);
  background: linear-gradient(
    to right,
    var(--awb-color3) 0%,
    var(--awb-color4) 50%,
    var(--awb-custom_color_8) 100%
  );
}
.ibc-filter {
  margin-top: 1em;
  margin-bottom: 1em;
  background-repeat: no-repeat;
  background-position: top right;
}

.ibc-filter form {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  column-gap: 1em;
  row-gap: 1em;
  justify-content: flex-start;
  align-items: center;
}

.ibc-filter-submit {
  color: var(--awb-color3);
  text-transform: uppercase;
  padding: 10px 35px;
  font-size: 1rem;
  border: none !important;
  border-radius: 8px;
  font-weight: bold;
  height: 100%;
  background: var(--gradient-orange1) !important;
  cursor: pointer !important;
}

.ibc-filter select {
  color: white;
  font-size: 1rem;
  cursor: pointer;
  width: 400px;
  border: 1px solid #f18700;
  padding: 10px !important;
  background-color: #002b45;
  position: relative;
  height: fit-content;
}

.locations {
  margin: 0;
  padding: 0;
}

/*----------------- Media Queries */

@media screen and (max-width: 1400px) {
.ibc-contacts {
      padding-left: var(--hundredp_padding-fallback_to_zero);
    padding-right: var(--hundredp_padding-fallback_to_zero);

}

.ibc-contacts-filter-wrap {
  width: calc(100% - var(--hundredp_padding-fallback_to_zero));
}
}

@media screen and (max-width: 992px) {
  .ibc-contact {
    width: 48%;
  }

  .ibc-contacts-filter-wrap {
    width: 100%
  }

  .ibc-filter select {
    width: auto;
  }

  .ibc-contacts-filter-wrap {
    position: unset;
  }
}

@media screen and (max-width: 600px) {
  .ibc-contact {
    width: auto;
  }
  .ibc-contacts-filter-wrap {
    padding-left: 1.5rem;
  }

  .ibc-filter select {
    width: 100%;
  }
}
