﻿.searchbar {
    margin-bottom: auto;
    margin-top: auto;
    height: 60px;
    background-color: #353b48;
    border-radius: 30px;
    padding: 10px;
}

.search_input {
    color: white;
    border: 0;
    outline: 0;
    background: none;
    caret-color: transparent;
    line-height: 40px;
    padding: 0 10px;
    width: 450px;
    caret-color: red;
}

.search_icon {
    background: white;
    color: #e74c3c;
    height: 40px;
    width: 41px;
    float: right;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position: relative;
    top: -40px;
}

@media only screen and (max-width: 600px) {
    .searchbar {
        margin-bottom: auto;
        margin-top: auto;
        height: 60px;
        background-color: #353b48;
        border-radius: 30px;
        padding: 10px;
    }

    .search_input {
        color: white;
        border: 0;
        outline: 0;
        background: none;
        caret-color: transparent;
        line-height: 40px;
        padding: 0 10px;
        width: 235px;
        caret-color: red;
    }

    .search_icon {
        background: white;
        color: #e74c3c;
        height: 40px;
        width: 41px;
        float: right;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        position: relative;
        top: -1px;
    }
}
