:root {
  --color-brand--1: #eb5755;
  --color-brand--2: #71b36b;
  --color-dark--1: #2d3439;
  --color-dark--2: #42484d;
  --color-light--1: #aaa;
  --color-light--2: #ececec;
  --color-light--3: rgb(214, 222, 224);
  --dctuk-lightblue: #3b9dd6;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}
html {
  font-size: 62.5%;
  box-sizing: border-box;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--color-light--2);
  font-weight: 400;
  line-height: 1.6;
  height: 100vh;
  overscroll-behavior-y: none;
  background-color: #fff;
  display: flex;
}

a:link,
a:visited {
  color: var(--color-brand--1);
}

.sidebar {
  z-index:1001 ;
  flex-basis: 40rem;
  background-color: var(--color-dark--1);
  padding: 3rem 5rem 4rem 5rem;
  display: flex;
  flex-direction: column;
}

.mobileNav{
  z-index: 1000;
  position: absolute;
  top: 25px;
  right: 25px;
}

.existSideBar{
  font-size: 30px;
  font-weight: 900;
  position: absolute;
  top: 25px;
  right: 25px;
}

.logo {
  height: 5.2rem;
  align-self: center;
  margin-bottom: 4rem;
}

.fitters {
  list-style: none;
  height: 77vh;
  overflow-y: scroll;
  overflow-x: hidden;
}

.fitters::-webkit-scrollbar {
  width: 0;
}

.fitter--newbie {
  border-left: 5px solid var(--color-brand--1);
}
.fitter--midexperience {
  border-left: 5px solid yellow;
}
.fitter--expert {
  border-left: 5px solid var(--color-brand--2);
}

.FitForm,
.confirmed,
.order,
.quoted,
.survey,
.newlead,
.snagging {
  border-radius: 5px;
  margin-bottom: 1rem;
  margin-top: 1.75rem;
  font-size: 9px;
}
.FitForm {
  color: #eb5755;
}
.confirmed {
  color: #93e088;
}
.order {
  color: #d0f0fd;
}
.quoted {
  color: #cfdfff;
}
.survey {
  color: #ffa981;
}
.newlead {
  color: #d0f0fd;
}
.snagging {
  color: #cdb0ff;
}
.wallcoverings {
  color: #20d9d2;
}

.hidden {
  transform: translateY(-30rem);
  height: 0;
  padding: 0 2.25rem;
  margin-bottom: 0;
  opacity: 0;
}

.copyright {
  margin-top: auto;
  font-size: 1.3rem;
  text-align: center;
  color: var(--color-light--1);
}

.twitter-link:link,
.twitter-link:visited {
  color: var(--color-light--1);
  transition: all 0.2s;
}

.twitter-link:hover,
.twitter-link:active {
  color: var(--color-light--2);
}

#map {
  flex: 1;
  height: 100%;
  background-color: var(--color-light--1);
}

.leaflet-popup .leaflet-popup-content-wrapper {
  background-color: var(--color-dark--1);
  color: var(--color-light--2);
  border-radius: 5px;
}

.leaflet-popup .leaflet-popup-content {
  font-size: 1.5rem;
}

.leaflet-popup .leaflet-popup-tip {
  background-color: var(--color-dark--1);
}

.newbie-popup .leaflet-popup-content-wrapper {
  border-left: 5px solid var(--color-brand--1);
}
.midexperience-popup .leaflet-popup-content-wrapper {
  border-left: 5px solid yellow;
}
.expert-popup .leaflet-popup-content-wrapper {
  border-left: 5px solid var(--color-brand--2);
}
.pointer:hover {
  cursor: pointer;
}
.delete {
  cursor: pointer;
  text-align: right;
}
.delete:hover {
  color: red;
}
.smalltext {
  width: 150px;
}

.loginLayer {
  position: fixed;
  height: 100%;
  width: 100%;
  background-color: var(--color-dark--1);
  z-index: 10000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.card {
  box-shadow: 2px 3px 2px 3px black;
  border-radius: 5px;
  height: 280px;
  width: 300px;
  background-color: white;
  color: var(--color-dark--1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.card img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 25px;
  text-align: center;
}
.card form {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.button {
  background-color: var(--color-dark--1);
  color: white;
  margin-top: 20px;
  padding: 9px 15px 9px 15px;
  border-radius: 2px;
  border-style: none;
  cursor: pointer;
}
.button:active {
  background-color: var(--color-dark--2);
  color: black;
}
.button:hover {
  background-color: var(--dctuk-lightblue);
}

.loader {
  border: 8px solid #f3f3f3;
  border-radius: 50%;
  border-top: 8px solid #3498db;
  width: 75px;
  height: 75px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  display: none;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.textStatus {
  font-family: "Manrope", sans-serif;
  display: none;
  font-size: 15px;
  color: white;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-top: 20px;
}
.waitingDiv {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}
.entryPerson {
  cursor: pointer;
}
.wrongDetails,
.wrongLoginDetails {
  color: #eb5755;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  display: none;
  margin-top: 10px;
}

.smallbox {
  margin-bottom: 5px;
  color: var(--color-dark--2);
  background-color: white;
  border-radius: 3px;
  cursor: pointer;
  display: grid;
  gap: 0.75rem 1.5rem;
}

.formdistance,
.distancesDescriptionCard {
  color: var(--color-dark--2);
  background-color: white;
  border-radius: 5px;
  font-size: 13px;
  margin-top: 10px;
  padding: 20px;
  padding-top: 5px;
}

.ulDistance {
  list-style: none;
  padding: 20px;
  padding-top: 5px;
}
.hidden {
  display: none;
}
