/* Main */
#one-tag {
  padding-right: 1rem;
}
a{
  text-decoration: none;
}

/* Display */
.block {
  display: block;
}
.flex-col {
  display: flex;
  flex-direction: column;
}

.flex-row {
  display: flex;
  flex-direction: row;
}

.flex-row-reverse {
  display: flex;
  flex-direction: row-reverse;
}

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

.shrink-0 {
  flex-shrink: 0;
}

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

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

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

/* Sizes */
.size-1 {
  width: 0.5rem;
  height: 0.5rem;
}

.size-2 {
  width: 1rem;
  height: 1rem;
}

.size-3 {
  width: 2rem;
  height: 2rem;
}

.size-4 {
  width: 4rem;
  height: 4rem;
}

/* Widths */
.w-3 {
  width: 2rem;
}
.w-4 {
  width: 4rem;
}

.w-5 {
  width: 8rem;
}

.w-5\.5 {
  width: 12rem;
}

.w-6 {
  width: 16rem;
}

.w-7 {
  width: 32rem;
}

.w-1\/3 {
  width: 33vw;
}

.w-2\/3 {
  width: 66vw;
}

.w-full {
  width: 100%;
}

/* Gaps */
.gap-x-1 {
  column-gap: 0.5rem;
}

.gap-x-2 {
  column-gap: 1rem;
}

.gap-x-3 {
  column-gap: 2rem;
}

.gap-y-1 {
  row-gap: 0.5rem;
}

.gap-y-2 {
  row-gap: 1rem;
}

.gap-y-3 {
  row-gap: 2rem;
}

/* Alignments */
.items-center {
  align-items: center;
}

/* Paddings */
.p-1 {
  padding: 0.5rem;
}

.p-2 {
  padding: 1rem;
}

.pt-1 {
  padding-top: 0.5rem;
}

.pb-1 {
  padding-bottom: 0.5rem;
}

.pb-2 {
  padding-bottom: 1rem;
}

.px-0\.5 {
  padding-left: 0.2rem;
  padding-right: 0.2rem;
}

.px-1 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-2 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.pe-1 {
  padding-right: 0.5rem;
}

.ps-1 {
  padding-left: 0.5rem;
}

.py-0\.5 {
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
}

.py-1 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* Margins */
.my-1 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 2rem;
}

.mt-4 {
  margin-top: 4rem;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 2rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

.ms-auto {
  margin-left: auto;
}

/* Text */
.input-label {
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
  padding: 0;
}

.text-red {
  color: #dd1100;
}

.text-green {
  color: #338800
}

.text-gray {
  color: #555555;
}

.text-gray-light {
  color: #ccc;
}

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

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-md {
  font-size: 0.8rem;
  line-height: 1rem;
}

.text-lg {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 2rem;
}

.font-bold {
  font-weight: bold;
}

.uppercase {
  text-transform: uppercase;
}

.italic {
  font-style: italic;
}

/* Cursor */
.cursor-pointer {
  cursor: pointer;
}

/* Opacity */
.opacity-0 {
  opacity: 0
}

/* Fonts */
.font-courier {
  font-family: "Courier New";
}

/* Borders */
.border-b {
  border-bottom: 1px solid;
}

.border-gray-light {
  border-color: #ccc;
}

.rounded-sm {
  border-radius: 0.4rem;
}

/* SVG */
.fill-green {
  fill: #338800
}

.fill-red {
  fill: #dd1100
}

.fill-gray-light {
  fill: #ccc;
}

/* Background */
.bg-green-light {
  background-color: #cdecbc;
}

.bg-orange-light {
  background-color: #f1d9b2;
}

.bg-red-light {
  background-color: #eec2be;
}

.bg-blue-light {
  background-color: #d2d8f3;
}

/* Lists */
.list-disc {
  list-style-type: disc;
  list-style-position: inside;
}

/* Position  */
.absolute {
  position: absolute;
}

.top-0 {
  top: 0;
}