.aimdropdown ol,
.aimdropdown ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

.aimdropdown-wrapper {
  display: inline-block;
  position: relative;
  height: 40px;
  margin: 30px 0 0 5%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.aimdropdown-trigger {
  display: block;
  position: relative;
  padding: 0 36px 0 20px;
  line-height: 40px;
  background-color: #111433;
  color: #ffffff;
  /*border-radius: 3px;*/ }
  .no-touch .aimdropdown-trigger:hover {
    background-color: #171c46; }
  .aimdropdown-trigger::before, .aimdropdown-trigger::after {
    /* this is the arrow inside the dropdown trigger*/
    content: '';
    position: absolute;
    top: 50%;
    margin-top: -1px;
    height: 2px;
    width: 9px;
    background: #ffffff;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: width 0.3s, -webkit-transform 0.3s;
    -moz-transition: width 0.3s, -moz-transform 0.3s;
    transition: width 0.3s, transform 0.3s; }
  .aimdropdown-trigger::before {
    right: 22px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg); }
  .aimdropdown-trigger::after {
    right: 17px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg); }
  @media only screen and (min-width: 1024px) {
    .aimdropdown-trigger {
      font-size: 1.5rem; }
      .aimdropdown-trigger.aimdropdown-active {
        background-color: #3f8654; }
        .no-touch .aimdropdown-trigger.aimdropdown-active:hover {
          background-color: #47975f; }
        .aimdropdown-trigger.aimdropdown-active::before, .aimdropdown-trigger.aimdropdown-active::after {
          /* transform the arrow into a 'X' */
          width: 14px; }
        .aimdropdown-trigger.aimdropdown-active::before {
          /* transform the arrow into a 'X' */
          -webkit-transform: translateX(5px) rotate(-45deg);
          -moz-transform: translateX(5px) rotate(-45deg);
          -ms-transform: translateX(5px) rotate(-45deg);
          -o-transform: translateX(5px) rotate(-45deg);
          transform: translateX(5px) rotate(-45deg); }
        .aimdropdown-trigger.aimdropdown-active::after {
          /* transform the arrow into a 'X' */
          -webkit-transform: rotate(45deg);
          -moz-transform: rotate(45deg);
          -ms-transform: rotate(45deg);
          -o-transform: rotate(45deg);
          transform: rotate(45deg); } }

.aimdropdown {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #111433;
  color: #ffffff;
  visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: -webkit-transform 0.5s 0s, visibility 0s 0.5s;
  -moz-transition: -moz-transform 0.5s 0s, visibility 0s 0.5s;
  transition: transform 0.5s 0s, visibility 0s 0.5s; }
  .aimdropdown h2 {
    position: relative;
    z-index: 1;
    color: #585b70;
    background-color: #111433;
    border-bottom: 1px solid #242743; }
  .aimdropdown .cd-close {
    position: absolute;
    z-index: 1;
    right: 0;
    top: 0;
    height: 50px;
    width: 50px;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    color: transparent; }
    .aimdropdown .cd-close::after, .aimdropdown .cd-close::before {
      content: '';
      position: absolute;
      left: 50%;
      top: 50%;
      bottom: auto;
      right: auto;
      -webkit-transform: translateX(-50%) translateY(-50%);
      -moz-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
      -o-transform: translateX(-50%) translateY(-50%);
      transform: translateX(-50%) translateY(-50%);
      height: 20px;
      width: 2px;
      background-color: #ffffff; }
    .aimdropdown .cd-close::after {
      -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
      -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
      -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
      -o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
      transform: translateX(-50%) translateY(-50%) rotate(45deg); }
    .aimdropdown .cd-close::before {
      -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
      -moz-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
      -ms-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
      -o-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
      transform: translateX(-50%) translateY(-50%) rotate(-45deg); }
  .aimdropdown.aimdropdown-active {
    visibility: visible;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: -webkit-transform 0.5s 0s, visibility 0s 0s;
    -moz-transition: -moz-transform 0.5s 0s, visibility 0s 0s;
    transition: transform 0.5s 0s, visibility 0s 0s; }
  @media only screen and (min-width: 768px) {
    .aimdropdown .cd-close {
      top: 5px; } }
  @media only screen and (min-width: 1024px) {
    .aimdropdown {
      position: absolute;
      /*		top: calc(100% - 2px);*/
      top: 100%;
      height: auto;
      width: auto;
      -webkit-transform: translateX(0);
      -moz-transform: translateX(0);
      -ms-transform: translateX(0);
      -o-transform: translateX(0);
      transform: translateX(0);
      background-color: #ffffff;
      color: #111433;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      opacity: 0;
      -webkit-transform: translateY(30px);
      -moz-transform: translateY(30px);
      -ms-transform: translateY(30px);
      -o-transform: translateY(30px);
      transform: translateY(30px);
      -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s, -webkit-transform 0.3s 0s;
      -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s, -moz-transform 0.3s 0s;
      transition: opacity 0.3s 0s, visibility 0s 0.3s, transform 0.3s 0s; }
      .open-to-left .aimdropdown {
        right: 0;
        left: auto; }
      .aimdropdown h2, .aimdropdown .cd-close {
        display: none; }
      .aimdropdown.aimdropdown-active {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
        -webkit-transition: opacity 0.3s 0s, visibility 0.3s 0s, -webkit-transform 0.3s 0s;
        -moz-transition: opacity 0.3s 0s, visibility 0.3s 0s, -moz-transform 0.3s 0s;
        transition: opacity 0.3s 0s, visibility 0.3s 0s, transform 0.3s 0s; } }

.aimdropdown-content,
.aimdropdown-content .aimdropdown-secondary-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
  padding-top: 20px; }
  .aimdropdown-content.is-hidden,
  .aimdropdown-content .aimdropdown-secondary-dropdown.is-hidden {
    /* push the secondary dropdown items to the right */
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%); }
  .aimdropdown-content.is-hidden > li > a,
  .aimdropdown-content.move-out > li > a,
  .aimdropdown-content .aimdropdown-secondary-dropdown.is-hidden > li > a,
  .aimdropdown-content .aimdropdown-secondary-dropdown.move-out > li > a {
    opacity: 0; }
  .aimdropdown-content.move-out > li > a,
  .aimdropdown-content .aimdropdown-secondary-dropdown.move-out > li > a {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%); }
  .aimdropdown-active .aimdropdown-content, .aimdropdown-active
  .aimdropdown-content .aimdropdown-secondary-dropdown {
    -webkit-overflow-scrolling: touch; }
  @media only screen and (min-width: 768px) {
    .aimdropdown-content,
    .aimdropdown-content .aimdropdown-secondary-dropdown {
      /*padding-top: 60px;*/ }
      .aimdropdown-content a,
      .aimdropdown-content .aimdropdown-secondary-dropdown a {
        /*font-size: 1.8rem;*/ }
      .aimdropdown-content.is-hidden > li > a,
      .aimdropdown-content.move-out > li > a,
      .aimdropdown-content .aimdropdown-secondary-dropdown.is-hidden > li > a,
      .aimdropdown-content .aimdropdown-secondary-dropdown.move-out > li > a {
        opacity: 1; } }

.aimdropdown-content .has-children > a,
.aimdropdown-content .go-back a {
  position: relative; }
  .aimdropdown-content .has-children > a::before, .aimdropdown-content .has-children > a::after,
  .aimdropdown-content .go-back a::before,
  .aimdropdown-content .go-back a::after {
    content: '';
    position: absolute;
    top: 50%;
    margin-top: -1px;
    display: inline-block;
    height: 2px;
    width: 10px;
    background: #ffffff;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden; }
  .aimdropdown-content .has-children > a::before,
  .aimdropdown-content .go-back a::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg); }
  .aimdropdown-content .has-children > a::after,
  .aimdropdown-content .go-back a::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg); }
  @media only screen and (min-width: 1024px) {
    .aimdropdown-content .has-children > a::before, .aimdropdown-content .has-children > a::after,
    .aimdropdown-content .go-back a::before,
    .aimdropdown-content .go-back a::after {
      background: #b3b3b3; } }

.aimdropdown-content .has-children > a {
  padding-right: 40px; }
  .aimdropdown-content .has-children > a::before, .aimdropdown-content .has-children > a::after {
    right: 20px;
    -webkit-transform-origin: 9px 50%;
    -moz-transform-origin: 9px 50%;
    -ms-transform-origin: 9px 50%;
    -o-transform-origin: 9px 50%;
    transform-origin: 9px 50%; }

.aimdropdown-content > li > a {
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  display: block;
  /*color: $color-3;*/
  /* truncate text with ellipsis if too long */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }
  @media only screen and (min-width: 768px) {
    .aimdropdown-content > li > a {
      height: 60px;
      line-height: 60px; } }
  @media only screen and (min-width: 1024px) {
    .aimdropdown-content > li > a {
      height: 50px;
      line-height: 50px; } }

@media only screen and (min-width: 1024px) {
  .aimdropdown-content {
    padding-top: 0;
    overflow: visible;
    position: static;
    height: auto;
    width: 280px; }
    .aimdropdown-content > .has-children > a.is-active {
      /* hover effect for .cd-dropdown-content items with subnavigation */
      /*box-shadow: inset 2px 0 0 $color-2;*/
      color: #3f8654; }
      .aimdropdown-content > .has-children > a.is-active::before, .aimdropdown-content > .has-children > a.is-active::after {
        background: #3f8654; }
    .aimdropdown-content a {
      /*			color: $color-1;
						height: 50px;
						line-height: 50px;
						font-size: 1.5rem;*/ }
    .aimdropdown-content .aimdropdown-secondary-dropdown {
      -webkit-transform: translateX(0);
      -moz-transform: translateX(0);
      -ms-transform: translateX(0);
      -o-transform: translateX(0);
      transform: translateX(0);
      left: 100%;
      height: auto;
      background-color: #ffffff;
      box-shadow: 0 2px 14px rgba(0, 0, 0, 0.1); }
      .aimdropdown-content .aimdropdown-secondary-dropdown::after {
        clear: both;
        content: "";
        display: table; }
      .open-to-left .aimdropdown-content .aimdropdown-secondary-dropdown {
        left: auto;
        right: 100%; }
      .aimdropdown-content .aimdropdown-secondary-dropdown.is-hidden {
        /* reset mobile style */
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
        visibility: hidden; }
      .aimdropdown-content .aimdropdown-secondary-dropdown.fade-in {
        -webkit-animation: cd-fade-in 0.2s;
        -moz-animation: cd-fade-in 0.2s;
        animation: cd-fade-in 0.2s; }
      .aimdropdown-content .aimdropdown-secondary-dropdown.fade-out {
        -webkit-animation: cd-fade-out 0.2s;
        -moz-animation: cd-fade-out 0.2s;
        animation: cd-fade-out 0.2s; }
      .aimdropdown-content .aimdropdown-secondary-dropdown > .go-back {
        display: none; }
    .aimdropdown-content .aimdropdown-secondary-dropdown {
      overflow: hidden;
      width: 850px;
      /*padding-bottom: 65px;*/
      /*			> .has-children > .aimdropdown-secondary-dropdown {
							visibility: hidden;
						}*/
      /*			> .has-children > a.is-active {
							 hover effect for .cd-dropdown-content items with subnavigation 
							box-shadow: inset 2px 0 0 $color-2;
							color: $color-2;
			
							&::before,
							&::after {
								background: $color-2;
							}
						}*/ }
      .aimdropdown-content .aimdropdown-secondary-dropdown ul > .go-back {
        display: none; }
      .aimdropdown-content .aimdropdown-secondary-dropdown.is-active {
        visibility: visible; }
      .open-to-left .aimdropdown-content .aimdropdown-secondary-dropdown > .has-children > a.is-active {
        box-shadow: inset -2px 0 0 #3f8654; } }

.aimdropdown-secondary-dropdown > li.has-children > a {
  color: #3f8654;
  font-size: 1.8rem; }

.aimdropdown-secondary-dropdown > li {
  /*@include column(0.5);*/
  margin: 0;
  padding: 0 30px; }

ul.aimdropdown-submenu {
  padding-bottom: 10px; }
  ul.aimdropdown-submenu > li.has-children > a {
    color: #3f8654;
    font-size: 1.5rem; }
  ul.aimdropdown-submenu li {
    /*@include column(0.5);*/
    /*overflow-y: auto;*/ }

.aimdropdown-content .go-back a {
  position: relative; }
  .aimdropdown-content .go-back a::before, .aimdropdown-content .go-back a::after {
    /* arrow icon in CSS - for element with nested unordered lists */
    content: '';
    position: absolute;
    top: 50%;
    margin-top: -1px;
    display: inline-block;
    height: 2px;
    width: 10px;
    background: #ffffff;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden; }
  .aimdropdown-content .go-back a::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg); }
  .aimdropdown-content .go-back a::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg); }
  @media only screen and (min-width: 1024px) {
    .aimdropdown-content .go-back a::before, .aimdropdown-content .go-back a::after {
      background: #b3b3b3; } }

.aimdropdown-content .go-back a {
  padding-left: 40px; }
  .aimdropdown-content .go-back a::before, .aimdropdown-content .go-back a::after {
    /* arrow goes on the left side - go back button */
    left: 20px;
    -webkit-transform-origin: 1px 50%;
    -moz-transform-origin: 1px 50%;
    -ms-transform-origin: 1px 50%;
    -o-transform-origin: 1px 50%;
    transform-origin: 1px 50%; }

@-webkit-keyframes cd-fade-in {
  0% {
    opacity: 0;
    visibility: visible; }
  100% {
    opacity: 1;
    visibility: visible; } }

@-moz-keyframes cd-fade-in {
  0% {
    opacity: 0;
    visibility: visible; }
  100% {
    opacity: 1;
    visibility: visible; } }

@keyframes cd-fade-in {
  0% {
    opacity: 0;
    visibility: visible; }
  100% {
    opacity: 1;
    visibility: visible; } }

@-webkit-keyframes cd-fade-out {
  0% {
    opacity: 1;
    visibility: visible; }
  100% {
    opacity: 0;
    visibility: visible; } }

@-moz-keyframes cd-fade-out {
  0% {
    opacity: 1;
    visibility: visible; }
  100% {
    opacity: 0;
    visibility: visible; } }

@keyframes cd-fade-out {
  0% {
    opacity: 1;
    visibility: visible; }
  100% {
    opacity: 0;
    visibility: visible; } }

/*# sourceMappingURL=aimdropdown.css.map */
