﻿/*
   
    file path : View/Components/SearchBox/Default.cshtml
*/

.right-navbar {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    padding: 7px;
    display: none;
}

    .right-navbar.active {
        display: block;
    }

.buttonContainer {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

    .buttonContainer li {
        margin: 5px;
        padding: 10px;
        border: none;
        color: #333;
        cursor: move;
    }

.search-bar-container {
    position: absolute;
    left: 50px;
    top: 10px;
    width: 30%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 50px;
    overflow: hidden;
    padding: 0 14px 0 0;
    background-color: rgba(255,255,255,.5);
    box-shadow: 0 0 3px rgba(0,0,0,.5);
    border-radius: 50px;
}

.logo {
    width: 15%;
}

.searchbox {
    width: 75%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 3px;
    position: relative;
}

.search {
    background-color: rgba(255,255,255,.2);
    outline: none;
    border: none;
    box-shadow: 0 0 2px rgba(0,0,0,.9);
    width: 100%;
    margin: 0 10px;
    padding: 7px 7px 7px 50px;
    font-size: 1.1em;
    color: #222;
    border-radius: 25px;
}

.icons {
    width: 30px;
    height: 35px;
    position: absolute;
    left: 17px;
    top: 0px;
    color: #000;
    padding: 7px;
    font-size: .85em;
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
    border-right: 1px solid rgba(255, 255, 255, 0.095);
}

.navigate-box {
    width: 10%;
}

.img {
    max-width: 100%;
}

.navigate-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgb(22,22,22);
    color: #fff;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1.5em;
    transition: background .5s;
}

    .navigate-btn:hover {
        background-color: #2260ff;
    }

::placeholder {
    color: #fff;
}


.autocomplate {
    z-index: 1000;
    height: 100px;
    width: 500px;
    margin-top: 100px;
    margin-right: 30px;
    position: fixed;
    left: 0;
    top: 0;
}
