:root {
    --main-color: orangered;
    --secondary-color :burlywood;
  }
@media (max-width:750px){
    .header{
        width: calc(100vw - 10px);
        padding: 5px;
        height: 50px;
    }
    .logo{
        width: 300px;
    }
    .logo img{
        width: 50px;
        margin-right: 5px;
    }
    .logo span{
        font-size: 20px !important;
    }
    .right-header{
        display: none !important;
    }
    .right-header-mobile{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100px;
    justify-content: space-between;
    margin-right: 10px;
    }
    .right-header-mobile i{
        color:white;
        
        
    }

#search{
    display: none;
}
#search-mobile{
    position: absolute;
    top:60px;
    left:0;
    display: none;
    width: 100%;
}
#search-mobile input[type="text"]{
    width: 85%;
    padding: 7px;
    border: solid 1px var(--main-color);
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;

}
#search-mobile form{
    width: 100%;
    
}
#search-mobile i{
    background-color: transparent;
    font-size: 20px;
    border: none !important;
    color:var(--main-color);
    margin-left: 10px;

}
#search-mobile button{
    background-color: transparent;
    border: none;
    
}

#theme{
    width: 300px;
    left: calc(50vw - 170px);
}
.error-message{
    margin-top: -10px;
    font-size: 10px;
    }

.nav{
    display: none !important;
  }
  .sidebar{
    display: none !important;
 }

}