.select2-results__option--disabled {
  white-space: nowrap;
  overflow: hidden;
}

.select2-container--default .select2-selection--single {
  border: none;
  border-radius: 0;
}

.select2-dropdown {
  border-radius: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  right: 8px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-width: 15px 10px 0 10px;
  border-color: #000 transparent transparent transparent;
  margin-left: -10px;
  margin-top: -6px;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #000 transparent;
  border-width: 0 10px 15px 10px;
}

.cta-consult {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  background-color: #364fa2;
  color: #fff;
  padding: 15px 15px;
  font-family: 'Century', sans-serif;
}

.cta-consult__title {
  font-size: 26px;
  line-height: 1.2em;
  font-weight: 400;
  width: 200px;
  flex-shrink: 0;
  position: relative;
  margin-right: 12px;
}

.cta-consult__title::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  width: 1px;
  background-color: #636eb3;
}

.cta-consult__button {
  flex-shrink: 0;
  margin-left: auto;
}

.cta-consult__button a {
  border-radius: 4px;
  background-color: #ed3b54;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  vertical-align: baseline;
  font-family: Arial, sans-serif;
  font-weight: bold;
  padding: 8px 24px;
}

.cta-consult__button a:hover {
  background-color: #ff4059;
  color: #fff;
}

.cta-consult__subject {
  width: 320px;
}

.cta-consult__subject-label {
  font-size: 20px;
  line-height: 1.2em;
  font-weight: 400;
  margin-bottom: 12px;
}

@media (max-width: 767px) {
  .cta-consult {
    display: block;
  }

  .cta-consult__title::after {
    display: block;
    position: static;
    width: 100%;
    height: 1px;
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .cta-consult__button {
    margin-top: 20px;
  }

  .cta-consult__subject {
    width: 100%;
  }
}