/* google font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;800&family=VT323&display=swap');

/* layout */
:root {
  --primary: #1aac83;
  --error: #e7195a;
}

body {
  background: #f1f1f1;
  margin: 0;
  font-family: 'Poppins';
}

header {
  background: #2a4365;
}

.navbarLogo {
  max-width: 250px;
  margin-left: 100px;
}

.navbar-custom {
  background-color: #2a4365 !important;
}

.nav-link-custom {
  color: white !important;
}

.navbar-toggler-icon {
  color: white !important;
}

.navbar-toggler {
  padding-right: 10px !important;
}

header .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header a {
  color: #333;
  text-decoration: none;
}

.pages {
  max-width: 1400px;
  padding: 20px;
  margin: 0 auto;
}

.navbar-container {
  width: 100%;
  max-width: 1400px;
  padding: 20px;
  margin: 0 auto;
}

.navContainer {
  max-width: 1400px;
  margin: 0 auto;
}

.navCC {
  display: flex;
  justify-content: flex-start;
}

/* homepage */
.home {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 100px;
}

.workout-details {
  background: #fff;
  border-radius: 4px;
  margin: 20px auto;
  padding: 20px;
  position: relative;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.05);
}

.workout-details h4 {
  margin: 0 0 10px 0;
  font-size: 1.2em;
  color: var(--primary);
}

.workout-details p {
  margin: 0;
  font-size: 0.9em;
  color: #555;
}

.workout-details span {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  background: #f1f1f1;
  padding: 6px;
  border-radius: 50%;
  color: #333;
}

/* new workout form */
label,
input {
  display: block;
}

input {
  padding: 10px;
  margin-top: 10px;
  margin-bottom: 20px;
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
}

form button {
  background: var(--primary);
  border: 0;
  color: #fff;
  padding: 10px;
  font-family: 'Poppins';
  border-radius: 4px;
  cursor: pointer;
}

div.error {
  padding: 10px;
  background: #ffefef;
  border: 1px solid var(--error);
  color: var(--error);
  border-radius: 4px;
  margin: 20px 0;
}

input.error {
  border: 1px solid var(--error);
}

/* navbar */
nav {
  display: flex;
  align-items: center;
}

nav a,
nav button {
  margin-left: 10px;
}

nav button {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 6px 10px;
  border-radius: 4px;
  font-family: 'Poppins';
  cursor: pointer;
  font-size: 1em;
}

/* auth forms */
form.signup,
form.login {
  max-width: 400px;
  margin: 40px auto;
  padding: 20px;
  background: #fff;
  border-radius: 4px;
}

/* Pricetracker cards  */
.pricetrackercards {
  background-color: white !important;
  padding: 15px 0;
  border-radius: 20px;
  margin-top: 15px;
  margin-bottom: 15px;
  font-family: 'Poppins', sans-serif;
  box-shadow: 2px 2px 13px -4px rgba(168, 168, 168, 1);
  min-height: 130px;
}

.pricetrackercards:hover .TDdelete {
  visibility: visible;
}

.pricetrackercards img {
  text-align: center;
  display: block;
  max-width: 100px;
  max-height: 100px;
  width: auto;
  height: auto;
  margin: 0 auto;
}

.backgroundTracker {
  background-color: f5f7fa;
}

.trackerDetailsTitle {
  font-size: 1rem;
  color: black;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.TDmain {
  justify-content: center;
  display: flex;
  flex-direction: column;
  padding-top: 10px;
}

.trackerDetailsRemaining {
  line-height: 0;
  font-size: 0.9rem;
}

.TDprice {
  display: flex;
}

.TDpriceP {
  margin: auto;
}

.TDtotracker {
  position: relative;
  display: flex;
}

.TDdelete {
  position: absolute !important;
  right: 25px;
  color: lightgrey !important;
  cursor: pointer;
  visibility: hidden;
}

.TDdelete:hover {
  color: grey !important;
}

.trackerButton {
  margin: auto;
  background-color: #f55421 !important;
  border-width: 0 !important;
}

/* Winstcalculator */
.profitStyling {
  font-family: 'Poppins', sans-serif;
}

.profitStyling h2 {
  font-size: 1.3rem;
  color: #555;
}

.label {
  min-width: 250px !important;
  display: inline-block !important;
  text-align: left !important;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border-right: 0 !important;
  background-color: #f5f7fa !important;
}

.css-13cymwt-control {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.form-control {
  text-align: left;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}

input[type='number'] {
  -moz-appearance: textfield;
  /* Firefox */
}

.form-control.nopadding {
  padding: 0 !important;
  border: 0 !important;
  height: 20px !important;
}

/* Add red border */
.red-border {
  border-color: red !important;
}

.profitdiv {
  background-color: #f5f7fa;
  margin: 5px;
  border-radius: 15px;
  border: 1.2px solid #b5b7b9;
  padding: 15px;
  word-wrap: break-word;
}

.profitdivGreen {
  background-color: #b0f5ab;
  margin: 5px;
  border-radius: 15px;
  border: 1.6px solid #90ef90;
  padding: 15px;
  word-wrap: break-word;
}

.profitdivRed {
  background-color: #fc94a1;
  margin: 5px;
  border-radius: 15px;
  border: 1.6px solid #fc6c85;
  padding: 15px;
  word-wrap: break-word;
}

.profitdiv span {
  font-size: 0.9rem;
}

.profitNumber {
  font-size: 2rem !important;
  font-weight: 700;
  padding-bottom: 0 !important;
}

.profitSpecificationL {
  background-color: #f5f7fa !important;
  margin: 5px 0 5px 5px;
  border: 1.2px solid #b5b7b9;
  border-right: 0 !important;
  padding: 15px;
  border-radius: 15px 0 0 15px;
}

.profitSpecificationR {
  background-color: #f5f7fa !important;
  margin: 5px 5px 5px 0;
  border: 1.2px solid #b5b7b9;
  border-left: 0 !important;
  padding: 15px;
  border-radius: 0 15px 15px 0;
}

.col-6.winstL {
  padding-right: 0 !important;
}

.col-6.winstR {
  padding-left: 0 !important;
}

.svg-inline--fa {
  min-width: 30px !important;
  text-align: left !important;
}

.resetButton {
  font-size: 1rem !important;
  color: blue !important;
  font-weight: 400;
  text-align: right !important;
  padding-right: 10px !important;
  padding-top: 2px;
  text-decoration: underline;
}

.smallBTW {
  font-size: 0.7rem;
}

@media only screen and (max-width: 600px) {
  .labelMobile {
    min-width: 100px !important;
  }

  .profitNumber {
    font-size: 1.5rem !important;
  }

  .profitdiv {
    margin-right: 0;
    margin-left: 0;
  }

  .profitSpecification {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
}

.trackerAddButton .btn {
  background-color: #f55421 !important;
  border-width: 0 !important;
}

.trackerAddButton {
  display: flex !important;

  justify-content: flex-end !important;
}

.orangeButton {
  background-color: #f55421 !important;
  border-width: 0 !important;
}

.modal-body .home {
  display: block;
}

.modal-body input {
  margin-top: 5px;
  margin-bottom: 10px;
}

/* ----------------------------------Product Card */
.productcard {
  background-color: white !important;
  padding: 20px 0;
  border-radius: 20px;

  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
  box-shadow: 2px 2px 13px -4px rgba(168, 168, 168, 1);
}

@media only screen and (max-width: 768px) {
  .productcard {
    padding: 25px;
  }
}

.navbar-toggler {
  margin-right: 15px;
}

.productcard img {
  text-align: center;
  display: block;
  max-width: 100px;
  max-height: 100px;
  width: auto;
  height: auto;
  margin: 0 auto;
}

.ProductDetailsTitle {
  font-size: 1rem;
  color: black;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.TDmain {
  justify-content: center;
  display: flex;
  flex-direction: column;
  padding-top: 10px;
}

.productcard p {
  font-size: 1.1rem;
  font-weight: 200;
}

.productStock {
  display: flex;
  align-items: center;
  justify-content: center;
}

.stockChild {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stockImage {
  width: 25px !important;
  /* Pas de gewenste breedte van de afbeelding aan */
  height: auto;
  /* Behoud de aspect ratio */
}

.stockNumber {
  margin-top: 7px !important;
  /* Stel de gewenste ruimte in boven het cijfer in */
}

.productDetailsRemaining {
  font-size: 0.9rem !important;
}

.productStockContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-top: 15px;
  /* Voeg de gewenste ruimte toe tussen de stockChild-elementen */
}

.productStockContainer .stockChild {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stockNumberInput {
  width: 40px;
  font-size: 1.1rem;
  font-weight: 200;
  margin-top: 10px;
  margin-bottom: 15px;
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 3px;
  padding-right: 3px;
  text-align: center;
  border-width: 0;
}

.stockNumberInput:focus {
  border-color: #1aac83 !important;
}

.forecast {
  text-align: center;
}

.forecast p {
  font-size: 0.9rem;
  margin-bottom: 0;
  font-weight: 400;
}

.forecast span {
  font-size: 0.7rem;
  margin-bottom: 0;
}

.conditionImage {
  width: 40px !important;
  margin-left: 6px !important;
  margin-top: 29px !important;
}

.conditionImage1 {
  width: 40px !important;

}

.conditionImageReplenishment {
  width: 40px !important;
}

.PpriceP {
  text-align: left;
  margin-top: 27px;
}

.nopaddingleft {
  padding-left: 0 !important;
}

.css-qbdosj-Input {
  text-align: right !important;
}

.plusSign {
  margin-top: 5px;
  margin-left: 5px;
  cursor: pointer;
}

.ellipsis-text {
  height: 3em;
  /* Stel de gewenste hoogte in */
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 25px;
}

.productLabel {
  font-size: 1.5rem;
  padding-left: 2px !important;
}

.shipmentName {
  font-weight: bold !important;
}

.saveShipment {
  background-color: #f55421 !important;
  border-color: #f55421 !important;
}

.expectedTitle {
  font-size: 2rem !important;
  font-weight: 700 !important;
  padding-top: 0;
  margin-bottom: 0;
}

.expecteddatecreated {
  margin-bottom: 15px !important;
  font-size: 0.9rem !important;
}

.expectedCard {
  padding: 30px;
  font-size: 1rem !important;
}

.font200 {
  font-weight: 200;
  font-size: 1.1rem;
}

.expectedRow {
  margin-bottom: 25px;
}

.makeBold {
  font-weight: 600 !important;
}

.makeCenter {
  text-align: center !important;
}

.centerInputLVB {
  justify-content: center;
  display: flex;
}

.expectedBox {
  display: inline-block;
  padding: 5px;
  background-color: #173057;
  text-align: center !important;
  color: white;
  border-radius: 5px;
}

.toggleInclude {
  height: 0.3em !important;
  width: 1em !important;
  vertical-align: middle !important;
  margin-top: 20px !important;
}

.filterPosition {
  margin-top: 15px !important;
}

.inputNewStock {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 13px !important;
  width: 60px !important;
}

.rowDescription {
  font-size: 0.9rem;
  font-weight: 500 !important;
  color: #555;
  display: flex;
  justify-content: center;
}

.rowTitles {
  margin-bottom: 10px !important;
  position: sticky;
  top: 0;
  background-color: white;
}

.stockNumberInput {
  text-align: center !important;
}

.conditionText {
  margin-bottom: 0;
  margin-top: 9px !important;
  text-align: center;
}

.copyShipment {
  margin-top: 10px !important;
}

.productRow {
  margin-top: 25px !important;
}

.productPageTitle {
  font-size: 1.6rem;
  font-weight: 100;
  padding-left: 40px;
}

.productPageEan {
  font-weight: 200 !important;
  padding-left: 40px;
  margin-bottom: 0;
}

.makeRight {
  text-align: right;
}

.toggleColor {
  background-color: #f8f9fa !important;
  color: black !important;
  border-color: #dee2e6 !important;
}

.lvbFormat {
  text-align: right;
  color: black !important;
}

.spaceUnderNav {
  margin-bottom: 25px !important;
}

.expectedDeleteButton {
  position: absolute !important;
  right: 20px;
  color: lightgrey !important;
  cursor: pointer;
  visibility: hidden;
}

.expectedDeleteButton:hover {
  color: lightgrey !important;
  cursor: pointer;
  /* visibility: visible; */
}

.expectedContainer {
  position: relative;
  display: flex;
}

.expectedCard:hover .expectedDeleteButton {
  visibility: visible;
}

.profiteuro {
  margin-bottom: 0 !important;
}

.profitpercentage {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 0.8rem !important;
}

.bannerTitle {
  font-size: 0.9rem !important;
  margin-bottom: 0;
}

.bannerNumber {
  font-weight: 700 !important;
  font-size: 2rem !important;
  margin-bottom: 0;
}

.bannerDiv {
  margin-left: 25px !important;
}

.articleBanner {
  margin: 0 !important;
  font-size: 0.8rem;
}

.numberProducts {
  margin-bottom: -15px !important;
}

.spinner {
  width: 20px !important;
}

.sliding-window {
  padding-top: 50px;
  width: 400px;
  height: 100vh;
  position: fixed;
  top: 0;
  right: -400px;
  background-color: white;
  transition: right 0.3s ease;
  z-index: 0.5;
  box-shadow: -11px 0px 20px -7px rgba(0, 0, 0, 0.26);
  overflow: auto;
  /* Of overflow: scroll; */
}

.sliding-window.open {
  right: 0;
}

.window-content {
  padding: 16px;
}

.close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 5px;
}

.navbar-expand-lg {
  z-index: 1;
}

.productPageImage {
  max-width: 250 px;
  max-height: 250px;
  width: auto;
  height: auto;
}

.btn-orange {
  background-color: #f55421 !important;
  border-color: white !important;
}

.btn-mutations {
  margin-left: 40px !important;
}

.link-wrapper a {
  text-decoration: none;
  color: inherit;
}

.forgotPassword {
  padding-top: 10px !important;
  padding-bottom: 0 !important;
}

.stockCard {
  background-color: #b0f5ab;
  border: 1.6px solid #90ef90;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 10px;
}

.stockdatecard {
  font-size: 0.8rem;
}

.stockcardTitle {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
}

.stockcardvalue {
  display: block;
}

.lvbNumbers {
  text-align: center;
  padding-top: 30px;
  margin-bottom: 0;
}

.lvbButton {
  text-align: right;
}

.conceptRow {
  font-size: 1.1rem;
  font-weight: 200;
  font-family: 'Poppins', sans-serif;
  background-color: white !important;
  padding: 20px 0;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 2px 2px 13px -4px rgb(211, 211, 211);
  cursor: pointer;
  color: black;
}

.lvbStockNumber {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.quantityAnnounced {
  font-size: 0.7rem !important;
}

.picklistLink {
  text-decoration: none !important;
  color: black;
}

.conceptRow:hover {
  background-color: rgb(225, 225, 225) !important;
}
/* 
Styles for picklist */
.conceptPorductTitle {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Aantal regels om weer te geven */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.conceptPorductTitlePicked {
  color: rgba(0, 0, 0, 0.3);
}

.conceptProductImage {
  width: 100%;
}

.conceptProductImagePicked {
  opacity: 0.3;
}

.picklistConceptRow {
  padding-bottom: 40px;
}

.conceptExtraInfo {
  display: block;
  font-family: 'Poppins', sans-serif;
}

.conceptExtraInfoPicked {
  color: rgba(0, 0, 0, 0.3);
}

.verticalAlign {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pickNumber p {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 4rem;
  cursor: pointer;
  margin-bottom: 0 !important;
}

.pickNumberPicked {
  color: rgba(0, 0, 0, 0.3);
}

.pickNumberMobile {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 4rem;

  cursor: pointer;
  margin-bottom: 0;
}

.pickNumberMobile p {
  margin-bottom: 0;
}

.picklistPageTitle {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 4rem;

  padding-bottom: 25px;
}

.conceptSubTitle {
  font-family: 'Poppins', sans-serif;
  padding-top: 25px;
  margin-bottom: 0;
}

.bodem-div {
  position: fixed;
  bottom: 0;
  left: 0; /* Of 'right: 0;' als je wilt dat de div aan de rechterkant blijft */
  width: 100%;
  height: 30px;

  color: #fff; /* Hier kun je de gewenste tekstkleur instellen */
  text-align: center; /* Hiermee wordt de tekst in het midden van de div uitgelijnd */
  line-height: 40px; /* Hiermee wordt de tekst verticaal gecentreerd */
}

.backIconConepts {
  height: 32px;
}

.trashIconConcept {
  height: 96px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.picklistIcons {
  height: 20px;
}

.replenishmentInput {
  display: flex;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 4rem;
  text-align: center;
  outline-color: #2a4365;
  padding-top: 0px;
  padding-bottom: 0px;
}

.pickNumberMobilePicked {
  color: #b5b7b9 !important;
}

@media only screen and (max-width: 768px) {
  .pickNumberMobile {
    display: flex;
    justify-content: center;
  }

  .pickNumberMobilePicked {
    color: #b5b7b9 !important;
  }

  .pickNumber {
    display: none;
  }

  .picklistConceptRow {
    margin-top: 35px;
    margin-bottom: 35px;
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .conceptPorductTitle {
    padding-top: 20px;
    font-size: 1.4rem;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Aantal regels om weer te geven */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .conceptPorductTitlePicked {
    color: rgba(0, 0, 0, 0.3);
  }

  .picklistConceptRow {
    border-radius: 30px;
  }

  .pickNumber p {
    margin-bottom: 0;
  }
  .pickNumberMobile p {
    margin-bottom: 0;
  }

  .picklistPageTitle {
    font-size: 2.3rem;
  }

  .hideOnMobile {
    display: none !important;
  }

  .picklistIcons {
    height: 22px;
  }
}

.imageMap {
  width: 100%;
}

.hideOnLaptop {
  display: none !important;
}

.hideOnDesktop {
  display: none !important;
}

@media only screen and (max-width: 768px) {
  .hideOnLaptop {
    display: flex !important;
  }

  .hideOnDesktop {
    display: block !important;
  }

  .stockNumberInput {
    margin-top: 22px;
  }

  .mobile-pt-3 {
    padding-bottom: 17px;
  }
}

.minusBackground {
  height: 20px;
  width: 20px;
  background-color: #b0f5ab;
  border-radius: 100px;
  color: green;
  cursor: pointer;
  font-weight: 600;
  user-select: none;
}

.minusBackgroundRed {
  background-color: #dd3333 !important;
  color: white !important;
}

.progressBar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff55; /* Kies je gewenste achtergrondkleur */
  color: #fff; /* Kies je gewenste tekstkleur */
  padding: 10px;
}

.fullWidthCopyBar {
  margin-top: 10px;
  width: 100%;
}

.dropdown-menu.show {
  background-color: #00000000;
  border: none;
}

.dropdown-menu .dropdown-item {
  color: white;
}

.editIcon {
  color: grey;
  padding-left: 3px;
  cursor: pointer;
  visibility: hidden;
}

.textFieldClass {
  display: flex;
  align-items: center;
}

.textFieldText {
  margin-bottom: 0;
  font-size: 1.1rem;
  font-weight: 200;
  padding-top: 10px;
  padding-bottom: 10px;
}

.textFieldClass:hover .editIcon {
  visibility: visible;
}

.doneIcon {
  color: green;
}

.textFieldInputField {
  border-radius: 12px;
}

.productcardComponent {
  background-color: white !important;
  padding: 20px;
  border-radius: 20px;

  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
  box-shadow: 2px 2px 13px -4px rgba(168, 168, 168, 1);
}

.deleteIcon {
  color: grey;
  cursor: pointer;
}

.deleteIcon:hover {
  color: black;
}

.callReceivedIcon {
  color: grey;
  cursor: pointer;
}

.callReceivedIcon:hover {
  color: black;
}

.tracecodeTitle p {
  font-weight: 700;
  font-size: 18px;
}

.tracecodeProducts p {
  font-size: 0.9rem;
}

#multiple-checkbox {

}