.header{
    display: flex;
    position: fixed;
    justify-content: space-between; 
    background-color: black;
    height: 60px;
    top: 0;
    left: 0;
    right: 0;
}

.leftbar{
    flex: 1;
    display: flex;
    align-items: center;
    background-color: black;
}

.head-logo{
    height: 35px;
    transform: rotate(5deg);
    margin: 10px 25px 0px 10px;
}

.home-btn{
    margin-top: 6px;
    margin-right: 10px;
    background-color: #1f1f1f;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    border: none;
    color: white;
}

.search-btn{
 background-color: #1f1f1f;
 border: none;
 color: white;
 height: 50px;
 border-radius: 20px 0px 0px 20px;
 margin-left: 6px;
 transition:background-color 0.3s;
}

.house-icon{
    height: 25px;
}


.search-icon{
    height: 25px;
    opacity: 0.6;
    transition:opacity 0.3s;
}

.browse-icon{
    height: 25px;
    padding-right: 10px;
    opacity: 0.6;
    transition:opacity 0.3s;
    transition:height 0.1s;
}

.search-wrapper{
    flex: 1;
    max-width: 500px;
    min-width: 20px;
    display: flex;
    background-color: #1f1f1f;
    align-items: center;
    border: 2px solid transparent;
    border-radius: 20px;
    height: 50px;
    margin-top: 6px;
    transition:background-color 0.3s;
}

.searchbarpos{
    display: flex;
    flex: 1;
    min-width: 20px;
    position: relative;
}

.searchbar{
    background-color: #1f1f1f;
    border: none;
    height: 50px;
    flex: 1;
    min-width: 20px;
    border: none;
    color: white;
    font-size: 20px;
    transition:background-color 0.3s;
}

.searchbar::placeholder{
    font-size: 16px;
    color: white;
    opacity: 0.6;
}

.searchbar:focus {
  outline: none;
}

.browse-btn{
 background-color: #1f1f1f;
 border: none;
 height: 50px;
 border-radius: 0px 20px 20px 0px;
 transition:background-color 0.3s;
}

.line{
    position: absolute;
    background-color: #727171;
    height: 25px;
    width: 1px;
    right: 10px;
    top: 13px;
}

.search-wrapper:focus-within {
  border: 2px solid white;
}
.search-wrapper:hover{
  background-color: #272727;
}

.search-wrapper:hover .searchbar {
  background-color: #272727;
}

.search-wrapper:hover .search-icon {
  opacity: 1;
}

.search-wrapper:hover .search-btn{
    background-color: #272727;
}

.search-wrapper:hover .browse-btn{
     background-color: #272727;
}

.browse-icon:hover{
    opacity: 1;
    transform: scale(1.07)
    
}

.rightbar{
  position: relative;
  align-items: center;
  display: flex;
}

.pre, .supp, .dow{
    margin: 5px;
    font-weight: 700;
    font-size: 15px;
    opacity: 0.6;
}

.pre, .supp, .dow{
    transition: 0.1s;
}

.pre:hover{
    opacity: 1;
    transform: scale(1.07)
}

.supp:hover{
    opacity: 1;
    transform: scale(1.07)
}

.dow:hover{
    opacity: 1;
    transform: scale(1.07)
}

.line2{
    position: absolute;
    background-color: #ffffff;
    width: 1px;
    height: 25px;
    left: 255px;
}

.installspo{
    display: flex;
    align-items: center;
    margin-left: 40px;
    cursor: pointer;
    transition:transform 0.2s;
}

.download{
    height: 15px;
    margin-right: 5px;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.app{
    font-weight: 500;
    font-size: 15px;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.installspo:hover{
    transform: scale(1.07);
}

.installspo:hover .download{
    opacity: 1;
}

.installspo:hover .app{
    opacity: 1;
}

.account{
    display: flex;
    align-items: center;
    margin-left: 50px;
}

.signup{
    font-weight: 600;
    font-size: 15px;
    opacity: 0.6;
    transition: opacity 0.2s, transform 0.2s;
}

.loginbtn{
    /*background-color: #1ed760;*/
    background-color: white;
    color: rgb(0, 0, 0);
    border: none;
    border-radius: 30px;
    padding: 15px 30px;
    font-weight: 700;
    font-size: 18px;
    margin-left: 10px;
    margin-left: 10px;
    cursor: pointer;
    transition: background-color 0.2s;
}

