nav.navbar {
   // height: 180px;
}

li.nav-item.dropdown {
    padding: 0 10px;
    font-size:18px;
}

li.nav-item.dropdown.active {
    background-color: #fff;
    box-shadow: 0px 0px 7px 1px rgb(0 0 0 / 10%);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    position: relative;
    z-index: 10000000;
}

li.nav-item.dropdown.active:after {
    content: "";
    position: absolute;
    bottom: -7px;
    right: 0;
    background-color: white;
    width: 100%;
    height: 15px;
    z-index: 1000;
}

.navbar-nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.navbar-brand img {
    width: 175px;    
}

.nav-link {
    display: flex;
    align-items: center;
    color: #006a12;   
}

.nav-link:active, .nav-link:hover, .nav-link:focus {
    color: #006a12;    
}

ul.dropdown-menu {
    width: 400px;
    border: none;
    box-shadow: 0px 0px 7px 1px rgb(0 0 0 / 10%);
}

.dropdown-item.active, .dropdown-item {
    color: #006a12;
    padding: 12px 16px;
    transition: all 0.3s;
    justify-content: space-between;
    align-items: center;
    font-size:18px;
}

span.dropdown-item {
    cursor: default;
}

ul.dropdown-menu li.active, .dropdown-item.active, .dropdown-item:hover, .dropdown-item:active, .dropdown-item:focus {
    background-color: #e3eee5;
    color: #006a12;
}

.dropdown-toggle::after {
    margin-left: 8px;
    vertical-align: unset;
    border-top: none;
    border-right: none;
    border-left: none;
    background: url(/application/images/icons/chevron-right-solid.svg) no-repeat;
    width: 13px;
    height: 13px;
    transform: rotate(90deg);
}

.dropdown-menu li{ 
    position: relative; 	
    
}

.nav-item .submenu{ 
	display: none;
	position: absolute;
	left:100%; 
	top:-7px;
	margin-right: -1px;
    clip-path: inset(-5px 0px -5px -5px);
    border-top-right-radius: 0px;
}

.nav-item .submenu-left{ 
	right:100%; 
	left:auto;
}

.dropdown-menu > li:hover > .submenu{ 
    display: block; 
}

.dropdown-right {
    right: 0;
    left: unset !important;
}

.dropdown-left {
    left: 0;
    right: unset !important;
}

.dropdown:hover .dropdown-menu:not(.submenu) {
    display: block;
    margin-top: 0;
 }
 
/** IB CONTAINER **/
.ib-container a{
    text-decoration: none;
    transition: all 0.3s;
}

.ib-container a:hover{
    text-decoration: underline;
}

.ib-container input {
    border: none;
    border-radius: 8px;
    font-size: 14px;
    padding: 5px 5px 5px 15px;
    width: 200px;
}

.ib-container button {
    border: none;
    background-color: #00a91d;
    border-radius: 8px;
    margin-left: 8px;
    padding: 0;
    transition: all 0.3s;
}

.ib-container button:hover {
    background-color: #7bb284;
}

.ib-container button > img {
    width: 25px;
    height: 20px;
    margin: 8px 8px 10px;
}

.bg-logo-container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    box-shadow: 0px 2px 10px 3px rgb(0 0 0 / 10%);
}

.bg-logo {
    background: url('/resources/images/icons/bca-bg.png') no-repeat;
    //height: 100vh;
    width: 100%;
   // background-size: 48%;
    background-position: left -90px;
    top: 0;
    position: absolute;
    background-size: 120px;
    transition: background-size 0.2s ease-in;
    height: 100px;
    box-shadow: 0px 2px 10px 3px rgb(0 0 0 / 10%);
}

/* RESPONSIVE MENU */
.responsive-menu {
    z-index: 1;
    width: 100%;
}

.responsive-menu li.nav-item.dropdown {
    padding: 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.responsive-menu .nav-link {
    justify-content: space-between;
    padding: 0;
    margin-left: 15px;
}

.responsive-menu ul.dropdown-menu {
    width: auto; 
    padding: 0;
    border: none;
    box-shadow: unset; 
}

.responsive-menu .responsive-menu-1-arrow {
    padding: 15px;
    border-left: 1px solid rgba(0,0,0,0.1);
}

.responsive-menu .dropdown-menu li:first-child {
    border-top: 1px solid rgba(0,0,0,0.1);
}

.responsive-menu .dropdown-toggle.rotate::after {
    animation: rotation 0.3s forwards;
}

.responsive-menu .dropdown-toggle.rotateNeg::after {
    animation: rotateNeg 0.3s forwards;
}

.responsive-menu .nav-item .submenu {
    display: block !important;
    position: relative;
    left: 0;
}

.responsive-menu .submenu.dropdown-menu li:first-child {
    border-top: none;
}

.responsive-menu ul.dropdown-menu li.active, .responsive-menu .dropdown-item:hover {
    background-color: #fff;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-90deg);
  }
}

@keyframes rotationNeg {
  from {
    transform: rotate(-90deg);
  }
  to {
    transform: rotate(0deg);
  }
}




.header-scrolled{
    position: fixed;
    z-index:2;
    width:100%;
    /*transition: max-height 5s ease-out;*/
    box-shadow: 0px 2px 10px 3px rgb(0 0 0 / 10%);
}

.header-scrolled > nav.navbar{
    height:100px;
    transition: height 0.2s ease-in;
}

.header-scrolled div.bg-logo{
   /* background-size: 120px;
    transition: background-size 0.2s ease-in;
    height: 100px;*/
}