.sites {
  box-sizing: border-box;
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 5px 5px 0;
	width: 100%;
	max-width: 64px;
  min-height: 35px;
  max-height: 35px;
  margin: auto 0;
  cursor: pointer;
  transition: all 0.3s ease;
	border-radius:  5px 5px 0 0;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .nav-search {
    gap: 20px;
  }
}

.sites:hover {
  background: #fff;
}

.sites:hover .sites__current {
  color: #000;
}

.sites:hover .sites__current::after {
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 7L7 1L13 7' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.sites__current {
  position: relative;
  padding-right: 25px;
  color: #fff;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2;
  transition: color 0.3s ease;
}

.sites__current::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L7 7L13 1' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.3s ease;
}

.sites__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  background: #fff;
  border-radius: 0 0 5px 5px;
  padding: 5px;
  min-width: 100%;
}

.sites:hover .sites__dropdown {
  opacity: 1;
  visibility: visible;
}

.sites__option {
  color: #000;
  text-decoration: none;
  display: block;
  margin-top: 5px;
  transition: color 0.3s ease;
}

.sites__option:hover {
  color: #208C2A;
}

.search_form.show {
  width: 88.5%;
}

.search_form {
  right: 65px;
}

.menu li a {
  white-space: nowrap;
}