/*
|--------------------------------------------------------------------------
| Navbar
|--------------------------------------------------------------------------
*/
.navbar {
    display: block;
    padding: 0!important;
    font-family: var(--bs-font-navbar);
}

.navbar-nav {
    /* max-width: 80%; */
    font-size: 1rem;

}

.nav-link {
    color: white;
    font-size: 1.2rem;
    border-radius: 15px 15px 15px 15px;
}

.nav-link:hover {
    border-radius: 15px 15px 15px 15px;
	background-color: var(--bs-secondary);
}

.border-nav-top {
    border-top: 0p;
}

.border-nav-bottom {
    border-bottom: 0px;
}

.resources-dropdown {
    min-width: 40rem;
    border-radius: .25rem;
    left: -75px !important;
}


.profile-dropdown {
    min-width: 33rem;
    border-radius: 25px 0 25px 0;
    top:100% !important;
    left:-150px !important;
}
.nav-pr{
    margin-right: 30px;
}
.nav-active {
    border-radius: 15px 15px 15px 15px;
	background-color: var(--bs-secondary);
}
.nav-img-logo {
    width: 300px;
    margin-left: 50px
}
.menu-link{
    color: #000;
}
.menu-link:hover{
    color: #fab035;
}
/* .navbar .container ul li a {
    display: block;
    padding: 0 15px;
    margin: 5px 0;
    line-height: 3px;
    text-decoration: none;
    border-right: 1px solid #000;
}

.navbar .container ul li:last-child a {
    border-right: none;
}

.navbar .container ul li:nth-last-child(1) a {
    border-right: none;
} */

@media (max-width: 1200px) {
    .nav-img-logo {
        width: 150px;
        margin-left: 0;
    }
    .nav-pr{
        margin-right: 10px;
    }
    .nav-link{
        font-size: 1rem;
    }
}
@media (max-width: 991px) {
    .nav-img-logo {
        margin-left: 0;
    }
    .nav-link:hover {
        border-radius: 0;
        background-color: var(--bs-primary);
    }
    .nav-pr{
        margin-right: 0;
    }
    .resources-dropdown {
        min-width: 0;
        border-radius: .25rem;
    }
    .nav-active {
        border-radius: 0;
        background-color: var(--bs-primary);
    }
}

/*
|--------------------------------------------------------------------------
| Dropdwon before & after
|--------------------------------------------------------------------------
*/
.resources-dropdown:before {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    bottom: 100%;
    left: 16%;
    border-width: 0 8px 8px 8px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.1) transparent;
}
.resources-dropdown:after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    bottom: 100%;
    left: 16%;
    border-width: 0 6px 6px 6px;
    border-style: solid;
    border-color: #fff transparent;
}

.main-dropdown:before {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    bottom: 100%;
    left: 10%;
    border-width: 0 8px 8px 8px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.1) transparent;
}
.main-dropdown:after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    bottom: 100%;
    left: 10%;
    border-width: 0 6px 6px 6px;
    border-style: solid;
    border-color: #fff transparent;
}

@media (max-width: 991px) {
    .resources-dropdown:before {
        display: none;
    }
    .resources-dropdown:after {
        display: none;
    }
    .main-dropdown:before {
        display: none;
    }
    .main-dropdown:after {
        display: none;
    }
}
/*
|--------------------------------------------------------------------------
| notification
|--------------------------------------------------------------------------
*/
/**** notification ***/
.noti-box {
    text-decoration: none !important;
}
.notify-number {
    font-size: .7rem;
    top: 0px;
    right: -90%;
    position: absolute;
    /* border-radius: 50%; */
}
.notify-status {
    background-color: aliceblue;
}
.notify-number.mobile {
    top: 10px;
    left: -12px;
}

@media(max-width:1200px){
    .notify-number {
        right: -6px;
    }
}

/*
|--------------------------------------------------------------------------
| search
|--------------------------------------------------------------------------
*/

.has-search {
    width: 300px;
    top: 0px;
    right: 0px;
}

.has-search .form-control {
    padding-left: 2.375rem;
    border-radius: 20px;
}

.has-search .form-control-feedback {
    position: absolute;
    z-index: 2;
    display: block;
    width: 2.375rem;
    height: 2.375rem;
    line-height: 2.375rem;
    text-align: center;
    pointer-events: none;
    color: #aaa;
}




.nav-left {
    padding-left: 2rem;
}
.notify-list {
    position: fixed;
    right: -390px;
    width: 380px;
    max-width: 100%;
    z-index: 1200;
    background-color: white;
    box-shadow: 0px 0px 9px -3px rgb(0 0 0 / 75%);
    height: -webkit-fill-available;
    top:0;
}


/*
|--------------------------------------------------------------------------
| toggler navbar animation
|--------------------------------------------------------------------------
*/

#toggler-icon-animation {
    width: 30px;
    height: 20px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

#toggler-icon-animation span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#toggler-icon-animation span:nth-child(1) {
    top: 0px;
}

#toggler-icon-animation span:nth-child(2), #toggler-icon-animation span:nth-child(3) {
    top: 8px;
}

#toggler-icon-animation span:nth-child(4) {
    top: 16px;
}

#toggler-icon-animation.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}

#toggler-icon-animation.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#toggler-icon-animation.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#toggler-icon-animation.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}

/*
|--------------------------------------------------------------------------
| dropDown animation
|--------------------------------------------------------------------------
*/
.animate {
    animation-duration: 0.3s;
    -webkit-animation-duration: 0.3s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
}

@keyframes slideIn {
    0% {
        transform: translateY(1rem);
        opacity: 0;
    }
    100% {
        transform: translateY(0rem);
        opacity: 1;
    }
    0% {
        transform: translateY(1rem);
        opacity: 0;
    }
}

@-webkit-keyframes slideIn {
    0% {
        -webkit-transform: transform;
        -webkit-opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        -webkit-opacity: 1;
    }
    0% {
        -webkit-transform: translateY(1rem);
        -webkit-opacity: 0;
    }
}

.slideIn {
    -webkit-animation-name: slideIn;
    animation-name: slideIn;
}

