.block {
  display: block;
}
.grid {
  display: grid;
}
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.hide {
  display: none;
}

.hide-mobile {
  display: none;
}

@media screen and (min-width: 767px) {
  .hide-mobile {
    display: block;
  }
}

.hide-desktop {
  display: none;
}

@media screen and (max-width: 768px) {
  .hide-desktop {
    display: block;
  }
}

.relative {
  position: relative;
}
.absolute {
  position: absolute;
}

.invisible {
  visibility: hidden;
}
.inset-0 {
  inset: 0;
}

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

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

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

.flex-col {
  flex-direction: column;
}
.flex-reverse {
  flex-direction: row-reverse;
}

.justify-between {
  justify-content: space-between;
}
.justify-center {
  justify-content: center;
}
.justify-end {
  justify-content: flex-end;
}
.justify-start {
  justify-content: flex-start;
}

.align-center {
  align-items: center;
}
.align-start {
  align-items: flex-start;
}
.align-end {
  align-items: flex-end;
}

.align-self-start {
  align-self: flex-start;
}
.align-self-center {
  align-self: center;
}

.font-normal {
  font-weight: 400;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.font-bold {
  font-weight: 700;
}

.font-xxs {
  font-size: 8px;
}
.font-xs {
  font-size: 10px;
}
.font-s {
  font-size: 12px;
}
.font-base {
  font-size: 14px;
}
.font-l {
  font-size: 16px;
}
.font-xl {
  font-size: 18px;
}
.font-xxl {
  font-size: 20px;
}

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

/* gaps */

.gap-4 {
  gap: 4px;
}



/* margins */
.mb-0 {
  margin-bottom: 0;
}
.mt-0 {
  margin-top: 0;
}
.ml-0 {
  margin-left: 0;
}
.mr-0 {
  margin-right: 0;
}

.mb-16 {
  margin-bottom: 16px;
}

.mt-16 {
  margin-top: 16px;
}

.ml-16 {
  margin-left: 16px;
}

.mr-16 {
  margin-right: 16px;
}

.mt-10 {
  margin-top: 10px;
}
.mb-10 {
  margin-bottom: 10px;
}
.ml-10 {
  margin-left: 10px;
}
.mr-10 {
  margin-right: 10px;
}

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

.mb-6 {
  margin-bottom: 6px;
}

.ml-6 {
  margin-left: 6px;
}

.mr-6 {
  margin-right: 6px;
}

/* paddings */
.pb-0 {
  padding-bottom: 0;
}
.pt-0 {
  padding-top: 0;
}
.pl-0 {
  padding-left: 0;
}
.pr-0 {
  padding-right: 0;
}

.pb-10 {
  padding-bottom: 10px;
}
.pt-10 {  
  padding-top: 10px;
}
.pl-10 {
  padding-left: 10px;
}
.pr-10 {
  padding-right: 10px;
}

.color-error {
  color: var(--color-red);
}

.color-gray {
  color: var(--color-gray);
}

.color-success {
  color: var(--color-green);
}

.icon-big {
    width: 32px;
    height: 32px;
}