﻿.header-container {
    height: 80px;
    background: #FFFFFF;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 56px;
    position: fixed;
    z-index: 900;
    width: 100%;
}

    .header-container .logo {
        width: 106px;
        cursor: pointer;
    }

        .header-container .logo img {
            width: 100%;
        }

    .header-container .menu-content {
        display: flex;
        align-items: center;
    }

        .header-container .menu-content .menu-item {
            font-style: normal;
            font-weight: normal;
            font-size: 14px;
            line-height: 17px;
            text-align: center;
            color: #000000;
            margin-right: 40px;
            cursor: pointer;
        }

        .header-container .menu-content .active-page {
            color: #FFFFFF;
            font-weight: bold;
            border-radius: 30px;
            padding: 10px;
        }

    .header-container .my-account-container {
        display: flex;
        align-items: center;
    }

        .header-container .my-account-container .my-information {
            font-style: normal;
            font-weight: normal;
            font-size: 10px;
            line-height: 12px;
            text-align: center;
            color: #000000;
        }

            .header-container .my-account-container .my-information:first-child {
                font-size: 14px;
                font-weight: bold;
                margin-bottom: 10px;
            }

        .header-container .my-account-container .profile-picture {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin-left: 8px;
            margin-right: 20px;
        }

            .header-container .my-account-container .profile-picture img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: 50%;
            }

        .header-container .my-account-container .logout {
            display: flex;
            align-items: center;
            cursor: pointer;
        }

            .header-container .my-account-container .logout span {
                font-style: normal;
                font-weight: bold;
                font-size: 12px;
                text-align: center;
                color: #F21430;
                margin-left: 5px;
            }


/***************Navigation Region Mobile******************/

.mobile-header {
    display: none;
    height: 80px;
    width: 100%;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    background-color: #FFFFFF;
    position: fixed;
    padding: 0px 20px;
    justify-content: center;
    z-index: 1100;
}

    .mobile-header .logo {
    }

#menuToggle {
    display: block;
    position: absolute;
    top: 33px;
    right: 20px;
    z-index: 1;
    -webkit-user-select: none;
    user-select: none;
}

    #menuToggle input {
        display: block;
        width: 26px;
        height: 32px;
        position: absolute;
        top: -11px;
        left: -5px;
        cursor: pointer;
        opacity: 0;
        z-index: 2;
        -webkit-touch-callout: none;
    }

    #menuToggle span {
        display: block;
        width: 26px;
        height: 3px;
        margin-bottom: 6px;
        position: relative;
        border-radius: 3px;
        z-index: 1;
        transform-origin: 4px 0px;
        transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0), background 0.5s cubic-bezier(0.77,0.2,0.05,1.0), opacity 0.55s ease;
    }

        #menuToggle span:first-child {
            transform-origin: 0% 0%;
        }

        #menuToggle span:nth-last-child(2) {
            transform-origin: 0% 100%;
        }

    #menuToggle input:checked ~ span {
        opacity: 1;
        transform: rotate(45deg) translate(2px, 3px);
    }

        #menuToggle input:checked ~ span:nth-last-child(3) {
            opacity: 0;
            transform: rotate(0deg) scale(0.2, 0.2);
        }

        #menuToggle input:checked ~ span:nth-last-child(2) {
            opacity: 1;
            transform: rotate(-45deg) translate(0, 0px);
        }

#menu {
    position: absolute;
    margin: -100px 0 0 0;
    padding: 25px;
    padding-top: 125px;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    /* to stop flickering of text in safari */
    transform-origin: 0% 0%;
    transform: translate(100%, 0);
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
    width: 40vw;
    right: -27px;
    height: 108vh;
    text-align: center;
    background: #FFFFFF;
    box-shadow: -4px 4px 8px rgba(8, 43, 110, 0.32);
    box-sizing: border-box;
}

    #menu li {
        padding: 15px 0;
        font-size: 15px;
        color: #000000;
        text-align: left;
        font-weight: bold;
    }

        #menu li a {
            padding: 10px 0;
            font-size: 15px;
            color: #ffffff;
            text-decoration: none;
        }

#menuToggle input:checked ~ ul {
    transform: scale(1.0, 1.0);
    opacity: 1;
}

@media(max-width: 1024px) {
    .desktop-header {
        display: none;
    }

    .header-container .menu-content {
        flex-flow: column;
        align-items: flex-start;
    }

    .mobile-header {
        display: flex;
    }

        .mobile-header .my-account-container {
            padding-right: 50px;
            padding-bottom: 20px;
            margin-bottom: 35px;
            border-bottom: solid 1px rgba(8, 43, 110, 0.16);
            flex-flow: row-reverse;
        }

            .mobile-header .my-account-container .my-information {
                text-align: left;
            }

            .mobile-header .my-account-container .profile-picture {
                margin-left: 0px;
            }
}



/***************END Navigation Region Mobile******************/

@media(max-width: 700px) {
    .header-container .menu-content {
        width: 75vw !important;
    }
}
