.productHeaderCategoryLinkHeader {
  font-size: 12px;
  padding: 0px 10px 4px 10px;
}
.productHeaderCategoryLink {
  padding: 5px 10px;
  font-size: 15px;
  display: block;
}
.productHeaderCategoryLink:hover {
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

/* Inviduell Elements */
.header {
  /* height: 120px; */
  grid-area: header;
  box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 20%),
    0 1px 5px 0 rgb(0 0 0 / 12%);
  background-color: white;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr min-content 1fr 1fr;
  grid-template-rows: min-content 1fr min-content;
  grid-template-areas:
    "topbar topbar topbar topbar topbar"
    "menu-btn headerLogoLeft logo headerLogoRight cart-btn"
    "search search search search search";
}
.headerTopbar {
  grid-area: topbar;
  /* background-color: #2a9bff; */
  /* background-color: #FAFAFA; */
  background-color: rgb(227 227 227);
  /* background-image: radial-gradient(50% 50%, rgba(55, 62, 62, 0) 50%, rgba(55, 62, 62, 0.01) 74%, rgba(55, 62, 62, 0.05) 100%); */
  display: grid;
  grid-auto-flow: column;
  grid-gap: 10px;
  padding: 2px 0px;
  justify-content: center;
  border-bottom: 1px solid rgba(55, 53, 47, 0.09);
}
.headerTopbar > span {
  /* color: white; */
  color: rgb(55, 53, 47);
  font-size: 12px;
}
.headerLogoLeft {
  grid-area: headerLogoLeft;
  align-self: center;
  padding-right: 30px;
  /* display: grid; */
  /* grid-auto-flow: column; */
  grid-gap: 5px;
}
.headerLogoRight {
  grid-area: headerLogoRight;
  /* align-self: center; */
  /* justify-self: start; */
  padding-left: 30px;
  /* display: grid; */
  /* grid-auto-flow: column; */
  grid-gap: 5px;
}

a.headerLogo {
  grid-area: logo;
  align-self: center;
  font-size: 24px;
  color: #555;
  padding: 0px 20px;
  border-left: 1px solid rgba(55, 53, 47, 0.09);
  border-right: 1px solid rgba(55, 53, 47, 0.09);
  border-bottom: 4px solid #2a9bff;
}
a.headerLogo:hover {
  text-decoration: none;
  color: #555;
}
.facebookIcon {
  height: 20px;
  display: block;
}
.facebookIconImg {
  height: 20px;
  display: block;
}

.header.headerCompact {
  grid-template-columns: 1fr min-content 1fr;
  grid-template-rows: min-content 1fr min-content;
  grid-template-areas:
    "topbar topbar topbar"
    "menu-btn logo cart-btn"
    "search search search";
}
.header.headerCompact .headerLogoLeft {
  display: none !important;
}
.header.headerCompact .headerLogoRight {
  display: none !important;
}
.header > * {
  margin: 0px;
}
.headerSearchContainer {
  grid-area: search;
  width: calc(100% - 20px);
  /* margin: 10px 0px; */
  align-self: start;
  justify-self: center;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  max-width: 700px;
  background-color: white;
  border-left: 1px solid #ccc;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
  display: grid;
  align-items: center;
  padding: 0px 2px;
  grid-template-columns: min-content 1fr min-content;
}
.headerSearchContainer input {
  padding: 12px 5px;
  border: 0px;
  outline: 0px;
  font-size: 16px;
  width: 100%;
}
.headerSearchContainer i {
  padding: 10px 10px;
  border-radius: 50px;
}
.headerSearchContainer .clearSearchButton {
  user-select: none;
}
.headerSearchContainer i:hover {
  background-color: rgb(228, 228, 228);
  cursor: pointer;
}
@media (min-width: 900px) {
  /* .header {
        // border-bottom: 1px solid #cccccca6;
        // padding: 5px 10px 0px 10px;
        grid-template-columns: min-content min-content 1fr min-content;
        grid-template-rows: 62px;
        grid-template-areas: 
            "menu-btn logo search cart-btn";
    } */
  /* .headerSearchContainer {
        max-width: 500px;
    } */
}

/* .headerLogo > img {
    grid-area: logo;
    align-self: end;
    justify-self: start;
    height: 20px;
} */

/* Side buttons */
.headerTogglePanel {
  transition: opacity 250ms ease;
  opacity: 0;
  padding: 10px 15px;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  justify-self: end;
  grid-gap: 10px;
  user-select: none;
  color: #555;
}
.headerTogglePanel.leffffft {
  justify-self: start;
}
.headerTogglePanel > i {
  color: #555;
}
.headerTogglePanel:hover {
  background-color: rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.headerTogglePanel > p {
  margin: 0px;
  padding: 0px;
  font-weight: 400;
  letter-spacing: -0.1px;
  align-self: center;
  display: block;
  color: #555;
}

/* .menu-btn {
    padding: 10px;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    display: grid;
    grid-template-columns: min-content min-content;
}
.menu-btn:hover {
    text-decoration: underline;
    cursor: pointer;
}
.menu-btn > p {
    margin: 0px;
    font-weight: 400;
    letter-spacing: -.1px;
    align-self: center;
    display: block;
    padding-left: 5px;
}
.menu-btn > img {
    height: 20px;
    width: 20px;
    align-self: center;
} */

.reviewSources {
  width: 100%;
  display: grid;
  grid-template-columns: min-content min-content min-content;
  grid-gap: 10px;
  justify-content: end;
}
.reviewSource {
  padding: 10px 5px 10px 5px;
  margin: 5px 0px;

  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  grid-gap: 1px;
}
.reviewSource:hover {
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.1);
}

span.reviewRating {
  font-size: 20px;
}
img.starsImage {
  height: 16px;
  width: 70px;
}
span.starsImage {
  height: 16px;
  width: 70px;
  background-repeat: repeat-x;
  background-size: 14px 11.4px;
}
span.starsImage:after {
  content: "";
  height: 16px;
  width: 70px;
  position: absolute;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 23.44 19'><polygon fill='%23fdd663' points='10,15.27 16.18,19 14.54,11.97 20,7.24 12.81,6.63 10,0 7.19,6.63 0,7.24 5.46,11.97 3.82,19'/></svg>");
  background-repeat: repeat-x;
  background-size: 14px 11.4px;
}
span.starsImage.facebookStarts:after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 23.44 19'><polygon fill='%232374E1' points='10,15.27 16.18,19 14.54,11.97 20,7.24 12.81,6.63 10,0 7.19,6.63 0,7.24 5.46,11.97 3.82,19'/></svg>");
}
span.reviewsName {
  font-size: 12px;
  text-align: center;
  white-space: nowrap;
}

/* .googleHeaderReview {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    grid-gap: 5px;
}
.googleStars {
    display: block;
}
.googleReviewsName {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 0px;
    align-items: center;
}
.googleReviewsName > img {
    width: 16px;
    height: 16px;
}
.reviewSource > span {
    font-size: 12px;
    line-height: 16px;
} */

.socialSources {
  width: 100%;
  display: grid;
  grid-template-columns: min-content min-content min-content;
  grid-gap: 10px;
  justify-items: start;
}
.socialSource {
  padding: 10px 5px 10px 5px;
  margin: 5px 0px;

  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  grid-gap: 5px;
}
.socialSource:hover {
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.1);
}
