/** ui styles **/
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  min-width: 1140px;
  background-color: #373f47;
  border: none;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
}
.navbar button {
  width: 50px;
  height: 50px;
  margin: 0;
  display: block;
  background-position: center;
  border: none;
  background-repeat: no-repeat;
}
.navbar .nav-leftside {
  float: left;
  height: 50px;
}
.navbar .nav-leftside button.home {
  float: left;
  background-image: url("/images/navbar/home.png");
  background-color: #FFCC33;
}
.navbar .nav-leftside button.home:hover {
  background-color: #FFF259;
}
.navbar .nav-leftside button.home:active {
  background-color: #B38000;
}
.navbar .nav-leftside button.start-search {
  width: 28px;
  height: 28px;
  position: relative;
  margin-left: 19px;
  margin-top: 12px;
  line-height: 50px;
  float: left;
  cursor: pointer;
  outline: none;
  background: url("/images/navbar/search.png") 0 0;
}
.navbar .nav-leftside button.start-search:hover,
.navbar .nav-leftside button.start-search:active {
  background: url("/images/navbar/search.png") 28px 0;
}
.navbar .nav-leftside .search {
  position: relative;
  float: left;
  margin-left: 20px;
  z-index: 2;
}
.navbar .nav-leftside .search input {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 600px;
  height: 44px;
  border: 0;
  outline: none;
  font-size: 18px;
  text-align: left;
  background-color: #373F47;
  color: #ffffff;
  width: -webkit-calc(100vw - 568px);
  width: -moz-calc(100vw - 568px);
  width: calc(100vw - 568px);
}
.navbar .nav-leftside .search .suggestions {
  position: absolute;
  top: 50px;
  left: -55px;
  width: 100vw;
  min-width: 200px;
  min-height: 50px;
  max-height: 400px;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 1;
  background-color: #373f47;
}
.navbar .nav-leftside .search .suggestions .suggestion {
  cursor: pointer;
  width: 100vw;
  height: 50px;
  max-height: 50px;
  line-height: 50px;
  padding-left: 55px;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 18px;
  text-align: left;
  color: #ffffff;
  background-color: #373f47;
}
.navbar .nav-leftside .search .suggestions .suggestion:hover {
  background-color: #484D53;
}
.navbar .nav-leftside .search .suggestions .no-suggestions {
  position: absolute;
  top: 0;
  left: 0;
  color: white;
  z-index: -1;
}
.navbar .nav-leftside.searching button.start-search {
  width: 24px;
  height: 24px;
  background: url("/images/navbar/header_close_large.png") 0 0;
}
.navbar .nav-leftside.searching button.start-search:hover,
.navbar .nav-leftside.searching button.start-search:active {
  background: url("/images/navbar/header_close_large.png") 24px 0;
}
.navbar .nav-leftside.searching .search input {
  width: -webkit-calc(100vw - 50px);
  width: -moz-calc(100vw - 50px);
  width: calc(100vw - 50px);
}
.navbar .nav-rightside {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  width: 600px;
  height: 50px;
  float: right;
  text-align: right;
}
.navbar .nav-rightside button.account {
  position: relative;
  display: inline-block;
  width: 53px;
  height: 50px;
  margin-right: 15px;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  z-index: 1;
}
.navbar .nav-rightside button.account .account-letter {
  margin: 10px 32px 10px 0;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  color: white;
  background-color: blue;
  border-radius: 50%;
}
.navbar .nav-rightside button.account .down-arrow-head {
  position: absolute;
  left: 39px;
  top: 10px;
  font-size: 10px;
  transform: scale(1, 0.6);
  color: #B5BCC6;
  background-color: transparent;
}
.navbar .nav-rightside button.account .account-menu {
  position: absolute;
  right: 5px;
  top: 50px;
  z-index: 3;
  width: 140px;
  height: 60px;
  background-color: #ffffff;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.4);
}
.navbar .nav-rightside button.account .account-menu .menu-item {
  width: 130px;
  height: 21px;
  font-size: 12px;
  color: #373f47;
  cursor: pointer;
  text-align: left;
}
.navbar .nav-rightside button.account .account-menu .menu-item:hover {
  background-color: #e5efff;
}
.navbar .nav-rightside button.account .account-menu .account-link {
  padding: 9px 0 0 10px;
}
.navbar .nav-rightside button.account .account-menu .logout-link {
  padding: 9px 0 0 10px;
}
.navbar .nav-rightside button.button-secondary {
  display: inline-block;
  height: 30px;
  width: 80px;
}
.navbar .nav-rightside button.button-primary {
  display: inline-block;
  height: 30px;
  width: 121px;
  margin-right: 5px;
}
.navbar .nav-rightside #new-document {
  width: 142px;
}
.navbar .nav-rightside .toggle-comments {
  position: relative;
  display: inline-block;
  margin: 0 8px 0 10px;
}
.navbar .nav-rightside .toggle-comments button {
  width: 34px;
  height: 31px;
  outline: none;
  border: none;
  cursor: pointer;
  background: url("/images/navbar/comment.png") 0 0;
}
.navbar .nav-rightside .toggle-comments .unread {
  position: absolute;
  right: -4px;
  top: 1px;
  width: 18px;
  height: 18px;
  line-height: 18px;
  background-color: #d0021b;
  border-radius: 50%;
  font-family: Roboto;
  font-size: 10px;
  font-weight: bold;
  text-align: center;
  color: #ffffff;
}
.navbar .nav-rightside .toggle-comments:hover button,
.navbar .nav-rightside .toggle-comments.active button {
  background: url("/images/navbar/comment.png") 34px 0;
}
.navbar .nav-rightside .toggle-search {
  position: relative;
  display: inline-block;
  margin: 0 19px 0 3px;
}
.navbar .nav-rightside .toggle-search button {
  width: 28px;
  height: 28px;
  outline: none;
  border: none;
  cursor: pointer;
  background-color: transparent;
  background-image: url("/images/navbar/search.png");
  background-repeat: no-repeat;
  background-position: 0 center;
}
.navbar .nav-rightside .toggle-search button.search-active,
.navbar .nav-rightside .toggle-search button:hover {
  background-position: -28px center;
}
.navbar .nav-rightside .navbar-section-container {
  position: relative;
  width: 600px;
  height: 50px;
  overflow: hidden;
  pointer-events: none;
}
.navbar .nav-rightside .navbar-section-container .navbar-section {
  pointer-events: all;
  z-index: 2;
}
.navbar .nav-rightside .search-navbar {
  position: absolute;
  right: -398px;
  top: 0;
  width: 398px;
  height: 50px;
  background-color: #373F47;
}
.navbar .nav-rightside .search-navbar .search-box {
  position: relative;
  width: 340px;
  height: 24px;
  float: left;
  margin-top: 16px;
  border-bottom: 1px solid white;
  /* animation: searchinputanimation .3s */
  overflow-x: hidden;
}
.navbar .nav-rightside .search-navbar .search-box input {
  width: 305px;
  padding: 0 25px 0 12px;
  background: none;
  border: none;
  outline: none;
  font-family: Roboto;
  font-size: 14px;
  font-weight: 300;
  color: #d6d6d6;
}
.navbar .nav-rightside .search-navbar .search-box ::-webkit-input-placeholder {
  font-family: Roboto;
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
  color: #ffffff;
}
.navbar .nav-rightside .search-navbar .search-box ::-moz-placeholder {
  font-family: Roboto;
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
  color: #ffffff;
}
.navbar .nav-rightside .search-navbar .search-box .clear-button {
  position: absolute;
  width: 12px;
  height: 12px;
  display: none;
  right: 3px;
  top: 4px;
  padding: 0;
  border: none;
  outline: none;
  cursor: pointer;
  background: none;
  background-image: url("/images/navbar/header-close.png");
  background-repeat: no-repeat;
  background-position: 0px center;
  background-size: 24px 12px;
}
.navbar .nav-rightside .search-navbar .search-box .clear-button:hover {
  background-position: -12px center;
}
.navbar .nav-rightside .search-navbar .search-box.filled .clear-button {
  display: block;
}
.navbar .nav-rightside .search-navbar .close {
  display: inline-block;
  margin-right: 13px;
  margin-left: 5px;
  line-height: 57px;
  font-family: Roboto;
  color: lightgrey;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 10px;
}
.navbar .nav-rightside .search-navbar .close:hover {
  color: white;
}
.navbar .nav-rightside .navbar-section.open {
  animation: slide-in-navbar 0.5s forwards;
  animation-timing-function: cubic-bezier(0.2, 0.2, 0.2, 1);
}
.navbar .nav-rightside .navbar-section.close {
  animation: slide-out-navbar 0.5s forwards;
  animation-timing-function: cubic-bezier(0.2, 0.2, 0.2, 1);
}

.navbar-editor {
  width: 100%;
  position: absolute;
  top: 30px;
  left: 0;
}
.navbar-editor .document-title {
  float: left;
  margin-left: 9px;
  line-height: 50px;
  padding-top: 1px;
  font-size: 18px;
  color: white;
}
.navbar-editor .document-title .title {
  margin-left: 10px;
  padding-top: 5px;
}
.navbar-editor .document-title input {
  margin-left: 0;
  height: 26px;
  width: 155px;
  font-size: 18px;
  color: #8f96a0;
}
.navbar-editor .nav-rightside .user-navbar {
  position: absolute;
  right: 0;
  top: 0;
  width: 600px;
  height: 50px;
  opacity: 1;
  background-color: #373F47;
}
.navbar-editor .nav-rightside .user-navbar button.account {
  margin-right: 11px;
  padding-left: 1px;
}
.navbar-editor .nav-rightside .user-navbar .active-users {
  display: inline-block;
}
.navbar-editor .nav-rightside .user-navbar .active-users div {
  display: inline-block;
  margin: 10px 0 10px 5px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  color: white;
  border-radius: 50%;
}
.navbar-editor .nav-rightside .user-navbar .active-users.stacked {
  float: left;
  padding-top: 1px;
  padding-right: 20px;
}
.navbar-editor .nav-rightside .user-navbar .active-users.stacked div {
  display: block;
  float: right;
  margin-left: -22px;
}
.navbar-editor .nav-rightside .history-navbar {
  height: 30px;
  padding: 10px 0;
}
.navbar-editor .nav-rightside .history-navbar .button-restore-version {
  width: 168px !important;
  margin-right: 20px !important;
}

/* Safari 4.0 - 8.0 */
@-webkit-keyframes slide-out-navbar {
  from {
    right: 0;
  }
  to {
    right: -398px;
  }
}
@keyframes slide-out-navbar {
  from {
    right: 0;
  }
  to {
    right: -398px;
  }
}
@-webkit-keyframes slide-in-navbar {
  from {
    right: -398px;
  }
  to {
    right: 0;
  }
}
@keyframes slide-in-navbar {
  from {
    right: -398px;
  }
  to {
    right: 0;
  }
}
/* Remove */
@-webkit-keyframes searchinputanimation {
  from {
    width: 0;
  }
  to {
    width: 340px;
  }
}
@keyframes searchinputanimation {
  from {
    width: 0;
  }
  to {
    width: 340px;
  }
}
/** ui styles **/
header#navigation {
  z-index: 2;
  background-color: #373f47;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
}
header#navigation::after {
  content: "";
  width: 100%;
  height: 5px;
  position: absolute;
  left: 0;
  bottom: -5px;
}
@media (max-width: 960px) {
  header#navigation::after {
    background-color: #ffcc33;
  }
}
@media (min-width: 960px) {
  header#navigation::after {
    background-image: linear-gradient(to right, #ffcc33, #ffcc33 70%, rgba(255, 204, 51, 0));
  }
}
header#navigation nav::after {
  content: "";
  height: 100%;
  display: block;
  clear: both;
}
header#navigation nav .logo {
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  float: left;
}
header#navigation nav .logo a {
  font-size: 36px;
  padding: 0 20px;
}
header#navigation nav .logo.logo-full .logo-img {
  width: 193px;
  height: 30px;
  background: url("/images/marketing/grafo_logo.png") 0 30px;
}
header#navigation nav .logo.logo-full:hover .logo-img {
  background: url("/images/marketing/grafo_logo.png") 0 0;
}
@media (max-width: 850px) {
  header#navigation nav .logo.logo-full .logo-img {
    width: 33px;
    height: 30px;
    background: url("/images/marketing/grafo_wordmark_logo.svg") 0 30px;
  }
  header#navigation nav .logo.logo-full:hover .logo-img {
    background: url("/images/marketing/grafo_wordmark_logo.svg") 0 0;
  }
}
header#navigation nav a {
  padding: 0 15px;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  font-weight: 300;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  header#navigation nav a {
    font-size: 24px;
  }
}
header#navigation nav #menu-btn {
  width: 24px;
  float: right;
  margin-right: 15px;
  transition: all 200ms;
}
header#navigation nav #menu-btn:hover *, header#navigation nav #menu-btn.active * {
  fill: #ffcc33;
  cursor: pointer;
}
header#navigation nav #menu-btn * {
  fill: #fff;
}
@media (min-width: 768px) {
  header#navigation nav #menu-btn {
    display: none;
  }
}
header#navigation nav ul {
  width: 320px;
  height: 100vh;
  position: fixed;
  top: 3.375rem;
  right: -100%;
  float: right;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #000;
  opacity: 0;
}
header#navigation nav ul.active {
  opacity: 1;
  right: 0;
}
header#navigation nav ul.active li {
  opacity: 1;
  transform: translateY(0);
}
@media (min-width: 768px) {
  header#navigation nav ul {
    width: auto;
    height: 50px;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    position: relative;
    top: 0;
    right: 0;
    opacity: 1;
    background-color: transparent;
  }
}
@media (max-width: 768px) {
  header#navigation nav ul {
    transition: all 200ms;
  }
}
header#navigation nav ul li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 768px) {
  header#navigation nav ul li {
    transition: all 600ms 200ms;
    opacity: 0;
    transform: translateY(-50%);
  }
}
@media (max-width: 768px) {
  header#navigation nav ul li.active {
    background-color: #373f47;
    color: #ffcc33;
  }
}
header#navigation nav ul li a {
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  height: 3.375rem;
  transition: all 200ms;
}
@media (min-width: 768px) {
  header#navigation nav ul li a {
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
header#navigation nav ul li a:hover, header#navigation nav ul li a.active {
  cursor: pointer;
  color: #ffcc33;
}
@media (max-width: 768px) {
  header#navigation nav ul li a:hover, header#navigation nav ul li a.active {
    background-color: #373f47;
    color: #ffcc33;
  }
}
@media (min-width: 768px) {
  header#navigation nav ul li.get-started a {
    height: 50px;
    padding: 0 15px;
    background-color: #267fff;
    text-transform: uppercase;
  }
}
@media (min-width: 768px) and (min-width: 1186px) {
  header#navigation nav ul li.get-started a {
    width: 155px;
  }
}
@media (min-width: 768px) {
  header#navigation nav ul li.get-started a:hover {
    color: #fff;
    background-color: #0059d9;
  }
}
@media (min-width: 768px) {
  header#navigation nav ul li.sign-in a {
    height: 50px;
    color: #373f47;
    padding: 0rem 1rem;
    text-transform: uppercase;
    background-color: #ffcc33;
  }
  header#navigation nav ul li.sign-in a:hover {
    color: #fff;
    background-color: #e6ac00;
  }
}

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