 .header{
   display: flex;
   background-color: var(--primary-color);
   position: fixed;
   top: 10px;
   right: 10px;
   left: 10px;
   height: 84px;
   align-items: center;
   padding: 0px 8px;
   border-radius: 8px;
   box-shadow: 0 0 5px var(--box-shadow-main);
   gap: 10px;
   z-index: 1000;
   transition: background-color 0.15s;
 }
 .header-back{
   z-index: 999;
   position: fixed;
   top: 0;
   right: 0;
   left: 0;
   height: 84px;
   background-color: var(--tertiary-color);
   opacity: 0.75;
   transition: background-color 0.15s;
 }
 .left-section{
   display: flex;
   flex-direction: row;
   width: 300px;
   height: 100%;
   display: flex;
   gap: 50px;
   align-items: center;
 }
 .menu-icon{
   display: flex;
   margin-left: 16px;
   height: 40px;
   width: 40px;
   border: 0.5px solid transparent;
   border-radius: 6px;
   padding: 7px 8px;
   transition: all 0.2s;
 }
 .menu-icon:hover{
   border: 0.5px solid var(--secondary-color);
   transform: scale(1.08);
   box-shadow: 3px 3px 4px var(--box-shadow-hover);
 }
 .menu-icon:active{
   transform: scale(1);
   box-shadow: none;
 }
 
 .menu-svg{
   color: var(--secondary-color);
 }

 .site-logo{
   align-items: center;
   display: flex;
   height: 100%;
 }
 .logo img{
   height: 50px;
 }
 .middle-section{
   flex: 1;
   display: flex;
   justify-content: center;
   padding-right: 32px;
   padding-left: 20px;
 }
 .search-bar-container {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
 }
 .search-bar{
   width: 85%;
   font-size: 25px;
   padding-left: 30px;
   padding-right:20px;
   font-family: Lato,Arial;
   height:55px;
   border: none;
   background-color: var(--tertiary-color);
   box-shadow:3px 3px 5px var(--box-shadow-main);
   border-bottom-left-radius: 30px;
   border-bottom-right-radius: 30px;
   border-top-left-radius: 30px;
   border-top-right-radius: 30px;
   transition: all  0.2s ease-in-out 0s;
   outline: none;
   opacity: 0.5;
 }
 .search-bar::placeholder{
   color:var(--secondary-color);
   opacity:0.75;
 }
  .search-bar:focus {
    outline: none;
    box-shadow: 3px 3px 5px var(--box-shadow-hover);
    transform: scale(1.06);
    transform: translateX(-6px);
  }
  
  .search-bar:focus + .search-button {
    outline: none;
    box-shadow: 3px 3px 5px var(--box-shadow-hover);
    transform: scale(1.08);
  }
  
 .search-button {
  border: none;
  width: 55px;
  height:55px;
  padding: 9px 0;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--tertiary-color);
  box-shadow:3px 3px 3px var(--box-shadow-main);
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.2s;
  opacity: 0.5;
  -webkit-tap-highlight-color: transparent;
 }
 .search-icon{
   color: var(--secondary-color);
   height:28px;
 }
 .right-section{
   font-size: 18px;
   display: flex;
   width: 360px;
   align-items: center;
   justify-content: space-between;
   gap: 10px;
   padding: 0 15px;
 }
 .right-section .quick-access{
   transition: all 0.2s ease;
   padding: 8px;
   border: 1px solid transparent;
   border-radius: 4px;
   color: transparent;
   background: linear-gradient(to right, #348aff,#0063ec,#0048ab);
   background-clip: text;
 }
 .right-section .quick-access:hover{
   background-color: var(--tertiary-color);
   
   transform: scale(1.06);
 }
 
  .right-section .quick-access:active{
   transform: scale(1);
   box-shadow: none;
 }
 .small-search{
   display:none;
   height:32px;
   width:32px;
   justify-content: center;
   align-items: center;
   background-color: var(--tertiary-color);
   box-shadow:0 0 3px var(--box-shadow-main);
   border-radius: 30px;
   cursor: pointer;
   transition: all 0.2s;
   padding:4px ;
   opacity: 0.5;
 }
 
 .small-search{
    -webkit-tap-highlight-color: transparent;
  }
  .theme-switcher{
    height:40px;
    width:40px;
    display:flex;
    align-items:center;
  }
  .theme-switcher img{
    height: 100%;
    margin-right:24px;
    margin-left:16px;
  }

