* {
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  background-color: #ffffff;
}
body {
  margin: 0;
  padding-bottom: 100px;
  font-family: "Poppins", serif;
  /* font-family: "Share Tech", serif; */
}
.d-none{
  display: none !important;
}
.d-flex {
  display: flex;
}
.d-f-c {
  display: flex;
  flex-direction: column;
}
p {
  margin: 0 0 10px 0;
}
.m-0 {
  margin: 0;
}
.mb-0 {
  margin-bottom: 0;
}
.mb-1 {
  margin-bottom: 4px;
}
.mb-2 {
  margin-bottom: 4px;
}
.mb-3 {
  margin-bottom: 8px;
}
.mb-4 {
  margin-bottom: 16px;
}
.mb-5 {
  margin-bottom: 24px;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
@media (min-width: 1200px) {
  .text-lg-center {
    text-align: center;
  }
  .heading-lg-1 {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 24px;
  }
}
.heading-1 {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
}
.heading-2 {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}
.heading-3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
}
.heading-4 {
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
}
.text-1 {
  font-size: 8px;
  font-weight: 400;
  line-height: 12px;
}
.text-2 {
  font-size: 10px;
  font-weight: 500;
  line-height: 15px;
}
.text-3 {
  font-size: 10px;
  font-weight: 400;
  line-height: 15px;
}
.text-4 {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}
.text-5 {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}
@media (min-width: 576px) {
  .text-1 {
    font-size: 12px;
    font-weight: 400;
    line-height: 12px;
  }
}
.shadow-1 {
  box-shadow: 0px 0px 4px 0px #00000040;
}
.br-22 {
  border-radius: 22px;
}
.container {
  width: 100%;
  padding-left: 24px;
  padding-right: 24px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* section {
  padding: 0 24px;
} */

a,
a:hover {
  text-decoration: none;
  color: #000000;
}

/* top-banner */
.ee-banner-section {
  padding: 8px 0;
  background-image: url("../img/banner-bg.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.ee-banner {
  display: flex;
  align-items: center;
}
.ee-banner-img {
  margin-right: 13px;
  display: flex;
}
.ee-banner-img img {
  width: 80px;
  height: 80px;
  border: 4px solid #cd7f32;
  border-radius: 50%;
}
.ee-banner-content {
  display: flex;
  justify-content: space-between;
  flex-grow: 1;
}
.ee-name {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 0;
}
.ee-id {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  margin-bottom: 0;
}
.ee-join,
.ee-active {
  font-size: 8px;
  font-weight: 400;
  line-height: 12px;
  margin-bottom: 0;
}
.ee-status {
  border-radius: 20px;
  padding: 3px 6px;
  background-color: #008b1f;
  color: #ffffff;
  font-size: 10px;
  font-weight: 400;
  line-height: 15px;
  display: inline-flex;
  gap: 1.75px;
  align-items: center;
  margin-bottom: 7px;
}
.ee-club {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  text-align: right;
  color: #464646;
  margin-bottom: 0;
}
.ee-banner-content > div > * {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media (max-width: 450px) {
  .ee-banner-content > div {
    max-width: 170px;
  }
}
@media (max-width: 400px) {
  .ee-banner-content > div {
    max-width: 115px;
  }
}
@media (max-width: 376px) {
  .ee-banner-content > div {
    max-width: 100px;
  }
}
/* top-banner */

/* ee-wallet */

.ee-wallet-section {
  padding: 18px 0;
}
.wallet-card-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(50%, 50%));
  gap: 12px 16px;
}
@media (min-width: 1200px) {
  .wallet-card-wrap {
    grid-template-columns: repeat(auto-fit, minmax(347px, 1fr));
  }
}
.wallet-card-wrap .card {
  border-radius: 8px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.wallet-card-wrap .card > div {
  margin-right: 10px;
}
.wallet-card-wrap .card img {
  width: 54px;
  height: 54px;
}
@media (max-width: 450px) {
  .wallet-card-wrap .card img {
    width: 40px;
    height: 40px;
  }
}
.wallet-card-wrap .half {
  /* width: 50%; */
}
.wallet-card-wrap .full {
  grid-column-start: 1;
  grid-column-end: 3;
  justify-content: center;
  background-position: bottom right;
}
@media (min-width: 1200px) {
  .wallet-card-wrap .full {
    grid-column-start: 2;
    justify-self: center;
    width: 500px;
  }
}
.head-bg-1 {
  background-image: url("../img/head-bg-1.svg");
}
.head-bg-2 {
  background-image: url("../img/head-bg-2.svg");
}
.head-bg-3 {
  background-image: url("../img/head-bg-3.svg");
}
.head-bg-4 {
  background-image: url("../img/head-bg-4.svg");
}
.head-bg-5 {
  background-image: url("../img/head-bg-5.svg");
}
.head-bg-6 {
  background-image: url("../img/head-bg-6.svg");
}
.head-bg-7 {
  background-image: url("../img/head-bg-7.svg");
}
/* ee-wallet */

/* ee-img-uplod */
.ee-image-upload {
  padding: 12px 0;
}
.ee-image-upload-wrap {
  box-shadow: 0px 0px 4px 0px #00000040;
  background-color: #fbfbfb;
  border-radius: 22px;
  padding: 24px;
}

.upload-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.upload-item label {
  cursor: pointer;
}
.upload-item label input {
  display: none;
}
.upload-item label span {
  margin: 24px 0;
  position: relative;
  width: 121px;
  height: 121px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s;
}
.upload-item label span i {
  position: absolute;
  font-size: 25px;
}
.upload-item label span:hover {
  transform: scale(0.8);
}

/* ee-img-uplod */

/* dash menu */
.ee-dash-menu {
  padding: 12px 0;
}
.dash-menu-cont {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 10px;
}
.dash-menu-card {
  background-color: #ffffff;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 4px 0px #00000040;
  border-radius: 13px;
  padding: 10px;
}
.dash-menu-card:hover {
  background-color: #fbfbfb;
}
.dash-menu-card img {
  width: 26px;
  height: 26px;
  margin-bottom: 5px;
}
@media (min-width: 1200px) {
  .dash-menu-cont {
    grid-template-columns: repeat(auto-fit, minmax(150px, 150px));
    grid-gap: 24px;
    justify-content: center;
  }
  .dash-menu-card img {
    width: 40px;
    height: 40px;
  }
}
/* dash menu */

/* mob-fixed-menu */

.mob-fixed-menu {
  position: fixed;
  bottom: 0;
  padding: 8px 24px;
  min-height: 77px;
  width: 100%;
  background-color: #007eda;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu-fixed-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}
.menu-fixed-item .heading-2 {
  color: #ffffff;
  margin-bottom: 0;
}
.menu-fixed-item .h-active,
.menu-fixed-item .heading-2 {
  display: none;
}
.menu-fixed-item .menu-fixed-img img {
  position: relative;
  z-index: 1;
  width: 28px;
  height: 28px;
}
.menu-fixed-item.active .h-inactive {
  display: none;
}
.menu-fixed-item.active .h-active,
.menu-fixed-item.active .heading-2 {
  display: block;
}
.menu-fixed-item.active .menu-fixed-img {
  transform: translate(0, -26px) scale(1.1);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #007eda;
  border-radius: 50%;
  box-shadow: 0px 0px 10px 4px #ffffffc7;
}
.menu-fixed-item.active::before {
  content: "";
  position: absolute;
  top: -9px;
  left: -41px;
  right: -45px;
  z-index: 0;
  background-image: url(../img/active-bg.svg);
  background-repeat: no-repeat;
  background-size: contain;
  height: 44px;
}
.menu-fixed-item.active .heading-2 {
  margin-top: -10px;
}
@media (min-width: 992px) {
  .mob-fixed-menu {
    width: 500px;
    border-radius: 41px;
    padding: 8px 60px;
    left: 50%;
    transform: translate(-50%, 0);
    bottom: 25px;
  }
}
@media (min-width: 992px) {
  .mob-fixed-menu {
    width: 500px;
    border-radius: 41px;
    padding: 8px 60px;
    left: 50%;
    transform: translate(-50%, 0);
    bottom: 25px;
    box-shadow: 0px 0px 10px 4px #ffffffc7;
  }
}
/* mob-fixed-menu */

/* header */
header {
  border-bottom: 2px solid #f2f2f2;
  position: relative;
  z-index: 2;
  background-color: #ffffff;
}
.header {
  padding: 6px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-item .nav-list {
  position: relative;
}
.nav-item .nav-list .drop-down-list {
  display: none;
}
.nav-item .nav-list:hover .drop-down-list {
  position: absolute;
  top: 24px;
  width: 140px;
  right: 0;
  background: #ffffff;
  padding: 12px;
  border-radius: 6px;
  box-shadow: 0 0 4px 0 #9b9b9b;
  display: flex;
  flex-direction: column;
}
.nav-list label {
  position: relative;
}
.nav-list label.active::after {
  content: "";
  top: -3px;
  right: -1px;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, #f60000 0%, #ff1919 100%);
  position: absolute;
}
@media (min-width: 1200px) {
  header {
    position: sticky;
    top: 0;
  }
}
/* header */

/* sidenav */
#toggle {
  display: none;
}
.left-content {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: background-color 0.5s ease-in-out;
  left: -100%;
  bottom: 0;
  z-index: 1;
}
.leftbar {
  position: absolute;
  width: 100%;
  /* height: 100%; */
  overflow: auto;
  max-height: 100%;
  background-color: #ffffff;
  box-shadow: 2px 0px 5px rgba(0, 0, 0, 0.5);
  left: -100%;
  z-index: 1;
  transition: left 0.5s ease-in-out;
}
#toggle:checked ~ .leftbar {
  left: 0;
}
#toggle:checked ~ .left-content {
  left: 0;
  background-color: #ffffffcd;
}
.leftbar ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.leftbar ul li {
  border-bottom: 1px solid #c7c7c7;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}
.sm-menu-item {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 16px 24px;
}
.leftbar ul li img {
  width: 14p;
  height: 14px;
}
.sm-child {
  display: none;
}
.sm-parent {
  position: relative;
}
.sm-child li:first-child {
  border-top: 1px solid #c7c7c7;
}
.sm-child li {
  padding-left: 43px !important;
}
.sm-parent.has-child::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 15px;
}
.sm-parent.open.has-child::after {
  content: "-";
}
@media (min-width: 1200px) {
  .left-content {
    display: none;
  }
  .leftbar {
    overflow: visible;
    position: unset;
  }
  .side-menu {
    display: flex;
    justify-content: space-between;
    max-width: 1140px;
    margin: 0 auto !important;
    overflow: visible;
  }
  .sm-parent:hover .sm-child {
    display: block;
    position: absolute;
    z-index: 9999;
    top: 54px;
    width: 195px;
    padding: 4px;
    border-radius: 4px;
    background: #ffffff;
    box-shadow: 0px 0 5px 0px #00000038;
  }
  .sm-child li {
    padding-left: 24px !important;
  }
  .sm-menu-item {
    border-top: 0 !important;
    border-bottom: 0 !important;
    padding-left: 24px !important;
    cursor: pointer;
  }
  .sm-menu-item:hover {
    background: #efefef;
  }
  .side-nav {
    position: sticky;
    top: 66px;
    z-index: 1;
  }
  .side-menu-btn {
    display: none;
  }
}
/* sidenav */

/* progress section */

.progress {
  height: 8px;
  margin-bottom: 10px;
  /* overflow: hidden; */
  background-color: #e8e8e8;
  border-radius: 18px;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}
.progress-bar {
  position: relative;
  float: left;
  width: 0%;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  border-radius: 18px;
  background-color: #007eda;
  box-shadow: 0px 0px 4px 0px #007eda;
  -webkit-transition: width 0.6s ease;
  -o-transition: width 0.6s ease;
  transition: width 0.6s ease;
}

.progress-bar span {
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translate(0, -50%);
  background: #ffffff;
  border-radius: 50%;
  height: 20px;
  width: 20px;
  font-size: 8px;
  font-weight: 600;
  line-height: 12px;
  color: #023153;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 4px 0px #00000040;
}
.progress-label-wrap {
  display: flex;
  align-items: center;
  justify-content: space-around;
  position: relative;
  margin-bottom: 5px;
}
.progress-label-wrap label {
  width: 100%;
  text-align: center;
  font-size: 6px;
  font-weight: 500;
  line-height: 9px;
  position: relative;
  color: #b6b6b6;
}
.progress-label-wrap label.active {
  color: #023153;
}
.progress-label-wrap label::after {
  content: "";
  width: 1px;
  height: 8px;
  background: #ffffff;
  position: absolute;
  top: 14px;
  right: 0;
  z-index: 1;
}
.init-label {
  position: absolute;
  font-size: 10px;
  font-weight: 500;
  line-height: 15px;
  left: 0;
}
.progress-label {
  font-size: 10px;
  font-weight: 500;
  line-height: 15px;
  margin-bottom: 2px;
}
.bottom-progress-wrap {
  display: flex;
  margin-top: 20px;
}
.left-progress {
  flex: 0 0 129px;
  width: 121px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  flex-direction: column;
  justify-content: center;
}
.right-progress {
  flex-grow: 1;
}
.circular-item {
  width: 89px;
  height: 89px;
  border: 4px solid #008b1f;
  box-shadow: 0px 0px 4px 0px #008b1f2b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.circular-item p {
  margin: 0;
  font-size: 10px;
  font-weight: 500;
  line-height: 15px;
}
.circular-item p span {
  font-size: 30px;
  font-weight: 500;
  line-height: 45px;
}
@media (min-width: 1200px) {
  .progress-label-wrap {
    margin-bottom: 10px;
  }
  .progress-label-wrap label {
    font-size: 10px;
  }
  .progress-label-wrap label::after {
    top: 19px;
  }
  .fl-progress-section {
    display: flex;
  }
  .ee-progress-wrap {
    flex-grow: 1;
    padding-right: 30px;
  }
  .ee-image-upload-wrap {
    width: 550px;
  }
}
/* progress section */
