* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
ul {
  list-style-type: none;
}
.flex {
  display: flex;
}
.flex-column {
  display: flex;
  flex-direction: column;
}
.flex-around,
.flex-between,
.flex-center {
  display: flex;
  align-items: center;
}
.flex-center {
  justify-content: center;
}
.flex-between {
  justify-content: space-between;
}
.flex-around {
  justify-content: space-around;
}
.flex-wrap {
  flex-wrap: wrap;
}
.gap-row-5 {
  gap: 0 5px;
}
.gap-row-10 {
  gap: 0 10px;
}
.gap-col-5 {
  gap: 5px 0;
}
.gap-row-25 {
  gap: 0 25px;
}
.m-10 {
  margin: 10px;
}
.m-20 {
  margin: 20px;
}
.m-30 {
  margin: 30px;
}
.m-tf-15 {
  margin: 15px 0;
}
.mt-10 {
  margin-top: 10px;
}
.mt-24 {
  margin-top: 24px;
}
.mt-40 {
  margin-top: 40px;
}
.mb-10 {
  margin-bottom: 10px;
}
.ml-10 {
  margin-left: 10px;
}
.mr-10 {
  margin-right: 10px;
}
.p-10 {
  padding: 10px;
}
.p-20 {
  padding: 20px;
}
.pt-10 {
  padding-top: 10px;
}
.pb-10 {
  padding-bottom: 10px;
}
.pl-10 {
  padding-left: 10px;
}
.pr-10 {
  padding-right: 10px;
}
.ptf-40 {
  padding: 40px 0;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-bold {
  font-weight: 700;
}
.text-normal {
  font-weight: 400;
}
.text-ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.position-relative {
  position: relative;
}
.position-absolute {
  position: absolute;
}
.position-fixed {
  position: fixed;
}
.z-index-0 {
  z-index: 0;
}
.z-index-1 {
  z-index: 1;
}
.z-index-2 {
  z-index: 2;
}
.z-index-5 {
  z-index: 5;
}
.z-index-10 {
  z-index: 10;
}
.z-index-20 {
  z-index: 20;
}
.z-index-50 {
  z-index: 50;
}
.z-index-100 {
  z-index: 100;
}
.z-index-200 {
  z-index: 200;
}
.z-index-500 {
  z-index: 500;
}
.z-index-1000 {
  z-index: 1000;
}
.z-index-max {
  z-index: 9999;
}
.z-index-top {
  z-index: 99999;
}
.z-index-dropdown {
  z-index: 1000;
}
.z-index-sticky {
  z-index: 1020;
}
.z-index-fixed {
  z-index: 1030;
}
.z-index-modal {
  z-index: 1050;
}
.z-index-popover {
  z-index: 1060;
}
.z-index-tooltip {
  z-index: 1070;
}
.hidden {
  display: none;
}
.visible {
  display: block;
}
.invisible {
  visibility: hidden;
}
.cursor-pointer {
  cursor: pointer;
}
.cursor-not-allowed {
  cursor: not-allowed;
}
.border-none {
  border: 0;
}
.border-radius-4 {
  border-radius: 4px;
}
.border-radius-8 {
  border-radius: 8px;
}
.w-100 {
  width: 100%;
}
.h-100 {
  height: 100%;
}
.w-50 {
  width: 50%;
}
.h-50 {
  height: 50%;
}
.w-40 {
  width: 40px;
}
.h-40 {
  height: 40px;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-auto {
  overflow: auto;
}
.overflow-scroll {
  overflow: scroll;
}
.bg-white {
  background-color: #fff;
}
.bg-transparent {
  background-color: transparent;
}
.box-shadow {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
