* {
  box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html {
  display: flex;
  justify-content: center;
}
html, body {
  width: 100%;
  max-width: 1921px;
  height: 100%;
	font-size:62.5%;
  font-family: 'Poppins', 'Times New Roman';
  margin: 0;
  color: black;
  background-color: #f8f8f8;
  overflow-x: hidden;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, button, input, select, textarea {
  font-family: 'Poppins', 'Times New Roman';
}


body {
  overflow-y: scroll;
}
.page_container {
  width: 100vW;
  max-width: 1921px;
}
button {
  touch-action: manipulation;
  pointer-events: auto; /* Ensure pointer events are enabled */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

#slowloadtimesid {
  position: fixed;
  bottom: 5px;
  right: 5px;
  width: calc(100% - 10px);
  min-height: 60px;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 5px;
  color: white;
  font-size: 12px;
  z-index: 1000000;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px;
}


:root {
  --scroll-thumb: #888;       /* thumb color */
  --scroll-thumb-hover: #555; /* hover color */
  --scroll-track: transparent;/* make track “invisible” */
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--scroll-thumb) var(--scroll-track); /* thumb, track */
}

/* WebKit (Chrome/Edge/Safari) */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: transparent;  /* scrollbar area */
}

::-webkit-scrollbar-track {
  background: var(--scroll-track);   /* track */
}

::-webkit-scrollbar-thumb {
  background: var(--scroll-thumb);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--scroll-thumb-hover);
}

/* Important: style the corner when both axes show */
::-webkit-scrollbar-corner {
  background: var(--scroll-track);
}

/* Optional: remove arrow buttons (prevents white caps) */
::-webkit-scrollbar-button {
  display: none;
}

.websitewarningtext {
  position: absolute;
  top: 112px;
  left: 0px;
  font-size: 12px;
  text-align: center;
  padding: 4px 20px;
  padding-top: 8px;
  width: 100%;
  z-index: 1;
  background-color: #f1e0e0;
  color: black;
  font-weight: 700;
}

/* Using Css over all templates */
.titleofpage {
  font-family: 'Poppins', 'Times New Roman';
  letter-spacing: 2px;
  color: rgb(37, 35, 35);
  font-weight: 700;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.displaymessages {
  position: fixed;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, -10%);
  padding: 20px;
  background-color: white;
  color: black;
  border: none;
  border-radius: 10px;
  z-index: 100000000;
  width: 80%;
  max-width: 500px;
  box-shadow: 0 0 5px lightgrey;
}
.dmtitle {
  text-align: center;
  margin-bottom: 10px;
  font-size: 14px;
  letter-spacing: 2px;
}
.dmtext {
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 12px;
  letter-spacing: 1px;
}
@media (min-width: 850px) {
  .titleofpage {
    font-size: 28px;
  }
  .dmtitle {
    font-size: 14px;
  }
  .dmtext {
    font-size: 12px;
  }
  .wb_bottomflex {
    flex-direction: row;
    gap: 40px;
  }
  .wb_title {
    font-size: 24px;
    letter-spacing: 4px;
  }
  .wb_toptext {
    font-size: 16px;
  }
  .wbbf_buttondesign {
    font-size: 14px;
    width: 25%;
    height: 36px;
  }
}
@media (max-width: 851px) {
  .titleofpage {
    font-size: 22px;
  }
  .wb_toptext {
    font-size: 12px;
  }
  .wb_title {
    font-size: 18px;
    letter-spacing: 2px;
  }
  .wbbf_buttondesign {
    font-size: 12px;
    width: 80%;
    height: 30px;
  }
  .dmtitle {
    font-size: 12px;
  }
  .dmtext {
    font-size: 12px;
  }
  .wb_bottomflex {
    flex-direction: column;
    gap: 10px;
  }
}
.welcomebanner {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  box-shadow: 0 0 10px lightgrey;
  border-radius: 20px;
  border: none;
  min-width: 200px;
  width: 80%;
  min-height: 10px;
  padding: 20px;
  z-index: 100000;
}
.wb_closebutton {
  display: flex;
  align-items: center;
  justify-content: right;
  text-align: right;
  width: 100%;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
.wbcb_icon {
  height: 20px;
  width: 20px;
}
.wb_title {
  padding-top: 10px;
  font-weight: 700;
  color: black;
  text-align: center;
}
.wb_toptext {
  margin-top: 5px;
  letter-spacing: 1px;
  color: black;
  text-align: center;
}
.wb_topflex {
  margin-top: 10px;
  display: flex;
  align-items: center;
  flex-direction: row;
}
@media (max-width: 1000px) {
  .wbtf_box {
    display: none;
  }
  .wb_topflex {
    justify-content: center;
  }
  .wb_topflex {
    gap: 0px;
  }
  #nextbuttonsmallscreen {
    visibility: visible;
  }
}
@media (min-width: 1001px) {
  .wbtf_box {
    display: flex;
  }
  .wb_topflex {
    justify-content: space-around;
  }
  .wb_topflex {
    gap: 20px;
  }
  #nextbuttonsmallscreen {
    visibility: hidden;
  }
}
.absolutearrows {
  visibility: hidden;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
.flextextmenu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.profilemenutext {
  color: rgb(37, 35, 35);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.5px;
}
.wbtf_box {
  min-width: 200px;
  max-width: 260px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.wbtf_imagepart {
  padding: 5px;
}
.wbtfip_image {
  width: 70px;
  height: 70px;
}
.wbtf_steps {
  font-weight: 700;
  color: #dda9ac;
  font-size: 16px;
  letter-spacing: 1px;
  white-space: nowrap;
}
.wbtf_title {
  margin-top: 10px;
  color: black;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 700;
  text-align: center;
}
.wbtf_text {
  margin-top: 5px;
  color: black;
  font-size: 12px;
  letter-spacing: 1px;
  text-align: center;
}
.wb_bottomflex {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 10px;
}
.wbbf_buttondesign {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background-color: #dda9ac;
  color: white;
  font-weight: 700;
  letter-spacing: 2px;
  text-decoration: none;
  border: none;
  text-align: center;
  cursor: pointer;
}




.header {
  top: 0;
  z-index: 1000;
  position: sticky;
}
.title_background_base {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vW;
  max-width: 1921px;
  height: 90px;
  left: 0;
  top: 0;
  background-color: rgb(37, 35, 35);
  transition: height 0.2s ease-in;
}
.title_link_base {
  text-decoration: none;
  transition: font-size 0.2s ease-in;
  flex: 1;
  justify-content: center;
  align-items: center;
}
.linktoadmin {
  position: absolute;
  top: 4px;
  right: 4px;
  background-color: white;
  color: black;
  padding: 5px;
  border-radius: 5px;
  text-align: center;
  z-index: 100000;
  letter-spacing: 1px;
  font-size: 12px;
  cursor: pointer;
  text-decoration: none;
  width: 100px;
  border: none;
}
.adminmode {
  left: 4px;
}
.linktopresetpage {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 100;
  background-color: rgb(37, 35, 35);
  border-radius: 50%;
  padding: 10px;
}

.ephesistext {
  font-family: 'Ephesis', 'Poppins', 'Times';
  width: 100%; 
  text-align: center;
}

@media (max-width: 850px) {
  .ephesistext {
    font-size: 30px; 
    margin-top: 20px;
  }
  .categories_dropdown {
    display: none;
  }
  #smallscreen_icon {
    display: flex;
  }
  .menubar_icons {
    width: 35px;
  }
  .menubar_icons_img {
    padding: 0 5px;
    width: 35px;
  }
  .menubar_base {
    padding: 0 5px;
  }
  .suggestion_reciever {
    padding: 0 5px;
  }
  #flex_pop_pics_big {
    display: none;
  }
  #flex_pop_pics_small {
    padding-left: 3%;
    padding-right: 3%;
  }
  .suggestiondivs {
    text-align: left;
  }
  .helppopupdesign {
    width: 90vw;
  }
}
@media (min-width: 851px) {
  .helppopupdesign {
    width: 60vw;
  }
  .ephesistext {
    font-size: 60px; 
  }
  #smallscreen_icon {
    display: none;
  }
  .menubar_base {
    padding: 0 30px;
  }
  .menubar_icons {
    width: 45px;
  }
  .menubar_icons_img {
    padding: 0 10px;
    width: 45px;
  }
  .searchdiv {
    position: relative;
  }
  .search_container {
    position: relative;
    padding: 5px 3%;
  }
  #flex_pop_pics_small {
    padding-right: 0;
  }
  .suggestiondivs {
    text-align: center;
  }
}
.menubar_base_container {
  background-color: #f1e0e0;
  position: relative;
  width: 100vW;
  max-width: 1921px;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);
}
.menubar_base {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menubar_icons{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 45px;
  border: none;
  background-color: transparent;
  color: black;
  cursor: pointer;
  padding: 5px 0;
  text-decoration: none;
}
.menubar_icons_img {
  height: auto;
}
.basket_info_bubble {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 5px;
  justify-content: center;
  align-items: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: rgb(37, 35, 35);
}

.categories_dropdown {
  height: 45px;
  flex-grow: 1;
}
.dropbtn {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: black;
  font-size: 12px;
  font-family: Poppins, Times New Roman;
  letter-spacing: 2px;
  border-radius: 20px;
  background-color: white;
  border: 1px solid #f1e0e0;
  padding: 6px;
  width: 200px;
}
.searchdiv {
  padding: 5px 10px;
  flex: 1;
  justify-content: center;
  background-color: white;
}
.guideinfobutton {
  padding: 4px 12px;
  font-size: 12px;
  letter-spacing: 1px;
  color: black;
  background-color: white;
  border: 1px solid black;
  border-radius: 5px;
  position: absolute;
  top: 30px;
  right: 15px;
  cursor: pointer;
}
.image-container {
  width: 100%; /* You can set this to a fixed value if needed */
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden; /* Ensures the image doesn't overflow the container */
}
.popuphelpimage {
  max-width: 100%; /* Fit within the container */
  height: 65vh;
  object-fit: contain; /* Scale the image without cropping or stretching */
}
.helppopupbutton {
  display: block;
  position: absolute;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 1px;
  color: black;
  background-color: #f1e0e0;
  border: none;
  z-index: 10000;
  min-width: 25px;
  padding: 5px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}
.helptopright {
  top: 10px;
  right: 10px;
}
.helpbottomright {
  bottom: 10px;
  right: 10px;
}
.helppopupdesign {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
  background-color: white;
  border-radius: 10px;
  padding: 10px;
  min-height: 400px;
  max-height: 80vh;
  z-index: 1000;
  overflow: hidden; /* Prevent content from overflowing the popup */
}

.producthistorypopupdesign {
  display: none;
  position: fixed;
  top: 125px;
  right: 0;
  background-color: white;
  border-radius: 10px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  height: 100px;
  width: 280px;
  padding: 10px;
  z-index: 10000;
  overflow: hidden;
  box-shadow: 0 0 10px lightgrey;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.imagecontainerproducthistory {
  padding: 10px;
  margin-left: 10px;
}
.imageinproducthistory {
  max-width: 70px;
  max-height: 70px;
  width: auto;
  height: auto;

}
.productnameproducthistory {
  flex: 1;
  font-size: 14px;
  font-weight: 700;
  color: black;
  text-align: center;
}


.search_container {
  width: 100%;
}
.search_field {
  width: calc(100% - 45px);
  border: none;
  padding: 8px; 
  font-size: 14px; 
  letter-spacing: 2px;
  font-family: Poppins, Times New Roman;
}
.icon-text_container {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1;
  width: 100%;
  height: 40px;
  background-color: white;
  border-radius: 30px;
  color: black;
}
.search_field:focus {
  outline: none;
}
::placeholder {
  color: black;
}
.searchsubmitbutton {
  background-color: transparent;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  top: 3px;
  left: 10px;
  cursor: pointer;
}
.search_icon {
  width: 18px; 
  height: 18px; 
  background-color: transparent;
}
.suggestions-container {
  display: none;
  background-color: white;
  width: 100%;
  margin-bottom: 30px;
}
.suggestion_reciever {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}
.suggestiondivs {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
}
.textrecievers {
  display: flex;
  flex-direction: row;
  padding-top: 5px;
  gap: 10px;
  align-items: center;
  text-wrap: nowrap;
  overflow-x: auto;
}
.suggestion-item {
  padding: 8px 16px;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 1px;
  background-color: #f1f1f1;
  display: block;
  text-decoration: none;
  color: black;
}
@media (min-width: 851px) {
  .textrecievers {
    justify-content: center;
  }
  .suggestion-item:hover {
    background-color: #f1e0e0;
  }
  .popularbox {
    flex: 1 1 200px;
    height: 300px;
    padding: 10px;
  }
  .imagecontsearch {
    height: 200px;
  }
  .popularimg {
    max-width: 180px;
    max-height: 200px;
  }
}
@media (max-width: 850px) {
  .textrecievers {
    justify-content: flex-start;
  }
  .popularbox {
    flex: 1 1 120px;
    height: 200px;
    padding: 0px;
  }
  .imagecontsearch {
    height: 120px;
  }
  .popularimg {
    max-width: 120px;
    max-height: 120px;
  }
  .welcomesmallbannertext {
    display: none;
  }
}
.maintenance_class {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  background-color: rgba(10, 10, 10, 0.8);
  z-index: 10000000;
  padding: 15px;
  color: white;
}
.search-suggestion-title {
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 700;
  display: none;
}
.populartitle {
  width: 100%;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 10px 0;
  margin-top: 20px;
  border-top: 1px solid lightgrey;
}
.flex_pop_pics_container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  flex-wrap: nowrap;
}

.popularbox {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  position: relative;
  cursor: pointer;
  border-radius: 5px;
  flex-shrink: 0;
  max-width: 200px;
}
.popularbox:hover {
  box-shadow: 0 0 5px lightgrey;
}
.imagecontsearch {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.textboxsearchfailed {
  width: 100%;
  font-size: 14px;
  color: black;
  text-align: center;
  padding: 10px 20px;
}
.extratextsearch {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  font-size: 12px;
  text-align: center;
  letter-spacing: 1px;
  text-decoration: none;
  color: black;
  background-color: #f1f1f1;
  border-radius: 5px;
  padding: 5px 12px;
}
.popularimg {
  width: auto;
  height: auto;
}
.popularname {
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 1px;
  color: black;
  text-decoration: none;
  text-align: center;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.popularprice {
  padding-top: 15px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: black;
  text-decoration: none;
  text-align: center;
  margin-top: 5px;
}



.dropdown-container {
  display: none;
  position: fixed;
  z-index: -1;
  overflow-y: scroll;
  flex-direction: column;

  width: 30%;
  min-width: 320px;
  max-width: 720px;
  height: 100%;
  
  padding: 20px;
  padding-top: 0px;

  background-color: white;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1), -3px 3px 3px rgba(0, 0, 0, 0.1), 0px 3px 3px rgba(0, 0, 0, 0.1);
}


.dropdown-menu {
  left: 0;
  top: 0;
}
.profile-dropdown-content {
  right: 0;
  top: 0;
}
.basket-dropdown-content {
  right: 0;
  top: 0;
}



.ddm_buttons {
  margin-top: 5%;
}
.nd_titles {
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 700;
  color: black;
  margin-top: 10px;
  margin-bottom: 3px;
}

.ddm_cathead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  border: none;
  width: 100%;
  cursor: pointer;
  padding: 6px 0;
  margin-bottom: 5px;
  margin-top: 5px;
  border-radius: 5px;
  text-decoration: none;
  color: black;
}

.ddm_cathead_advent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  width: 100%;
  cursor: pointer;
  padding: 6px 0;
  margin-bottom: 5px;
  margin-top: 5px;
  border-radius: 5px;
  text-decoration: none;
}

@media (min-width: 851px) {
  .ddm_cathead:hover {
    background-color: #f1e0e0;
  }
}

.ddmc_design {
  font-size: 12px;
  letter-spacing: 2px;
  padding-left: 6px;
  color: black;
}

.dropside_arrow {
  width: 20px;
  height: 20px;
}

.nd_logic {
  height: 18.5px;
  margin-top: 15px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.text_to_go_back {
  font-size: 12px;
  letter-spacing: 2px;
  margin-left: 5px;
}

.nd_content {
  display: none;
  margin-left: 10px;
  background-color: white;
  padding: 5px;
  padding-top: 8px;
  border-radius: 5px;
}
.nd_content a {
  color: black;
  text-decoration: none;
}

@media (min-width: 851px) {
  .nd_smallheads:hover, .nd_middleheads:hover {
    background-color: #f1e0e0;
  }
}

.nd_superhead, .nd_middleheads, .nd_smallheads {
  display: block;
  width: 100%;
  text-decoration: none;
  color: black;
  border-radius: 5px;
  padding: 2px;
}

.nd_middleheads {
  font-size: 12px;
  margin-top: 7px;
  font-weight: 700;
  padding: 2px 5px;
  letter-spacing: 1.5px;
}

.nd_smallheads {
  font-size: 12px;
  letter-spacing: 1px;
  padding: 2px 5px;
}

.toppart_superheads {
  border-bottom: 1px solid lightgrey;
  margin-left: 5%;
  margin-right: 5%;
  display: flex;
  justify-content: right;
  height: 50px;
}

.button_with_icon_in {
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  background-color: transparent;
  border: none;
  cursor: pointer;
}

@media (min-width: 850px) {
  .nd_content :hover, .ddm_buttons :hover, .button_with_icon_in:hover{
    background-color: lightgrey;
  }
  .categories_dropdown:hover .dropdown-content {
    display: flex;
    flex-direction: row; /* Set the direction to column */
    align-items: flex-start;
    justify-content: center; 
  }
}
.dropdown-content {
  display: flex;
  width: 100%;
  padding: 0px 10px;
  height: auto;
}
.dropdowncolumns {
  flex: 1;
  min-width: 220px;
}
.middlehead,
.smallhead {
  box-sizing: content-box;
  width: calc(20% - 20px);

}
.bighead {
  color: black;
  text-decoration: none;
  display: block;
  width: 100%; /* Full width for bighead */
}
.middlehead {
  font-size: 13px;
  display: block;
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 5px;
  width: 90%;
  padding: 2px;
  padding-left: 5px;
  border-radius: 3px;
  cursor: pointer;
  color: black;
  text-decoration: none;
}
.middleheadmanufacturer {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  width: 90%;
  padding-left: 5px;
  border-radius: 3px;
  padding-top: 5px;
}
.smallhead {
  display: block;
  width: 90%;
  font-size: 12px;
  margin-top: 3px;
  letter-spacing: 0.5px;
  padding: 1px;
  border-radius: 2px;
  padding-left: 5px;
  cursor: pointer;
  color: black;
  text-decoration: none;
}
@media (min-width: 851px) {
  .middlehead:hover, .smallhead:hover {
    background-color: #f1e0e0;
  }
}
.smallhead a, .middlehead a, .bighead a {
  text-decoration: none;
  color: black;
  border-radius: 4px;
}

.profile_dropdown {
  display: inline-block;
  padding: 9.25px 0px;
}
.profilepic {
  width: 100%;
  max-height: 400px;
  margin: 0 auto;
}

.profile_title_text {
  margin-top: 15px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 0 20px;
}
.orderedlist {
  padding: 10px 20px;
  list-style-type: square;
}
.profileitem {
  margin-top: 5px;
  font-size: 12px;
  letter-spacing: 0.5px;
}
.midlineprofile {
  margin-top: 20px;
  padding-bottom: 10px;
  border-top: 1px solid black;
}
.buttons_profileflex {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-top: 15px;
}
.txtinfoprofile {
  margin-top: 20px;
  font-size: 14px;
  width: 90%;
  margin-left: 5%;
  text-align: center;
}
.exitpic {
  width: 15px;
  height: 15px;
}
.buttondesign {
  text-align: center;
  text-decoration: none;
  width: 80%;
  border: none;
  border-radius: 30px;
  background-color: #f1e0e0;
  color: #876060;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  padding: 8px;
}
@media (min-width: 850px) {
  .profile_dropdown:hover .profile-dropdown-content {
    display: flex;
  }
}
#close_dropdown {
  text-align: right;
}
.exitbutton {
  text-align: left;
  width: 100%;
  margin-top: 15px;
  border: none;
  background-color: white;
  color: black;
  cursor: pointer;
}
.whitespace {
  height: 114px;
  width: 100%;
}
.basket-dropdown-content > * {
  flex-shrink: 0;     /* don’t shrink fixed elements */
}
.menubar_basket {
  font-weight: 700;
  letter-spacing: 1px;
  color: black;
  text-align: center;
  font-size: 18px;
  margin-top: 10px;
  padding: 2px 5px;
  border-radius: 5px;
}
.menubar-link {
  display: block;
  text-align: center;
  letter-spacing: 2px;
  font-size: 14px;
  width: 80%;
  margin-left: 10%;
  margin-top: 20px;
  color: #876060;
  font-weight: 700;
  padding: 10px;
  background-color: #f1e0e0;
  text-decoration: none;
  cursor: pointer; 
  border-radius: 20px;
  text-wrap: nowrap;
}

.flex-basket-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.infonr {
  font-size: 12px;
  letter-spacing: 0.5px;
}
.outofstore {
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
  width: 100%;
  font-size: 12px;
  letter-spacing: 1px;
  background-color: rgba(255, 0, 0, 0.6); 
  color: white;
  padding: 5px;
  border-radius: 5px;
}
.empty-basket {
  width: 100%;
  text-align: center;
  font-size: 12px;
  letter-spacing: 1px;
  padding: 20px 10px;
  border-top: 1px solid lightgrey;
  border-bottom: 1px solid lightgrey;
}
.fill_with_products{
  flex: 1;
  min-height: 100px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 25px;
  gap: 10px;
  width: 100%;
}
.basket-item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  height: auto;
  width: 100%;
  position: relative;
}
.basket-image-div {
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}
.basket-image {
  max-width: 60px;
  max-height: 70px; 
  width: auto;
  height: auto;
}
.flex-basket-textdiv {
  flex: 2;
  margin: 0 5px;
}
.basket-manufacturer {
  font-size: 12px;
  color: black;
  letter-spacing: 0.5px;
  font-weight: 700;
  text-decoration: none;
}
.basket-productname {
  font-size: 12px;
  color: black;
  letter-spacing: 0.5px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.flex-basket-pricequantity {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px 5px;
  gap: 3px;
}
.reduce_increase_img {
  height: 15px;
  width: 15px;
}
.reduce_increase_button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  border: 1px solid lightgrey;
  cursor: pointer;
  padding: 2px;
  border-radius: 5px;
}
.baskettotaldiv {
  text-align: center;
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 700;
}
.basket-productprice {
  margin-top: 15px;
  font-size: 12px;
  color: black;
}
.basket-quantity {
  margin-bottom: 5px;
  font-size: 12px;
  color: black;
}
.whitespacebottom {
  border-top: 1px solid lightgrey;
  width: 100%;
  height: 20px;
}

footer {
  position: relative;
  bottom: 0;
  left: 0;
  width: 100vw;
  max-width: 1921px;
  background-color: rgb(37, 35, 35);
  color: white;
  text-align: center;
  padding-top: 25px;
}
.columns {
  flex: 1;
  text-align: left;
}
.column_title {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
}
.footer_titles {
  display: flex;
  font-family: Poppins, Times New Roman;
  margin-top: 25px;
}
.column_items {
  padding-top: 10px;
  font-size: 12px;
  letter-spacing: 1px;
  max-width: 250px;
}
.line {
  border: 0;
  margin-top: 90px
}
footer .footer_text {
  font-size: 12px;
  letter-spacing: 1px;
  font-family: Poppins, Times New Roman;
  width: 100%;
  color: white;
  background-color: black;
  padding-bottom: 10px;
  padding-top: 10px;
}
.flex_socials {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer_links {
  text-decoration: none;
  color: white;
}
@media (min-width: 850px) {
  .footer_links:hover {
    border-bottom: 1px solid lightgrey;
  }
  .smallhead :hover, .middlehead :hover {
    background-color: rgb(237, 236, 236);
  }
}



@media (max-width: 850px) {
  .footer_titles {
    width: 92%;
    margin-left: 8%;
    flex-direction: column;
  }
  #socials_column {
    display: none;
  }
  .columns {
    margin-top: 25px;
  }
  .line {
    margin: 40px 0 20px 0;
  }
  .column_items {
    padding-top: 5px;
    margin-left: 5px;
  }
  .footer_titles {
    margin-top: 0;
  }
  .texticons {
    display: none;
  }
  .iconicons {
    display: block;
  }
  .head_text {
    padding: 5px;
  }
  .pc_header {
    padding: 0px 10px;
  }
  .pc_toptext_mainpage {
    font-size: 12px;
    padding: 9px 0px;
  }
}



@media (min-width: 850px) {
  .menubar_icon , .filterbar_icon{
    display: none;
  }
  .footer_titles {
    width: 70%;
    margin-left: 15%;
  }
  #socials_small_column {
    display: none;
  }
  .texticons {
    display: flex;
  }
  .iconicons {
    display: none;
  }
  .head_text {
    padding: 8px 16px;
  }
  .pc_header {
    padding: 0px 20px;
  }
  .pc_toptext_mainpage {
    font-size: 12px;
    padding: 8px 0px;
  }
}

@media (min-width: 1192px) {
  .fillerblockmenubar {
    width: 100%;
    height: 34px;
  }
}





.pc_top_head {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  max-width: 1921px;
  box-shadow: 0 0 10px rgb(37, 35, 35);
}
.pc_header {
  background-color: rgb(37, 35, 35);
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 80px;
  justify-content: center;
}
.pc_toptext_mainpage {
  text-align: center;
  letter-spacing: 2px;
  background-color: black;
  color: white;
}
.head_text {
  color: white;
  font-size: 14px;
  height: 34px;
  letter-spacing: 2px;
  cursor: pointer;
  position: relative;
}
.bubblenr {
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  background-color: white;
  height: 16px;
  width: 16px;
  line-height: 16px;
  border-radius: 50%;
  font-size: 12px;
  letter-spacing: 0px;
  position: absolute;
  right: 0px;
  top: 0px;
}
.title_link_base_img {
  height: auto;
  width: 100%;
  max-width: 300px;
}
.title_link_base {
  display: flex;
}
.htii_icons {
  width: 24px;
  height: 24px;
}
.texticons {
  width: 25%; 
}
.remove_full_basket {
  font-size: 12px;
  letter-spacing: 1px;
  color: black;
  margin-top: 10px;
  cursor: pointer;
  width: 80%;
  margin-left: 10%;
  border-radius: 20px;
  padding: 6px;
  background-color: rgb(230, 230, 230);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.sparadvarukorg {
  background-color: white;
  color: black;
  border: none;
  border-radius: 4px;
  margin-bottom: 5px;
  cursor: pointer;
  font-size: 14px;
  letter-spacing: 1px;
}

#messageBox {
  margin-top: 5px;
  font-size: 12px;
  color: black;
  letter-spacing: 1px;
  text-align: center;
}

.namnfield {
  padding: 3px;
  letter-spacing: 1px;
  border: 1px solid lightgrey;
  font-size: 12px;
  outline: none;
  font-family: poppins;
  width: 150px;
  padding: 5px;
  border-radius: 5px;
}

.submitbutton {
  padding: 5px 12px;
  font-size: 12px;
  background-color: rgb(67, 65, 65);
  color: white;
  font-weight: 700;
  border: none;
  letter-spacing: 2px;
  cursor: pointer;
  border-radius: 5px;
}

.sparadvarukorgdiv {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 10px;
}
.bcd_all_bigcats {
  display: flex;
  padding: 10px 20px;
  flex-direction: column;
  gap: 5px;
}
.big_category_dropdown {
  padding: 15px 3%;
  background-color: white;
  padding-top: 25px;
}
.titlewords {
  font-size: 16px;
  border-bottom: 2px solid #f1e0e0;
  border-radius: 0px;
  margin-bottom: 10px;
}

@keyframes glow {
  0%, 100% {
      transform: scale(1);
      opacity: 1;
  }
  50% {
    transform: scale(1);
      opacity: 1;
  }
}

.glow {
  animation: glow 1s infinite;
}

@keyframes shakealarm {
  0%, 100% {
      color: green;
      transform: scale(1.2);
  }
  50% {
      color: rgb(5, 181, 5);
      transform: scale(1.5);
  }
}

.shakealarm {
  animation: shakealarm 1s infinite;
}


#shakealarmbigscreenkonto {
  position: absolute;
  right: 5px;
  top: 27.5%;
}
#shakealarmsmallscreenkonto {
  position: absolute;
  right: 0;
  top: 0;
}
#shakealarmkontopopup {
  position: absolute;
  right: 75px;
  top: 27%;
}
#shakealarmmeny {
  position: absolute;
  right: 15px;
  top: 25%;
}
#shakealarmbevakningtab {
  position: absolute;
  right: 15px;
  top: 25%;
}




@media (min-width: 1920px) {
  .superscreentop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -9;
    background-color: black;
    height: 32.8px;
    width: 100vw;
  }
  .superscreenovertop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -10;
    background-color: rgb(37, 35, 35);
    height: 112.8px;
    width: 100vw;
  }
  .superscreenoverbottom {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -10;
    background-color: rgb(37, 35, 35);
    height: 330.3px;
    width: 100vw;
  }
  .superscreenbottom {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -9;
    background-color: black;
    height: 36.8px;
    width: 100vw;
  }
  .pc_top_head {
    box-shadow: none;
  }
}

@media (max-width: 1920px) {
  .pc_top_head {
    box-shadow: 0 0 10px rgb(37, 35, 35);
  }
}



@keyframes initialScrollLeftNewMember {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
@keyframes scrollLeftNewMember {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
@keyframes scrollRightNewMember {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(0); }
}
.initial-scrolling-left-NewMember {
  animation: initialScrollLeftNewMember 45s linear forwards;
}
.scrolling-left-NewMember {
  animation: scrollLeftNewMember 45s linear forwards;
}
.scrolling-right-NewMember {
  animation: scrollRightNewMember 45s linear forwards;
}

.newmemberpopup {
  position: fixed;
  top: calc(50% + 20px);
  left: 50%;
  transform: translate(-50%, -50%);
  min-height: 400px;
  max-height: 80vh;
  z-index: 100000;
  background-color: white;
  border-radius: 15px;
  width: 75%;
  max-width: 1000px;
  min-width: 300px;
  box-shadow: 0 0 10px lightgrey;
}
.nmp_piccontainer {
  display: flex;
  white-space: nowrap;
  gap: 5px;
  width: 100%;
  position: relative;
  margin-top: 10px;
  overflow: hidden;
}
.nmppc_inner {
  display: flex;
  width: max-content;
}
.nmppc_inner:hover {
  animation-play-state: paused;
}
.nmppc_imagecontainer {
  padding: 5px;
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nmppc_imagecontainer img {
  max-width: 500px;
  max-height: 500px;
  width: auto;
  height: auto;
}
.nmp_title {
  font-family: 'Ephesis', 'Poppins', 'Times';
  letter-spacing: 1px;
  text-align: center;
}
.nmp_text {
  font-family: 'Poppins', 'Times';
  letter-spacing: 0.5px;
  margin-top: 10px;
  text-align: center;
}
.nmp_close {
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  padding: 5px;
}
.member_guide_popup {
  font-size: 12px;
  margin-top: 10px;
  padding: 4px 10px;
  width: 100px;
  color: black;
  border-radius: 5px;
  background-color: #f1e0e0;
  text-decoration: none;
  text-align: center;
}

@media (max-width: 850px) {
  .nmp_text {
    font-size: 12px;
  }
  .nmp_title {
    font-size: 25px;
    line-height: 20px;
  }
  .newmemberpopup {
    padding: 25px 15px;
  }
}
@media (min-width: 851px) {
  .nmp_text {
    font-size: 12px;
  }
  .nmp_title {
    font-size: 45px;
    line-height: auto;
  }
  .newmemberpopup {
    padding: 25px;
  }
}