* {
    font-family: Roboto, sans-serif;
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #e2e8f0;
    line-height: 1.5;
}

.chameleon-navbar {
    box-shadow: 0 1px 2px rgba(60,64,67,.3),0 2px 6px 2px rgba(60,64,67,.15);
    z-index: 100;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #fff;
    color: #000;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.chameleon-navbar__container {
    align-items: center;
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.chameleon-navbar__heading {
    font-family: Google Sans;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    margin: 10px 14px 12px;
}

.chameleon-navbar__menu {
    margin-left: 6rem;
    display: flex;
    align-items: center;
}

.chameleon-navbar__menu-tab {
    font-family: Roboto;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 28px;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 56px;
    cursor: pointer;
    display: block;
    padding: 0 16px;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    border-bottom: 2px solid transparent;
    -webkit-transition: border .2s;
    transition: border .2s;
    margin: 0 2px;
}

.chameleon-navbar__menu-tab--active {
    border-bottom: 2px solid #1a73e8;
    color: #1a73e8;
}

/* //! Added this */
.examples-dropdown {
    position: absolute;
    top: 100%;   /* just below the toggle */
    left: 0;
    background: white;
    border: 1px solid #ccc;
    padding: 10px;
    list-style: none;
    z-index: 1000;

    /* Reset inherited styles from parent */
    font-family: initial;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: normal;
    letter-spacing: normal;
    text-transform: none;
    margin: 0;
}

.chameleon-navbar__info-area {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 14px;
}

.chameleon-navbar__info-area a:hover {
    color: #1a73e8;
}

.chameleon-navbar__info-area-tooltip {
    margin: 0 4px;
}

:hover > .chameleon-navbar__info-area-tooltip-text {
    visibility: visible;
  }

.chameleon-navbar__info-area-tooltip-text {
    min-width: 130px;
    visibility: hidden;
    line-height: normal;
    text-align: center;
    padding: 3px 6px;
    top: calc(100% + 2px);
    position: absolute;
    z-index: 100;
    font-size: .75rem;
    font-family: Google Sans;
    font-weight: 400;
    border-radius: .25rem;
    background-color: #2d3748;
    color: #fff;
    opacity: .9;
    text-transform: none;
    right: 0;
}



.chameleon-navbar__info-area-tab {
    position: relative;
    font-size: 0;
    align-items: center;
    flex-direction: column;
    display: flex;
}

.chameleon-navbar__info-area-tab-about {
    padding: .25rem;
}

.chameleon-navbar__info-area-link {
    font-family: Roboto;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 28px;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1;
    position: relative;
    padding: .25rem;
    display: inline-block;
    border-radius: 9999px;
    color: inherit;
    text-decoration: inherit;
}

.chameleon-navbar__info-area-tab-i {
    font-size: 24px;
    vertical-align: middle;
    cursor: pointer;
    font-family: "Material Icons Outlined";
    font-weight: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    display: inline-block;
    text-transform: none;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    /* -moz-font-feature-settings: "liga"; */
    -moz-osx-font-smoothing: grayscale;    
}