* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  font-family: "Inter", "Rubik", sans-serif;
  overflow-x: hidden;
}
/* ========================== */
/* MAIN CONTAINERS */
/* ========================== */
.container {
  /* 1140px */
  max-width: 120rem;
  padding: 0 3.2rem;
  margin: 0 auto;
}

.container-border {
  border-radius: 2rem;
}
/* ========================== */
/* GRIDS */
/* ========================== */
.grid {
  display: grid;
  column-gap: 6.4rem;
  row-gap: 9.6rem;
}

.grid-yes-no {
  display: grid;
  column-gap: 3rem;
}

.grid:not(:last-child) {
  margin-bottom: 9.6rem;
}

.grid-2-cols {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3-cols {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4-cols {
  grid-template-columns: repeat(4, 1fr);
}

.grid-5-cols {
  grid-template-columns: repeat(5, 1fr);
}

/* .grid--5-cols {
  grid-template-columns: repeat(5, 1fr);
} */

.grid-center-v {
  align-items: center;
}

/* ========================== */
/* TITLES */
/* ========================== */
.page-title {
  width: 100%;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  font-size: 1.8rem;
  color: #fff;
  text-decoration: underline;
  background-color: #0b5001;
  overflow: hidden;
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
}

/* ========================== */
/* CONTROLS */
/* ========================== */
.form-lable {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #555;
}

.form-control {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.8rem;
  font-family: inherit;
  color: inherit;
  border: none;
  background-color: #fdf2e9;
  border-radius: 9px;
  box-shadow: 0 1px 2px rgba(11, 80, 1, 0.1);
  color: #aaa;
}

.btn,
.btn:link,
.btn:visited {
  display: inline-block;

  text-decoration: none;
  font-size: 2rem;
  font-weight: 600;
  /* padding: 1.6rem 3.2rem; */
  border-radius: 9px;

  /* Only necessary for .btn */
  border: none;
  cursor: pointer;
  font-family: inherit;

  /* Put transition on original "state" */
  /* transition: background-color 0.3s; */
  transition: all 0.3s;
}

.btn-form {
  background-color: #0b5001;
  color: #fdf2e9;
  align-self: end;
  padding: 1.2rem;
  width: 10rem;
}

.btn-form:hover {
  color: #0b5001;
  background-color: #fff;
  box-shadow: inset 0 0 0 3px #0b5001;
}

.btn-form-disable:hover {
  cursor: default;
}

.btn-form-disable {
  background-color: #C9C9C9;
  color: #fdf2e9;
  align-self: end;
  padding: 1.2rem;
  width: 10rem;
}

.btn-popup {
  background-color: #0b5001;
  color: #fdf2e9;
  align-self: end;
  padding: 1rem;
  width: 8rem;
  font-size: 1.3rem;
}
.btn-popup:hover {
  color: #0b5001;
  background-color: #fff;
  box-shadow: inset 0 0 0 3px #0b5001;
}

.paid-icon,
.delete-icon,
.modify-icon {
  color: #0b5001;
  stroke: #0b5001;
  cursor: pointer;
  height: 3rem;
  width: 3rem;
}

.default-pointer:hover {
  cursor: default;
}

.hand-pointer:hover {
  cursor: pointer;
}

.border-radius-bottom {
  border-bottom-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
  overflow: none;
}

.margin-bottom-sm {
  margin-bottom: 5rem !important;
}

.margin-top-sm {
  margin-top: 5rem !important;
}

.margin-top-vsm {
  margin-top: 2.5rem !important;
}

.margin-bottom-none {
  margin-bottom: 0 !important;
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #0b5001;
}

input:focus + .slider {
  box-shadow: 0 0 1px #0b5001;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.test-border {
  border: 1px solid #0b5001;
}

.flex {
  display: flex;
}
