﻿.app-custom-header {
    width: 100%;
    max-width: var(--app-max-width);
    height: auto;
    top: 0;
    transition: background-color 0.3s ease;
}

/*    _animation-name: showNavAnimation;
    _animation-duration: 0.5s;*/
.app-custom-header.scroll-up {
    width: 100%;
    max-width: var(--app-max-width);
    height: auto;
    background-color: #fff !important;
}



.app-custom-header.navbar-default {
    background-color: transparent;
    border: none;
    margin-bottom: 0;
}

.app-custom-header .app-nav-container {
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 66px;
    padding-right: 66px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
}

.app-custom-header .navbar-brand {
    height: auto;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0
}

.app-custom-header .navbar-brand img {
    max-width: 60vw;
}

.app-custom-header .navbar-header {
    float: none;
}


.app-custom-header .right-menus:after, .app-custom-header .right-menus:before, .app-custom-header .right-menus .navbar-first:before, .app-custom-header .right-menus .navbar-first:after {
    content: none;
}



.app-custom-header .header-menus-list {
}

.app-custom-header .right-menus, .app-custom-header .right-menus ul li {
    padding-left: 60px;
}

.app-custom-header .right-menus a {
    padding-top: 10px;
    padding-bottom: 10px
}

.app-custom-header .right-menus, .app-custom-header .right-menus a {
    color: #000 !important;
    font-size: 22px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.15s ease;
    text-transform: uppercase
}

.app-custom-header .right-menus a:hover {
    opacity: 0.7;
}

.app-custom-header .right-menus .navbar-first {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.app-custom-header .navbar-nav > li {
}

.app-custom-header .navbar-nav > li.menu-sns {
    display: flex;
}

.app-custom-header .navbar-nav > li.menu-sns .fa {
    font-size: 28px;
}

.app-custom-header.navbar-default .navbar-toggle:focus, .app-custom-header.navbar-default .navbar-toggle:hover {
    background-color: transparent !important;
}

@media (max-width:1100px) {
    .app-custom-header .app-nav-container {
        padding-left: 20px;
        padding-right: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .app-custom-header .header-menus-list {
        padding-left: 0px;
        width: 100%;
    }

    .app-custom-header .right-menus, .app-custom-header .right-menus ul li {
        padding-left: 20px;
    }


    .app-custom-header .navbar-nav > li.menu-sns .fa {
        font-size: 22px;
    }

    .app-custom-header .right-menus, .app-custom-header .right-menus a {
        font-size: 18px;
    }
}

@media (max-width:991px) {
    .app-custom-header .app-nav-container {
        padding-top: 20px;
        padding-bottom: 20px;
        padding-left: 20px;
        padding-right: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .app-custom-header .right-menus, .app-custom-header .right-menus ul li {
        padding-left: 0px;
    }


    .app-custom-header .navbar-nav > li {
        padding-left: 0px;
    }

    .app-custom-header .right-menus, .app-custom-header .right-menus a {
        font-size: 14px;
    }

    .app-custom-header .navbar-brand img {
        max-width: 36vw;
        width: 240px;
    }
}

@media (max-width:767px) {
    .app-custom-header.scroll-up {
        position: fixed !important;
    }

    .app-custom-header .app-nav-container {
        padding-top: 14px;
        padding-bottom: 14px;
        padding-left: 16px;
        padding-right: 16px;
        flex-direction: column;
    }

    .app-custom-header .navbar-collapse {
        border-top: none !important;
        background-color: #fff;
        background-color: rgba(255,255,255,0.9);
        border-radius: 0px;
    }

    .app-custom-header .navbar-header:before, .app-custom-header .navbar-header:after {
        content: none;
    }

    .app-custom-header .navbar-header {
        width: 100%;
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: center;
    }

    .app-custom-header .navbar-brand img {
        max-width: 50vw;
        width: 200px;
    }


    .app-custom-header.navbar-default .navbar-toggle {
        border: none;
        margin-right: 0;
    }

    .app-custom-header.navbar-default .navbar-toggle:focus, .app-custom-header.navbar-default .navbar-toggle:hover {
        background-color: #ffffff
    }

    .app-custom-header.navbar-default .navbar-toggle .icon-bar {
        background-color: #000 !important;
    }

    .app-custom-header .header-menus-list {
        width: 100%;
        padding-left: 0;
    }

    .app-custom-header .right-menus .navbar-first {
        flex-direction: column;
        padding-top: 0;
    }

    .app-custom-header .right-menus, .app-custom-header .right-menus a {
        font-size: 16px;
        padding-top: 6px;
        padding-bottom: 6px;
        color: var(--app-primary-color) !important;
    }

    .app-custom-header .navbar-nav > li {
        padding-left: 0px;
    }
}


@media(min-width: 768px) {
    .app-custom-header .right-menus {
        display: flex !important;
        flex-direction: column;
    }
}


@keyframes showNavAnimation {
    from {
        opacity: 0;
        transform: translateY(-300px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
