2021-04-19 03:11:55 +00:00
|
|
|
@charset "utf-8";
|
|
|
|
|
|
|
|
@import "../initial";
|
|
|
|
|
|
|
|
.modules-menu {
|
|
|
|
font-family: $sub-font;
|
|
|
|
max-height: none;
|
|
|
|
|
|
|
|
li {
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
|
|
& > a,
|
|
|
|
& > .fa {
|
|
|
|
color: $theme-white;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
& > a,
|
|
|
|
& > .fa {
|
|
|
|
color: $theme-white;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.modules-menu-level-0 {
|
|
|
|
position:absolute;
|
|
|
|
top:125px;
|
|
|
|
left:0;
|
|
|
|
right:0;
|
|
|
|
margin: 0 30px;
|
|
|
|
padding: 0 37px;
|
|
|
|
list-style: none;
|
|
|
|
background: #dd7821;
|
|
|
|
border-radius:10px;
|
2021-09-03 03:45:44 +00:00
|
|
|
behavior: url("/assets/ie_support/PIE2/PIE.htc");
|
2021-04-19 03:11:55 +00:00
|
|
|
z-index:1;
|
|
|
|
box-shadow: 0 5px 0 #a35823;
|
2021-06-28 14:57:57 +00:00
|
|
|
font-size:0.9375em;
|
2021-04-19 03:11:55 +00:00
|
|
|
clear:both;
|
|
|
|
|
|
|
|
@media (max-width: 992px) {
|
|
|
|
position:static;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
clear:both;
|
|
|
|
margin:0;
|
|
|
|
width:100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.has-dropdown.level-1.active {
|
|
|
|
.modules-menu-level-1 {
|
|
|
|
display: block;
|
|
|
|
position:absolute;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.has-dropdown.level-2.active {
|
|
|
|
.modules-menu-level-2 {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-toggle-icon {
|
|
|
|
position: absolute;
|
|
|
|
top: 8px;
|
|
|
|
right: 5px;
|
|
|
|
width: 40px;
|
|
|
|
height: 40px;
|
|
|
|
cursor: pointer;
|
|
|
|
line-height: 40px;
|
|
|
|
font-size: 1em;
|
|
|
|
text-align: center;
|
|
|
|
border-radius: 2px;
|
2021-09-03 03:45:44 +00:00
|
|
|
behavior: url("/assets/ie_support/PIE2/PIE.htc");
|
2021-04-19 03:11:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-toggle-icon.level-1 {
|
|
|
|
background-color: lighten($theme-gray, 10%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-toggle-icon.level-2 {
|
|
|
|
background-color: lighten($theme-gray, 10%);
|
|
|
|
}
|
|
|
|
|
|
|
|
& > li {
|
|
|
|
position: relative;
|
|
|
|
margin: 0 0px;
|
|
|
|
padding: 0 15px;
|
|
|
|
border-bottom: 1px solid lighten($theme-gray, 5%);
|
|
|
|
@media (max-width: 992px) {
|
|
|
|
float:none;
|
|
|
|
width:50%;
|
|
|
|
display:inline-block;
|
2021-06-28 14:57:57 +00:00
|
|
|
font-size:1em;
|
2021-04-19 03:11:55 +00:00
|
|
|
}
|
|
|
|
@media (max-width: 480px) {
|
|
|
|
width:100%;
|
|
|
|
}
|
|
|
|
& > a {
|
|
|
|
display: block;
|
|
|
|
padding: 18px 0;
|
|
|
|
font-family: $main-font;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: $theme-color-main;
|
|
|
|
|
|
|
|
& > a {
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-width: $screen-md) {
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-width: $screen-md) {
|
|
|
|
position: relative;
|
|
|
|
margin: 0 5px;
|
|
|
|
padding: 0;
|
|
|
|
border-bottom: none;
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-right: 0;
|
|
|
|
|
|
|
|
.modules-menu-level-1 {
|
|
|
|
right: 15px;
|
|
|
|
left: auto;
|
|
|
|
|
|
|
|
&:before {
|
|
|
|
right: 10px;
|
|
|
|
left: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
& > li {
|
|
|
|
padding-right: 15px;
|
|
|
|
padding-left: 15px;
|
|
|
|
|
|
|
|
& > a {
|
|
|
|
padding-left: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.modules-menu-level-2 {
|
|
|
|
right: 100%;
|
|
|
|
left: auto;
|
|
|
|
|
|
|
|
&:before {
|
|
|
|
right: -6px;
|
|
|
|
left: auto;
|
|
|
|
|
|
|
|
@include arrow("left", 6px, 6px, $theme-gray-darker);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
& > a {
|
|
|
|
padding: 13px 11px;
|
|
|
|
transition:all .3s;
|
|
|
|
}
|
|
|
|
|
|
|
|
& > .fa {
|
|
|
|
position: static;
|
|
|
|
|
|
|
|
@include size(auto, auto);
|
|
|
|
|
|
|
|
padding: 0;
|
|
|
|
line-height: 1;
|
|
|
|
font-size: 1em;
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
& > a {
|
|
|
|
background-color:white;
|
|
|
|
color:#3a4c73;
|
|
|
|
}
|
|
|
|
|
|
|
|
.modules-menu-level-1 {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.modules-menu-level-1 {
|
|
|
|
display: none;
|
|
|
|
min-width: 100%;
|
|
|
|
margin: 0 -15px;
|
|
|
|
padding: 0;
|
|
|
|
background-color: #37518a;
|
|
|
|
border-radius: 0 0 5px 5px;
|
|
|
|
list-style: none;
|
|
|
|
z-index: 1;
|
|
|
|
|
|
|
|
& > li {
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
& + li {
|
|
|
|
border-top: 1px solid lighten($theme-gray-dark, 5%);
|
|
|
|
}
|
|
|
|
|
|
|
|
& > a {
|
|
|
|
display: block;
|
|
|
|
padding: 17px 25px;
|
|
|
|
font-family: $main-font;
|
2021-06-28 14:57:57 +00:00
|
|
|
font-size: 0.9375em;
|
2021-04-19 03:11:55 +00:00
|
|
|
transition:all .6s;
|
|
|
|
@media (max-width: $screen-md) {
|
|
|
|
background-color:white;
|
|
|
|
color:#37518a;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: white;
|
|
|
|
|
|
|
|
& > a,
|
|
|
|
& > .fa {
|
|
|
|
color: #37518a;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-width: $screen-md) {
|
|
|
|
position: absolute;
|
|
|
|
left: 15px;
|
|
|
|
margin-top: -0.5rem;
|
|
|
|
// border-top: 0.5rem solid $brand-primary;
|
|
|
|
|
|
|
|
// &:before {
|
|
|
|
// content: "";
|
|
|
|
// display: block;
|
|
|
|
// position: absolute;
|
|
|
|
// top: -16px;
|
|
|
|
// left: 10px;
|
|
|
|
|
|
|
|
// @include arrow("bottom", 10px, 8px, $brand-primary);
|
|
|
|
// }
|
|
|
|
|
|
|
|
& > li {
|
|
|
|
padding-right: 30px;
|
|
|
|
|
|
|
|
& > a {
|
|
|
|
padding-left: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
& > .fa {
|
|
|
|
position: static;
|
|
|
|
|
|
|
|
@include size(auto, auto);
|
|
|
|
|
|
|
|
padding: 0;
|
|
|
|
margin-right: 0;
|
|
|
|
line-height: 1;
|
|
|
|
float: none;
|
|
|
|
font-size: 1em;
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
.modules-menu-level-2 {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.fa {
|
|
|
|
&:before {
|
|
|
|
content: "\f105";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.modules-menu-level-2 {
|
|
|
|
display: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
background-color: $theme-gray-darker;
|
|
|
|
list-style: none;
|
|
|
|
border-radius:5px;
|
2021-09-03 03:45:44 +00:00
|
|
|
behavior: url("/assets/ie_support/PIE2/PIE.htc");
|
2021-04-19 03:11:55 +00:00
|
|
|
& > li {
|
|
|
|
& + li {
|
|
|
|
border-top: 1px solid lighten($theme-gray-darker, 5%);
|
|
|
|
transition:all .5s;
|
|
|
|
border-radius:5px;
|
2021-09-03 03:45:44 +00:00
|
|
|
behavior: url("/assets/ie_support/PIE2/PIE.htc");
|
2021-04-19 03:11:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
& > a {
|
|
|
|
display: block;
|
|
|
|
padding: 15px 50px;
|
|
|
|
font-family: $main-font;
|
|
|
|
border-radius:5px;
|
2021-09-03 03:45:44 +00:00
|
|
|
behavior: url("/assets/ie_support/PIE2/PIE.htc");
|
2021-04-19 03:11:55 +00:00
|
|
|
transition:all .5s;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
// background-color: darken($brand-primary, 20%);
|
|
|
|
background-color:#37518a;
|
|
|
|
border-radius:5px;
|
2021-09-03 03:45:44 +00:00
|
|
|
behavior: url("/assets/ie_support/PIE2/PIE.htc");
|
2021-04-19 03:11:55 +00:00
|
|
|
& > a {
|
|
|
|
color: #FFF;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-width: $screen-md) {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 100%;
|
|
|
|
|
|
|
|
&:before {
|
|
|
|
content: "";
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
top: 13px;
|
|
|
|
left: -6px;
|
|
|
|
|
|
|
|
@include arrow("right", 6px, 6px, $theme-gray-darker);
|
|
|
|
}
|
|
|
|
|
|
|
|
& > li {
|
|
|
|
padding-right: 15px;
|
|
|
|
|
|
|
|
& > a {
|
|
|
|
padding-left: 15px;
|
|
|
|
padding: 0.7em 0 0.7em 15px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.fa {
|
|
|
|
&:before {
|
|
|
|
content: "\f105";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.has-mobile-dropdown {
|
|
|
|
.modules-menu {
|
|
|
|
.dropdown-toggle-icon {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#layout-navigation{
|
|
|
|
z-index: 0;
|
|
|
|
@media (min-width: 992px){
|
|
|
|
display:block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navbar-right{
|
|
|
|
@media (min-width: 992px){
|
|
|
|
float:right !important;
|
|
|
|
}
|
|
|
|
@media (max-width: 992px){
|
|
|
|
float:none !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.navbar-nav{
|
|
|
|
@media (min-width: 992px){
|
|
|
|
float:left !important;
|
|
|
|
top:130px;
|
|
|
|
}
|
|
|
|
@media (max-width: 992px){
|
|
|
|
float:none !important;
|
|
|
|
font-size:0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|