body {
  font-family: "Hanken Grotesk", sans-serif;
  margin: 0;
  min-height: 100dvh;

  font-size: 16px;
}

:root {
    --red: #ff4c4c;
    --orange: #ff8800;
    --lighterGrey: #e7e7e7;
    --lightGrey: #c1c1c1;
    --grey: #616161;
    --darkGrey: #474747;
    --darkerGrey: #181818;
    --alert: #db3131;
    --darkAlert: #b40000;
    --lighterBlue: #96c2ff;
    --lightBlue: #589dff;
    --blue: #3488ff;
    --darkBlue: #276ed0;
    --darkBlue: #22569e;
}

/* Flexbox */

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

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

.f-column {
  display: flex;
  flex-direction: column;
}

.f-column-reverse {
  display: flex;
  flex-direction: column-reverse;
}

/* Flexbox Properties*/

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

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

.ali-cont-center {
  align-content: center;
}

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

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

.ali-evenly {
  justify-content: space-evenly;
}

.wrap {
  flex-wrap: wrap;
}

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

.gap-small {
  gap: 5px;
}

.gap-regular {
  gap: 10px;
}

.gap-large {
  gap: 20px;
}

/* Cursor */

.c-pointer {
  cursor: pointer;
}

/* Font Family */

.font {
  font-family: "Hanken Grotesk", sans-serif;
}

/* Font Sizes */

.title {
  font-size: 32px;
  font-weight: 600;
}

.subtitle {
  font-size: 24px;
  font-weight: 500;
}

.text {
  font-size: 20px;
  font-weight: 300;
}

/* Text Align */

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

/* Font Weight */

.lightbold {
  font-weight: 500;
}

.bold {
  font-weight: bold;
}

.bolder {
  font-weight: bolder;
}

/* Icons */

.icon-small {
  width: 15px;
  height: 15px;

  & img {
    width: 100%;
    height: 100%;
  }
}

.icon-regular {
  width: 20px;
  height: 20px;

  & img {
    width: 100%;
    height: 100%;
  }
}

.icon-large {
  width: 30px;
  height: 30px;

  & img {
    width: 100%;
    height: 100%;
  }
}

.icon-xlarge {
    width: 40px;
    height: 40px;
    & img

{
    width: 100%;
    height: 100%;
}

}

/* Padding */
.p-0 {
  padding: 0;
}

.p-small {
  padding: 5px;
}

.p-regular {
  padding: 10px;
}

.p-large {
  padding: 20px;
}

.p-left-small {
  padding-left: 5px;
}

.p-left-regular {
  padding-left: 10px;
}

.p-left-large {
  padding-left: 20px;
}

.p-vertical-small {
  padding-top: 5px;
  padding-bottom: 5px;
}

.p-vertical-regular {
  padding-top: 10px;
  padding-bottom: 10px;
}

.p-vertical-large {
  padding-top: 20px;
  padding-bottom: 20px;
}

.p-horizontal-small {
  padding-left: 5px;
  padding-right: 5px;
}

.p-horizontal-regular {
  padding-left: 10px;
  padding-right: 10px;
}

.p-horizontal-large {
  padding-left: 20px;
  padding-right: 20px;
}

/* Margin */

.m-0 {
  margin: 0;
}

.m-0-auto {
  margin: 0 auto;
}

/* Border */

.b-radius {
  border-radius: 5px;
}

.b-lighterGrey {
  border: 1px solid var(--lighterGrey);
}

/* Scrollbar */

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: none;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: var(--lightGrey);
  border-radius: 10px;
  border: 2px solid #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--grey);
}

/* Box-Shadow */

.b-shadow-lighterGrey {
  box-shadow: 0px 0px 20px 0px var(--lighterGrey);
}

/* Width */

.w-100 {
  width: 100%;
}

.w-90 {
  width: 90%;
}

/* Word Break */

.wb-break-all {
  word-break: break-all;
}