@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}



::selection {
    color: #fff;
    background: #213665;
}

.wrapper {
    max-width: 450px;
    margin: 0px auto;
}

.wrapper .search-input {
    background: #fff;
    width: 100%;
    border-radius: 5px;
    position: relative;
    box-shadow: 0px 1px 5px 3px rgba(0, 0, 0, 0.12);
}

.search-input input {
    height: 38px;
    width: 100%;
    outline: none;
    border: none;
    border-radius: 5px;
    padding: 0 60px 0 20px;
    font-size: 18px;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
}

.search-input.active input {
    border-radius: 5px 5px 0 0;
}

.search-input .autocom-box {
    padding: 0;
    opacity: 0;
    pointer-events: none;
    max-height: 280px;
    overflow-y: auto;
}

.search-input.active .autocom-box {
    position: absolute;
    z-index: 700;
    background: #fff;
    width: 100%;
    padding: 10px 8px;
    opacity: 1;
    pointer-events: auto;
    border-radius: 0 0 5px 5px;
    box-shadow: 1px 2px 20px rgba(0, 0, 0, 0.2);
}

.autocom-box li {
    color: black;
    list-style: none;
    padding: 8px 12px;
    display: none;
    width: 100%;
    cursor: default;
    border-radius: 3px;
}

.autocom-box li a {
    text-decoration: none;
    color: black;
}

.search-input.active .autocom-box li {
    display: block;
}

.autocom-box li:hover {
    background: #efefef;
}

.search-input .icon-search {
    position: absolute;
    right: 0px;
    top: 0px;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 45px;
    font-size: 20px;
    color: #213665;
    cursor: pointer;
}

.icon-search {
    display: flex;
    justify-content: center;
    align-items: center;
}