.arrow-triangle {
  position: relative;
  background-color: #464646;
  text-align: left;
  margin-right: 1.2em;
}
.nav-item:hover .arrow-triangle {
  background-color: #ffffff;
}
.nav_item_active .arrow-triangle{
  background-color: #ffffff;
}
.arrow-triangle:before,
.arrow-triangle:after {
  content: '';
  position: absolute;
  background-color: inherit;
}

.arrow-triangle,
.arrow-triangle:before,
.arrow-triangle:after {
    width: 5px;
    height: 5px;
    border-top-right-radius: 50%;
}

.arrow-triangle.left {
  transform: rotate(-90deg) skewX(-30deg) scale(1,.866);
}

.arrow-triangle.right {
  transform: rotate(-30deg) skewX(-30deg) scale(1,.866);
}

.arrow-triangle:before {
  transform: rotate(-135deg) skewX(-45deg) scale(1.414,.707) translate(0,-50%);
}

.arrow-triangle:after {
  transform: rotate(135deg) skewY(-45deg) scale(.707,1.414) translate(50%);
}


.top-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.search-box {
  width: 0;
  opacity: 0;
  padding: 5px;
  border-radius: 0;
  transition: width 0.3s ease, opacity 0.3s ease;
  background: transparent;
  border: none;
  border-bottom: 1px solid #ffffff;
  color: #ffffff;
  font-size: 14px;
  overflow: hidden;
  white-space: nowrap;
  visibility: hidden;
}

.search-box.show {
  width: 200px;
  opacity: 1;
  visibility: visible;
}

.search-container input::placeholder {
  color: #ffffff;
  opacity: 1;  
}

.search-box input {
  background: unset;
  border: unset;
  width: 100%;
  color: #ffffff;
  font-weight: 500;
}

.search-box input::placeholder {
  color: white;
  opacity: 0.7;
}
