/* These are all the menus on the site template */
/* 1- Top menu for desktops */
/* 2- Top drop menu container for smartphones */
/* 3- Footer sitemap for desktops */
/* 4- Footer drop menu container for smartphones */
/* 5- Drop menu stying for smartphones */

/* 1- Top menu for desktops */
#menuWide {
    background: none;
    position: absolute;
    top: 20px;
    right: 10px;
    vertical-align: top;
}

.menu .category.top {
    float: left;
    margin: 0 2px;
}

.menu .category.top > a:link, .menu .category.top > a:visited {
    display: inline-block;
    font-size: 14px;
    position: relative;
    padding: 15px 15px 15px 40px;
    background-repeat: no-repeat;
    background-position: 6px 10px;
    background-size: auto 25px;
    color: #ffffff;
    font-weight: bold;
    border-radius: 5px 5px 0px 0px;
    -moz-border-radius: 5px 5px 0px 0px;
    -webkit-border-radius: 5px 5px 0px 0px;
}

.menu .category.top > a > div.bottomBorder {
    position: absolute;
    left: 0;
    bottom: 0;
    display: inline-block;
    height: 5px;
    width: 100%;
}

.menu .category.top > a.active {
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0px 4px 35px 0px rgba(0,0,0,0.42);
    -moz-box-shadow: 0px 4px 35px 0px rgba(0,0,0,0.42);
    box-shadow: 0px 4px 35px 0px rgba(0,0,0,0.42);
}

.menu .category.top > a.active > div.bottomBorder {
    background: #f39200;
}

.menu .category.top .childMenu {
    position: absolute;
    top: 45px;
    left: 0;
    display: none;
    box-sizing: border-box;
    min-width: 100%;
    padding: 10px;
    background: rgba(0, 0, 0, 0.8);
}

.menu .category.top > .childMenu a:link, .menu .category.top > .childMenu a:visited {
    display: block;
    color: rgba(0, 0, 0, 0.5);
    color: #d9d9d9;
    padding: 10px 0;
}

.menu .category.top > .childMenu a:hover {
    color: #f39200;
}

/* 2- Top drop menu container for smartphones */
#menuSlider {
    box-sizing: border-box;
    position: fixed;
    top: 0;
    right: 0;
    padding: 10px;
    background-color: rgb(40, 41, 44);
    z-index: 6;
    white-space: nowrap;
    overflow-x: hidden;
    overflow-y: auto;
    max-width: 90%;
    font-size: 0.8em;
}

#menuSlider a.close {
    color: white;
    font-weight: bolder;
}

/* 3- Footer sitemap for desktops */
#footerWide {
    box-sizing: border-box;
    text-align: center;
    font-size: 1em;
}

.menu .category.sitemap {
    border-left: 1px solid #3c3c3c;
    display: inline-block;
    margin: 0 10px;
    vertical-align: top;
    padding: 0 10px;
    width: 100px;
}

.menu .category.sitemap .childMenu a:link, .menu .category.sitemap .childMenu a:visited {
    display: block;
    margin-top: 10px;
    font-size: 0.8em;
}

.menu .category.sitemap .childMenu a:hover {
    color: #f39200;
}

.menu .category.sitemap .title {
    color: #fff;
    font-size: 1.5em;
}

/* 4- Footer drop menu container for smartphones */
#footerNarrow {
    box-sizing: border-box;
    padding-left: 20px;
    font-size: 0.8em;
}


/* 5- Drop menu stying for smartphones */
.menu .category.dropMenu {
    border-bottom: 1px solid #3c3c3c;
}

.menu .category.dropMenu .childMenu {
    color: rgb(191, 191, 191);
    font-size: 1em;
}

.menu .category.dropMenu .title {
    display: block;
    padding: 15px 40px;
    color: #fff;
    font-size: 1.5em;
    background-repeat: no-repeat;
    background-position: 0 50%;
}

.menu .category.dropMenu a.hasChilds:not(.active)::after {
    position: absolute;
    content: "\02C7";
    font-size: 2.5em;
    right: 20px;
    font-weight: lighter;
}

.menu .category.dropMenu a.title.active.hasChilds::after {
    position: absolute;
    content: "\02C6";
    font-size: 2.5em;
    right: 20px;
    font-weight: lighter;
}

.menu .category.dropMenu .childMenu a:link, .menu .category.dropMenu .childMenu a:link:visited {
    padding: 10px 0 10px 20px;
    display: block;
}

.menu .category.dropMenu .childMenu a:hover {
    background: #f39200;
    color: #000;
}