/* #####################################################################################################
   Employee Navigation - Digital Sales Assistent + Order Pickup
   ##################################################################################################### */

/*--- standard variables ---*/
/*--- product item ratio (thumb + content) ---*/
/* set ProductImageRatio in productOverview! */
/*--- media queries. When using responsive ---*/
/* Range breakpoints */
/*--- media queries. When using responsive: only mobile & desktop ---
@responsive:	false;
@largePhone:	~"only screen and (min-width: 480px)";
@tablet:		~"only screen and (min-width: 999999999px)";
@tabletLand:	~"only screen and (min-width: 768px)";
@desktop:		~"only screen and (min-width: 768px)";

@upToTablet:	~"only screen and (max-width: 767px)";
@upToDesktop:	~"only screen and (max-width: 767px)";*/
/*--- media queries. When not using responsive ---
@responsive:	false;
@largePhone:	~"only screen and (min-width: 1px)";
@tablet:		~"only screen and (min-width: 1px)";
@tabletLand:	~"only screen and (min-width: 1px)";
@desktop:		~"only screen and (min-width: 1px)";

@upToTablet:	~"only screen and (max-width: 1px)";
@upToDesktop:	~"only screen and (max-width: 1px)";*/
/*----- Default functions -----*/
/*----- Default Crossbrowser functions -----*/
/*----- CSS3 functions -----*/
/*----- CSS3 Animation functions -----*/
/*----- Buttons -----*/
/*----- Responsive functions -----*/
.employeeNav {
  position: fixed;
  right: 0;
  bottom: 45px;
  left: 0;
  height: 45px;
  z-index: 5;
}
@media only screen and (min-width: 768px) {
  .employeeNav .container {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-around;
    align-items: center;
  }
}
html.no-flexbox .employeeNav {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 30px;
}
.employeeNav p {
  display: none;
  margin: 0;
  flex-grow: 3;
}
@media only screen and (min-width: 768px) {
  .employeeNav p {
    display: block;
    float: left;
  }
}
.employeeNav .buttons {
  display: flex;
  flex-grow: 1;
  line-height: 0;
  text-align: right;
  height: 45px;
}
@media only screen and (min-width: 768px) {
  .employeeNav .buttons {
    float: right;
  }
}
.employeeNav .bttn {
  margin-top: 0;
  vertical-align: middle;
  color: white;
}
.employeeNav .bttn.link:hover {
  background: none;
  color: white;
  opacity: 1;
}
.employeeNav .bttn.link:hover {
  text-decoration: underline;
}
.employeeNav .bttn + .bttn {
  margin-left: 15px;
}
