﻿
a.search-btn {
    height: 40px;
    width: 40px;
    background-color: #278036;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    margin: .7em 0;
    color: #fff !important;
    cursor: pointer;
}

    a.search-btn i::before {
        content: "\f002";
    }

.show-search-bar a.search-btn i::before {
    content: "\f00d";
}




.search-btn i {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.searchBar {
    /* display: flex; */
    /* justify-content: center; */
    /* align-items: center; */
    width: 45px;
    transition: width 500ms ease;
    overflow: hidden;
    text-align: right;
    position: relative;
}

    .searchBar input {
        height: 33px;
        width: 120px;
        margin: 0 0px 0 0;
        border-radius: 15px 0 0 15px;
        position: relative;
        border: 0;
        padding: 0 0 0 10px;
        outline: 0;
    }

.searchInput {
    display: inline-flex;
    margin: 0 10px 0 0;
    -webkit-transform-origin: right;
    -ms-transform-origin: right;
    transform-origin: right;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    transition: -webkit-transform 500ms ease;
    transition: transform 500ms ease;
    transition: transform 500ms ease, -webkit-transform 500ms ease;
    position: absolute;
    right: 35px;
    top: 1.0em;
}

.search-input-btn {
    height: 33px;
    width: 30px;
    background-color: #278036;
    border-radius: 0 15px 15px 0;
    display: inline-block;
    position: relative;
    color: #fff;
    border: 0;
    font-size: .8em;
}

.input-icon i {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    font-size: .9em;
}

.show-search-bar .searchInput {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

.searchBar.show-search-bar {
    width: 200px;
}
body {
}

.logo-bar {
    padding: 0px 0px;
}

.logo-bar img{
   /* height: 80px; */
  
}

.bg-dark {
    background: #000033 !important;
}

.menu-row {
    background: #143a77;
}

.nav-link:hover{
    background: #003;
}

.dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #143a77;
}

.navbar-toggler{
    margin: 10px;
}