/* Custom classes  */
.hide,
.user_dashboard .hide {
  display: none;
}
.block {
  display: block;
}
.margin-0,
.user_dashboard .margin-0 {
  margin: 0;
}
.margin-bottom-10,
.user_dashboard .margin-bottom-10 {
  margin-bottom: 10px;
}
.margin-top-10 {
	margin-top : 10px;
}
.center {
  text-align: center;
}
.left {
  text-align: left;
}
.right {
  text-align: right;
}
.flex {
  display: flex;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-1 {
  flex: 1;
}
.flex-2 {
  flex: 2;
}
.gap-5 {
  gap: 5px;
}
.gap-10 {
  gap: 10px;
}
.gap-20 {
  gap: 20px;
}
.align-center {
  align-items: center;
}
.justify-start {
  justify-content: flex-start;
}
.justify-end {
  justify-content: flex-end;
}
.justify-between {
  justify-content: space-between;
}
.flex-column {
  flex-direction: column;
}
.flex-row {
  flex-direction: row;
}
.grid {
	display : grid;
}
.grid-2 {
	grid-template-columns: repeat(auto-fill, minmax(48%, 1fr));
}
.grid-3 {
	grid-template-columns: repeat(auto-fill, minmax(32%, 1fr));
}
.grid-4 {
	grid-template-columns: repeat(auto-fill, minmax(24%, 1fr));
}

.rounded-full,
.user_dashboard .rounded-full {
  border-radius: 50%;
}
.rounded-md,
.user_dashboard .rounded-md {
  border-radius: 20px;
}
.rounded-15,
.user_dashboard .rounded-15 {
  border-radius: 15px;
}
.space-y-10 > *:not(:last-child) {
  margin-bottom: 10px;
}
.space-y-15 > *:not(:last-child) {
  margin-bottom: 15px;
}
.space-y-20 > *:not(:last-child) {
  margin-bottom: 20px;
}
.space-y-30 > *:not(:last-child) {
  margin-bottom: 30px;
}
.space-y > *:not(:last-child) {
  margin-bottom: 50px;
}
.list-none {
  list-style: none;
}
.white {
  color: white;
}
.padd-5 {
  padding: 5px;
}
.padd-10 {
  padding: 10px;
}
.padd-20 {
  padding: 20px;
}
.padd-30 {
  padding: 30px;
}
.pointer {
  cursor: pointer;
}
.width-full {
  width: 100%;
}
.btn {
  display: inline-block;
  padding: 10px 28px;
  color: white;
  border-radius: 5px;
}
.shadow {
  box-shadow: 0px 0px 8px 2px #00000029;
}