
.navbar ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
}
.nav-item .dropdown .nav-link:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background: var(--themecolor1);
    bottom: -1px;
    left: 0;
    transition: 400ms ease;
    transform: scaleX(0);
    opacity: 0;
}

.nav-item .dropdown .nav-link:hover:after {
    transform: scaleX(1);
    opacity: 1;
}
/* Nav doc CSS */
.navbar-doc table {
    border-collapse: collapse;
    width: 100%;
    background: transparent;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.15);
}

    .navbar-doc table tr th,
    .navbar-doc table tr td {
        text-align: left;
        padding: 15px;
    }

    .navbar-doc table tr:nth-child(odd) th,
    .navbar-doc table tr:nth-child(odd) td {
        background: #f0f5f7;
    }

    .navbar-doc table tr:nth-child(even) td {
        background: #e9f0f3;
    }

    .navbar-doc table tr:first-child th:first-child {
        border-top-left-radius: 5px;
    }

    .navbar-doc table tr:first-child th:last-child {
        border-top-right-radius: 5px;
    }

    .navbar-doc table tr:last-child td:first-child {
        border-bottom-left-radius: 5px;
    }

    .navbar-doc table tr:last-child td:last-child {
        border-bottom-right-radius: 5px;
    }

    .navbar-doc table tr:not(:first-child) {
        border-top: 1px solid #e5ecef;
    }

.navbar-doc code {
    background: #aed2f5;
    border-radius: 3px;
    color: #000000;
    line-height: 1;
    font-size: 1.2rem;
    padding: 1px 4px;
}

.navbar-doc p {
    font-size: 1.4rem;
    line-height: 1.5;
}

/* Main CSS */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    transition: 0.3s linear;
}

    .navbar ul {
        list-style: none;
    }

        .navbar ul a {
            text-decoration: none;
        }

    .navbar .navbar-toggler,
    .navbar .nav-link,
    .navbar .utils-search {
        color: #636363;
    }

    .navbar .navbar-utils > * {
        cursor: pointer;
    }

    .navbar .btn-search {
        font-size: 1.5rem;
        background: transparent;
        outline: none;
        border: none;
        color: inherit;
        cursor: pointer;
    }

.navbar-nav {
    display: flex;
    list-style: none;
}

    .navbar-nav .nav-link {
		padding: 12px;
		font-size: 16px;
        font-weight: 300;
        display: block;
        transition: 150ms ease;
    }

    .navbar-nav .nav-item {
        margin: 0 3px;
        position: relative;
    }
    .navbar-nav > .nav-item:nth-child(2){
        margin: 0 0px;
    }

    .navbar-nav > .nav-item:after {
		content: "";
		position: absolute;
		width: 100%;
		height: 3px;
		margin-left: 0;
        background: #fff;
		bottom: 6px;
        transition: 400ms ease;
        transform: scaleX(1.5);
        opacity: 0;
    }
    .navbar-nav > .nav-item.icon:after {    
        margin-left: 7px;
    }
.active .nav-link {
    color: #fff !important;
}

.navbar-nav > .nav-item:hover:after {
    transform: scaleX(1);
    opacity: 1;
}

.navbar-toggler {
    padding: 0.1rem 0.45rem;
    cursor: pointer;
    font-size: 1.5rem;
    background: none;
    outline: none;
    border: 1px solid #636363;
    border: none;
    border-radius: 3px;
    transition: 0.15s linear;
    display: none;
    margin-left: auto;
    margin-right: 20px;
}

    .navbar-toggler:hover, .navbar-toggler:focus {
        box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.36);
    }

/* Navbar options (bg options) */
.navbar.bg-primary {
    background:var(--themecolor1)!important;   
    box-shadow: 0px 6px 10px rgb(0 0 0 / 16%);
       z-index: 999;
	   padding: 0;
}
.nav-item.active{
	color: #ffffff !important;
        background-color: var(--themecolor2);
  }

.bg-primary .navbar-toggler,
.bg-primary .nav-link,
.bg-primary .utils-search {
    color: #fff;
}

    .bg-primary .nav-link:hover {
        color: #fff;
    }

.bg-dark {
    background: #363636;
}

    .bg-dark .navbar-toggler,
    .bg-dark .nav-link,
    .bg-dark .utils-search {
        color: #fff;
    }

.bg-light {
    background: #fff;
    z-index: 9999;
}

    .bg-light .navbar-toggler,
    .bg-light .nav-link,
    .bg-light .utils-search {
        color: #363636;
    }

.bg-transparent {
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}

    .bg-transparent .navbar-toggler,
    .bg-transparent .nav-link,
    .bg-transparent .utils-search {
        color: #fff;
    }

    .bg-transparent .nav-item:after {
        background: #fff;
    }

@media (min-width: 992px) {
    .bg-blur {
        -webkit-backdrop-filter: blur(3px);
        backdrop-filter: blur(3px);
        background: rgba(255, 255, 255, 0.6);
        z-index: 999;
    }

        .bg-blur .navbar-toggler,
        .bg-blur .nav-link,
        .bg-blur .utils-search {
            color: #363636;
        }

        .bg-blur .nav-item:hover > .nav-link {
            color: #6131e6;
        }

        .bg-blur .nav-item:after {
            background: #6131e6;
        }
}
/* Common Hover */
.bg-blur .nav-item:hover > .nav-link {
    color: #6131e6;
}

.bg-blur .nav-item:after {
    background: #6131e6;
}

.bg-light .nav-item:hover > .nav-link,
.bg-light-2 .nav-item:hover > .nav-link,
.bg-dark .nav-item:hover > .nav-link {
    color: #6131e6;
}

.bg-light .nav-item:after,
.bg-light-2 .nav-item:after,
.bg-dark .nav-item:after {
    background: #6131e6;
}

.bg-light-2 {
    background: #fff;
}

    .bg-light-2 .navbar-toggler,
    .bg-light-2 .nav-link,
    .bg-light-2 .utils-search {
        color: #636363;
    }

    .bg-light-2 .nav-item:after {
        display: none;
    }

/* Dropdown CSS */
.nav-item .dropdown {
    width: 265px;
    display: block;
    position: absolute;
    top: 47px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(5px);
    z-index: 99999999;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 5px 0px;
    transition: all 300ms ease 0s;
    padding: 10px;
    border-bottom: 3px solid var(--themecolor1);
    background: var(--themegray);
    border-radius: 6px;
}

    .nav-item .dropdown .nav-link {
        color: #000;
        padding: 6px;
        font-weight: 400;
        border-bottom: 1px solid #042e65;
    }

        .nav-item .dropdown .nav-link:hover {
            color: var(--themecolor2);
        }

    .nav-item .dropdown .dropdown {
        top: 3px;
        margin-left: 3px;
        left: calc(100% + 20px);
        border-top: 0;
        border-left: 1px solid rgba(0, 0, 0, 0.15);
    }

        .nav-item .dropdown .dropdown:before {
            top: 10px;
            left: -10px;
            border: 5px solid transparent;
            border-right-color: #000;
        }

    .nav-item .dropdown:before {
        content: "";
        position: absolute;
        top: -10px;
        left: 10px;
        border: 5px solid transparent;
        border-bottom-color: #000;
        display: none;
    }

    .nav-item .dropdown .nav-item:not(:last-child) {
        margin-bottom: 5px;
    }

    .nav-item .dropdown > .nav-item:hover > .nav-link {
        color: var(--themecolor1);
    }

.nav-item:hover > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.nav-item:hover > a::before {
    transform: rotate(90deg);
}

.nav-close {
    margin-left: auto;
    margin-top: 10px;
    display: none;
}

    .nav-close .btn-nav-close {
        border: 0;
        padding-right: 0px;
        padding-top: 2px;
        outline: 0;
        background: transparent;
        cursor: pointer;
        width: 25px;
        height: 25px;
        border: 1px solid #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .nav-close .btn-nav-close .close-btn {
            transform: rotate(45deg);
            font-size: 30px;
            color: #fff;
            margin-left: -8px;
        }

        .nav-close .btn-nav-close:hover, .nav-close .btn-nav-close:focus {
            background: #fff;
            color: #fff;
        }

.nav-item.icon > a:before {
    content: "";
    position: absolute;
	right: -4px;
    top: calc(53% + 0px);
    transform: translateY(-50%);
    border: 4px solid transparent;
    border-left-color: inherit;
    transition: 0.15s linear;
}

.nav-item.icon:hover > a::before {
    transform: rotate(90deg);
}

/* Responsive (navbar alignments options) */
@media (min-width: 992px) {
    .navbar-brand,
    .navbar-utils {
        flex: auto;
    }

    .navbar-nav {
        flex: 2;
        justify-content: left;
    }

    .navbar-utils {
        text-align: left;
    }

    .navbar-right .navbar-brand,
    .navbar-right .navbar-utils {
        flex: initial;
    }

    .navbar-right .navbar-nav {
        justify-content: flex-end;
        margin-right: 20px;
    }

    .navbar-left .navbar-nav {
        order: 1;
        justify-content: flex-start;
    }

    .navbar-left .navbar-brand {
        order: 2;
    }

    .navbar-left .navbar-utils {
        order: 3;
    }

    .navbar-right .dropdown .dropdown {
        left: unset;
        right: calc(100% + 20px);
        border-top: 0;
        border-right: 1px solid rgba(0, 0, 0, 0.15);
    }
}
/* Nav Option (Logo Center) */
@media (min-width: 992px) {
    .navbar-left .navbar-brand {
        text-align: right;
    }

    .navbar-left .navbar-toggler {
        display: block;
        margin-right: 0;
    }

    .navbar-left .navbar-nav {
        background: #ffffff;
        flex-direction: column;
        z-index: 99999999;
        padding: 0 20px;
        opacity: 0;
        transition: 400ms ease;
        /* Sidebar */
        position: fixed;
        left: 0;
        top: 0;
        width: 300px;
        height: 100%;
        overflow-y: auto;
        box-shadow: 0px 0px 0 2000px rgba(0, 0, 0, 0.5);
        transform: translateX(-300px);
    }

        .navbar-left .navbar-nav .nav-link {
            margin: 10px 0;
            color: #636363;
            display: flex;
            align-items: center;
        }

        .navbar-left .navbar-nav > .nav-item:first-child {
            margin-top: 20px;
        }

        .navbar-left .navbar-nav > .nav-item:last-child {
            margin-bottom: 20px;
        }

        .navbar-left .navbar-nav .nav-item:not(:last-child) {
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .navbar-left .navbar-nav .nav-item:hover > .nav-link {
            color: #6131e6;
        }

        .navbar-left .navbar-nav > .nav-item:after {
            display: none;
        }

        .navbar-left .navbar-nav .nav-close {
            display: block;
        }

        .navbar-left .navbar-nav.active {
            max-height: initial;
            opacity: 1;
            transform: translateX(0);
            left: 0;
            box-shadow: 0 0 0 10000px rgba(0, 0, 0, 0.5);
        }

    .navbar-left .nav-item .dropdown {
        padding: 0;
        position: initial;
        max-height: 0;
        width: initial;
        border: none;
        box-shadow: none;
    }

        .navbar-left .nav-item .dropdown .dropdown {
            border: none;
        }

        .navbar-left .nav-item .dropdown:before {
            display: none;
        }

    .navbar-left .nav-item:hover > .dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0px);
        max-height: initial;
    }

    .navbar-left .nav-item.icon a:before {
        top: unset;
        right: 0;
    }
}
/* Responsive navbar */
@media (min-width:1124px) and (max-width:1165px) {

    .navbar-nav .nav-link {
      
        text-decoration: none;
        font-size: 14px;
    }

    .navbar-nav .nav-item {
        margin: 0 4px;
        position: relative;
    }

    .navbar-utils {
        margin-top: 3px !important;
    }
}

@media (min-width:1166px) and (max-width:1200px) {
    .navbar-utils {
        margin-top: 3px !important;
    }

    .navbar-nav .nav-link {
    
        text-decoration: none;
        font-size: 14px;
    }

    .navbar-nav .nav-item {
        margin: 0px 5px;
        position: relative;
    }
}

@media (min-width:1201px) and (max-width:1240px) {
    .navbar-utils {
        margin-top: 3px !important;
    }

    .navbar-nav .nav-link {
     
        text-decoration: none;
        font-size: 14px;
    }

    .navbar-nav .nav-item {
        margin: 0px 6px;
        position: relative;
    }
}

@media (min-width:1241px) and (max-width:1285px) {
    .navbar-utils {
        margin-top: 3px !important;
    }

    .navbar-nav .nav-link {
       
        text-decoration: none;
        font-size: 15px;
    }

    .navbar-nav .nav-item {
        margin: 0px 6px;
        position: relative;
    }
}

@media (min-width:1286px) and (max-width:1305px) {
    .navbar-utils {
        margin-top: 3px !important;
    }

    .navbar-nav .nav-link {
      
        text-decoration: none;
        font-size: 15px;
    }

    .navbar-nav .nav-item {
        margin: 0px 7px;
        position: relative;
    }
}

@media (min-width:1306px) and (max-width:1345px) {
    .navbar-utils {
        margin-top: 3px !important;
    }

    .navbar-nav .nav-link {       
        text-decoration: none;
        font-size: 15px;
    }

    .navbar-nav .nav-item {
        margin: 0px 9px;
        position: relative;
    }
}

@media (min-width:1446px) and (max-width:1545px) {
    .navbar-utils {
        margin-top: 4px !important;
    }

    .navbar-nav .nav-link {    
        text-decoration: none;
        font-size: 15px;
    }

    .navbar-nav .nav-item {
        margin: 0px 3px;
        position: relative;
    }
}

@media (min-width:1696px) and (max-width:1745px) {
    .navbar-utils {
        margin-top: 3px !important;
    }

    .navbar-nav .nav-link {     
        text-decoration: none;
        font-size: 17px;
    }

    .navbar-nav .nav-item {
        margin: 0px 13px;
        position: relative;
    }
}

@media (min-width:1746px) and (max-width:1945px) {
    .navbar-utils {
        margin-top: 3px !important;
    }

    .navbar-nav .nav-link {      
        text-decoration: none;
        font-size: 18px;
    }

    .navbar-nav .nav-item {
        margin: 0px 3px;
        position: relative;
    }
}
@media (max-width: 1123px) {
    .navbar-nav .nav-link {
        font-size: 13px;
        font-weight: 300;
}

.navbar-nav .nav-link {
    padding:10px 7px;
}
}
@media (max-width: 760px) {
    .navbar-toggler {
        display: block;
    }

    .nav-item.icon > a:before {
        content: "";
        position: absolute;
        right: 2px !important;
        top: 15px !important;
        transform: translateY(-50%);
        border: 4px solid transparent;
        border-left-color: inherit;
        transition: 0.15s linear;
    }
    .nav-item.active{ 
        background-image: none !important;
            background:var(--themecolor1);
      
    }
    .nav-item .dropdown {
        background:var(--themecolor2);
        padding: 3px 1px !important;
    }

        .nav-item .dropdown .nav-link {
            border-bottom: none;
        }

    .navbar-nav {
        background:var(--themecolor1);
        flex-direction: column;
        z-index: 99999999;
        padding: 0 20px;
        opacity: 0;
        transition: 400ms ease;
        /* Sidebar */
        position: absolute;
        left: -300px;
        top: 0;
        width: 300px;
        height: 100%;
        overflow-y: auto;
        transform: translateX(-300px);
    }

        .navbar-nav .nav-link {
            margin: 3px 0;
            color: #636363;
            display: flex;
            align-items: center;
        }

        .navbar-nav > .nav-item:first-child {
            margin-top: 20px;
        }

        .navbar-nav > .nav-item:last-child {
            margin-bottom: 20px;
        }

        .navbar-nav .nav-item:not(:last-child) {
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

     

        .navbar-nav > .nav-item:after {
            display: none;
        }

        .navbar-nav .nav-close {
            display: block;
            float: right;
            position: relative;
            z-index: 99;
            margin-right: 0
        }

    .navbar-utils {
        margin-top: 0 !important;
        min-width: 100%;
        display: grid;
        text-align: center;
    }

    .navbar-nav.active {
        display: inline-table;
        width: 90%;
        height: auto;
        opacity: 1;
        overflow: hidden;
        transform: translateX(0);
        left: 5%;
        box-shadow: 0px 0px 0 10000px rgba(0, 0, 0, 0.5);
    }

    .nav-item .dropdown {
        padding: 0;
        position: initial;
        max-height: 0;
        width: initial;
        border: none;
        box-shadow: none;
    }

        .nav-item .dropdown .dropdown {
            border: none;
        }

        .nav-item .dropdown:before {
            display: none;
        }

    .nav-item:hover > .dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0px);
        max-height: initial;
    }

    .nav-item.icon a:before {
        top: unset;
        right: 0;
        transform: translateY(0px);
    }
}
/* Search Popup */
.search-popup {
    opacity: 0;
    visibility: hidden;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999999999;
    display: grid;
    place-items: center;
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.5);
    transition: 200ms;
}

    .search-popup.active {
        opacity: 1;
        visibility: visible;
    }

        .search-popup.active form {
            transform: translateY(0px);
        }

    .search-popup form {
        position: absolute;
        background: #fff;
        width: 500px;
        height: 200px;
        display: grid;
        place-items: center;
        padding: 30px;
        border-radius: 6px;
        box-shadow: 0px 5px 10px 5px rgba(0, 0, 0, 0.2);
        transition: 300ms;
        transform: translateY(20px);
    }

    .search-popup .btn-search-close {
        position: absolute;
        top: 5px;
        right: 5px;
        background: transparent;
        border: 0;
        outline: 0;
        font-size: 3rem;
        cursor: pointer;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .search-popup .btn-search-close .close-btn {
            transform: rotate(45deg);
        }

    .search-popup input[type=search] {
        width: 100%;
        height: 70px;
        border: none;
        outline: none;
        border: 1px solid #cccccc;
        border-radius: 4px;
        font-size: 2rem;
        font-weight: 300;
        padding: 0px 10px;
        transition: 100ms;
    }

        .search-popup input[type=search]:focus {
            box-shadow: 0 0 0 3px rgba(0, 129, 255, 0.43);
            border-color: transparent;
        }

        .search-popup input[type=search]::-webkit-input-placeholder {
            color: #b3b3b3;
        }

@media (max-width: 576px) {
    .search-popup form {
        width: calc(100% - 30px);
        height: 170px;
        padding: 15px;
    }
}

.fixed_header {
    position: fixed;
    top: 0 !important;
    left: 0;
    z-index: 9999 !important;
    width: 100%;
    box-shadow: 0 3px 4px rgb(0 0 0 / 17%);
    -webkit-animation: translateHeader .8s;
    -moz-animation: translateHeader .8s;
    -ms-animation: translateHeader .8s;
    -o-animation: translateHeader .8s;
    animation: translateHeader .8s;
}