* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.main_nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 56px 0px 26px;
    position: relative;
}

.nav_left_bar_parent {
    display: flex;
    flex: 1;
    gap: 20px;
}

.tc_merchant .nav_left_bar {
    display: none;
}

.tc_merchant .nav_search_bar {
    justify-content: end;
}

.nav_search_bar_inner {
    position: relative;
    width: 60%;
    margin-right: auto;
}

.nav_left_bar h5.username {
    color: #010047;
    font-size: clamp(1.25rem, 1.1786rem + 0.3571vw, 1.625rem);
    font-weight: 700;
    width: 100%;
}

.nav_left_bar {
    display: flex;
    padding-left: 5px;
    align-items: center;
    gap: 15px;
    width: 70%;
}

.nav_search_input {
    border: 0;
    width: 100%;
    padding: 15px 52px 15px 45px;
    border-radius: 10px;
    /* background: url(../images/icons/search.svg) no-repeat 14px 10px; */
    border-radius: 8px;
    background-color: #FFF;
    box-shadow: 0px 4px 10px 0px rgba(96, 96, 96, 0.20);
    /* max-width: unset; */
    text-indent: unset;
    font-size: clamp(0.75rem, 0.7143rem + 0.1786vw, 0.875rem);

}

.nav_search_input::placeholder {
    color: #939393;
    font-size: clamp(0.75rem, 0.7143rem + 0.1786vw, 0.875rem);
}

.nav_search_input:focus {
    outline: none;
}

.nav_search_bar {
    display: flex;
    position: relative;
    width: 100%;
}

.nav_search_bar .search_icon_nav {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(50%, -50%);
    cursor: pointer;
}

.nav_search_bar .main_srch_close_icon {
    position: absolute;
    right: 7%;
    top: 50%;
    transform: translate(50%, -50%);
    cursor: pointer;
    font-size: 22px;
    color: #6d6d6d;
    display: none;
}

.set_note_bar {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.set_note_bar img {
    cursor: pointer;
    width: 34px;
}

.profileBtn {
    border-radius: 50% !important;
}

@media only screen and (max-width:1300px) {
    .nav_search_bar .search_close {
        right: 5%;
    }
}

@media only screen and (max-width:1024px) {
    .nav_left_bar h5.username {
        font-size: 14px;
    }
}

@media only screen and (max-width:850px) {
    .nav_search_bar .search_close {
        right: 7%;
    }
}

@media only screen and (max-width:800px) {
    .nav_search_bar_inner {
        width: 85%;
    }
}



@media only screen and (max-width:767px) {
    .nav_left_bar_parent {
        width: 100%;
    }

    .set_note_bar {
        justify-content: flex-end;
        width: 100%;
    }

    .nav_search_bar {
        width: 100%;
        justify-content: center !important;
    }

    .nav_search_bar img {
        width: 20px;
    }

    .nav_left_bar h5.username {
        font-size: 14px;
    }

    .nav_left_bar {
        display: flex !important;
        width: auto !important;
    }

    .search_close {
        right: 3%;
    }

    .nav_search_input {
        padding: 12px 40px 12px 40px;
        width: max-content;
    }

    .nav_search_bar_inner {
        width: 100%;
    }
}

@media only screen and (max-width:599px) {
    .main_nav {
        flex-direction: column;
    }

    .nav_search_input {
        width: inherit;
    }

    .set_note_bar {
        margin-top: 20px;
    }

    .cal_title_text {
        display: flex;
        flex: 1;
    }
}


@media only screen and (max-width:500px) {
    .cal_title_text {
        flex: inherit;
    }
}

@media only screen and (max-width:360px) {
    .set_note_bar img {
        width: 25px;
    }
}