﻿:root {
    --MENU-ITEM: black;
    --MENU-ITEM-HOVER: rgb(0,112,202);
}

body {
    position: relative;
}



.nav-header .close-button {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .nav-header .close-button span {
        margin: 0.125em;
    }

        .nav-header .close-button span:nth-child(2) {
            color: red;
        }

        .nav-header .close-button span:nth-child(1) {
            font: 14pt 'visbycf-regular';
        }

.navigation li a {
    text-decoration: none;
    text-transform: uppercase;
    font: 900 14pt 'visbycf-light';
    letter-spacing:3.75px;
}

.nav-menu {
    position: absolute;
    top: 0.75em;
    right: 0.75em;
    z-index: 2;
    cursor: pointer;
}

    .nav-menu span {
        font-size: 2.35em;
        color: var(--MAIN);
    }
        .nav-menu span:hover{
            color:var(--THIRD-TEXT);
        }

        .nav-wrapper {
            position: fixed;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            top: 0;
            z-index: 9998;
        }

.nav-container {
    position: fixed;
    top: 0%;
    z-index: 999;
    background: #fff;
    z-index: 9999;
    width: 320px;
    height: 100%;
    right: -100%;
}

.close-button {
    float: right;
    padding: 20px;
    cursor: pointer;
    vertical-align: text-bottom;
}

    .close-button span {
        transform: translateY(1px);
    }

.navigation {
    padding: 0;
    list-style-type: none;
}

    .navigation a {
        display: inline-block;
        width: 100%;
        padding: 12px 20px;
        color: var(--MENU-ITEM);
        font-weight: bold;
        font-size: 18px;
        transition: 200ms;
    }

        .navigation a:not(:last-child) {
            border-bottom: 1px solid #e6eaea;
        }

        .navigation a:hover,
        .navigation a:focus {
            text-decoration: none;
            color: var(--MENU-ITEM-HOVER);
        }

.dropdown-container {
    position: relative;
}

    .dropdown-container .caret {
        display: inline-block;
        position: absolute;
        top: 20px;
        right: 20px;
        width: 0;
        height: 0;
        margin-left: 2px;
        vertical-align: middle;
        border-top: 6px dashed;
        border-right: 6px solid transparent;
        border-left: 6px solid transparent;
        transition: 300ms;
        color: var(--MAIN);
    }

.caret.open {
    -ms-transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.dropdown-nav {
    display: none;
    padding-left: 20px;
}

    .dropdown-nav li {
        list-style-type: none;
    }

    .dropdown-nav a {
        font-weight: 400;
    }
