.dropdown-phones {
  width: 50%;
  min-width: 430px;
  margin: 0 auto;
  position: relative;
}

.dropdown-phones_info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.dropdown {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.dropdown_wrap {
  position: relative;
}

.dropdown_selected {
  z-index: 2;
}

.dropdown_arrow {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  right: 20px;
  font-size: 20px;
  line-height: 0.8;
  color: var(--themeTextColorSecond);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all var(--themeTransition);
  z-index: 3;
  pointer-events: none;
}

.dropdown_arrow.is-active {
  -webkit-transform: translateY(calc(-50% - 3px)) rotateX(-180deg);
  transform: translateY(calc(-50% - 3px)) rotateX(-180deg);
}

.dropdown_item {
  position: relative;
  padding: 5px 45px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  transition: all var(--themeTransition);
  cursor: pointer;
}

.support-tel_link {
  text-decoration: none;
}

.support-tel_number {
  transition: all var(--themeTransition);
}

.support-tel_link:hover .support-tel_number {
  opacity: 0.5;
}

.dropdown_item .phone-icon::before {
  left: 20px;
}

.dropdown_selected .dropdown_item {
  background-color: var(--themeAccentColor);
  border-radius: var(--themeBtnRadius);
  box-shadow: var(--themeBtnBoxShadow);
  min-height: 60px;
  color: var(--themeTextColorSecond);
  text-align: center;
  font: var(--themeButtonFont);
}

.dropdown_selected .dropdown_item:hover {
  background-color: var(--themeHoverBtnColor);
}

.dropdown_selected .support-tel_link {
  color: var(--themeTextColorSecond);
}

.dropdown_options-wrap {
  position: absolute;
  border-radius: var(--themeDropdownPhonesRadius);
  box-shadow: var(--themePopupBoxShadow);
  top: 100%;
  right: 0;
  padding: 10px 5px 10px 0;
  margin: 10px 0 0;
  background: var(--themeDropdownPhonesBackground);
  opacity: 0;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
  visibility: hidden;
  transition: .2s all ease-in-out;
  width: 100%;
  z-index: 20;
}

.dropdown_options {
  max-height: 210px;
  overflow: auto;
  font-size: 16px;
}

.dropdown_options::-webkit-scrollbar {
  width: 3px;
}

.dropdown_options-wrap.is-active {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.dropdown_options .dropdown_item {
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 10px 10px 10px 55px;
  transition: all .3s ease;
}

.dropdown_options .support-country {
  margin-right: 10px;
  text-align: left;
}

.dropdown_options .support-tel {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.dropdown_options .support-tel_link {
  color: var(--themeTextColor);
}

.dropdown_options .dropdown_item:hover {
  background-color: rgba(217, 217, 217, 0.2);
}

@media screen and (max-width: 1000px) {
  .dropdown {
    z-index: 15;
  }

  .dropdown-phones {
    width: 60%;
  }
}

@media screen and (max-width: 680px) {
  .dropdown-phones {
    width: 100%;
    min-width: auto;
  }

  .dropdown_options .dropdown_item {
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 5px 10px 5px 50px;
  }

  .dropdown_selected .dropdown_item {
    padding: 5px 35px;
    line-height: 1.2;
  }

  .dropdown_selected .dropdown_item:hover {
    background-color: var(--themeAccentColor);
  }

  .dropdown_options .support-tel,
  .dropdown_options .support-tel_link {
    width: 100%;
    display: -ms-flexbox;
    display: flex;
  }

  .dropdown_arrow {
    right: 10px;
  }

  .dropdown_item .phone-icon::before {
    left: 10px;
  }
}