/********************************/
/*  CONTAINER 
/********************************/

#content {
  margin-top: 8rem;
}

.page-header {
  background-color: var(--color-orange-theme);
  display: flex;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 7rem;
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.2);
  z-index: 999;
}

.top-bar {
  width: 95%;
  margin: 0.5rem auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
}

a {
  text-decoration: none;
}

/********************************/
/*  LOGO 
/********************************/

.top-bar #logo span {
  font-family: 'Bungee';
  font-size: 2.6rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
}

.top-bar #logo #header__text--green {
  color: var(--color-green-theme);
}

.top-bar #logo #header__text--blue {
  color: var(--color-blue-theme);
}

/********************************/
/*  CONTAINER 
/********************************/
.top-bar #search {
  position: relative;
}
.top-bar #search #search__input {
  width: 40rem;
  height: 4rem;
  background: #fefefe;
  border: 2px solid var(--color-blue-theme);
  box-sizing: border-box;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  font-size: 2rem;
  padding: 0 1.5rem;
  color: var(--color-orange-theme);
  outline: 0px;
  transition: all 0.2s ease-in-out;
}

.top-bar #search #search__input:focus {
  border: 2px solid var(--color-green-theme);
  /* content: '';

  width: 46.8rem;
  height: 1px;
  background: red;

  position: absolute;
  left: 1.6rem;
  right: 1.6rem;
  bottom: 0; */
}

.top-bar #search::-webkit-input-placeholder {
  color: #9e9e9e;
}

.top-bar #search img {
  position: absolute;
  right: 1.5rem;
  top: 0.75rem;
  height: 2.5rem;
}

/********************************/
/*  PROFILE 
/********************************/
.top-bar #perfil {
  display: flex;
  align-items: center;
}
.top-bar #perfil #header__image {
  box-sizing: border-box;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  display: inline-block;
  height: 5.2rem;
  width: 5.2rem;
  background: url('https://images.unsplash.com/photo-1466112928291-0903b80a9466?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=873&q=80')
    no-repeat center center;
  background-size: cover;
  border-radius: 5rem;
  border: 1px solid var(--color-blue-theme);
  margin: 0;
}

.top-bar #perfil span {
  font-size: 2.4rem;
  margin-right: 1.5rem;
  color: var(--color-white-theme);
}

@media (max-width: 900px) {
  .top-bar {
    border: 1px solid red;
    width: 95%;
    margin: 0.5rem auto;
  }

  .top-bar #search #search__input {
    font-size: 1.75rem;
  }
  #perfil span {
    opacity: 0;
    visibility: hidden;
    display: none;
  }

  .top-bar #search #search__input {
    width: 25rem;
  }

  .top-bar #logo span {
    font-size: 2rem;
  }
}
