:root{
  --theme-color: wheat;
  --theme-color-hovered: rgb(197, 173, 129);
  --theme-color-active: rgb(175, 154, 115);
  --text-color: #232528; 
} 
 
 
 /* @font-face {
  font-family: 'Roboto';
  src: url('./../../fonts/Roboto-Regular.eot');
  src: url('./../../fonts/Roboto-Regular.eot?#iefix') format('embedded-opentype'),
  url('./../../fonts/Roboto-Regular.woff2') format('woff2'),
  url('./../../fonts/Roboto-Regular.woff') format('woff');
  font-weight: 500;
  font-style: normal;
} */

  
/* @font-face {
  font-family: 'Futura Md BT';
  src: url('./../../fonts/FuturaBT-Medium.eot');
  src: url('./../../fonts/FuturaBT-Medium.eot?#iefix') format('embedded-opentype'),
      url('./../../fonts/FuturaBT-Medium.woff2') format('woff2'),
      url('./../../fonts/FuturaBT-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
} */

/* @font-face {
  font-family: 'Futura Lt BT';
  src: url('./../../fonts/FuturaBT-Light.eot');
  src: url('./../../fonts/FuturaBT-Light.eot?#iefix') format('embedded-opentype'),
      url('./../../fonts/FuturaBT-Light.woff2') format('woff2'),
      url('./../../fonts/FuturaBT-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
} */
/* 

@font-face {
  font-family: 'Poppins';
  src: url('./../../fonts/Poppins-SemiBold.woff2') format('woff2'),
      url('./../../fonts/Poppins-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
} */

@font-face {
  font-family: 'Calibri';
  src: url('../../fonts/Calibri.woff2') format('woff2'),
      url('../../fonts/Calibri.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}


@font-face {
  font-family: 'Brandon Grotesque Regular';
  font-style: normal;
  font-weight: normal;
  src: local('Brandon Grotesque Regular'), url('../../fonts/Brandon_reg.otf') format('woff');
}



html { 
  -webkit-font-smoothing: antialiased;
} 

 
body{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;  
  align-items: center;
  font-family: 'Calibri';
  margin: 0;
  color: var(--text-color);
}

.disable-scroll{
  position: fixed;
  overflow: hidden !important;
  width: 100%;
  height: 100%;
}

a{
  color: var(--text-color);
}

#user-mail-not-valid{
  text-align: center;
  width: 100%;
  padding: 12px 0;
  background: rgba(255, 193, 86 ,0.39);
}

#user-mail-not-valid a{
  color: black;
  font-weight: bolder;
}

#user-mail-not-valid img{
  width: 15px;
  height: auto;
  margin-right: 5px;
}

.page-content{
  width: 100%;
  max-width: 1200px;
}


header{
  position: relative;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; 
  padding: 15px 0  10px 0;
  border-bottom: 1px solid black; 
  color: white;
}

#mobile-left-panel{
  width: 100%;
  background-color: black; 
  height: 0;
  transition: height 0.2s;
  overflow: hidden;
}

#mobile-left-panel a{
  display: inline-block; 
  width: 100%; 
  height: 40px;
  line-height: 40px;
  font-size: 11pt;
  text-decoration: none;
  padding-left: 15px;
  color: white;
  border-bottom:  1px solid gray;
}
 
#nav-username-button{
  width: 25px;
  height: 25px; 
  background: url(../icons/user.png) center / 18px no-repeat;
}
 

#logout-button{
  display: none;
}


#website-logo-field{
  display: inline-block;
  width: 150px;
  height: 70px;
  background: url(../../the-slash-new.png) center / contain no-repeat;
} 

.slash img{
	width: 40px;
	height: auto;
	  
}

.custom-button{
  padding: 8px 10px;
  background: black;
  color: white;
  border: none;
  outline: none;
  text-decoration: none;
  cursor: default; 
}
 
.custom-button:hover{
  background: rgb(48, 48, 48);
}

.custom-button:active{
  background: rgb(65, 65, 65);
}


.white-button{
  background: white;
  color: black;
  border: 1px solid gray;
  margin-right: 15px;
}

.white-button:hover{
  background-color: whitesmoke !important;
}

.white-button:active{
  background-color: rgb(223, 223, 223);
}

.disabled-button{
  background-color: lightgray !important  ;
  cursor: not-allowed;
}

#user-informations-container{
  position: absolute;
  bottom: 9px;
  right: 0;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding-right: 7px;
  align-items: center;
  box-sizing: border-box;
}

#user-informations-container a{
  text-decoration: none;
  color: black;
  margin: 0 3px;
  transition: color 0.2s;
}


#user-informations-container a:hover{
  color: gray !important;
}

#shopping-cart-button{
  width: 25px;
  height: 25px;
  background: url(/assets/frontend/icons/cart.svg)  center / 20px no-repeat;
}

#shopping-cart-button span{
  display: none;
}


.dropdown { 
  display: none;
  overflow: hidden;

}

.dropdown .dropbtn {
  font-size: 16px;  
  border: none;
  outline: none;
  background: none;
  font-family: inherit;
  margin: 0;
}

.navbar a:hover, .dropdown:hover .dropbtn {
  color: gray;
}

.dropdown-content{ 
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: white;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 15;
}

.dropdown-content a {
  float: none;
  color: black !important;
  margin: 0 !important;
  padding: 8px;
  font-size: 14px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.modal-container{
  position: absolute;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%; 
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 55;
  background: rgba(0, 0, 0, 0.7);
}



nav{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 45px;
  border-top: 1px solid rgb(46, 46, 46);
  border-bottom: 1px solid rgb(46, 46, 46);
}
  

nav .desktop-content{
  display: none;
}

nav .desktop-content a{
  margin: 0 2vw;
  cursor: pointer;
  transition: color 0.3s;
  letter-spacing: 1.2px;
  text-decoration: none;
}

nav .desktop-content a:hover{
  color: gray;
}


.not-available-popup{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 800px; 
  height: 100%;
  padding: 10px; 
  border-radius: 3px;
  font-size: 30px;
  color: whitesmoke;
}

.not-available-popup h2{
  margin-bottom: 30px;
}

.not-available-popup span{
  text-align: center;
}

.not-available-popup .close-button{
  position: absolute;
  top: 2%;
  right: 5%; 
  font-weight: bold;
  cursor: pointer;
  font-size: 45px;
}

.mobile-content{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;  
  margin-top: -4px;
}

#mobile-menu-dropdown{ 
  position: absolute;
  top: 38px;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%; 
  height: 0;
  background: black;
  overflow: hidden;
  transition: height 0.2s;
  z-index: 5;
}


#mobile-menu-dropdown a{ 
  width: 100%;
  padding: 10px 0;
  text-align: center;
  color: white;
  border-bottom: 1px solid rgb(100, 100, 100);
  text-decoration: none;
  font-size: 14px;
  font-family: Calibri;
}



.custom-menu-button { 
  --icon: white;
  perspective: 600px;
  width: 34px;
  height: 34px;
  position: relative;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}


.custom-menu-button input {
  display: none;
}
.custom-menu-button input + div span {
  --rotateY: 0deg; 
  transform: rotateY(var(--rotateY));
  transform-style: preserve-3d;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%; 
  padding: 1px;  
  background: rgb(186,74,89);
  background: linear-gradient(135deg, rgb(175, 0, 23) 0%, rgb(0, 117, 175) 40%, rgb(171, 201, 0) 77%);
  backface-visibility: hidden;
  transition: transform 0.6s cubic-bezier(0.2, 0.64, 0.48, 1.24);
}

.custom-menu-button input + div span div{
   width: 100%;   
   height: 100%;
   background: black; 
   border-radius: 50%;
}

.custom-menu-button input + div span:before, .custom-menu-button input + div span:after {
  --rotate: 0deg;
  content: '';
  position: absolute;
  width: 16px;
  height: 2px;
  border-radius: 1px;
  top: 50%;
  left: 50%;
  background: var(--icon);
  backface-visibility: hidden;
  transform: translate(-50%, -50%) rotate(var(--rotate)) translateZ(6px);
}
.custom-menu-button input + div span:first-child {
  --background: var(--back);
}
.custom-menu-button input + div span:first-child:before {
  --rotate: -45deg;
}
.custom-menu-button input + div span:first-child:after {
  --rotate: 45deg;
}
.custom-menu-button input + div span:last-child {
  --rotateY: 180deg;
}
.custom-menu-button input + div span:last-child:before {
  box-shadow: 0 -5px 0 var(--icon), 0 5px 0 var(--icon);
}
.custom-menu-button input + div span:last-child:after {
  display: none;
}
.custom-menu-button input:checked + div span:first-child {
  --rotateY: -180deg;
}
.custom-menu-button input:checked + div span:last-child {
  --rotateY: 0deg;
}



/* The container */
.custom-checkbox {
  display: block;
  position: relative;
  padding-left: 25px; 
  cursor: pointer;
  font-size: 15px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.custom-checkbox:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.custom-checkbox input:checked ~ .checkmark {
  background-color: rgb(26, 26, 26);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.custom-checkbox .checkmark:after {
  left: 7px;
  top: 3px;
  width: 3px;
  height: 9px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}




#loading-field{
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: none;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.85);
}

#loading-field img{
  width: 60%;
  max-width: 300px;
  height: auto; 
  animation: loading-animation 1.5s ease infinite;
}


 
@keyframes loading-animation{
  0%{
    opacity: 0;
  }
  70%{
    opacity: 1;
  }
  100%{
    opacity: 0;
  }
}

@media only screen and (min-width: 600px) {
  
  .modal-container{
    justify-content: center;
    align-items: center;
  }

    
  .not-available-popup{
    padding: 10px; 
    border-radius: 3px;
    font-size: 50px;
  }

  .not-available-popup .close-button{
    top: 40%;
  }

  header{ 
    border: none;
  }
  
  #website-logo-field{
    width: 150px;
  }

  .slash img{
	  width: 60px;
  }

  #nav-username-button{
    display: none !important;
  }
  
  #shopping-cart-button{
    width: initial;
    height: initial;
    background: url(/assets/frontend/icons/cart.svg) left center / 20px no-repeat;
    padding-left: 25px;
  }
   

  #user-informations-container a{
    margin: 0 3px;
  }

  .dropdown{
    display: block;
  }


  #shopping-cart-button span{
    display: initial;
  }

  #logout-button{
    display: initial;
  }

  
  nav .mobile-content{
    display: none;
  }
  
  nav .desktop-content{
    display: flex;
  }


}