/** Layout overrides */

/* navbar wrapper */
#navbar-wrapper {
    display: flex;
    flex-direction: column;
}

/* first navbar - the product chooser */
#product-navbar {
    flex: 1;
}
#product-navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    float: right;
}
#product-navbar li {
    float: left;
    padding: 2px 10px;
    font-size: 1.5em;
    color: #c89fc5;
}
#product-navbar li a {
    display: block;
    color: white;
    text-align: center;
    text-decoration: none;
}
#product-navbar li a:hover {
    color: #ccc;
}

/* second navbar - the targets inside the page */
#target-navbar {
    flex: 1;
}
#target-navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    float: right;
}
#target-navbar li {
    float: left;
    margin-left: 25px;
    margin-right: 10px;
}
#target-navbar a {
    color: #fff;
    text-decoration: none;
}
#target-navbar a:hover, #target-navbar a:active {
    color: #ccc;
}

/* no collapse of menu - we need the space for second line */
.small-height{
    height: 75px !important;
}

/* smaller nav icon */
.mobile-nav {
    height: 25px !important;
}

/* Scroll down icon on first page: larger, other color */
.gd-local-scroll {
    width: 100%;
    text-align: center;
    color: #3ad20d;
    margin-top: -100px;
}
.gd-scroll-down-icon {
    color: #a944a1;
}
.gd-bounce {
    animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}

/* fake headline for slider section */
.gd-pt-80 {
    padding-top: 80px !important;
}
.gd-pb-0 {
    padding-bottom: 0 !important;
}

/* lighter mobile background */
.mobile-on .desktop-nav ul {
    background: #46484a !important;
}

/* presentation icon */
.gd-presentation-icon {
    margin-left: 17%;
    margin-right: 17%;
}
.post-prev-title {
    font-size: 1.5em;
    font-weight: 500;
    text-align: center;
}
.gd-pt-160 {
    padding-top: 160px !important;
}


/* own mobile style for the product chooser in mobile view */
#gd-mobile-nav {
    text-align: right;
    padding-right: 20px;
}      
#gd-mobile-nav, #gd-mobile-nav>a {
    color: #fff;
}
#gd-mobile-nav>.current {
    color: #c89fc5;
}
@media only screen and (min-width: 1025px) {
    #gd-mobile-nav {
        display: none;
    }
}
@media only screen and (min-width: 400px) {
    #gd-mobile-nav a {
        padding-left: 10px;
    }
}
 
@media only screen and (max-width: 1024px) {    
    .gd-presentation-icon {
        margin-left: 25%;
        margin-right: 20%;
    }
    .gd-pt-160 {
        padding-top: 0 !important;
    }
}

@media only screen and (max-width: 1024px) and (min-width: 560px) {
    .gd-multirowbox {
        margin-left: 15%;
        margin-right: 15%;
    }
}