﻿.static-welcome-search {
    display: flex;
    gap: 8px;
    margin: 12px 0 20px;
    max-width: 480px;
}

.static-welcome-search input[type="text"] {
    flex: 1 1 auto;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.welcome-search-row {
    display: flex;
    align-items: stretch;
    gap: 16px;
    margin: 12px 0 20px;
}

.welcome-search-col {
    flex: 1 1 66%;
    display: flex;
    align-items: center;
}

.welcome-search-col .static-welcome-search {
    margin: 0;
    max-width: none;
    width: 100%;
}

.welcome-search-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 110px;
    height: 42px;
    padding: 0 20px;
    border: none;
    border-radius: 6px;
    background: #2f6f9f;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12);
}

.welcome-search-btn:hover {
    background: #255d87;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.16);
    transform: translateY(-1px);
}

.welcome-search-btn:active {
    background: #1f5278;
    transform: translateY(0);
}

.welcome-search-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(47, 111, 159, 0.25);
}

.search-icon {
    font-size: 15px;
}
.welcome-search-btn .search-icon {
    display: none;
}

body.TYPE_EKO #rightInside{
    padding-top:0;
}