.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.search-container {
    position: absolute;
    top: 70px;
    right: 0;
    width: 350px;
    background-color: #e6e5e4;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    z-index: 9;
}

.search-container.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-container::before {
    content: '';
    position: absolute;
    top: -10px;
    right: 11px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #e6e5e4;
}

.search-toggle {
	aspect-ratio: 1;
	width: 40px;
  	height: 40px;
  	border: 0.50px solid rgba(37, 37, 37, 0.1);
	background-image: url(../icons/search.svg);
	background-repeat: no-repeat;
	background-position: center center;
	cursor: pointer;
	background-color: transparent;
}

.header-first-row__cell-right-mobile .search-toggle {
	width: 34px;
    height: 34px;
}

.search-toggle:hover, .search-toggle.active {
  background-color: #e6e5e4;
}

.mobile__buttons-wrapper {
	display: none;
}

@media (max-width: 900px) {
	.mobile__buttons-wrapper {
		display: flex;
		column-gap: 6px;
	}

	.mobile__buttons-wrapper .search-toggle {
		width: 40px;
		height: 40px;
	}
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .search-container {
        width: 100%;
        max-width: 100%;
        right: 0;
        left: 0;
        
        border-radius: 0;
        position: fixed;

        box-shadow: none;
    }
    
    .search-container::before {
        display: none;
    }
    
    .search-container.active {
        transform: translateY(0);
    }
    
    .js-sticky-header.sticky .search-container {
    	width: auto;
    }
    
}