  #topBar {
    display: block;
    position: relative;
    width: 100%;
    height: 90px;
    z-index: 900
  }

  #topBar::before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #fff;
    opacity: .05;
    content: ""
  }

  #topBar .centerMenu,
  #topBar img.logo {
    float: left;
    position: relative;
    display: block
  }

  #topBar img.logo {
    width: 130px;
    max-width: 130px;
    margin-top: 35px;
    -webkit-transition: all .1s ease-in-out;
    -o-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
    will-change: opacity;
    vertical-align: top
  }

  #topBar img.logo:hover {
    opacity: .8
  }

  #topBar .centerMenu {
    margin: 0;
    margin-left: 30px
  }

  #topBar .centerMenu li {
    float: left;
    position: relative;
    display: block
  }

  #topBar .centerMenu li a {
    color: rgba(255, 255, 255, .7);
    font-size: 14px;
    font-weight: 600;
    padding: 0 30px;
    line-height: 90px;
    height: 90px;
    opacity: .7;
    color: #fff;
    display: block;
    will-change: opacity
  }

  #topBar .centerMenu li a::before {
    content: "";
    opacity: 0;
    width: 100%;
    height: 1px;
    background: var(--orange);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all .2s ease-in-out
  }

  #topBar .centerMenu li a.active,
  #topBar .centerMenu li a:hover {
    opacity: 1
  }

  #topBar .centerMenu li a:hover::before {
    opacity: .5
  }

  #topBar .centerMenu li a.active::before {
    opacity: .7
  }

  #topBar .unloggedUserButton {
    position: absolute;
    top: 25px;
    right: 0;
    font-size: 0;
    width: 150px;
    height: 40px;
    text-align: center;
    padding-left: 26px;
    color: #fff;
    font-size: 12px;
    line-height: 40px;
    font-weight: 800;
    transition: all .2s ease-in-out;
    border-radius: 20px;
    cursor: pointer
  }

  #topBar .unloggedUserButton svg {
    width: 20px;
    height: 20px;
    display: block;
    position: absolute;
    top: 10px;
    left: 12px;
    transition: all .2s ease-in-out
  }

  #topBar .unloggedUserButton svg path {
    fill: #fff;
    transition: all .2s ease-in-out
  }

  #topBar .unloggedUserButton:hover {
    background: #fff;
    color: var(--darkbg)
  }

  #topBar .unloggedUserButton:hover path {
    fill: var(--darkbg)
  }

  #topBar .searchBarButton {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 25px;
    right: 170px;
    cursor: pointer;
    transition: all .2s ease-in-out
  }

  #topBar .searchBarButton.log {
    right: 120px
  }

  #topBar .searchBarButton svg {
    width: 20px;
    height: 20px;
    margin: 10px auto;
    display: block
  }

  #topBar .searchBarButton svg path {
    fill: #FFF
  }

  #topBar .searchBarButton:hover svg path {
    fill: var(--lorange)
  }

  #topBar .userProfile {
    position: absolute;
    top: 15px;
    right: 0;
    height: 60px;
    font-size: 0;
    width: auto;
    z-index: 200
  }

  #topBar .userProfile .user {
    vertical-align: top;
    position: relative;
    display: inline-block;
    width: 40px;
    height: 60px
  }

  #topBar .userProfile .user .image {
    position: relative;
    width: 40px;
    height: 40px;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, .2);
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, .2);
    border-radius: 15px;
    background: rgba(0, 0, 0, .5);
    background-size: cover;
    background-position: center center;
    cursor: pointer;
    margin-top: 10px;
    -webkit-transition: all .1s ease-in-out;
    -o-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out
  }

  #topBar .userProfile .user .image:hover {
    box-shadow: 0 0 15px 6px rgba(191, 152, 102, .1)
  }

  #topBar .userProfile .notification {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 24px;
    vertical-align: top;
    margin-top: 18px;
    margin-right: 30px
  }

  #topBar .userProfile .notification .icon {
    display: block;
    position: relative;
    width: 24px;
    height: 24px;
    opacity: .7;
    cursor: pointer;
    -webkit-transition: all .1s ease-in-out;
    -o-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out
  }

  #topBar .userProfile .notification .icon.shake {
    -webkit-animation: shake .82s cubic-bezier(.36, .07, .19, .97) both infinite;
    animation: shake .82s cubic-bezier(.36, .07, .19, .97) both infinite;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
  }

  #topBar .userProfile .notification .icon.shake {
    opacity: 1
  }

  #topBar .userProfile .notification .icon:hover {
    -webkit-animation: none;
    animation: none;
    opacity: 1
  }

  #topBar .userProfile .notification .icon svg path {
    fill: #FFF
  }

  #topBar .userProfile .notification .icon.shake svg path {
    fill: var(--orange)
  }

  @-webkit-keyframes shake {

    10%,
    90% {
      -webkit-transform: translate3d(-.5px, 0, 0);
      transform: translate3d(-.5px, 0, 0)
    }

    20%,
    80% {
      -webkit-transform: translate3d(1px, 0, 0);
      transform: translate3d(1px, 0, 0)
    }

    30%,
    50%,
    70% {
      -webkit-transform: translate3d(-2px, 0, 0);
      transform: translate3d(-2px, 0, 0)
    }

    40%,
    60% {
      -webkit-transform: translate3d(2px, 0, 0);
      transform: translate3d(2px, 0, 0)
    }
  }

  @keyframes shake {

    10%,
    90% {
      -webkit-transform: translate3d(-.5px, 0, 0);
      transform: translate3d(-.5px, 0, 0)
    }

    20%,
    80% {
      -webkit-transform: translate3d(1px, 0, 0);
      transform: translate3d(1px, 0, 0)
    }

    30%,
    50%,
    70% {
      -webkit-transform: translate3d(-2px, 0, 0);
      transform: translate3d(-2px, 0, 0)
    }

    40%,
    60% {
      -webkit-transform: translate3d(2px, 0, 0);
      transform: translate3d(2px, 0, 0)
    }
  }

  #topBar .userProfile .notificationList {
    display: block;
    position: absolute;
    top: 100px;
    right: -23px;
    width: 240px;
    height: auto;
    background: #1b1824;
    border-radius: 10px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .1s ease-in-out;
    -o-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
    will-change: opacity, top
  }

  #topBar .userProfile .notificationList.active {
    top: 55px;
    opacity: 1;
    visibility: visible
  }

  #topBar .userProfile .notificationList::before {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 10px solid #1b1824;
    position: absolute;
    top: -10px;
    right: 27px;
    content: ""
  }

  #topBar .userProfile .notificationList .item {
    display: block;
    position: relative;
    width: 100%;
    height: 80px
  }

  #topBar .userProfile .notificationList .item:first-child {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px
  }

  #topBar .userProfile .notificationList .item:last-child {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px
  }

  #topBar .userProfile .notificationList .item:hover {
    background: #252131
  }

  #topBar .userProfile .notificationList .item .image {
    position: absolute;
    top: 10px;
    left: 10px;
    opacity: .7;
    width: 40px;
    height: 60px;
    border-radius: 5px;
    background-size: cover;
    background-position: center center
  }

  #topBar .userProfile .notificationList .item:hover .image {
    opacity: 1
  }

  #topBar .userProfile .notificationList .item .serie {
    display: block;
    position: relative;
    padding-left: 65px;
    padding-top: 12px
  }

  #topBar .userProfile .notificationList .item .serie .title {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap
  }

  #topBar .userProfile .notificationList .item .serie .episode,
  #topBar .userProfile .notificationList .item .serie .season,
  #topBar .userProfile .notificationList .item .serie .title {
    display: block;
    font-size: 16px;
    color: #fff;
    opacity: .8;
    font-family: var(--geoit)
  }

  #topBar .userProfile .notificationList .item .serie .episode,
  #topBar .userProfile .notificationList .item .serie .season {
    font-size: 12px;
    opacity: .5;
    margin-top: -3px;
    font-family: var(--geolite)
  }

  #topBar .userProfile .notificationList .none {
    font-size: 14px;
    font-family: var(--geoit);
    text-align: center;
    line-height: 70px;
    width: 100%;
    display: block;
    color: #fff
  }

  #topBar .openTopBar {
    position: absolute;
    width: 30px;
    height: 24px;
    top: 32px;
    transform: scale(.8);
    left: 20px;
    z-index: 600;
    cursor: pointer;
    -webkit-transition: all .1s ease-in-out;
    -o-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
    display: none
  }

  #topBar .openTopBar .bar {
    position: absolute;
    width: 30px;
    height: 4px;
    left: 0;
    background: #fff;
    border-radius: 2px;
    -webkit-transition: all .1s ease-in-out;
    -o-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out
  }

  #topBar .openTopBar:hover .bar {
    -webkit-box-shadow: 0 0 15px 0 #c552ff;
    box-shadow: 0 0 15px 0 #c552ff
  }

  #topBar .openTopBar .bar:nth-child(1) {
    top: 0
  }

  #topBar .openTopBar .bar:nth-child(2) {
    top: 10px
  }

  #topBar .openTopBar .bar:nth-child(3) {
    top: 20px
  }

  #topBar .openTopBar.active .bar:nth-child(1) {
    top: 10px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
  }

  #topBar .openTopBar.active .bar:nth-child(2) {
    opacity: 0
  }

  #topBar .openTopBar.active .bar:nth-child(3) {
    top: 10px;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg)
  }

  @media only screen and (max-width:1440px) {

    #topBar .notification .menu,
    #topBar .userProfile .menu {
      right: 0
    }

    #topBar .userProfile .menu::before {
      right: 11px
    }
  }

  @media only screen and (max-width:980px) {
    #topBar {
      margin-top: 0
    }

    #topBar .openTopBar {
      display: block
    }

    #topBar img.logo {
      left: calc(50% - 90px);
      z-index: 400
    }

    #topBar .centerMenu {
      position: fixed;
      top: 100%;
      left: 0;
      width: 100%;
      height: calc(100% - 80px);
      background: rgba(2, 2, 2, .93);
      z-index: 500;
      overflow-x: hidden;
      overflow-y: auto;
      -webkit-transition: all .1s ease-in-out;
      -o-transition: all .1s ease-in-out;
      transition: all .1s ease-in-out;
      opacity: 0;
      visibility: hidden;
      margin-left: 0 !important;
      padding: 0
    }

    #topBar .centerMenu.active {
      top: 80px;
      opacity: 1;
      visibility: visible
    }

    #topBar .centerMenu li {
      display: block;
      width: 100%;
      text-align: center;
      margin: 0;
      padding: 20px;
      line-height: initial
    }

    #topBar .centerMenu li a {
      font-size: 26px;
      opacity: .8
    }
  }

  @media only screen and (max-width:640px) {
    #topBar img.logo {
      left: 100px
    }
  }

  @media only screen and (max-width:480px) {
    #topBar .userProfile .notification {
      margin-right: 15px
    }

    #topBar .searchBarButton {
      right: 60px !important
    }

    #topBar .searchBarButton.log {
      right: 90px !important
    }

    #topBar .unloggedUserButton {
      right: 10px !important;
      width: 40px;
      font-size: 0px
    }

    #topBar img.logo {
      left: 60px
    }

    #topBar .openTopBar {
      left: 10px
    }

    #topBar .unloggedUserButton svg {
      left: 10px
    }
  }

/* Torna visível apenas em mobile */
@media (min-width: 768px) {
  .centerMenu {
    display: flex !important;
    position: static;
    flex-direction: row;
    background: transparent;
  }

  .openTopBar {
    display: none;
  }
}

