/* text */
.fz-12 {
  font-size: 12px;
}
.fz-14 {
  font-size: 14px;
}
.fz-16 {
  font-size: 16px;
}
.fz-20 {
  font-size: 20px;
}
.fz-24 {
  font-size: 24px;
}
.fz-32 {
  font-size: 32px;
}
.fw-500 {
  font-weight: 500;
}
.fw-700 {
  font-weight: 500;
}
.b {
  font-weight: bold;
}
.up {
  text-transform: uppercase;
}
.lh-2 {
  line-height: 2; 
}
.ta-center {
  text-align: center;
}

/* Position */
.flex {
  display: flex;
}
.wrap {
  flex-wrap: wrap;
}
.space-between {
  justify-content: space-between;
}
.centered {
  justify-content: center;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-column {
  display: flex;
  flex-direction: column;
}
.ai-center {
  align-items: center;
}
.ai-baseline {
  align-items: baseline;
}
.flex-1-1-auto {
  flex: 1 1 auto;
}
.relative {
  position: relative;
}
.block {
  display: block;
  width: 100%;
  height: 100%;
}
.cc-2 {
  column-count: 2;
}

/* Colors */
.white {
  color: white;
}
.blue {
  color: #00A3FF;
}
.gray {
  color: #808080 !important;
}
.lightgray {
  color: #b3b3b3 !important;
}
.darkgray {
  color: #666666 !important;
}
.bg-white {
  background-color: white;
}
.bg-blue {
  background: #00A3FF;
  color: white;
}
.bg-lightgreen {
  background: #B0E123;
}
.hover-white:hover {
  color: white;
}




.br-4 {
  border-radius: 4px !important;
}
.br-8 {
  border-radius: 8px !important;
}
.cp {
  cursor: pointer;
}
.unstyled {
  list-style-type: none;
}
.w-10 {
  width: 10%;
}
.w-20 {
  width: 20%;
}
.w-30 {
  width: 30%;
}
.w-40 {
  width: 40%;
}
.w-50 {
  width: 50%;
}
.w-70 {
  width: 70%;
}
.w-80 {
  width: 80%;
}
.w-100 {
  width: 100%;
}
.height-50 {
  height: 50px;
}

.height-100 {
  height: 100%;
}

.display-none {
  display: none;
}
.wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

 /* Paddings and margins */
.p-24 {
  padding: 24px;
}
.m-5 {
  margin: 5px;
}
.mr-10 {
  margin-right: 10px;
}
.mr-20 {
  margin-right: 20px;
}
.mb-14 {
  margin-bottom: 14px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-24 {
  margin-bottom: 24px;
}
.mb-32 {
  margin-bottom: 32px;
}
.mb-50 {
  margin-bottom: 50px;
}
.ml-20 {
  margin-left: 20px;
}

@media (max-width:632px) {
  .m--w-100 {
    width: 100%;
  }
  .m--display-none {
    display: none;
  }
  .m--br-unset {
    border-radius: unset !important;
  }
  .m--padding-8 {
    padding: 8px;
  }
  .m--padding-10 {
    padding: 10px;
  }
  .m--flex-wrap {
    flex-wrap: wrap;
  }
  .m--m-unset {
    margin: unset !important;
  }
  .m--ml-unset {
    margin-left: unset !important;
  }
  .m--border-unset {
    border: unset !important;
  }
  .m--flex-direction-column {
    flex-direction: column;
  }
  .m--ai-center {
    align-items: center;
  }
  .m--pl-unset {
    padding-left: unset !important;
  }
  .m--display-block {
    display: block
  }
}


.round {
  border-radius: 100px;
}

.min-height-160px {
  min-height: 160px;
}