/* (c) 2020-2023 by Simon KÃ¶hler
// kohlercode.com

// Setting the font family for this example*/
/*   *{
       font-family: "Poppins", "Roboto", Arial, sans-serif;
   }
*/
/* Animation to fade in the dropdown menus*/
@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

/* Assigning the above animation to all dropdown menus*/
   .dropdown-menu{
       &.show{
           -webkit-animation: fadeIn 0.3s alternate; /* Safari 4.0 - 8.0 */
           animation: fadeIn 0.3s alternate;
       }
   }

/* Mega Menu adjustments*/
   .nav-item.dropdown.dropdown-mega{
       position: static;
       .dropdown-menu{
           width: 90%;
           top: auto;
           left: 5%;
       }
   }

/* Complete styles for main navbar toggler and hamburger menu*/
   .navbar-toggler{
       border: none;
       padding: 0;
       outline: none;
       &:focus{
           box-shadow: none;
       }
       .hamburger-toggle{
           position: relative;
           display: inline-block;
           width: 50px;
           height: 50px;
           z-index: 11;
           float: right;
           .hamburger {
               position: absolute;
               transform: translate(-50%, -50%) rotate(0deg);
               left: 50%;
               top: 50%;
               width: 50%;
               height: 50%;
               pointer-events: none;
               span {
                   width: 100%;
                   height: 4px;
                   position: absolute;
                   background: #333;
                   border-radius: 2px;
                   z-index: 1;
                   transition: transform 0.2s cubic-bezier(0.77,0.2,0.05,1.0), background 0.2s cubic-bezier(0.77,0.2,0.05,1.0), all 0.2s ease-in-out;
                   left: 0px;
                   &:first-child{
                       top: 10%;
                       transform-origin: 50% 50%;
                       transform: translate(0% -50%) !important;
                   }
                   &:nth-child(2){
                       top: 50%;
                       transform: translate(0,-50%);
                   }
                   &:last-child{
                       left: 0px;
                       top: auto;
                       bottom: 10%;
                       transform-origin: 50% 50%;
                   }
               }
               &.active{
                   span {
                       position: absolute;
                       margin: 0;
                       &:first-child{
                           top: 45%;
                           transform: rotate(45deg);
                       }
                       &:nth-child(2){
                           left: 50%;
                           width: 0px;
                       }
                       &:last-child{
                           top: 45%;
                           transform: rotate(-45deg);
                       }
                   }
               }
           }
       }
   }


.icons{
    display: inline-flex;
    margin-right: auto;
    a{
        transition: all 0.2s ease-in-out;
        padding: 0.2rem 0.4rem;
        color: #ccc !important;
        text-decoration: none;
        &:hover{
            color: white;
            text-shadow: 0 0 30px white;
        }
    }
}
.dropdown-menu{
    text-align: -webkit-right;
}


.nav-link{
    color: white;
    font-size: 1.2em;
}

.dropdown-item{
    font-size: 1.1em;
}
.drop-horizantal{
    display: inline-block;
    border-left: 1px solid #0092ff70;
}
/*make second level menu horizental*/
/*.uc-navbar-center:not(:only-child) {

    position: relative;
    top: 0;
    left: 0;
    transform:  none;
}*/

 /*Replace the existing mobile menu styles with these*/
/*

@media (max-width: 991.98px) {

    .navbar-collapse {
        position: fixed;
        top: 80px;
        right: 0;
        width: 80%;
        height: calc(100vh - 80px);
        background: #white;
        padding: 20px;
        overflow-y: auto;
        z-index: 1000;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }


    .navbar-collapse.show {
        transform: translateX(0);
    }


    .navbar-collapse::before {
        content: '';
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: rgba(0, 0, 0, 0.5);
        z-index: -1;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease;
    }

    .navbar-collapse.show::before {
        opacity: 1;
        visibility: visible;
    }


    .dropdown-menu {
        position: static;
        float: none;
        width: 100%;
        margin: 10px 0;
    }
}

*/


/* Fix potential conflicts between Uni-Core and Bootstrap
.navbar {
    padding: 0.5rem 1rem;
}

.dropdown-menu {
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.375rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
}

.dropdown-item {
    padding: 0.5rem 1rem;
    color: #212529;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: #f8f9fa;
    color: #16181b;
}

.navbar-nav .nav-link {
    padding: 0.5rem 1rem;
}


.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
    display: none;
}

.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

.dropdown-submenu > a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #000;
    margin-top: 5px;
    margin-right: -10px;
}
.dropdown-menu {
text-align: right;
}

 */
