/*utils scss files */ /*========================
    Animation CSS start
==========================*/

@keyframes fadeUpAnimation {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
 
.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal2 {
	opacity: 1;
	animation: fadeUpAnimation 1s;
	transform: translateY(0px);
}

.reveal:nth-child(1) {
	animation: fadeUpAnimation 1s;
	opacity: 1;
	animation-fill-mode: forwards;
}


/*========================
    Variable CSS start
==========================*/
/* font family */
/* color variables */
:root {
  --theme-color: 0, 153, 76;
  --white: 255, 255, 255;
  --black: 0, 0, 0;
  --light-text: 155, 163, 170;
  --error-color: 240, 73, 73;
  --success-color: 25, 135, 84;
  --box-bg: 32, 51, 66;
  --light-bg: 246, 246, 247;
  --secondary-color: 0, 153, 76;
  --gradient: linear-gradient(180deg, rgba(0,153,76,1) 0%, rgba(0,73,83,1) 100%);
  --background: radial-gradient(#009a44 1.55px, transparent 1.55px),
		radial-gradient(#009a44 1.55px, #f5f5f5 1.55px);
}



/* base scss files */
/*=====================
    Reset CSS start
==========================*/
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

input[type=number] {
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
}
input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

.custom-container {
  padding: 0 20px;
}

section,
.section-t-space {
  padding: 20px 0px;
}

.section-b-space {
  padding-bottom: 25px;
}

.section-sm-t-space {
  padding-top: 15px;
}

.section-sm-b-space {
  padding-bottom: 15px;
}

.panel-space {
  padding-top: 80px !important;
}

.panel-space-40 {
  padding-top: 40px !important;
}

.panel-space-20 {
  padding-top: 20px !important;
}

.theme-color {
  color: rgba(var(--theme-color), 1);
}

.light-text {
  color: rgba(var(--light-text), 1);
}

.error-color {
  color: rgba(var(--error-color), 1);
}

[dir=rtl] .swiper {
  direction: ltr;
}

.green {
	color: #009a44
}
/*=====================
    Typography CSS start
==========================*/
* {
  margin: 0;
  padding: 0;
}

html {
	opacity: 1;
	background-image: var(--background);
	background-size: 62px 62px;
	background-position: 0 0, 31px 31px;
}

body {
  font-family: Inter;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  height: 100vh;
  background-color: rgba(var(--white), 1);
}
body::-webkit-scrollbar {
  width: 0;
}

h1 {
  font-weight: 600;
  font-size: 20px;
  line-height: 20px;
  margin-bottom: 0;
}

h2 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
}

h3 {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 0;
}

h4 {
  font-size: 14px;
  margin-bottom: 0;
}

h5 {
  font-size: 13px;
  line-height: 1.2;
  margin-bottom: 0;
}

h6 {
  font-size: 12px;
  line-height: 1.2;
  margin-bottom: 0;
}

p {
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 0;
}

label {
	font-size: 13px;
	line-height: 1.5;
	margin-bottom: 0;
	font-weight: 500;
}

a {
  text-decoration: none;
}

ul {
  padding: 0;
  margin-bottom: 0;
}

li {
  list-style: none;
  display: inline-block;
  font-size: 14px;
}

.fa {
	font-family: Fontawesome;
}

.line-behind {
    position: relative;
    z-index: 1;
    
    &:before {
        border-top: 2px solid white;
        content:"";
        margin: 0 auto;
        position: absolute;
        top: 50%; left: 0; right: 0; bottom: 0;
        width: 70%;
        z-index: -1;
        font-size: 20px; font-weight: 400; letter-spacing: 5px;
    }

    span {
	background: #008943;
	padding: 0 10px;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 5px;
	color: white;
}
}

.line-behind2 {
    position: relative;
    z-index: 1;
    
    &:before {
        border-top: 2px solid #009a44;
        content:"";
        margin: 0 auto;
        position: absolute;
        top: 50%; left: 0; right: 0; bottom: 0;
        width: 100%;
        z-index: -1;
        font-size: 20px; font-weight: 400; letter-spacing: 5px;
    }

    span {
	background: white;
	padding: 0 10px;
	font-size: 20px;
	color: #009a44;
}
}

hr {
	width: 80%;
  margin: 20px auto;
  border: 1px solid #f5f5f5;
  opacity: 1;
}

.flex-inner {
      display: flex;
      flex-direction: column;
      text-align: left;
      width: 100%;
    }
    
.flex-outer {
      display: flex;
      gap: 10px;
      align-items: center;
      
    }
    
.flex-center {
	align-items: center;
	display: flex;
	justify-content: space-around;
	-webkit-box-pack: justify;
}

.ui-button.btn1 {
	background: white;
	border-radius: 20px;
	width: 90%;
	color: #009a44;
	height: 48px;
}

.ui-button.btn1.ui-state-hover {
	background: #ededed;
	color: #009a44;
}

.ui-button.btn1.ui-state-focus {
	background: #ededed;
	color: #009a44;
}

.ui-button.btn2 {
	background: white;
	border-radius: 10px;
	border: 2px solid #009a44;
	box-shadow: 0 4px #009a44;
	width: 50%;
	color: #009a44;
	height: 48px;
}

.ui-button.btn2.ui-state-hover {
	background: #ededed;
	color: #009a44;
	border: 2px solid #009a44;
}

.ui-button.btn2.ui-state-active {
	background: #e0e0e1;
		color: #009a44;
	border: 2px solid #009a44;
	box-shadow: 0 4px #009a44;
}

.ui-button.btn3 {
	background: white;
	border-radius: 10px;
	border: 2px solid #009a44;
	box-shadow: 0 4px #009a44;
	color: #009a44;
	height: 48px;
}

.ui-button.btn3.ui-state-hover {
	background: #ededed;
	color: #009a44;
	border: 2px solid #009a44;
}

.ui-button.btn3.ui-state-active {
	background: #e0e0e1;
		color: #009a44;
	border: 2px solid #009a44;
	box-shadow: 0 4px #009a44;
}

.ui-button.btn3 span {
	margin: 0 15px;
}

.ui-button.btn4 {
	background: white;
	border-radius: 10px;
	border: 2px solid #009a44;
	color: #009a44;
	height: 48px;
}

.ui-button.btn4 span {
	margin: 0 8px;
}

.m-10 {
	margin-top: 10px;
}

.mb-15 {
	margin-bottom: 15px;
}
/*===================== 
    Title CSS start 
==========================*/
.title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 15px;
}
.title h2 {
  color: rgba(var(--theme-color), 1);
  margin-bottom: 5px;
}
.title a {
  color: rgba(var(--light-text), 1);
  font-size: 13px;
  font-weight: 500;
}

/* layout scss files */
/*=====================
    Header CSS start
==========================*/
.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header .head-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.header .head-content .sidebar-btn {
  width: 40px;
  height: 40px;
  color: rgba(var(--theme-color), 1);
  padding: 8px;
  border: 1px solid rgba(var(--theme-color), 0.1);
  background-color: rgba(var(--white), 1);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
}
.header .head-content .sidebar-btn .menu-icon {
  --Iconsax-Color: rgba(var(--theme-color), 1);
}
.header .head-content .header-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
.header .head-content .header-info .profile-pic {
  width: 40px;
  height: 40px;
}
@media (max-width: 420px) {
  .header .head-content .header-info .profile-pic {
    height: 35px;
    width: 35px;
  }
}
.header .head-content .header-info .profile-pic h2 {
  color: rgba(var(--theme-color), 1);
}
.header .head-content .header-info .profile-pic .d-arrow {
  color: rgba(var(--theme-color), 1);
}
.header .head-content .header-info .pin {
  color: rgba(var(--theme-color), 1);
}
.header .head-content .header-info i {
  font-size: 24px;
}
.header .notification {
  width: 40px;
  height: 40px;
  color: rgba(var(--theme-color), 1);
  background-color: rgba(var(--white), 1);
  /*padding: 10px; -remove*/
  border: 1px solid rgba(var(--theme-color), 0.1);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0px 2px 12px rgba(var(--theme-color), 0.05);
          box-shadow: 0px 2px 12px rgba(var(--theme-color), 0.05);
}
.header .notification .notification-icon {
  --Iconsax-Color: rgba(var(--theme-color), 1);
  position: relative;
}
.header .notification .notification-icon::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 3px;
  width: 5px;
  height: 5px;
  background-color: rgba(var(--error-color), 1);
  border-radius: 100%;
}

.header-panel {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  z-index: 1;
}
.header-panel a {
  z-index: 1;
}
.header-panel a .back-btn {
  --Iconsax-Color: rgba(var(--theme-color), 1);
  --Iconsax-size: 20px;
  line-height: 1;
}
.header-panel .icons {
  --Iconsax-Color: rgba(var(--theme-color), 1);
  --Iconsax-size: 16px;
  width: 40px;
  height: 40px;
  background-color: rgba(var(--white), 0.1);
  -webkit-box-shadow: 0px 2px 8px rgba(var(--theme-color), 0.1);
          box-shadow: 0px 2px 8px rgba(var(--theme-color), 0.1);
  padding: 10px;
  border: 1px solid rgba(var(--theme-color), 0.1);
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-panel h3 {
  position: absolute;
  font-weight: 600;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  color: rgba(var(--theme-color), 1);
}
.header-panel h2 {
  position: absolute;
  font-weight: 600;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  color: rgba(var(--theme-color), 1);
}
.header-panel .notification {
  width: 40px;
  height: 40px;
  background-color: rgba(var(--white), 1);
  padding: 10px;
  border: 1px solid rgba(var(--theme-color), 0.1);
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
  -webkit-box-shadow: 0px 2px 12px rgba(var(--theme-color), 0.05);
          box-shadow: 0px 2px 12px rgba(var(--theme-color), 0.05);
}
[dir=rtl] .header-panel .notification {
  margin-left: unset;
  margin-right: auto;
}
.header-panel .notification .notification-icon {
  position: relative;
  --Iconsax-Color: rgba(var(--theme-color), 1);
}
.header-panel .notification .notification-icon::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 3px;
  width: 5px;
  height: 5px;
  background-color: rgba(var(--error-color), 1);
  border-radius: 100%;
}
[dir=rtl] .header-panel .notification .notification-icon::after {
  right: unset;
  left: 3px;
}
.header-panel .like-btn {
  position: relative;
  line-height: 1;
  z-index: 1;
  border-radius: 100%;
  background-color: rgba(var(--white), 0.1);
  -webkit-box-shadow: 0px 2px 8px rgba(var(--theme-color), 0.1);
          box-shadow: 0px 2px 8px rgba(var(--theme-color), 0.1);
  padding: 6px;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-panel .like-btn i {
  padding: 5px;
  color: rgba(var(--error-color), 1);
  background-color: rgba(var(--white), 1);
  border-radius: 100%;
  width: 26px;
  height: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header-panel .like-btn .fill-icon {
  display: none;
}
.header-panel .like-btn .outline-icon {
  width: 24px;
}
.header-panel .like-btn.active .outline-icon {
  display: none;
}
.header-panel .like-btn.active .fill-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: rgba(var(--error-color), 1);
  width: 24px;
}
.header-panel .like-btn.active .effect:before {
  -webkit-animation: fireworkLine 0.5s linear 0.1s;
          animation: fireworkLine 0.5s linear 0.1s;
}
.header-panel .like-btn.active .effect:after {
  -webkit-animation: fireworkPoint 0.5s linear 0.1s;
          animation: fireworkPoint 0.5s linear 0.1s;
}

.profile-header.section-t-space {
	background: var(--gradient);
	padding-bottom: 70px;
	padding-top: 0px;
}

.profile-header .header-panel {
  padding-top: 15px;
}
.profile-header .profile-pic {
  position: relative;
  width: 70px;
  height: 70px;
  border-radius: 14px;
  margin-top: 20px;
  border-radius: 14px;
  overflow: hidden;
  padding: 4px;
  background-color: rgba(var(--white), 1);
}
.profile-header .profile-pic .img {
  border-radius: 14px;
}
.profile-header .profile-pic .profile-name {
  width: calc(100% - 70px - 8px);
}
.profile-header .profile-setting-pic {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 14px;
  margin-top: 20px;
  border-radius: 14px;
  overflow: hidden;
  padding: 4px;
  background-color: rgba(var(--white), 1);
}
.profile-header .profile-setting-pic .img {
  border-radius: 14px;
}
.profile-header .edit-icon {
  padding: 5px;
  border-radius: 6px;
  background-color: rgba(var(--white), 1);
  --Iconsax-Color: rgba(var(--theme-color), 1);
  --Iconsax-Size: 18px;
}

/*=====================
    offcanvas CSS start
==========================*/


.offcanvas.addtohome-popup {
  height: auto;
}
.offcanvas.addtohome-popup .btn-close {
  position: absolute;
  right: 20px;
  top: 20px;
  -webkit-box-shadow: none;
          box-shadow: none;
}
[dir=rtl] .offcanvas.addtohome-popup .btn-close {
  left: 20px;
  right: unset;
}
.offcanvas.addtohome-popup .offcanvas-body {
  text-align: right;
  background-color: rgba(var(--white), 1);
  padding: 15px;
}
[dir=rtl] .offcanvas.addtohome-popup .offcanvas-body {
  text-align: left;
}
.offcanvas.addtohome-popup .offcanvas-body .app-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
  text-align: left;
}
.offcanvas.addtohome-popup .offcanvas-body .app-info .content {
  padding-left: 15px;
}
[dir=rtl] .offcanvas.addtohome-popup .offcanvas-body .app-info .content {
  padding-left: 0;
  padding-right: 15px;
}
.offcanvas.addtohome-popup .offcanvas-body .app-info .content h4 {
  font-weight: 600;
  color: rgba(var(--theme-color), 1);
}
.offcanvas.addtohome-popup .offcanvas-body .app-info .content a {
  color: rgba(var(--light-text), 1);
}
.offcanvas.addtohome-popup .offcanvas-body .home-screen-btn {
  display: inline-block;
}

.sidebar-offcanvas {
  width: 280px !important;
  background-color: rgba(var(--white), 1);
}
.sidebar-offcanvas.show {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
  height: 100%;
  visibility: visible;
}
.sidebar-offcanvas .offcanvas-header  {
	background: var(--gradient);
	position: relative;
}

.offcanvas-header-content {
	align-items: center;
	justify-content: center;
	width: 100%;
	text-align: center;
}

.status-container {
	background: white;
	border-radius: 10px;
	margin: 5px auto;
	width: 100%;
	padding: 0.5rem;
	text-align: center;
}

.sidebar-offcanvas .offcanvas-header h4 {
  color: rgba(var(--theme-color), 1);
  margin-left: 10px;
}
[dir=rtl] .sidebar-offcanvas .offcanvas-header h4 {
  margin-left: 0;
  margin-right: 10px;
}
.sidebar-offcanvas .offcanvas-header img {
  width: 40px;
  border-radius: 100%;
}
.sidebar-offcanvas .offcanvas-header .btn-close {
  background-color: rgba(var(--white), 0.4);
  margin-left: auto;
  margin-right: 0px;
  font-size: 10px;
  -webkit-box-shadow: none;
          box-shadow: none;
}
[dir=rtl] .sidebar-offcanvas .offcanvas-header .btn-close {
  margin-left: 0;
  margin-right: auto;
}
.sidebar-offcanvas .sidebar-content .link-section li {
  display: block;
  padding: 15px 10px;
  border-bottom: 1px solid rgba(var(--theme-color), 0.1);
}
.sidebar-offcanvas .sidebar-content .link-section li:last-child() {
  display: none;
}
.sidebar-offcanvas .sidebar-content .link-section li .pages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.sidebar-offcanvas .sidebar-content .link-section li .pages .switch-btn input[type=checkbox] {
  position: relative;
  width: 37px;
  height: 20px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: rgba(var(--box-bg), 1);
  outline: none;
  border-radius: 50px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sidebar-offcanvas .sidebar-content .link-section li .pages .switch-btn input[type=checkbox]:checked {
  background: rgba(var(--theme-color), 0.1);
}
.sidebar-offcanvas .sidebar-content .link-section li .pages .switch-btn input[type=checkbox]:checked::before {
  -webkit-transform: translateX(80%) translateY(-50%);
          transform: translateX(80%) translateY(-50%);
  background: rgba(var(--theme-color), 1);
}
.sidebar-offcanvas .sidebar-content .link-section li .pages .switch-btn input[type=checkbox]:before {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(var(--light-text), 1);
  position: absolute;
  top: 50%;
  left: 5px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.sidebar-offcanvas .sidebar-content .link-section li .pages h4 {
  color: black;
}
.sidebar-offcanvas .sidebar-content .link-section li .pages i {
  color: rgba(var(--theme-color), 1);
  font-size: 28px;
  line-height: 1;
}

.search-filter .modal-title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
  background-color: rgba(var(--white), 1);
  border-bottom: 1px solid rgba(var(--black), 0.07);
}
.search-filter .modal-title h3 {
  margin-left: auto;
  margin-right: auto;
  color: rgba(var(--theme-color), 1);
}
.search-filter .modal-title .back-btn {
  --Iconsax-Color: rgba(var(--theme-color), 1);
  --Iconsax-size: 20px;
  line-height: 1;
}
[dir=rtl] .search-filter .modal-title .back-btn {
  right: unset;
  left: 20px;
}
.search-filter .footer-modal {
  position: fixed;
  bottom: 0;
  padding: 12px 20px;
  width: 100%;
  background-color: rgba(var(--white), 1);
  -webkit-box-shadow: 0px 5px 24px rgba(var(--black), 0.2);
          box-shadow: 0px 5px 24px rgba(var(--black), 0.2);
}
.search-filter .tab-body {
  background-color: rgba(var(--white), 1);
}
.search-filter .tab-body .nav-pills {
  height: calc(100vh - 62px - 66px);
  background-color: rgba(var(--light-bg), 1);
}
.search-filter .tab-body .nav-pills .nav-link {
  border-bottom: 1px solid rgba(var(--black), 0.07);
  color: rgba(var(--light-text), 1);
  padding: 20px;
  text-align: left;
  border-radius: 0;
}
[dir=rtl] .search-filter .tab-body .nav-pills .nav-link {
  text-align: right;
}
.search-filter .tab-body .nav-pills .nav-link.active {
  color: rgba(var(--theme-color), 1);
  background-color: rgba(var(--light-bg), 1);
  border-right: 2px solid rgba(var(--theme-color), 1);
}
[dir=rtl] .search-filter .tab-body .nav-pills .nav-link.active {
  border-right: unset;
  border-left: 2px solid rgba(var(--theme-color), 1);
}
.search-filter .tab-body .tab-info {
  padding: 0 calc(16px + 4 * (100vw - 320px) / 448);
}
.search-filter .tab-body .tab-info .form-check {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 0;
}
.search-filter .tab-body .tab-info .form-check .form-check-label {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--theme-color), 1);
  margin-top: 5px;
}
.search-filter .tab-body .tab-info .form-check .form-check-input {
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 10px;
}
.search-filter .tab-body .tab-info .form-check .form-check-input:focus {
  outline: none;
}
.search-filter .tab-body .tab-info .form-check .form-check-input:checked {
  background-color: rgb(18, 38, 54);
  border-color: rgba(var(--theme-color), 1);
}
.search-filter .tab-body .tab-info .form-check .form-check-input:checked:focus {
  outline: none;
}
.search-filter .tab-body .color-info .form-check .form-check-input {
  position: relative;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 100%;
  width: 20px;
  height: 20px;
  padding: 10px;
}
.search-filter .tab-body .color-info .form-check .form-check-input#color1 {
  background-color: black;
}
.search-filter .tab-body .color-info .form-check .form-check-input#color2 {
  background-color: gray;
}
.search-filter .tab-body .color-info .form-check .form-check-input#color3 {
  background-color: blue;
}
.search-filter .tab-body .color-info .form-check .form-check-input#color4 {
  background-color: yellow;
}
.search-filter .tab-body .color-info .form-check .form-check-input#color5 {
  background-color: green;
}
.search-filter .tab-body .color-info .form-check .form-check-input#color6 {
  background-color: red;
}
.search-filter .tab-body .price-info {
  padding: 30px;
  width: 100%;
}


/*===================== 
    Home CSS start 
==========================*/

.main-banner {
	position: relative; 
	z-index: 1;
	top: -40px;
}

.main-banner .ui-galleria-item-nav {
	top: 40%;
}

.mf-card.ui-card {
	margin: .5rem;
	min-height: 320px;
}

.mf-circle {
	border-radius: 100%;
	justify-content: center;
	width: 60px;
	height: 60px;
	display: flex; 
	align-items: center;
	margin: auto;
	margin-bottom: 20px;
}

.ed-card {
	margin: 1rem .5rem .5rem .5rem !important;
	position: relative;
	top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.ed-card .ui-card-footer {
	position: relative;
	left: 0;
	right: 0;
	margin: 1rem 0 .6rem 0;
	padding: 0 !important;
}

.nes-shop {
	height: 100%;
	width: 100%;
	border-top-left-radius: 100%;
	position: relative;
	z-index: 2;
	transition: background 1s;
}

.gsp-site {
	height: 100%;
	width: 100%;
	border-top-right-radius: 100%;
	position: relative;
	z-index: 2;
	transition: background 1s;
}

.nes-shop:hover {
	background: #007a3c;
}

.nes-shop:focus {
	background: #007a3c;
}

.gsp-site:hover {
	background: #009a44;
}

.ed-card > .ui-card-body > .ui-card-content > h2 {
	text-align: center;
}

.ed-card > .ui-card-body > .ui-card-content > p {
		text-align: justify;
}

.mf-card > .ui-card-body > .ui-card-content > h2 {
	text-align: center;
}

.mf-card > .ui-card-body > .ui-card-content > p {
		text-align: justify;
}

.mf-circle > i {
	color: white;
	font-size: 30px;
}

.ui-steps-item.ui-corner-all {
	font-size: 10px;
}

.ed-div {
	position: relative;
}

.ed-text {
	position: absolute;
  top: 113px;
  color: white;
  font-size: 30px;
  letter-spacing: 5px;
  font-weight: 900;
  right: 0;
  filter: drop-shadow(1px 1px 1.5px black);
}

.ln-div {
	position: relative;
	min-width: 140px;
	height: 150px;
}

.ln-img {
	position: absolute;
	width: 130px;
	height: 130px;
}

.fe-subtitle {
	font-size: 8px;
	color: rgba(0, 0, 0, 0.5);
	text-align: center;
	line-height: 9px;
}

.logo-overlay {
	width: 152px;
	opacity: 50%;
}

#nav\:membership {
	background: white;
}

#nav\:events {
	background: white;
}

#nav\:home {
	background: white;
}
/*===================== 
    Index CSS start 
==========================*/
.vh {
	height: 40px;
	border: 1px solid #009a44;
}

.index-logo {
	width: 12rem;
	margin: auto;
}

.shadow {
	box-shadow: 0px 5px 10px rgba(var(--black), 0.1);
}

.index-header {
	background: white;
	position: relative;
	top: 0;
	z-index: 2;
}

.index-img {
	width: 100%;
}

.index-fill {
	flex-grow: 1;
	display: flex;
	margin-top: 90px;
}

.index-fill .custom-container{
  padding: 20px;
  width: 100%; 
  text-align: center; 
}

.image {
	width: 100%;
	position: relative;
}

.image-overlay {
	width: 100%;
	height: 100%;
	background-image: linear-gradient(to bottom right, rgba(0, 154, 68, 0.45), rgba(0, 154, 68, 0.02), rgba(255, 255, 255, 0.05));
	position: absolute;
}

.index-ftr {
	position: relative;
	z-index: 2;
	background: var(--gradient);
	flex: 0.5;
	display: flex;
	justify-content: center;
	gap: 10px;
	flex-direction: column;
	align-items: center;
	padding: 50px 0px;;
}

/*===================== 
    Event CSS start 
==========================*/

.calendar-container {
  background: var(--gradient);
}

.calendar {
  width: 100%;
  margin: auto;
  padding-bottom: 50px;
}

.eventHeader {
	background: var(--gradient);
	text-align: center;
	height: 150px;
}

.event-container {
	margin: auto;
	background: white;
	margin-top: -50px;
	border-radius: 30px;
	padding: 30px 10px 50px 10px;
	text-align: center;
}

.joinbtn {
	width: 130px;
	color: #009a44;
	background: white;
	border: 1px solid #009a44;
}

.event-title {
	font-family: inter;
	font-weight: 600;
	color: rgba(0,0,0, .5);
	font-size: 15px;
}

.event-img {
	object-fit: cover;
	width: 100%;
	height: 150px;
	border-radius: 4px;
}

.event-img2 {
	object-fit: cover;
	width: 100%;
	height: 250px;
	border-radius: 4px;
}

.event-list {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.event-reveal.ui-card {
	margin: 0.5rem 0;
}

/*===================== 
    Log In & Sign up CSS start 
==========================*/

.login-container {
	background: white;
	border-top: 1px solid #009a44;
	border-bottom: 1px solid #009a44;
	height: auto;
	margin: auto 0;
	text-align: center;
	padding: 50px 30px;
}

.title-text {
	font-size: 30px;
	color: #009a44;
	margin-bottom: 10px;
	font-weight: 600;
}

.title-text2 {
	font-size: 1.6rem;
	color: #009a44;
	margin-bottom: 10px;
	font-weight: 600;
}

#j_idt8\:captcha > div {
	margin: auto;
}

.dialog-container2 {
	padding: 30px 0px 50px 0px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
	
}

.dialog-container2 > h3 {
	font-weight: 600;
}

.dialog-container2 > hr {
	border: 1px solid #009a44;
	margin: 10px auto;
}

.code input {
	width: 50px !important;
	height: 60px !important;
	text-align: center;
	border-radius: 20px !important;
}

.code-container {
	display: flex;
	justify-content: center;
	gap: 5px;
	margin-top: 10px;
}

/*=============================
     Profile CSS start
===============================*/

.profile-section {
  position: relative;
  z-index: 2;
  background: white;
  border-radius: 20px;
  margin-top: -50px;
}

.profile-list li {
  padding: 15px 0;
  width: 100%;
  border-bottom: 1px solid rgba(var(--light-bg), 1);
}
.profile-list li .profile-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.profile-list li .profile-box .profile-img {
  width: 44px;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(var(--light-bg), 1);
  border-radius: 14px;
  padding: 10px;
}
.profile-list li .profile-box .profile-img .icon {
  --Iconsax-Color: rgba(var(--theme-color), 1);
  --Iconsax-Size: 24px;
}
.profile-list li .profile-details {
  width: calc(100% - 12px - 44px);
}
.profile-list li .profile-details h4 {
  color: rgba(var(--theme-color), 1);
  line-height: 1.2;
}
.profile-list li .profile-details h5 {
  color: rgba(var(--light-text), 1);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: 400;
  line-height: 1.5;
}

.language-list li {
  padding: 15px 0;
  border-bottom: 1px solid rgba(var(--light-bg), 1);
}
.language-list li .form-check {
  text-align: left;
  margin: 0;
  border-bottom: 1px solid rgba(var(--light-bg), 1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.language-list li .form-check:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.language-list li .form-check .form-check-label {
  color: rgba(var(--theme-color), 1);
  font-size: 14px;
  width: 100%;
}
.language-list li .form-check .form-check-input {
  -webkit-box-shadow: none;
          box-shadow: none;
  float: right;
  margin: 0;
}
[dir=rtl] .language-list li .form-check .form-check-input {
  float: left;
}
.language-list li .form-check .form-check-input:checked {
  background-color: rgb(18, 38, 54);
  border-color: rgba(var(--theme-color), 1);
}

.notification-setting {
  background: rgba(var(--white), 1);
  border: 1px solid rgba(var(--black), 0.05);
  -webkit-box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.06);
          box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  padding: 15px;
}
.notification-setting li {
  display: block;
  border-bottom: 1px solid rgba(var(--light-bg), 1);
}
.notification-setting li:last-child {
  border-bottom: none;
}
.notification-setting li .notification {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 15px 0;
}
.notification-setting li .notification input[type=checkbox] {
  position: relative;
  width: 37px;
  height: 22px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: rgba(var(--box-bg), 1);
  outline: none;
  border-radius: 50px;
  cursor: pointer;
}
.notification-setting li .notification input[type=checkbox]:checked {
  background: rgba(var(--theme-color), 0.1);
}
.notification-setting li .notification input[type=checkbox]:checked::before {
  -webkit-transform: translateX(80%) translateY(-50%);
          transform: translateX(80%) translateY(-50%);
  background: rgba(var(--theme-color), 1);
}
.notification-setting li .notification input[type=checkbox]:before {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(var(--light-text), 1);
  position: absolute;
  top: 50%;
  left: 5px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.notification {
	font-size: 18px;
}

/*=====================
    Registration CSS start
==========================*/

.wizard .ui-panel {
	margin: auto;
	padding: 50px 10px 10px 10px;
	border: 1px solid #ddd;
	box-shadow: none;
	text-align: center;
	background: white;
}

.wizard.ui-tabs.ui-tabs-bottom > .ui-tabs-nav {
	display: none;
}

.wizard-step {
	font-weight: 600;
	color: rgba(0,0,0,0.5);
}

.nextbtn {
	width: 100px;
	float: right;
}

.backbtn {
	width: 100px;
	float: left;
}

.savebtn.ui-button, .cancelbtn.ui-button {
	background: white;
	border: 1px solid #009a44;
	color: #009a44;
}

.mem-buttons {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.mem-buttons > button {
	width: 33%;
}

.member-table{
	border: 1px solid #e4e4e4;
}

.member-table th {
	font-size: 11px;
	text-align: center !important;
}

.w-success {
	padding: 50% 0;
}

.genderButton>div {
	width: 50%;
}

.box {
	background: linear-gradient(180deg, rgba(0, 153, 76, 1) 50%,
		rgba(0, 73, 83, 1) 100%);
	width: 350px;
	height: 100px;
	margin: auto;
}

.box2 {
	background: rgba(0, 73, 83, 1);
	width: 350px;
	height: 100px;
	margin: auto;
	margin-top: -20px;
}

.box3 {
	background: #022b30;
	width: 270px;
	border-radius: 50px;
	height: 30px;
	margin: auto;
	margin-top: -65px;
}

.receipt-container {
	filter: drop-shadow(0px 1px 2px rgb(0, 0, 0, 0.5));
	margin-top: -10px;
}

.receipt {
	background: white;
	height: 211px;
	width: 265px;
	padding: 100px 0px 100px 0px;
	margin: auto;
	--mask: conic-gradient(from -37.5deg at bottom, #0000, #000 1deg 74deg, #0000
		75deg) 50%/46.04px 100%;
	-webkit-mask: var(--mask);
	mask: var(--mask);
}

.reg-container {
	position: relative;
}

.reg-container > img {
      position: absolute;
      top: 10px;
      left: 0;
      right: 0;
      text-align: center;
      margin: auto;
    }

/*=====================
    Error CSS start
==========================*/
.error-h1 {
	font-size: 100px;
	line-height: 100px;
	color: #009a44;
	text-shadow:
    1px 1px 0 #fff,
    -1px 1px 0 #fff,
    -1px -1px 0 #fff,
    1px -1px 0 #fff, 
    4px 4px #004C26;
    font-weight: 900;
    
}

/* themes */
/*=====================
    Dark CSS start
==========================*/
body.dark {
	background: #112232;
}

body.dark .sidebar-offcanvas {
	background: #112232;
}

body.dark .ui-tabs .ui-tabs-panels {
	background: #112232;
}

body.dark .ui-tabs .ui-tabs-nav {
	background: #112232;
}

/*---------------------------------------*/
.ui-growl {
	width: fit-content !important;
}
.ui-growl-image {
	display: none !important;
}

.ui-growl-title {
	padding: 0 !important;
}

.ui-growl-message {
	padding: 0 0 0 10px !important;
}

.ui-growl-item {
	min-height: 50px !important;
}

.ui-growl-item-container {
	width: 280px !important;
}

.required, .requiredSpecial .ui-inputfield {
	border-bottom: 1px solid #b00020 !important;
}

.requiredRadio .ui-radiobutton-box {
	border-color: #b00020 !important;
}

.ui-selectonebutton>.ui-button.ui-state-active {
    background: rgba(0, 153, 73, 0.92) !important;
    border-color: rgba(0, 153, 73, 0.92) !important;
    color: rgba(255, 255, 255, .87) !important;
}

.profile-upload .ui-fileupload-preview {
	display: block !important;
	text-align: center;
	padding: 0 !important;
}

.profile-upload .ui-fileupload-row div {
	display: none;
}

.profile-upload .ui-fileupload-buttonbar {
	border: none !important;
}

.addMember .ui-dialog-content, .editMember .ui-dialog-content {
	padding: 0 !important;
}

.id-barcode img {
	width: 50px !important;
}
/*# sourceMappingURL=style.css.map */

/* carousel */
.cstm-carousel .ui-carousel-next, .cstm-carousel .ui-carousel-prev {
	margin-left: 0 !important; 
	margin-right: 0 !important;
}

.cstm-carousel .ui-carousel-items-content { padding-bottom: .5rem; }

/* data scroller */
.cstm_dataScroller .ui-datascroller-item { display: inline; }


/* Terms and Conditions link */
 .terms-link {
     color: #3b82f6;
     text-decoration: underline;
     cursor: pointer;
 }

 .terms-link:hover {
     color: #2563eb;
 }
