@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

@import "grid.css";
@import "forms.css";
@import "buttons.css";
@import "tooltip.css";
@import "font.css";

@import "modal.css";
@import "alert.css";

@import "header.css";
@import "index.css";
@import "footer.css";

* {
  margin: 0px;
}

/* body {
  font-family: "Open Sans", sans-serif;
} */

a {
  text-decoration: none;
}

.border-t {
  border: solid 1px #e6e6e6;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.inline {
  display: inline;
}

.none {
  display: none;
}

.block {
  display: block;
}

.flex {
  display: flex;
}

.alignItems-start {
  align-items: start;
}

.alignItems-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-center {
  justify-content: center;
}

.justifyContent-start {
  justify-content: start;
}

.justifyContent-center {
  justify-content: center;
}

.justifyContent-end {
  justify-content: end;
}

.listStyleType-none {
  list-style-type: none;
}

.flex-wrap {
  flex-wrap: wrap;
}

.h-fit {
  height: fit-content !important;
}

.w-100 {
  width: 100%;
}

.w-fitContent {
  width: fit-content !important;
}

.m-0 {
  margin: 0px;
}

.m-1 {
  margin: 5px;
}

.m-2 {
  margin: 11px;
}

.mt-1 {
  margin-top: 5px;
}

.mt-1_5 {
  margin-top: 8px;
}

.mt-2 {
  margin-top: 11px;
}

.mt-3 {
  margin-top: 17px;
}

.mt-4 {
  margin-top: 29px;
}

.mt-5 {
  margin-top: 41px;
}

.mt-6 {
  margin-top: 49px;
}

.mt-7 {
  margin-top: 57px;
}

.mt-8 {
  margin-top: 67px;
}

.mt-9 {
  margin-top: 75px;
}

.mb-1 {
  margin-bottom: 5px;
}

.mb-2 {
  margin-bottom: 11px;
}

.mb-3 {
  margin-bottom: 17px;
}

.mb-4 {
  margin-bottom: 29px;
}

.mb-5 {
  margin-bottom: 41px;
}

.ml-1 {
  margin-left: 5px;
}

.ml-2 {
  margin-left: 11px;
}

.ml-3 {
  margin-left: 17px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mr-1 {
  margin-right: 5px;
}

.mr-2 {
  margin-right: 11px;
}

.mr-3 {
  margin-right: 17px;
}

.mr-4 {
  margin-right: 24px;
}

.mx-2 {
  margin-left: 11px;
  margin-right: 11px;
}

.mx-3 {
  margin-left: 17px;
  margin-right: 17px;
}

.mx-4 {
  margin-left: 24px;
  margin-right: 24px;
}

.mx-5 {
  margin-left: 32px;
  margin-right: 32px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.my-0_5 {
  margin-top: 2px;
  margin-bottom: 2px;
}

.my-1 {
  margin-top: 5px;
  margin-bottom: 5px;
}

.my-2 {
  margin-top: 11px;
  margin-bottom: 11px;
}

.my-3 {
  margin-top: 17px;
  margin-bottom: 17px;
}

.my-4 {
  margin-top: 22px;
  margin-bottom: 22px;
}

.my-5 {
  margin-top: 27px;
  margin-bottom: 27px;
}

.p-0 {
  padding: 0px !important;
}

.p-1 {
  padding: 5px;
}

.p-1_5 {
  padding: 8px;
}

.p-2 {
  padding: 11px;
}

.p-2_5 {
  padding: 14px;
}

.p-3 {
  padding: 17px;
}

.p-4 {
  padding: 24px;
}

.p-5 {
  padding: 32px;
}
.px-0 {
  padding-left: 0px;
  padding-right: 0px;
}

.px-1 {
  padding-left: 5px;
  padding-right: 5px;
}

.px-2 {
  padding-left: 11px;
  padding-right: 11px;
}

.px-3 {
  padding-left: 17px;
  padding-right: 17px;
}

.px-4 {
  padding-left: 22px;
  padding-right: 22px;
}

.px-5 {
  padding-left: 28px;
  padding-right: 28px;
}

.px-6 {
  padding-left: 37px;
  padding-right: 37px;
}

.py-0 {
  padding-top: 0px;
  padding-bottom: 0px;
}

.py-1 {
  padding-top: 5px;
  padding-bottom: 5px;
}

.py-1_5 {
  padding-top: 8px;
  padding-bottom: 8px;
}

.py-2 {
  padding-top: 11px;
  padding-bottom: 11px;
}

.py-3 {
  padding-top: 17px;
  padding-bottom: 17px;
}

.py-4 {
  padding-top: 22px;
  padding-bottom: 22px;
}

.pb-1 {
  padding-bottom: 5px;
}

.pb-2 {
  padding-bottom: 11px;
}

.pb-3 {
  padding-bottom: 17px;
}

.pb-4 {
  padding-bottom: 22px;
}

.pr-1 {
  padding-right: 5px;
}

.pr-2 {
  padding-right: 11px;
}

.pr-3 {
  padding-right: 17px;
}

.pl-1 {
  padding-left: 5px;
}

.pl-2 {
  padding-left: 11px;
}

.pl-3 {
  padding-left: 17px;
}

.b-none {
  border: none !important;
}

.f-left {
  float: left;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.rounded-none {
  border-radius: 0px;
}

.rounded-sm {
  border-radius: 2px;
}

.rounded {
  border-radius: 4px;
}

.rounded-md {
  border-radius: 6px;
}

.rounded-lg {
  border-radius: 8px;
}

.rounded-xl {
  border-radius: 12px;
}

.rounded-2xl {
  border-radius: 16px;
}

.rounded-3xl {
  border-radius: 24px;
}

.rounded-full {
  border-radius: 9999px;
}

.bg-white {
  background-color: white;
}

.bg-lightgrey {
  background-color: lightgrey;
}

.bg-slate-100 {
  background-color: #f1f5f9;
}

.bg-slate-200 {
  background-color: #e2e8f0;
}

.bg-slate-300 {
  background-color: #cbd5e1;
}

.bg-slate-400 {
  background-color: #94a3b8;
}

.pointer {
  cursor: pointer;
}

.grow {
  flex-grow: 1;
}
