     *{ box-sizing: border-box; }
    
    .searchContainer {
        position: relative;
        display: inline-flex;
        align-items: center;
        padding-right: 30px;
        padding-top: 20px;
    }

    .js-search {
        font-family: Arial, Helvetica, sans-serif;
        padding: 8px 35px 8px 15px;
        width: 40px;
        color: black;
        text-transform: uppercase;
        font-size: 16px;
        border: none;
        border-radius: 10px;
        background: #f5f5f5;
        transition: width 0.4s ease;
        outline: none;
        position: absolute;
        right: 0;
        
    }

    .icon {
        position: absolute;
        right: 15px;
        color: #ff5e14;
        cursor: pointer;
        z-index: 2;
    }

    .js-search.active {
        width: 430px;
        right: 0;
    }

    .nav li.hidden {
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .nav li:last-child {
        min-width: 40px;
    }

