@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --side-gap: 100px;
  --white: #ffff;
  --blue: #296eb6;
  --grey: #61686e;
  --light-grey: #edeeee;
  --black: #242526;
  --shadow: #0000004d 0px 0px 6px;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  font-family: "Roboto", sans-serif;
  color: var(--black);

  &::-webkit-scrollbar {
    width: 14px;
    height: 0px;
  }

  &::-webkit-scrollbar-track {
    background: var(--light-grey);
    margin-top: 100px;
  }

  &::-webkit-scrollbar-thumb {
    background: var(--blue);
  }
}

.heading {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px var(--side-gap);
  box-shadow: var(--shadow);
  position: fixed;
  left: 0;
  top: 0;
  background: var(--white);
}

.heading img {
  width: 90px;
}

.heading h2 {
  font-size: 32px;
  text-align: center;
  color: var(--blue);
}

.heading ul {
  display: flex;
  list-style: none;
}

.heading a {
  text-decoration: none;
  display: inline-block;
  padding: 10px 20px;
  color: var(--black);
  transition: 300ms;
  font-weight: 600;
  font-size: 18px;

  &:hover {
    color: var(--blue);
  }
}

.billing-form {
  padding: 130px var(--side-gap) 30px;
}

.form-box h2 {
  color: var(--black);
  margin-bottom: 20px;
}

.si {
  width: 7%;
}

.desc {
  width: 35%;
}

.measure {
  width: 15%;
}

input,
select {
  height: 45px;
}

label {
  display: block;
}

.submit {
  width: 150px;
  height: 40px;
  background: var(--blue);
  color: var(--white);
  border: solid 1px var(--blue);
  transition: 300ms;
  font-weight: 600;

  &:hover {
    background: var(--white);
    color: var(--blue);
  }
}

.btn-grey {
  width: 120px;
  height: 40px;
  background: var(--grey);
  color: var(--white);
  border: solid 1px var(--grey);
  transition: 300ms;
  font-weight: 600;
  margin-left: 5px;

  &:hover {
    background: var(--white);
    color: var(--grey);
  }
}

.btn-grey span {
  font-size: 20px;
  margin-right: 5px;
}


.list {
  padding: 130px var(--side-gap) 30px;
}

.list h2 {
  color: var(--black);
  margin-bottom: 20px;
}

table button svg {
  font-size: 18px;
}
