@import url(../fonts/font-iransans/iransansweb.css);

.bg-inverse {
    background-color: #3db76f !important;
}

.fixed_navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    padding: .5rem;
    flex-wrap: nowrap;
    z-index: 9999999 !important;
    border-bottom: 5px solid #f9aa31;
}

.fixed-top {
    top: 3rem;
}

.main-menu.menu-fixed {
    top: 8rem;
}

.navbar-inverse .navbar-nav .nav-link {
    color: #fff;
}

.navbar-toggleable-sm .navbar-nav .nav-link {

    padding: .1rem .75rem;
    font-size: 14px;
}

.fixed_navbar .navbar-nav {
    s-flex-direction: row;
    flex-direction: row;
}

.border_radius_app {
    border-radius: 1.5rem !important;
    background-color: #ffffff;
}

.btn-white, .btn-white:hover {
    cursor: pointer;
    font-family: IRANSans;
    background-color: #fafafa;
    color: rgb(7, 202, 104) !important;
}

.nav-link.btn-white label:hover {
    color: rgb(7, 202, 104) !important;
}

.navbar-toggleable-sm .navbar-nav .nav-link.btn-white {
    font-size: 16px;
}

.nav-link.btn-white label {
    margin-bottom: unset;
}

.justify-content-center span, .justify-content-end span {
    font-size: 14px !important;
}

.justify-content-center a:hover, .justify-content-end a:hover {
    color: unset;
}

.navbar button:hover, .navbar button label:hover {
    text-decoration: none;
    cursor: pointer;
}

.blink_text {
    animation-name: blinker;
    animation-duration: 2s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    color: #3db76f;
}

@keyframes blinker {
    0% {
        opacity: 1.0;
    }
    50% {
        opacity: 0.35;
    }
    100% {
        opacity: 1.0;
    }
}

@media (max-width: 768px) {
    .navbar-nav {
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .fixed_navbar {
        padding: .5rem;
    }

    ul {
        padding-inline-start: 0;
    }
}