<style>

body {

}

/* Color Codes:
    Blue 1: #21A5FF
    Blue 2: #3BC9FF
    Grey 1: #444B57
    Grey 2: #f6f6f6
    Blue 3: #85ddff
    GMAPSAPIKEY: AIzaSyC-WRnysu4Tm8PeiqWKdZ4GPZ4WB1IjhUk
*/

@font-face {
    font-family: Gotham;
    src: url("../fonts/gotham.TTF");
}

@font-face {
    font-family: GothamLight;
    src: url("../fonts/gothamLight.TTF");
}

@font-face {
    font-family: GothamMedium;
    src: url("../fonts/gothamMedium.ttf");
}

@font-face {
    font-family: GothamXlight;
    src: url("../fonts/gothamXlight.ttf");
}

body {
    margin: 0;
    font-family: 'GothamMedium';
    overflow-x: hidden;
}

#nav-row {
    z-index: 10;
    width: 100%;
    position: fixed;
    transform: translateY(-100%);
    transition: 0.5s ease;
}

#nav-row.shown {
    transform: translateY(0%);
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    background-color: rgba(51,51,51,0.95);
    overflow-x: hidden;
    padding-top: 60px;
    transition: 0.5s;
    text-align: center;
}

.sidenav a {
    padding: 8px 8px 8px 8px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.sidenav a:hover, .offcanvas a:focus {
    color: #f1f1f1;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

.top-bar {
    height: 72px;
    width: 100%;
    justify-content: space-between;
    padding-left: 12px;
    padding-right: 12px;
    z-index: 70;
    transition: 0.5s ease;
}

#menu-btn {
  visibility: hidden;
}

.top-bar.nickyblue {
    background-color: #fff;
    color: #fff;
}

.top-bar.nickyblue span.t {
    opacity: 1;
}

.top-bar.nickyblue a {
    color: #fff;
}

.top-bar.nickygrey {
    background-color: #fff;
    color: #fff;
}

.top-bar.nickygrey span.t {
    opacity: 0;
}

#mySidenav iron-icon {
    height: 56px;
    width: 56px;
}

.contain {
    max-width: 1100px;
    margin: 0 auto;
}

#main {
}

.page-about {
    background-color: #f6f6f6;
}

.footer {
    background-color: #f6f6f6;
    /*box-shadow: 0px -1px 5px 2px rgba(0,0,0,0.42);*/
}

.footer-icon {
    height: 300px;
}

.footer-icon img {
    height: 100%;
    width: auto;
}

.footer-copyright {
    display: flex;
    align-items: center;
    height: 64px;
    background-color: rgba(51,51,51,0.08);
}

.footer-info {
    height: 36px;
}

.extra-contain {
    max-width: 300px;
    margin: 0 auto;
    padding-bottom: 16px;
}

.row {
    margin-bottom: 0px;
}

#menuIcon {
    height: 72px;
    width: 72px;
}

#tabA {
    margin-left: 12px;
}

#tob-bar-tabs {
    width: 100%;
    height: 80px;
    background-color: #fff;
    overflow-x: hidden;
    overflow-y: hidden;
}

#top-bar-tabs::-webkit-scrollbar {
  background: transparent;
  width: 8px;
}

#top-bar-tabs::-webkit-scrollbar-thumb {
  background: #bdbdbd;
}

nav {
    background-color: #fff;
    box-shadow: none;
}

.md-nav-bar {
    border-style: none;
}

.md-button.md-accent {
}

#injectedView {
}

.page-services, .page-accuracy, .page-smb, .page-testimonials, .page-contact {
  padding-top: 96px;
}

#mobile-cta-row {
  height: 56px;
  width: 100%;
  background: #fff;
}

.font-reg {font-family: 'Gotham';}
.font-med {font-family: 'GothamMedium';}
.font-light {font-family: 'GothamLight';}
.font-xlight {font-family: 'GothamXlight';}

.ang-gray {background: #f5f5f5;}
.ang-green {background: #b9f6ca;}
.ang-yellow {background: #ffff8d;}
.ang-blue {background: #84ffff;}
.ang-darkBlue {background: #009688;}
.ang-deepBlue {background: #448aff;}
.ang-purple {background: #b388ff;}
.ang-lightPurple {background: #8c9eff;}
.ang-red {background: #ff8a80;}
.ang-pink {background: #ff80ab;}

@keyframes rotateFall {
    0%      { transform: rotateZ(0deg); }
    20%     { transform: rotateZ(10deg); animation-timing-function: ease-out; }
    40%     { transform: rotateZ(17deg); }
    60%     { transform: rotateZ(16deg); }
    100%    { transform: translateY(100%) rotateZ(17deg); }
}

.ng-enter {
    animation: fadeIn 0.5s both ease-in; z-index: 8888;
}

.ng-leave {
    animation: fadeOut 0.5s both ease-in; z-index: 9999;
}

#mobile-cta-row {
  display: none;
}

.md-button.md-raised {
    background-color: #3BC9FF;
    color: #fff;
    font-family: 'GothamLight';
}

.md-button.md-raised:hover {
  background-color: #3BC9FF;
  color: #000;
}

@media screen and (max-width: 600px) {
    #analysisBtn {
        display: none;
    }

    #tob-bar-tabs {
      display: none;
    }

    #top-bar-cta {
      width: 52px;
    }

    #top-bar-cta-btn {
      display: none;
    }

    #mobile-cta-row {
      display: flex;
    }

    #menu-btn {
      visibility: visible;
    }
}

@media screen and (max-width: 1200px) {
  #tob-bar-tabs {
    overflow: scroll;
  }
}

#legalChat.chat-layout-default .chat-header {
  background-color: #3BC9FF;
}

</style>
