
a {
  text-decoration: none;
}

.decoration-none {
  text-decoration: none;
}

.rounded-t-lg {
  border-radius: 10px 10px 0px 0px;
}

.rounded-r-lg {
  border-radius: 0px 10px 10px 0px;
}

.rounded-b-lg {
  border-radius: 0px 0px 10px 10px;
}


.rounded-l-lg {
  border-radius: 10px 0px 0px 10px;
}

.border-b-2 {
  border-bottom: 1px solid black;
}

.border-r-2 {
  border-bottom: 1px solid black;
}

.border-t-2 {
  border-bottom: 1px solid black;
}

.border-l-2 {
  border-bottom: 1px solid black;
}

.rounded-10 {
  border-radius: 10px;
}

.border-t-none {
  border-top: none;
}

.border-l-none {
  border-left: none;
}

.border-r-none {
  border-right: none;
}

.border-b-none {
  border-bottom: none;
}

.grow-1 {
  flex-grow: 1;
}

.border-dashed {
  border: 1px dashed black;
}

.border-medium{
  border: 1px solid rgba(0, 0, 0, 0.507);
}

.grow-2 {
  flex-grow: 2;
}

.shadow-b {
  box-shadow: 0px 3px 2px 0px rgba(0, 0, 0, 0.1);
}