
/* ----------------- Root Settings Start ----------------- */
html {
    font-size: 16px;
    scroll-behavior: smooth;
  }
  
:root {
    /* Colors */
    --green: #0B8E36;
    --green-light: #CFFFDF;
    --blue: #0E5E79;
    --blue-light: #D1F4FF;
    --red: #EF0000;
    --red-light: #FFD7CF;
    --bg-gray: rgb(235, 235, 235);
    --gray: #707070;
    --gray-light: #989A9D;
    --black: rgb(26, 26, 26);
    --yellow: #C28D10;
    --yellow-light: #E5AF2E;
    --light-black: #373737;
  
    --primary-color: var(--blue);
    --primary-color-light: var(--blue-light);
    --secondary-color: var(--green);
    --secondary-color-light: var(--green-light);
    
    --primary-text-color: var(--black);
    --secondary-text-color: darkgrey;
    
  
    /* Fontsize big screen*/
    --txt-xs: 0.6rem;
    --txt-s: 0.9rem;
    --txt-r: 1rem;
    --txt-m: 1.2rem;
    --txt-l: 1.5rem;
    --txt-xl: 2rem;
    --txt-xxl: 2.5rem;

    --font-thin: 200;
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extra-bold: 900;
  }
  
.selected{
    background-color: #F2F2F2;
}

.primary-text{
    color: var(--primary-text-color);
}

.secondary-text{
    color: var(--secondary-text-color);
}

  @media screen and (min-width: 1201px){
    html {
      font-size: var(--txt-r);
    }
  }

  @media screen and (max-width: 1200px){
    html {
      font-size: var(--txt-r);
    }
  }

  @media screen and (max-width: 1024px){
    html {
      font-size: var(--txt-r);
    }
  }

  @media screen and (max-width: 768px){
    html {
      font-size: var(--txt-m);
    }
  }

    /* Fontsize small screen */
    @media screen and (max-width: 480px){
      html {
        font-size: var(--txt-m);
      }
    }

  /* ----------------- Root Settings End ----------------- */

  /* ----------------- Scrollbar Start ----------------- */

  /* HTML Main Page Scroll */

  :root{
    --main_scrollbar_width: 12px;
  }
  
  /* Firefox */
  html{
    scrollbar-color: var(--main-col) #F5F5F5;
    scrollbar-width: thin;
  }
  
  .tiny_scroll{
    scrollbar-width: thin;
  }
  
  /* Global ? (Nicht sicher) / Chrome */
  
    html::-webkit-scrollbar-track{
      border: 1px solid var(--main-col);
      background-color: #F5F5F5;
  }
  
  html::-webkit-scrollbar{
      width: var(--main_scrollbar_width);
      background-color: #F5F5F5;
  }
  
  html::-webkit-scrollbar-thumb{
      background-color: var(--main-col);
  }
  
    /* Custom Tiny Scroll*/
  
  .tiny_scroll::-webkit-scrollbar-track{
      -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
      background-color: #F5F5F5;
  }
  
  .tiny_scroll::-webkit-scrollbar
  {
    width: 6px;
    height: 6px;
      background-color: #F5F5F5;
  }
  
  .tiny_scroll::-webkit-scrollbar-thumb
  {
      background-color: var(--primary-color);
  }
  
  /* ----------------- Scrollbar End ----------------- */

  /* ----------------- Header Start ----------------- */

#login-btn{
    background-color: var(--primary-color);
}

#login-btn:hover{
    background-color: var(--primary-color-light);
    color: black;
}

#header-search-btn:hover{
    background-color: var(--primary-color);
}

header{
    margin-top: 20px;
    border-bottom: 1px solid lightgrey;
    margin-bottom: 15px;
}

#search-suggestion-wrapper{
    position: absolute;
    width: 100%;
    z-index: 10;
}

.search-suggestion-container:hover{
    background-color: #F8F8F8;
}

.suggestions-links{
    text-decoration: none;
    position:relative;
}

.search-suggestion-container{
    display:flex;
    flex-wrap: nowrap;
    flex-direction: row;
    width:100%;
    align-items: center;
    padding-top: 5px;
    padding-bottom: 5px;
    height: 50px;
    background-color: white;
}

.search-suggestion-item{
  display: flex;
  align-items: center;
}

.search-suggestion-item-image-container{
    width: 50px;
    align-items: center;
}

.search-suggestion-item-image-container > img{
    height: 50px;
    max-width: 50px;
    margin:auto;
    display:block;
    padding-top:5px;
}

.search-suggestion-item-text{
  margin-left: 10px;
}

.product-header-menu{
  margin-top: 10px;
}

  /* ----------------- Header End ----------------- */

  /* ----------------- Footer Start ----------------- */

footer{
  background-color: #F2F2F2;
  bottom: 0;
}

  /* ----------------- Footer End ----------------- */

@media screen and (max-width: 768px) {

  #footer-col-1{
    display: none;
  }

  #footer-col-2{
    display: none;
  }

  #footer-col-3{
    display: none;
  }

}


@media screen and (max-width: 600px) {

  .header-item-container{
    display:flex;
    flex-wrap: nowrap;
    flex-direction: row;
  }

  .header-item-container > div{
    width: 25%;
  }

  #header-login-button{
    display:none;
  }

}