.top_header_top {
    background-color: var(--primary-color);
    padding: 10px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: var(--bs-dropdown-link-hover-color);
    background-color: #dddddd !important;
}


.navbar>.container,
.navbar>.container-fluid,
.navbar>.container-lg,
.navbar>.container-md,
.navbar>.container-sm,
.navbar>.container-xl,
.navbar>.container-xxl {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: flex-end;
}

/* -------------Search----------------------- */

@import url("//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css");


a.nav-link {
    border-left: 1px solid #c59719;
    color: black;
    font-weight: 600;
    font-size: 14px ;
    line-height: 18px;
}

button.btn.btn-danger.btn-danger-header {
    font-size: 13px;
}

button.btn.btn-light.btn-setting {
    font-size: 13px;
}

a.dropdown-toggle {
    border-right: 1px solid #c59719;

}

.navbar {

    --bs-navbar-padding-y: 0.2rem;
}

.search {
    position: relative;
    color: #aaa;
    font-size: 16px;
}

.search {
    display: inline-block;
}

.search input {
    width: 250px;
    height: 32px;

    background: #fcfcfc;
    border: 1px solid #aaa;
    border-radius: 5px;
    /* box-shadow: 0 0 3px #ccc, 0 10px 15px #ebebeb inset; */
}

.search-bar {
    margin-left: 30px;
}

.search input {
    text-indent: 5px;
}

.search .fa-search {
    position: absolute;
    top: 10px;
    left: 10px;
}

.search .fa-search {
    left: auto;
    right: 10px;
}

.top_left_side {
    display: flex;
}

.bg-body-tertiary {
    --bs-bg-opacity: 1;
    background-color: #ffc107 !important;
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none;
}

.search {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    padding-left: 10px;
    border-radius: 5px;
    width: 250px;
    background: white;
}

.search i {
    font-size: 18px;
    color: #666;
    margin-right: 8px;
}

.search input {
    border: none;
    outline: none;
    flex: 1;
}

.form-control:focus {
    box-shadow: none;
}

@media screen and (max-width: 991px) {
    a.nav-link {
        border: none;
    }

    .btn-setting {
        margin-top: 5px;
    }
}


@media screen and (max-width: 991px) {
    .search-bar {
        display: none;
    }

    .logo img {
        width: 150px;
    }
}


@media (max-width: 567px) {}




/* ----------- Login Popup style ------------------- */

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 99;
}

.popup-content {
    display: flex;
    background: #ffcc00;
    border-radius: 5px;
    width: 500px;
    position: relative;
}

.popup-left {
    background: url('../img/login_banner.png') no-repeat center center/cover;
    width: 50%;
    height: 300px;
}

.popup-right {
    width: 50%;
    padding: 10px;
    text-align: center;
    margin-top: 27px;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: black;
    color: #ffcc00;
    border: none;
    cursor: pointer;
    padding: 4px 10px;
    font-weight: bold;
    border-radius: 3px;
}

.input-field {
    width: 100%;
    margin: 5px 0;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.password-container {
    position: relative;
}

.password-container input {
    padding-right: 30px;
}

.password-container .toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.popup_login_btn {
    background: #333333;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    margin-top: 10px;
    border-radius: 5px;
    border: 1px solid black;
    color: #fab301;
}

input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
    display: none;
}

@media (max-width: 567px) {
    .popup-left {
        display: none;
    }

    .popup-right {
        width: 100%;
        padding: 20px;

    }

    .popup-content {
        
        width: 95%;
        
    }
}