@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Trirong:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
 /* --primaryColor: #ee3f75;*/
	--primaryColor: #559e5d;
	
}

body {
  font-family: "Inter", sans-serif;
}

/* width */
::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

/* Track */
::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.048);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #eee;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primaryColor);
}

.container {
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 480px) {
  .container {
    width: 95%;
  }
}

a, button, div, span, i, b, h1, h2, h3, h4, h5, h6, p, input, ul, li, select, label, textarea {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  font-family: "Inter", sans-serif;
}

input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
  font-family: "Inter", sans-serif;
}

input {
  -webkit-tap-highlight-color: transparent;
}

::-webkit-datetime-edit-year-field:not([aria-valuenow]),
::-webkit-datetime-edit-month-field:not([aria-valuenow]),
::-webkit-datetime-edit-day-field:not([aria-valuenow]) {
  color: transparent;
}

video::-internal-media-controls-overlay-cast-button {
  display: none;
}

textarea {
  resize: none;
  font-family: "Inter", sans-serif;
}

::-moz-selection {
  color: var(--primaryColor);
  background: black;
}

::selection {
  color: var(--primaryColor);
  background: black;
}

main {
  overflow: hidden;
}

.shimmer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 105;
  background: rgba(0, 0, 0, 0.486);
  display: none;
}

.sidemenu {
  position: fixed;
  width: 350px;
  right: -110%;
  top: 0;
  height: 100vh;
  background: white;
  z-index: 200;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
}
@media (max-width: 480px) {
  .sidemenu {
    width: 100%;
  }
}
.sidemenu .sidemenuHead {
  position: absolute;
  width: 100%;
  z-index: 2;
  background: white;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.039);
}
.sidemenu .sidemenuHead .closeSidemenu {
  cursor: pointer;
  margin-right: 20px;
}
.sidemenu .sidemenuHead .closeSidemenu span {
  font-size: 22px;
}
.sidemenu .sidemenuHead p {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
}
.sidemenu .sidemenuProfile {
  position: absolute;
  top: 45px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: var(--primaryColor);
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}
.sidemenu .sidemenuProfile .sidemenuProfileThumbnail {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}
.sidemenu .sidemenuProfile .sidemenuProfileThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sidemenu .sidemenuProfile .sidemenuProfileContent {
  width: calc(100% - 70px);
  display: flex;
  flex-direction: column;
}
.sidemenu .sidemenuProfile .sidemenuProfileContent p {
  font-size: 18px;
  font-weight: 500;
  height: 22px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  color: white;
}
.sidemenu .sidemenuRegister {
  position: absolute;
  top: 45px;
  width: 100%;
  padding: 15px 20px;
}
.sidemenu .sidemenuRegister .sidemenuRegisterBtn {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--primaryColor);
  border: 1px solid var(--primaryColor);
  border-radius: 10px;
}
.sidemenu .sidemenuBody {
  width: 100%;
  position: absolute;
  top: 125px;
  height: calc(100vh - 125px);
  overflow-y: auto;
}
.sidemenu .sidemenuBody ul {
  width: 100%;
  padding: 10px 0px;
}
.sidemenu .sidemenuBody ul li {
  list-style: none;
}
.sidemenu .sidemenuBody ul li a {
  text-decoration: none;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sidemenu .sidemenuBody ul li a .material-symbols-rounded {
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 48;
}
.sidemenu .sidemenuBody ul li a span {
  width: 25px;
  font-size: 22px;
  color: rgb(169, 169, 169);
}
.sidemenu .sidemenuBody ul li a p {
  font-size: 14px;
  width: calc(100% - 40px);
  color: rgb(27, 27, 27);
  font-weight: 400;
}
.sidemenu .sidemenuBody ul li .sidemenuLinkActive {
  background: rgba(238, 238, 238, 0.4);
}
.sidemenu .sidemenuBody ul li .sidemenuLinkActive span {
  color: var(--primaryColor);
}
.sidemenu .sidemenuBody ul li .sidemenuLinkActive p {
  color: var(--primaryColor);
}

.sidemenuActive {
  right: 0;
  transition: 0.3s;
}

.endMembershipAlert {
  position: fixed;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: 110;
  background: white;
  border-radius: 10px;
  padding: 40px;
  width: 400px;
  display: none;
}
.endMembershipAlert .endMembershipAlertMian {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.endMembershipAlert .endMembershipAlertMian .endMembershipAlertThumbnail {
  width: 200px;
}
.endMembershipAlert .endMembershipAlertMian .endMembershipAlertThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.endMembershipAlert .endMembershipAlertMian .endMembershipAlertContent {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.endMembershipAlert .endMembershipAlertMian .endMembershipAlertContent p {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}
.endMembershipAlert .endMembershipAlertMian .endMembershipAlertContent span {
  font-size: 14px;
  text-align: center;
  margin-top: 10px;
  opacity: 0.7;
}
.endMembershipAlert .endMembershipAlertMian .endMembershipAlertContent .endMembershipAlertBtnArea {
  width: 100%;
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.endMembershipAlert .endMembershipAlertMian .endMembershipAlertContent .endMembershipAlertBtnArea .closeendMembershipAlert {
  flex: 0 0 48%;
  padding: 14px;
  text-align: center;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  background: #eee;
  color: black;
  transition: 0.2s;
}
.endMembershipAlert .endMembershipAlertMian .endMembershipAlertContent .endMembershipAlertBtnArea .closeendMembershipAlert:hover {
  transition: 0.2s;
  opacity: 0.7;
}
.endMembershipAlert .endMembershipAlertMian .endMembershipAlertContent .endMembershipAlertBtnArea .confirmendMembershipAlert {
  flex: 0 0 48%;
  padding: 14px;
  text-align: center;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  background: rgb(234, 8, 8);
  color: white;
  transition: 0.2s;
}
.endMembershipAlert .endMembershipAlertMian .endMembershipAlertContent .endMembershipAlertBtnArea .confirmendMembershipAlert:hover {
  transition: 0.2s;
  opacity: 0.7;
}

.subscriptionPlanPopup {
  position: fixed;
  z-index: 150;
  top: 0px;
  width: 950px;
  max-height: calc(100vh - 100px);
  background: white;
  border-radius: 10px;
  padding: 40px;
  transform: translateX(-50%);
  left: 50%;
  display: none;
  visibility: hidden;
  opacity: 0;
  transition: ease-out all 0.3s;
}
@media (max-width: 768px) {
  .subscriptionPlanPopup {
    width: 90%;
    top: -50px;
  }
}
@media (max-width: 480px) {
  .subscriptionPlanPopup {
    padding: 20px;
  }
}
.subscriptionPlanPopup .subscriptionPlanPopupBody {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.subscriptionPlanPopup .subscriptionPlanPopupBody h1 {
  font-size: 2.5em;
  font-weight: 500;
  color: rgb(219, 0, 0);
  line-height: 1.5;
}
@media (max-width: 768px) {
  .subscriptionPlanPopup .subscriptionPlanPopupBody h1 {
    font-size: 2em;
  }
}
@media (max-width: 480px) {
  .subscriptionPlanPopup .subscriptionPlanPopupBody h1 {
    font-size: 25px;
  }
}
.subscriptionPlanPopup .subscriptionPlanPopupBody h2 {
  font-size: 22px;
  font-weight: 500;
  margin-top: 30px;
  line-height: 1.7;
}
@media (max-width: 480px) {
  .subscriptionPlanPopup .subscriptionPlanPopupBody h2 {
    font-size: 16px;
    line-height: 1.5;
  }
}
.subscriptionPlanPopup .subscriptionPlanPopupBody .priceDetails {
  width: 100%;
  margin-top: 10px;
  padding: 20px;
  border-radius: 10px;
  background: rgba(21, 255, 0, 0.158);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
@media (max-width: 480px) {
  .subscriptionPlanPopup .subscriptionPlanPopupBody .priceDetails {
    background: rgba(21, 255, 0, 0.06);
    font-size: 16px;
  }
}
.subscriptionPlanPopup .subscriptionPlanPopupBody .priceDetails h3 {
  font-size: 2em;
  font-weight: 500;
  margin: 0 10px;
	display: flex;
    align-items: center;
}
@media (max-width: 480px) {
  .subscriptionPlanPopup .subscriptionPlanPopupBody .priceDetails h3 {
    font-size: 24px;
    margin: 0px 5px;
  }
}
.subscriptionPlanPopup .subscriptionPlanPopupBody .priceDetails h3 span {
  font-size: 32px;
}
@media (max-width: 480px) {
  .subscriptionPlanPopup .subscriptionPlanPopupBody .priceDetails h3 span {
    font-size: 20px;
  }
}
.subscriptionPlanPopup .subscriptionPlanPopupBody .plansDetailsBtnArea {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.subscriptionPlanPopup .subscriptionPlanPopupBody .plansDetailsBtnArea a {
  text-decoration: none;
  flex: 0 0 48%;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  font-size: 20px;
  margin-top: 20px;
}
@media (max-width: 480px) {
  .subscriptionPlanPopup .subscriptionPlanPopupBody .plansDetailsBtnArea a {
    flex: 100%;
  }
}
.subscriptionPlanPopup .subscriptionPlanPopupBody .plansDetailsBtnArea .gopaymentsBtn {
  background: rgb(9, 174, 9);
  color: white;
}
.subscriptionPlanPopup .subscriptionPlanPopupBody .plansDetailsBtnArea .gopaymentsBtn:hover {
  background: var(--primaryColor);
  transition: 0.3s;
}
.subscriptionPlanPopup .subscriptionPlanPopupBody .plansDetailsBtnArea .skipThisBtn {
  border: 1px solid rgb(203, 203, 203);
  color: black;
}
@media(max-width:480px){
	.subscriptionPlanPopup .subscriptionPlanPopupBody .plansDetailsBtnArea .skipThisBtn{
		padding: 10px 20px;
		font-size: 16px;
	}
}
.subscriptionPlanPopup .subscriptionPlanPopupBody .plansDetailsBtnArea .skipThisBtn:hover {
  background: #eee;
  border: 1px solid #eee;
  transition: 0.3s;
}
.subscriptionPlanPopup .subscriptionPlanPopupBody .termsConditions {
  margin-top: 20px;
  font-size: 14px;
}
.subscriptionPlanPopup .subscriptionPlanPopupBody .termsConditions a {
  color: rgb(96, 96, 96);
}

.subscriptionPlanPopupActive {
  top: 50px;
  visibility: visible;
  opacity: 1;
  transition: ease-in all 0.3s;
}





.subscriptionCountlimit {
  position: fixed;
  z-index: 150;
  top: 40%;
  width: 500px;
  max-height: calc(100vh - 100px);
  background: white;
  border-radius: 10px;
  padding: 40px;
  transform: translate(-50%, -50%);
  left: 50%;
  display: none;
  visibility: hidden;
  opacity: 0;
  transition: ease-out all 0.3s;
}
@media (max-width: 768px) {
  .subscriptionCountlimit {
    width: 90%;
  }
}
@media (max-width: 480px) {
  .subscriptionCountlimit {
    padding: 20px;
  }
}
.subscriptionCountlimit .closeSubscriptionCountlimit{
	width: 30px;
	height:30px;
	cursor: pointer;
	position: absolute;
	top :20px;
	right: 20px;
}
.subscriptionCountlimit .closeSubscriptionCountlimit span{
	font-size :25px;
	color: #aaa;
}
.subscriptionCountlimit .subscriptionPlanPopupBody {
  width: 100%;
  display: flex;
  flex-direction: column;
	justify-content: center;
	align-items: center;
}
.subscriptionCountlimit .subscriptionPlanPopupBody h1 {
  font-size: 30px;
  font-weight: 500;
  color: rgb(219, 0, 0);
  line-height: 1.5;
	text-align: center;
	margin-top: 10px;
}
@media (max-width: 480px) {
.subscriptionCountlimit .subscriptionPlanPopupBody h1 {
		font-size: 24px;
  }
}
.subscriptionCountlimit .subscriptionPlanPopupBody .subscriptionPlanPopupBodyImg{
	width: 100px;
}
.subscriptionCountlimit .subscriptionPlanPopupBody .subscriptionPlanPopupBodyImg img {
	width:100%;
	height:100%;
	object-fit: contain
}
@media (max-width: 768px) {
  .subscriptionCountlimit .subscriptionPlanPopupBody h1 {
    font-size: 2em;
  }
}
@media (max-width: 480px) {
  .subscriptionCountlimit .subscriptionPlanPopupBody h1 {
    font-size: 25px;
  }
}
.subscriptionCountlimit .subscriptionPlanPopupBody h2 {
  font-size: 22px;
  font-weight: 500;
  margin-top: 30px;
  line-height: 1.7;
}
@media (max-width: 480px) {
  .subscriptionCountlimit .subscriptionPlanPopupBody h2 {
    font-size: 16px;
    line-height: 1.5;
  }
}
.subscriptionCountlimit .subscriptionPlanPopupBody .priceDetails {
  width: 100%;
  margin-top: 10px;
  padding: 20px;
  border-radius: 10px;
  background: rgba(21, 255, 0, 0.158);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
@media (max-width: 480px) {
  .subscriptionCountlimit .subscriptionPlanPopupBody .priceDetails {
    background: rgba(21, 255, 0, 0.06);
    font-size: 16px;
  }
}
.subscriptionCountlimit .subscriptionPlanPopupBody .priceDetails h3 {
  font-size: 2em;
  font-weight: 500;
  margin: 0 10px;
	display: flex;
    align-items: center;
}
@media (max-width: 480px) {
  .subscriptionCountlimit .subscriptionPlanPopupBody .priceDetails h3 {
    font-size: 24px;
    margin: 0px 5px;
  }
}
.subscriptionCountlimit .subscriptionPlanPopupBody .priceDetails h3 span {
  font-size: 32px;
}
@media (max-width: 480px) {
  .subscriptionCountlimit .subscriptionPlanPopupBody .priceDetails h3 span {
    font-size: 20px;
  }
}
.subscriptionCountlimit .subscriptionPlanPopupBody .plansDetailsBtnArea {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.subscriptionCountlimit .subscriptionPlanPopupBody .plansDetailsBtnArea a {
  text-decoration: none;
  flex: 0 0 48%;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  font-size: 20px;
  margin-top: 20px;
}
@media (max-width: 480px) {
  .subscriptionCountlimit .subscriptionPlanPopupBody .plansDetailsBtnArea a {
    flex: 100%;
  }
}
.subscriptionCountlimit .subscriptionPlanPopupBody .plansDetailsBtnArea .gopaymentsBtn {
  background: rgb(9, 174, 9);
  color: white;
}
.subscriptionCountlimit .subscriptionPlanPopupBody .plansDetailsBtnArea .gopaymentsBtn:hover {
  background: var(--primaryColor);
  transition: 0.3s;
}
.subscriptionCountlimit .subscriptionPlanPopupBody .plansDetailsBtnArea .skipThisBtn {
  border: 1px solid rgb(203, 203, 203);
  color: black;
}
@media(max-width:480px){
	.subscriptionCountlimit .subscriptionPlanPopupBody .plansDetailsBtnArea .skipThisBtn{
		padding: 10px 20px;
		font-size: 16px;
	}
}
.subscriptionCountlimit .subscriptionPlanPopupBody .plansDetailsBtnArea .skipThisBtn:hover {
  background: #eee;
  border: 1px solid #eee;
  transition: 0.3s;
}
.subscriptionCountlimit .subscriptionPlanPopupBody .termsConditions {
  margin-top: 20px;
  font-size: 14px;
}
.subscriptionCountlimit .subscriptionPlanPopupBody .termsConditions a {
  color: rgb(96, 96, 96);
}

.subscriptionCountlimitActive {
  top: 50%;
  visibility: visible;
  opacity: 1;
  transition: ease-in all 0.3s;
}


#upload-demo {
  width: 250px;
  height: 250px;
  padding-bottom: 25px;
}

.registerPopup {
  position: fixed;
  z-index: 120;
  background: white;
  width: 400px;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  padding: 30px;
  border-radius: 10px;
  display: none;
}
@media (max-width: 480px) {
  .registerPopup {
    width: 90%;
  }
}
.registerPopup .closeRegisterPopup {
  position: absolute;
  width: 30px;
  height: 30px;
  top: -15px;
  right: -15px;
  background: rgb(235, 233, 233);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: black;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.062);
  transition: 0.2s;
}
.registerPopup .closeRegisterPopup:hover {
  transition: 0.2s;
  background: white;
}
.registerPopup .closeRegisterPopup span {
  font-size: 18px;
}
.registerPopup form {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.registerPopup form .formGroup {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
.registerPopup form .formGroup:nth-child(1) {
  margin-top: 0;
}
.registerPopup form .formGroup label {
  font-size: 16px;
  font-weight: 300;
  color: rgb(152, 152, 152);
}
.registerPopup form .formGroup .formGroupCheckboxMain {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.registerPopup form .formGroup .formGroupCheckboxMain .formGroupCheckbox {
  margin-top: 10px;
  flex: 0 0 48%;
}
.registerPopup form .formGroup .formGroupCheckboxMain .formGroupCheckbox input[type=radio][id^=myCheckbox] {
  display: none;
}
.registerPopup form .formGroup .formGroupCheckboxMain .formGroupCheckbox label {
  border: 1px solid #ccc;
  padding: 10px;
  position: relative;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.registerPopup form .formGroup .formGroupCheckboxMain .formGroupCheckbox label:before {
  background-color: white;
  color: white;
  content: " ";
  display: block;
  border-radius: 50%;
  border: 1px solid var(--primaryColor);
  position: absolute;
  top: -5px;
  left: -5px;
  width: 25px;
  height: 25px;
  text-align: center;
  line-height: 28px;
  transition-duration: 0.4s;
  transform: scale(0);
}
.registerPopup form .formGroup .formGroupCheckboxMain .formGroupCheckbox label img {
  height: 100px;
  width: 100px;
  transition-duration: 0.2s;
  transform-origin: 50% 50%;
}
.registerPopup form .formGroup .formGroupCheckboxMain .formGroupCheckbox :checked + label {
  border-color: var(--primaryColor);
}
.registerPopup form .formGroup .formGroupCheckboxMain .formGroupCheckbox :checked + label:before {
  content: "✓";
  background-color: var(--primaryColor);
  transform: scale(1);
}
.registerPopup form .formGroup .formGroupCheckboxMain .formGroupCheckbox :checked + label img {
  transform: scale(0.9);
  /* box-shadow: 0 0 5px #333; */
}
.registerPopup form .formGroup input {
  width: 100%;
  height: 45px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 15px;
  font-size: 14px;
  color: black;
  outline: none;
}
.registerPopup form .formGroup input:focus {
  border: 1px solid var(--primaryColor);
  color: var(--primaryColor);
}
.registerPopup form .formBtnArea {
  width: 100%;
  margin-top: 20px;
}
.registerPopup form .formBtnArea button {
  width: 100%;
  padding: 12px;
  background: var(--primaryColor);
  color: white;
  font-size: 16px;
  border-radius: 10px;
  outline: none;
  cursor: pointer;
  border: none;
  font-weight: 300;
  text-align: center;
  transition: 0.2s;
}
.registerPopup form .formBtnArea button:hover {
  opacity: 0.7;
  transition: 0.2s;
}
.registerPopup form .loginStrip {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.registerPopup form .loginStrip p {
  width: 100%;
  color: black;
  font-size: 16px;
  font-weight: 500;
  margin-top: 20px;
  text-align: center;
}
.registerPopup form .loginStrip p a {
  color: var(--primaryColor);
}



.otpPopup{
	position: fixed;
	z-index: 200;
	background: white;
	border-radius: 10px;
	padding: 30px;
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
	width: 400px;
	display: none;
}
@media(max-width: 480px){
	.otpPopup{
		width: 90%;
	}
}
.otpPopup h1{
	font-size: 22px;
	font-weight: 600;
}
.otpPopup span{
	font-size: 14px;
	margin-top: 10px;
	display: flex;
}
.otpPopup span b{
	font-weight: 600;
	color: var(--primaryColor);
	margin-left: 10px;
}
.otpPopup h2{
	font-size: 18px;
	font-weight: 600;
	margin-top: 30px;
}
.otpPopup .formGroup{
	width :100%;
	margin-top: 10px;
}
.otpPopup .formGroup .formGroupOtpInput{
	width: 100%;
	display :flex;
	justify-content: space-between;
	gap: 10px;
}
.otpPopup .formGroup #message {
	display: flex;
	align-items: center;
	width: 100%;
	margin-top: 8px;
	border-radius: 5px;
	font-weight: 500;
	font-size: 14px;
}
.otpPopup .formGroup #message.success {
	background: #4dff3222;
	color: #088d04;
	padding: 10px 15px;
}
.otpPopup .formGroup #message.error {
	background: #ff323222;
	color: #ff0000;
	padding: 10px 15px;
}
.otpPopup .formGroup .formGroupOtpInput input{
	width: 100%;
	border: 1px solid #ccc;
	padding: 5px 15px 0px 15px;
	font-size: 16px;
	font-weight: 500;
	border-radius: 5px;
	outline: none;
	margin-top: 5px;
	height: 50px;
	background: white;
	text-align: center;
}
.otpPopup .formGroup .formGroupOtpInput input::placeholder{
	font-size: 16px;
	color: #ccc;
}
.otpPopup .formGroup .formGroupOtpInput input[type="password"]{
	letter-spacing: 10px;
	font-size: 20px;
}
.otpPopup .formGroup .formGroupOtpInput input::placeholder{
	letter-spacing: 20px;
}
.otpPopup .formGroup .formGroupOtpInput input:focus{
	border: 1px solid var(--primaryColor);
}
.otpPopup .formGroup .formGroupOtpInput input:disabled{
	background: white;
}
.otpPopup .formGroup input:focus{
	border: 1px solid #000;
}
.otpPopup .resendOtp{
	width: 100%;
	margin-top: 10px;
	display :flex;
	align-items: center;
	justify-content: flex-end;
}
.otpPopup .resendOtp .resendOtpBtn{
	font-size: 16px;
	font-weight: 600;
	color: var(--primaryColor);
	cursor:pointer;
	display: none;
}
.otpPopup .formBtnArea{
	width :100%;
	margin-top: 20px;
}
.otpPopup .formBtnArea button{
	width :100%;
	padding: 16px;
	font-weight: 500;
	color: white;
	background: var(--primaryColor);
	font-size: 16px;
	border-radius: 10px;
	outline: none;
	border: none;
	cursor: pointer;
	text-transform: uppercase;
	transition: .3s all;
}
.otpPopup .formBtnArea button:hover{
	opacity: .7;
}

/* //newPopup */

.regLoginpopUp{
  position: fixed;
  z-index: 150;
  top: 50%;
  max-height: calc(100vh - 100px);
  background: white;
  border-radius: 10px;
  padding: 40px;
  transform: translate(-50%, -50%);
  left: 50%;
  width: 500px;
 display: none;
}


.regLoginpopUp .LoginRegPopup{
  border-radius: 20%;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  right: 2%;
  top: 2%;
}

.regLoginpopUp .LoginRegPopup span{
  color: var(--primaryColor);
  padding: 0.2rem;
}

.regLoginpopUp .mainContent{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.regLoginpopUp .mainContent .vectorImg{
  flex: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.regLoginpopUp .mainContent .vectorImg img{
  width: 80%;
  height: 80%;
  object-fit: cover;
}

.regLoginpopUp .mainContent h1{
font-size: 1.2em;
font-weight: 500;
margin-top: 10px;
}

.regLoginpopUp .mainContent .loginTag{
  width: 100%;
  height: 3rem;
  border: none;
  outline: none;
  font-size: 1.2em;
	display:flex;
	align-items:center;
	justify-content:center;
	text-decoration:none;
  color: white;
  background: var(--primaryColor);
  margin-top: 20px;
  border-radius: 0.5rem;
}

.regLoginpopUp .mainContent p{
  font-size: 14px;
  opacity: .8;
  margin-top: 15px;
}

.regLoginpopUp .mainContent p .registerTag{
  text-decoration: none;
  color: var(--primaryColor);
}



nav {
  position: fixed;
  z-index: 100;
  width: 100%;
  height: 70px;
  top: 0;
  left: 0;
  background: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.073);
}
@media (max-width: 480px) {
  nav {
    height: 60px;
  }
}
nav .navLogo {
  float: left;
  height: 100px;
	width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
@media (max-width: 480px) {
  nav .navLogo {
    height: 70px;
	width: 70px;
  }
}
nav .navLogo h1 {
  font-size: 22px;
  color: black;
  font-weight: 500;
  font-family: "Trirong", serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}
nav .navLogo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
nav .navLink {
  float: right;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1255px) {
  nav .navLink {
    display: none;
  }
}
nav .navLink ul {
  display: flex;
  align-items: center;
}
nav .navLink ul li {
  list-style: none;
}
nav .navLink ul li a {
  text-decoration: none;
  color: rgb(122, 122, 122);
  font-size: 16px;
  font-weight: 400;
  margin-left: 70px;
}
@media(max-width:1520px){
	nav .navLink ul li a{
		margin-left: 40px;
	}
}
nav .navLink ul li a:hover {
  color: black;
}
nav .navLink ul li .navLinkActive {
  color: var(--primaryColor);
  font-weight: 500;
}
nav .navLogin {
  float: right;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 100px;
}
@media (max-width: 1024px) {
  nav .navLogin {
    margin-left: 0px;
  }
}
@media (max-width: 480px) {
  nav .navLogin {
    position: fixed;
    z-index: 60;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 5%;
  }
  nav .navLogin a {
    width: 100%;
    text-align: center;
    background: var(--primaryColor);
    color: white !important;
    padding: 12px !important;
    text-transform: uppercase;
  }
}
nav .navLogin a {
  text-decoration: none;
  padding: 8px 30px;
  border: 1px solid var(--primaryColor);
  color: var(--primaryColor);
  border-radius: 5px;
  font-size: 16px;
  transition: 0.2s;
}
nav .navLogin a:hover {
  background: var(--primaryColor);
  color: white;
  transition: 0.2s;
}
nav .navProfile {
  float: right;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 100px;
}
@media (max-width: 1520px) {
  nav .navProfile {
    margin-left: 40px;
  }
}
@media (max-width: 1024px) {
  nav .navProfile {
    margin-left: 0px;
  }
}
@media (max-width: 480px) {
  nav .navProfile {
    display: none;
  }
}
nav .navProfile a {
  text-decoration: none;
  padding: 8px 20px;
  background: var(--primaryColor);
  border-radius: 5px;
  transition: 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
nav .navProfile a:hover {
  opacity: 0.8;
  transition: 0.2s;
}
nav .navProfile a .profileThumbnail {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 10px;
  border: 2px solid white;
}
nav .navProfile a .profileThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
nav .navProfile a p {
  color: white;
  font-size: 16px;
  height: 22px;
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  margin-bottom: 0;
}
nav .navProfile a .profileIcon{
	color: white;
	margin-left: 5px;
	margin-top: 4px;
}
nav .navProfile a .profileIcon span{
	font-size: 18px;
    opacity: .8;
}
nav .navBar {
  display: none;
  float: right;
  height: 70px;
  justify-content: center;
  align-items: center;
  margin-left: 50px;
}
@media (max-width: 1255px) {
  nav .navBar {
    display: flex;
  }
}
@media (max-width: 480px) {
  nav .navBar {
    height: 60px;
  }
}
nav .navBar .navBarBox {
  width: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  flex-direction: column;
}
nav .navBar .navBarBox span {
  width: 100%;
  height: 2.5px;
  background: #252525;
  margin-top: 4px;
  border-radius: 20%;
}
nav .navBar .navBarBox span:nth-child(1) {
  margin-top: 0;
}


  #banner {
  width: 100%;
  position: relative;
}
@media (max-width: 1024px) {
  #banner {
    height: 100%;
    margin-top: 70px;
  }
}
@media (max-width: 480px) {
  #banner {
    margin-top: 60px;
  }
}
#banner .bannerMain {
  width: 100%;
}
#banner .bannerMain .bannerBox {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
@media (max-width: 1024px) {
  #banner .bannerMain .bannerBox {
    height: 300px;
  }
}
@media (max-width: 480px) {
  #banner .bannerMain .bannerBox {
    height: 200px;
  }
}
#banner .bannerMain .bannerBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#banner .bannerMain .owl-nav, #banner .bannerMain .owl-dot {
  display: none;
}
#banner .bannerContent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2745098039);
  z-index: 1;
}
@media (max-width: 1024px) {
  #banner .bannerContent {
    position: inherit;
    margin-top: 50px;
    background: none;
  }
}
@media (max-width: 480px) {
  #banner .bannerContent {
    margin-top: 30px;
  }
}
#banner .bannerContent .bannerContentMain {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 1024px) {
  #banner .bannerContent .bannerContentMain {
    height: auto;
  }
}
#banner .bannerContent .bannerContentMain h1 {
  font-size: 3em;
  color: white;
  width: 30%;
  font-weight: 600;
  line-height: 1.3;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.205);
}
@media (max-width: 1800px) {
  #banner .bannerContent .bannerContentMain h1 {
    width: 45%;
    font-size: 2.5em;
  }
}
@media (max-width: 1024px) {
  #banner .bannerContent .bannerContentMain h1 {
    width: 100%;
    color: black;
    text-shadow: none;
    font-size: 3em;
  }
}
@media (max-width: 480px) {
  #banner .bannerContent .bannerContentMain h1 {
    font-size: 25px;
    line-height: 1.7;
  }
}
#banner .bannerContent .bannerContentMain .bannerTxt{
	font-size: 5em;
	width: 50%;
}

@media (max-width: 1024px) {
  #banner .bannerContent .bannerContentMain .bannerTxt {
    width: 100%;
    color: black;
    text-shadow: none;
    font-size: 3em;
  }
}
@media (max-width: 480px) {
  #banner .bannerContent .bannerContentMain .bannerTxt {
    font-size: 25px;
    line-height: 1.7;
  }
}
#banner .bannerContent .bannerContentMain p {
  font-size: 22px;
  font-weight: 200;
  color: white;
  margin-top: 30px;
  width: 30%;
  line-height: 1.5;
}
#banner .bannerContent .bannerContentMain .bannerContentForm {
  width: 400px;
  padding: 30px;
  background: white;
  margin-top: 30px;
  border-radius: 10px;
}
@media (max-width: 1024px) {
  #banner .bannerContent .bannerContentMain .bannerContentForm {
    width: 100%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.059);
  }
}
#banner .bannerContent .bannerContentMain .bannerContentForm form {
  width: 100%;
  display: flex;
  flex-direction: column;
}
#banner .bannerContent .bannerContentMain .bannerContentForm form .formGroup {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
#banner .bannerContent .bannerContentMain .bannerContentForm form .formGroup:nth-child(1) {
  margin-top: 0;
}
#banner .bannerContent .bannerContentMain .bannerContentForm form .formGroup label {
  font-size: 16px;
  font-weight: 300;
  color: rgb(152, 152, 152);
}
#banner .bannerContent .bannerContentMain .bannerContentForm form .formGroup .formGroupCheckboxMain {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#banner .bannerContent .bannerContentMain .bannerContentForm form .formGroup .formGroupCheckboxMain .formGroupCheckbox {
  margin-top: 10px;
  flex: 0 0 48%;
}
#banner .bannerContent .bannerContentMain .bannerContentForm form .formGroup .formGroupCheckboxMain .formGroupCheckbox input[type=radio][id^=myCheckbox] {
  display: none;
}
#banner .bannerContent .bannerContentMain .bannerContentForm form .formGroup .formGroupCheckboxMain .formGroupCheckbox label {
  border: 1px solid #ccc;
  padding: 10px;
  position: relative;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
#banner .bannerContent .bannerContentMain .bannerContentForm form .formGroup .formGroupCheckboxMain .formGroupCheckbox label:before {
  background-color: white;
  color: white;
  content: " ";
  display: block;
  border-radius: 50%;
  border: 1px solid var(--primaryColor);
  position: absolute;
  top: -5px;
  left: -5px;
  width: 25px;
  height: 25px;
  text-align: center;
  line-height: 28px;
  transition-duration: 0.4s;
  transform: scale(0);
}
#banner .bannerContent .bannerContentMain .bannerContentForm form .formGroup .formGroupCheckboxMain .formGroupCheckbox label img {
  height: 100px;
  width: 100px;
  transition-duration: 0.2s;
  transform-origin: 50% 50%;
}
@media (max-width: 1800px) {
  #banner .bannerContent .bannerContentMain .bannerContentForm form .formGroup .formGroupCheckboxMain .formGroupCheckbox label img {
    width: 70px;
    height: 70px;
  }
}
#banner .bannerContent .bannerContentMain .bannerContentForm form .formGroup .formGroupCheckboxMain .formGroupCheckbox :checked + label {
  border-color: var(--primaryColor);
}
#banner .bannerContent .bannerContentMain .bannerContentForm form .formGroup .formGroupCheckboxMain .formGroupCheckbox :checked + label:before {
  content: "✓";
  background-color: var(--primaryColor);
  transform: scale(1);
}
#banner .bannerContent .bannerContentMain .bannerContentForm form .formGroup .formGroupCheckboxMain .formGroupCheckbox :checked + label img {
  transform: scale(0.9);
  /* box-shadow: 0 0 5px #333; */
}
#banner .bannerContent .bannerContentMain .bannerContentForm form .formGroup input {
  width: 100%;
  height: 45px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 15px;
  font-size: 14px;
  color: black;
  outline: none;
}
#banner .bannerContent .bannerContentMain .bannerContentForm form .formGroup input:focus {
  border: 1px solid var(--primaryColor);
  color: var(--primaryColor);
}
#banner .bannerContent .bannerContentMain .bannerContentForm form .formBtnArea {
  width: 100%;
  margin-top: 20px;
}
#banner .bannerContent .bannerContentMain .bannerContentForm form .formBtnArea button {
  width: 100%;
  padding: 12px;
  background: var(--primaryColor);
  color: white;
  font-size: 16px;
  border-radius: 10px;
  outline: none;
  cursor: pointer;
  border: none;
  font-weight: 300;
  text-align: center;
  transition: 0.2s;
}
#banner .bannerContent .bannerContentMain .bannerContentForm form .formBtnArea button:hover {
  opacity: 0.7;
  transition: 0.2s;
}
#banner .bannerContent .bannerContentMain .bannerContentForm form .loginStrip {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#banner .bannerContent .bannerContentMain .bannerContentForm form .loginStrip p {
  width: 100%;
  color: black;
  font-size: 16px;
  font-weight: 500;
  margin-top: 20px;
  text-align: center;
}
#banner .bannerContent .bannerContentMain .bannerContentForm form .loginStrip p a {
  color: var(--primaryColor);
}
#banner .bannerContent .bannerContentMain .bannerProfileBtn{
	text-decoration: none;
	width: 200px;
	padding: 12px;
	background: var(--primaryColor);
	color: white;
	font-size: 16px;
	border-radius: 10px;
	outline: none;
	cursor: pointer;
	border: none;
	font-weight: 300;
	text-align: center;
	transition: 0.2s;
	margin-top: 35px;
	display: none;
	justify-content: center;
	align-items: center;
}
#banner .bannerContent .bannerContentMain .bannerProfileBtn:hover {
  opacity: 0.7;
  transition: 0.2s;
} 



#Cardbanner{
  background-color:rgb(234, 241, 244) ;
  margin-top: 4rem;
  padding-bottom: 5rem;
  position: relative;
}

#Cardbanner .leaf-1{
  position: absolute;
  left: 0;
  top: 1%;
  z-index: 0;
}

#Cardbanner .leaf-2{
  position: absolute;
  top: 10%;
  right: 0;
}

#Cardbanner .cardBanner-head{
  padding-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#Cardbanner .cardBanner-head .dummyDiv{
  flex: 0 0 22%;
	height: 0;
}
@media (max-width:1800px){
  #Cardbanner .cardBanner-head .dummyDiv{
    flex: 0 0 23.5%;
  }
}

@media (max-width:1024px){
  #Cardbanner .cardBanner-head .dummyDiv{
    flex: 0 0 31%;
  }
}
#Cardbanner .cardBanner-head .cardContent{
  flex: 0 0 22%;
  background: #fff;
  border-radius: 1rem;
  margin-top: 2rem;
  z-index: 1;
}

@media (max-width:1800px){
  #Cardbanner .cardBanner-head .cardContent{
    flex: 0 0 23.5%;
  }
}

@media (max-width:1024px){
  #Cardbanner .cardBanner-head .cardContent{
    flex: 0 0 31%;
  }
}

@media (max-width:768px){
  #Cardbanner .cardBanner-head .cardContent{
    flex: 0 0 48%;
  }
}

@media (max-width:480px){
  #Cardbanner .cardBanner-head .cardContent{
    flex:100%;
  }
}

#Cardbanner .cardBanner-head .cardContent .cardImg{
 
}

#Cardbanner .cardBanner-head .cardContent .cardImg img{
  width: 100%;
  height: 250px;
  object-fit: contain;
  border-radius: 1rem;
}

#Cardbanner .cardBanner-head .cardContent .cardText{
  display: flex;
  flex-direction: column;
  padding: 1rem;
}

#Cardbanner .cardBanner-head .cardContent .cardText h1{
  font-size: 2em;
  font-weight: 400;
}

#Cardbanner .cardBanner-head .cardContent .cardText .idNumber{
  font-size: 0.6rem;
  padding-top: 0.3rem;
  padding-bottom: 0.7rem;
}

#Cardbanner .cardBanner-head .cardContent .cardText .Textdetails{
margin-top: 1.1rem;
}

#Cardbanner .cardBanner-head .cardContent .cardText .Textdetails p{
  font-size: 0.9em;
  padding-bottom: 0.5rem;
}

#Cardbanner .cardBanner-head .cardContent .cardText .Textdetails .viewButton{
	text-decoration:none;
	padding:0.5rem 0.8rem;
	margin-top:16px;
  background: var(--primaryColor);
  color: white;
  border: none;
  outline: none;
  border-radius: 0.5rem;
  cursor: pointer;
  display:inline-block;
  width:fit-content;
}


#loginForm {
  width: 100%;
  padding: 100px 20%;
  margin-top: 70px;
  background: rgba(240, 248, 255, 0.3882352941);
  min-height: calc(100vh - 70px);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1024px) {
  #loginForm {
    padding: 50px 5%;
    min-height: inherit;
  }
}
@media (max-width: 480px) {
  #loginForm {
    margin-top: 60px;
  }
}
#loginForm .loginFormBox {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  background: white;
}
#loginForm .loginFormBox .loginFormThumbnail {
  width: 50%;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 480px) {
  #loginForm .loginFormBox .loginFormThumbnail {
    flex: 100%;
  }
}
#loginForm .loginFormBox .loginFormThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#loginForm .loginFormBox .loginFormDetails {
  width: 50%;
  display: flex;
  flex-direction: column;
  padding: 50px;
}
@media (max-width: 768px) {
  #loginForm .loginFormBox .loginFormDetails {
    padding: 30px;
  }
}
@media (max-width: 480px) {
  #loginForm .loginFormBox .loginFormDetails {
    flex: 100%;
  }
}
#loginForm .loginFormBox .loginFormDetails h1 {
  font-size: 25px;
  font-weight: 500;
}
#loginForm .loginFormBox .loginFormDetails p {
  font-size: 14px;
  margin-top: 10px;
  color: rgb(149, 149, 149);
  font-weight: 300;
}
#loginForm .loginFormBox .loginFormDetails form {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 50px;
}
#loginForm .loginFormBox .loginFormDetails form .formGroup {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
#loginForm .loginFormBox .loginFormDetails form .formGroup:nth-child(1) {
  margin-top: 0;
}
#loginForm .loginFormBox .loginFormDetails form .formGroup label {
  font-size: 16px;
  font-weight: 300;
  color: rgb(152, 152, 152);
}
#loginForm .loginFormBox .loginFormDetails form .formGroup input {
  width: 100%;
  height: 45px;
  padding: 5px 15px;
  border-radius: 5px;
  margin-top: 5px;
  outline: none;
  color: black;
  border: 1px solid #ccc;
  font-size: 16px;
}
#loginForm .loginFormBox .loginFormDetails form .formGroup input:focus {
  border: 1px solid var(--primaryColor);
  color: var(--primaryColor);
}
#loginForm .loginFormBox .loginFormDetails form .formGroup .formPassword {
  position: relative;
}
#loginForm .loginFormBox .loginFormDetails form .formGroup .formPassword .togglePassword {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  color: var(--primaryColor);
  font-size: 20px;
}
#loginForm .loginFormBox .loginFormDetails form .formBtnArea {
  width: 100%;
  margin-top: 30px;
}
#loginForm .loginFormBox .loginFormDetails form .formBtnArea button {
  width: 100%;
  padding: 12px;
  background: var(--primaryColor);
  color: white;
  font-size: 16px;
  border-radius: 5px;
  outline: none;
  cursor: pointer;
  border: none;
  font-weight: 300;
  text-align: center;
  transition: 0.2s;
}
#loginForm .loginFormBox .loginFormDetails form .formBtnArea button:hover {
  opacity: 0.7;
  transition: 0.2s;
}
#loginForm .loginFormBox .loginFormDetails form .loginStrip {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#loginForm .loginFormBox .loginFormDetails form .loginStrip p {
  width: 100%;
  color: black;
  font-size: 16px;
  font-weight: 500;
  margin-top: 40px;
  text-align: center;
}
#loginForm .loginFormBox .loginFormDetails form .loginStrip p a {
  color: var(--primaryColor);
}
#loginForm .loginFormBox .loginFormDetails form .forgotStrip {
  width: 100%;
  display: flex;
}
#loginForm .loginFormBox .loginFormDetails form .forgotStrip p {
  width: 100%;
  color: rgb(102, 102, 102);
  font-size: 14px;
  font-weight: 400;
  margin-top: 20px;
  text-align: right;
}
#loginForm .loginFormBox .loginFormDetails form .forgotStrip p a {
  color: var(--primaryColor);
}

#howItWork {
  width: 100%;
  padding: 100px 0px;
}
#howItWork .howItWorkTitle {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#howItWork .howItWorkTitle h1 {
  font-size: 3em;
  font-weight: 500;
  text-align: center;
  font-family: "Trirong", serif;
  position: relative;
}
@media (max-width: 768px) {
  #howItWork .howItWorkTitle h1 {
    font-size: 2.5em;
  }
}
@media (max-width: 480px) {
  #howItWork .howItWorkTitle h1 {
    font-size: 2em;
  }
}
#howItWork .howItWorkTitle h1::after {
  position: absolute;
  z-index: -1;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  background-image: url(../images/loveIcon.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 768px) {
  #howItWork .howItWorkTitle h1::after {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 480px) {
  #howItWork .howItWorkTitle h1::after {
    width: 80px;
    height: 80px;
  }
}
#howItWork .howItWorkMain {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#howItWork .howItWorkMain .howItWorkBox {
  flex: 0 0 22%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 100px;
}
@media (max-width: 1024px) {
  #howItWork .howItWorkMain .howItWorkBox {
    flex: 0 0 30%;
  }
}
@media (max-width: 768px) {
  #howItWork .howItWorkMain .howItWorkBox {
    flex: 0 0 48%;
  }
}
@media (max-width: 480px) {
  #howItWork .howItWorkMain .howItWorkBox {
    flex: 100%;
    margin-top: 50px;
  }
}
#howItWork .howItWorkMain .howItWorkBox .howItWorkBoxIcon {
  width: 100px;
}
@media (max-width: 480px) {
  #howItWork .howItWorkMain .howItWorkBox .howItWorkBoxIcon {
    width: 80px;
  }
}
#howItWork .howItWorkMain .howItWorkBox .howItWorkBoxIcon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#howItWork .howItWorkMain .howItWorkBox .howItWorkBoxContent {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
#howItWork .howItWorkMain .howItWorkBox .howItWorkBoxContent h2 {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}
#howItWork .howItWorkMain .howItWorkBox .howItWorkBoxContent p {
  font-size: 16px;
  line-height: 1.5;
  margin-top: 15px;
  color: rgb(131, 131, 131);
  font-weight: 300;
  text-align: center;
}

#about {
  width: 100%;
  padding: 100px 0px;
}
@media (max-width: 768px) {
  #about {
    padding: 0;
    padding-bottom: 100px;
  }
}
#about .aboutMain {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#about .aboutMain .aboutThumbnail {
  flex: 0 0 50%;
}
@media (max-width: 768px) {
  #about .aboutMain .aboutThumbnail {
    flex: 0 0 80%;
  }
}
@media (max-width: 480px) {
  #about .aboutMain .aboutThumbnail {
    flex: 0 0 95%;
  }
}
#about .aboutMain .aboutThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#about .aboutMain .aboutDetails {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  padding-right: 5%;
}
@media (max-width: 768px) {
  #about .aboutMain .aboutDetails {
    flex: 100%;
    padding-left: 5%;
    margin-top: 50px;
  }
}
#about .aboutMain .aboutDetails h1 {
  font-size: 3em;
  font-weight: 500;
  font-family: "Trirong", serif;
  position: relative;
}
@media (max-width: 768px) {
  #about .aboutMain .aboutDetails h1 {
    font-size: 2.5em;
  }
}
@media (max-width: 480px) {
  #about .aboutMain .aboutDetails h1 {
    font-size: 2em;
  }
}
#about .aboutMain .aboutDetails h1::after {
  position: absolute;
  z-index: -1;
  content: "";
  top: 50%;
  left: 35%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  background-image: url(../images/loveIcon.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 768px) {
  #about .aboutMain .aboutDetails h1::after {
    width: 100px;
    height: 100px;
  }
}
#about .aboutMain .aboutDetails p {
  font-size: 16px;
  line-height: 2;
  margin-top: 15px;
  color: rgb(131, 131, 131);
  font-weight: 300;
}
#about .aboutMain .aboutDetails .aboutDetailsStep {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#about .aboutMain .aboutDetails .aboutDetailsStep .aboutDetailsStepBox {
  flex: 0 0 48%;
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 0;
  padding: 20px;
  border-radius: 10px;
}
@media (max-width: 1024px) {
  #about .aboutMain .aboutDetails .aboutDetailsStep .aboutDetailsStepBox {
    flex: 100%;
    flex-direction: column;
  }
}
#about .aboutMain .aboutDetails .aboutDetailsStep .aboutDetailsStepBox:nth-child(1)::after {
  background: linear-gradient(45deg, rgb(255, 85, 0), rgb(0, 60, 255));
}
#about .aboutMain .aboutDetails .aboutDetailsStep .aboutDetailsStepBox:nth-child(2)::after {
  background: linear-gradient(45deg, rgb(0, 237, 213), rgb(0, 103, 220));
}
#about .aboutMain .aboutDetails .aboutDetailsStep .aboutDetailsStepBox:nth-child(3)::after {
  background: linear-gradient(45deg, rgb(237, 182, 0), rgb(255, 65, 18));
}
#about .aboutMain .aboutDetails .aboutDetailsStep .aboutDetailsStepBox::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  background: rgb(255, 255, 255);
  top: 0;
  left: 0;
  border-radius: 10px;
}
#about .aboutMain .aboutDetails .aboutDetailsStep .aboutDetailsStepBox::after {
  position: absolute;
  content: "";
  width: 101%;
  height: 104%;
  z-index: -2;
  top: -2px;
  left: -2px;
  border-radius: 10px;
}
#about .aboutMain .aboutDetails .aboutDetailsStep .aboutDetailsStepBox .aboutDetailsStepBoxIcon {
  width: 45px;
}
#about .aboutMain .aboutDetails .aboutDetailsStep .aboutDetailsStepBox .aboutDetailsStepBoxIcon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#about .aboutMain .aboutDetails .aboutDetailsStep .aboutDetailsStepBox h2 {
  width: calc(100% - 70px);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}
@media (max-width: 480px) {
  #about .aboutMain .aboutDetails .aboutDetailsStep .aboutDetailsStepBox h2 {
    width: 100%;
    margin-top: 20px;
    text-align: center;
  }
}

#testimonails {
  width: 100%;
  padding: 100px 0px;
  background: #eee;
}
#testimonails .testimonailsTitle {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#testimonails .testimonailsTitle h1 {
  font-size: 3em;
  font-weight: 500;
  text-align: center;
  font-family: "Trirong", serif;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  #testimonails .testimonailsTitle h1 {
    font-size: 2.5em;
  }
}
@media (max-width: 480px) {
  #testimonails .testimonailsTitle h1 {
    font-size: 2em;
  }
}
#testimonails .testimonailsTitle h1::after {
  position: absolute;
  z-index: -1;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  background-image: url(../images/loveIcon.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 768px) {
  #testimonails .testimonailsTitle h1::after {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 480px) {
  #testimonails .testimonailsTitle h1::after {
    width: 80px;
    height: 80px;
  }
}
#testimonails .testimonailsMain {
  width: 100%;
}
#testimonails .testimonailsMain .testimonailsBox {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 100px;
  background: white;
  border-radius: 10px;
}
#testimonails .testimonailsMain .testimonailsBox .testimonailsBoxThumbnail {
  width: 100%;
  height: 250px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}
#testimonails .testimonailsMain .testimonailsBox .testimonailsBoxThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#testimonails .testimonailsMain .testimonailsBox .testimonailsBoxName {
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
#testimonails .testimonailsMain .testimonailsBox .testimonailsBoxName h4 {
  font-size: 18px;
  font-weight: 500;
  height: 25px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
#testimonails .testimonailsMain .testimonailsBox .testimonailsBoxName span {
  font-size: 14px;
  margin-top: 5px;
  color: var(--primaryColor);
  display: flex;
  align-items: center;
}
#testimonails .testimonailsMain .testimonailsBox .testimonailsBoxName span i {
  font-size: 15px;
  margin-right: 10px;
}
#testimonails .testimonailsMain .owl-nav, #testimonails .testimonailsMain .owl-dot {
  display: none;
}

#countArea {
  width: 100%;
  padding: 100px 0px;
}
#countArea .countAreaMain {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#countArea .countAreaMain .countAreaBox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  #countArea .countAreaMain .countAreaBox {
    flex: 0 0 48%;
    margin-top: 50px;
  }
  #countArea .countAreaMain .countAreaBox:nth-child(1) {
    margin-top: 0;
  }
  #countArea .countAreaMain .countAreaBox:nth-child(2) {
    margin-top: 0;
  }
}
@media (max-width: 480px) {
  #countArea .countAreaMain .countAreaBox {
    flex: 100%;
    border-top: 1px solid #eee;
    padding-top: 50px;
  }
  #countArea .countAreaMain .countAreaBox:nth-child(1) {
    border-top: none;
    padding-top: 0;
  }
  #countArea .countAreaMain .countAreaBox:nth-child(2) {
    margin-top: 50px;
  }
}
#countArea .countAreaMain .countAreaBox h1 {
  color: var(--primaryColor);
  font-size: 3em;
  font-weight: 600;
}
@media (max-width: 768px) {
  #countArea .countAreaMain .countAreaBox h1 {
    font-size: 2.5em;
  }
}
#countArea .countAreaMain .countAreaBox p {
  font-size: 18px;
  margin-top: 10px;
}

footer {
  width: 100%;
  padding: 50px 5%;
  background: var(--primaryColor);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 480px) {
  footer {
    padding-bottom: 80px;
  }
}
footer p {
  font-size: 14px;
  font-weight: 200;
  color: white;
}
@media (max-width: 480px) {
  footer p {
    text-align: center;
    line-height: 1.7;
  }
}
footer p i {
  font-size: 14px !important;
  margin: 0px 5px;
}
footer p a {
  text-decoration: none;
  color: white;
  font-weight: 400;
}

#registerForm {
  width: 100%;
  padding: 100px 20%;
  margin-top: 70px;
}
@media (max-width: 1024px) {
  #registerForm {
    padding: 50px 10%;
  }
}
@media (max-width: 768px) {
  #registerForm {
    padding: 50px 5%;
  }
}
@media (max-width: 480px) {
  #registerForm {
    margin-top: 60px;
  }
}
#registerForm h1 {
  font-size: 25px;
  font-weight: 500;
}
#registerForm p {
  font-size: 18px;
  margin-top: 10px;
  color: rgb(149, 149, 149);
  font-weight: 300;
}
#registerForm form {
  border: 1px solid #ccc;
  padding: 20px 40px 40px 40px;
  border-radius: 20px;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#registerForm form h2{
    width: 100%;
    margin-top: 40px;
    font-size: 30px;
    font-weight: 500;
    color: black;
    background: #00ff6912;
    padding: 10px;
    text-align: center;
}
#registerForm form .formGroup {
  flex: 0 0 48%;
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}
@media (max-width: 480px) {
  #registerForm form .formGroup {
    flex: 100%;
  }
}
#registerForm form .formGroup .img-thumbnail {
  height: 120px;
}
#registerForm form .formGroup label {
  font-size: 16px;
  font-weight: 300;
  color: rgb(152, 152, 152);
}
#registerForm form .formGroup .otp-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}
#registerForm form .formGroup .otp-container .otp-number-input {
  width: 40px;
  height: 33px;
  margin: 0 2px;
  border: none;
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
  padding: 0;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 0;
  padding-bottom: 0;
  font-size: 30px;
  box-shadow: none;
  text-align: center;
  background-color: none;
  font-weight: 600;
  border-radius: 0;
  outline: 0;
  transition: border 0.3s ease;
}
#registerForm form .formGroup .otp-container .otp-number-input:focus {
  border-color: rgba(0, 0, 0, 0.5);
}
#registerForm form .formGroup .otp-container .otp-number-input.otp-filled-active {
  border-color: var(--primaryColor);
}
#registerForm form .formGroup input {
  width: 100%;
  height: 45px;
  padding: 5px 15px;
  border-radius: 5px;
  margin-top: 5px;
  outline: none;
  color: black;
  border: 1px solid #ccc;
  font-size: 16px;
}
#registerForm form .formGroup input:focus {
  border: 1px solid var(--primaryColor);
  color: var(--primaryColor);
}
#registerForm form .formGroup select {
  width: 100%;
  height: 45px;
  padding: 5px 15px;
  border-radius: 5px;
  margin-top: 5px;
  outline: none;
  border: 1px solid #ccc;
  font-size: 16px;
  color: black;
}
#registerForm form .formGroup select:focus {
  border: 1px solid var(--primaryColor);
  color: var(--primaryColor);
}
#registerForm form .formGroup .formGroupCheckboxMain {
  width: 100%;
  display: flex;
  align-items: center;
  gap:6rem; 	
}
#registerForm form .formGroup .formGroupCheckboxMain .formGroupCheckbox {
  margin-top: 10px;
	display:flex;
	align-items:center;
	gap:2rem;
}
#registerForm form .formGroup .gender1{
	height:30px;
	margin-top:0;
}
#registerForm form .formGroup p{
	margin-top:0;
}
#registerForm form .formGroup .formGroupCheckboxMain .formGroupCheckbox input[type=radio][id^=myCheckbox] {
  display: none;
}
#registerForm form .formGroup .formGroupCheckboxMain .formGroupCheckbox label {
  border: 1px solid #ccc;
  padding: 10px;
  position: relative;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
#registerForm form .formGroup .formGroupCheckboxMain .formGroupCheckbox label:before {
  background-color: white;
  color: white;
  content: " ";
  display: block;
  border-radius: 50%;
  border: 1px solid var(--primaryColor);
  position: absolute;
  top: -5px;
  left: -5px;
  width: 25px;
  height: 25px;
  text-align: center;
  line-height: 28px;
  transition-duration: 0.4s;
  transform: scale(0);
}
#registerForm form .formGroup .formGroupCheckboxMain .formGroupCheckbox label img {
  height: 100px;
  width: 100px;
  transition-duration: 0.2s;
  transform-origin: 50% 50%;
}
#registerForm form .formGroup .formGroupCheckboxMain .formGroupCheckbox :checked + label {
  border-color: var(--primaryColor);
}
#registerForm form .formGroup .formGroupCheckboxMain .formGroupCheckbox :checked + label:before {
  content: "✓";
  background-color: var(--primaryColor);
  transform: scale(1);
}
#registerForm form .formGroup .formGroupCheckboxMain .formGroupCheckbox :checked + label img {
  transform: scale(0.9);
  /* box-shadow: 0 0 5px #333; */
}
#registerForm form .formGroup .formImageUpload {
  width: 100%;
  margin-top: 10px;
	justify-content: space-between;
	flex-wrap: wrap;
	display: flex;
}
@media(max-width:480px){
	#registerForm form .formGroup .formImageUpload {
  		margin-top: 0px;
	}
}
#registerForm form .formGroup .formImageUpload .avatar-upload {
    position: relative;
	width: 24%;
	height: 100px;
}
@media(max-width:480px){
	#registerForm form .formGroup .formImageUpload .avatar-upload {
		width: 48%;
		margin-top: 10px;
	}
}
#registerForm form .formGroup .formImageUpload .avatar-upload .avatar-edit {
	position: absolute;
	right: 10px;
	z-index: 1;
	bottom: 10px;
}
#registerForm form .formGroup .formImageUpload .avatar-upload .avatar-edit input {
	display: none;
}
#registerForm form .formGroup .formImageUpload .avatar-upload .avatar-edit input + label {
	display: inline-block;
	width: 30px;
	height: 30px;
	border-radius: 100%;
	background: #FFFFFF;
	cursor: pointer;
	font-weight: normal;
	transition: all .2s ease-in-out;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #3eb25f;
	color: white;
}
#registerForm form .formGroup .formImageUpload .avatar-upload .avatar-edit input + label span{
	font-size: 18px;
}
#registerForm form .formGroup .formImageUpload .avatar-upload .avatar-edit label:hover {
	background: #5cd57f;
}

#registerForm form .formGroup .formImageUpload .avatar-preview {
	width: 100%;
	height: 100%;
	position: absolute;
	border-radius: 10px;
	border: 1px solid #ccc;
	overflow: hidden;
}
#registerForm form .formGroup .formImageUpload .avatar-preview div {
	width: 100%;
	height: 100%;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}






/*#registerForm form .formGroup .formImageUpload label.cabinet {
  display: block;
  cursor: pointer;
}
#registerForm form .formGroup .formImageUpload label.cabinet input.file {
  position: relative;
  height: 100%;
  width: auto;
  opacity: 0;
  -moz-opacity: 0;
  filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  margin-top: -30px;
}
#registerForm form .formGroup .formImageUpload figure figcaption {
  position: absolute;
  bottom: 0;
  color: #fff;
  width: 100%;
  padding-left: 9px;
  padding-bottom: 5px;
  text-shadow: 0 0 10px #000;
}*/
#registerForm form .formGroupTextarea {
  flex: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}
#registerForm form .formGroupTextarea label {
  font-size: 16px;
  font-weight: 300;
  color: rgb(152, 152, 152);
}
#registerForm form .formGroupTextarea textarea {
  width: 100%;
  height: 100px;
  padding: 5px 15px;
  border-radius: 5px;
  margin-top: 5px;
  outline: none;
  color: black;
  border: 1px solid #ccc;
  font-size: 16px;
}
#registerForm form .formGroupTextarea textarea:focus {
  border: 1px solid var(--primaryColor);
  color: var(--primaryColor);
}
#registerForm form .dummyDiv {
  flex: 0 0 48%;
}
#registerForm form .formBtnArea {
  width: 100%;
}

#registerForm form .formBtnArea button {
  background: var(--primaryColor);
  border: 0;
  color: #fff;
  margin-top: 30px;
  padding: 10px 25px;
  font-size: 14px;
  border-radius: 5px;
  letter-spacing: 1px;
  font-weight: 300;
  cursor: pointer;
  transition: 0.2s;
}
@media (max-width: 480px) {
  #registerForm form .formBtnArea button {
    width: 100%;
  }
}
#registerForm form .formBtnArea button:hover {
  transition: 0.2s;
  opacity: 0.7;
}


#registerForm form .formBtnArea .otp-submit {
  background: var(--primaryColor);
  border: 0;
  color: #fff;
  margin-top: 30px;
  padding: 10px 25px;
  font-size: 14px;
  border-radius: 5px;
  letter-spacing: 1px;
  font-weight: 300;
  cursor: pointer;
  transition: 0.2s;
}
@media (max-width: 480px) {
  #registerForm form .formBtnArea .otp-submit {
    width: 100%;
  }
}
#registerForm form .formBtnArea .otp-submit:hover {
  transition: 0.2s;
  opacity: 0.7;
}
#registerForm form .formBtnArea .otp-submit[disabled] {
  opacity: 0.6;
  cursor: default;
}

#profileListSection {
  width: 100%;
  padding: 50px 0px;
  margin-top: 70px;
  background: rgba(238, 238, 238, 0.642);
}
@media (max-width: 480px) {
  #profileListSection {
    margin-top: 60px;
	  min-height: calc(100vh - 60px);
  }
}
#profileListSection .profileListSectionMain {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#profileListSection .profileListSectionMain .profileFilterSection {
  width: 350px;
  display: flex;
  flex-direction: column;
	position: relative;
}
@media (max-width: 768px) {
  #profileListSection .profileListSectionMain .profileFilterSection {
    width: 250px;
  }
}
@media (max-width: 480px) {
  #profileListSection .profileListSectionMain .profileFilterSection {
    width: 90%;
    position: fixed;
    left: -110%;
    top: 0;
    height: 100vh;
    z-index: 160;
    background: white;
  }
}
#profileListSection .profileListSectionMain .profileFilterSection .profileFilterSectionMain {
  width: 100%;
  display: flex;
  flex-direction: column;
	padding-bottom: 0px;
	height:75vh;
    overflow-y: auto;
}
@media (max-width: 480px) {
  #profileListSection .profileListSectionMain .profileFilterSection .profileFilterSectionMain {
    height: calc(100vh - 60px);
	  padding-bottom: 0;
    overflow-y: hidden;
	  height:100vh;
  }
}
#profileListSection .profileListSectionMain .profileFilterSection .profileFilterBox {
  width: 100%;
  background: white;
  padding: 20px;
  border-radius: 10px;
  margin-top: 10px;
}
#profileListSection .profileListSectionMain .profileFilterSection .profileFilterBox:nth-child(1) {
  margin-top: 0;
}
@media (max-width: 768px) {
  #profileListSection .profileListSectionMain .profileFilterSection .profileFilterBox:nth-child(1) {
    border-top: 0;
  }
}
@media (max-width: 768px) {
  #profileListSection .profileListSectionMain .profileFilterSection .profileFilterBox {
    border-top: 5px solid #eee;
    margin-top: 0;
    border-radius: 0;
  }
}
#profileListSection .profileListSectionMain .profileFilterSection .profileFilterBox label {
  font-size: 16px;
  font-weight: 500;
}
#profileListSection .profileListSectionMain .profileFilterSection .profileFilterBox .profileFilterSearch {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}
#profileListSection .profileListSectionMain .profileFilterSection .profileFilterBox .profileFilterSearch input {
  width: calc(100% - 50px);
  height: 40px;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
  padding: 10px 15px;
}

#profileListSection .profileListSectionMain .profileFilterSection .profileFilterSectionMain .c-filter label{
  font-size: 16px;
  font-weight: 500;
}
#profileListSection .profileListSectionMain .profileFilterSection .profileFilterSectionMain .c-filter {
  position: relative;    
	width: 100%;
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-top: 10px;
}

#profileListSection .profileListSectionMain .profileFilterSection .profileFilterSectionMain .c-filter__toggle {
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border-radius: 4px;
    width: 100%;
    height: 40px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    padding: 10px 15px;
	text-align:start;
    background: transparent;
    display: flex;
    justify-content: space-between;
}

#profileListSection .profileListSectionMain .profileFilterSection .profileFilterSectionMain .c-filter__toggle:after {
  content: '';
  width: 10px;
  height: 10px;
  display: inline-block;
  margin-left: 10px;
  position: relative;
  background-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' data-prefix='fas' data-icon='chevron-down' class='svg-inline--fa fa-chevron-down fa-w-14' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='currentColor' d='M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

#profileListSection .profileListSectionMain .profileFilterSection .profileFilterSectionMain .c-filter__toggle--active:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

#profileListSection .profileListSectionMain .profileFilterSection .profileFilterSectionMain .c-filter__ul {
  padding: 0;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
  position: absolute;
  display: none;
  margin: 0;
}

#profileListSection .profileListSectionMain .profileFilterSection .profileFilterSectionMain .c-filter__ul--active {
  display: block;
	background:white;
	width:100%;
}

#profileListSection .profileListSectionMain .profileFilterSection .profileFilterSectionMain .c-filter__item {
  list-style: none;
  display: block;
}

.c-filter__item input {
  display: none;
}

#profileListSection .profileListSectionMain .profileFilterSection .profileFilterSectionMain .c-filter__item input:checked ~ label:before {
  background-color: green;
  border-color: #00b300;
  background-image: url("data:image/svg+xml,%3Csvg fill='rgb(255,255,255)' aria-hidden='true' data-prefix='fas' data-icon='check' class='svg-inline--fa fa-check fa-w-16' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z'/%3E%3C/svg%3E");
  background-size: 65%;
  background-position: center center;
  background-repeat: no-repeat;
}

#profileListSection .profileListSectionMain .profileFilterSection .profileFilterSectionMain .c-filter__item label {
  display: block;
  padding: 5px;
  cursor: pointer;
  padding: 8px 8px 8px 35px;
  position: relative;
}

#profileListSection .profileListSectionMain .profileFilterSection .profileFilterSectionMain .c-filter__item label:before {
  content: '';
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 10px;
  width: 15px;
  height: 15px;
  border-radius: 4px;
  border: 1px solid #e6e6e6;
}

#profileListSection .profileListSectionMain .profileFilterSection .profileFilterSectionMain .c-filter__item label:hover {
  background-color: #f4f5f7;
}

#profileListSection .profileListSectionMain .profileFilterSection .profileFilterSectionMain .c-filter__item label:hover:before {
  border: 1px solid #c8c8c8;
}


#profileListSection .profileListSectionMain .profileFilterSection .profileFilterBox .AgeBox {
  width: 100%;
  margin-top: 10px;
	display:flex;
	justify-content:space-between;
	align-items:center;
}
#profileListSection .profileListSectionMain .profileFilterSection .profileFilterBox .AgeBox .Box-1{
	width:60px;
  height: 40px;
	border: 1px solid #bdbcbc;
	border-radius:5px;
    outline: none;
    text-align: center;
}
#profileListSection .profileListSectionMain .profileFilterSection .profileFilterBox .AgeBox h4{
	font-size:16px;
	font-weight:500;
}
#profileListSection .profileListSectionMain .profileFilterSection .profileFilterBox .AgeBox .Box-1:focus{
	  border: 1px solid var(--primaryColor);
  color: var(--primaryColor);

}
#profileListSection .profileListSectionMain .profileFilterSection .profileFilterBox .selectBox select {
  width: 100%;
  height: 40px;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
  padding: 10px 15px;
}

#profileListSection .profileListSectionMain .profileFilterSection .profileFilterBox .profileFilterSearch input:focus {
  border: 1px solid var(--primaryColor);
  color: var(--primaryColor);
}
#profileListSection .profileListSectionMain .profileFilterSection .profileFilterBox .profileFilterSearch button {
  width: 40px;
  height: 40px;
  background: var(--primaryColor);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: none;
  outline: none;
  border-radius: 5px;
}
#profileListSection .profileListSectionMain .profileFilterSection .profileFilterBox .profileFilterSearch button span {
  font-size: 18px;
}
#profileListSection .profileListSectionMain .profileFilterSection .profileFilterBox .activity-select-box2 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#profileListSection .profileListSectionMain .profileFilterSection .profileFilterBox .activity-select-box2 .checkbox-alias {
  background: white;
  flex: 0 0 48%;
  border: 1px solid #bdbcbc;
  display: inline-block;
  text-align: center;
  padding: 8px 15px;
  border-radius: 5px;
  /*margin-right: 10px;*/
  margin-top: 15px;
  z-index: 1;
  position: relative;
  transition: all 250ms ease-out;
  cursor: pointer;
  font-size: 12px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
#profileListSection .profileListSectionMain .profileFilterSection .profileFilterBox .activity-select-box2 input[type=radio] {
  display: none;
}
#profileListSection .profileListSectionMain .profileFilterSection .profileFilterBox .activity-select-box2 input[type=radio].css-checkbox:checked + label.checkbox-alias {
  background-color: var(--primaryColor);
  border: 1px solid var(--primaryColor);
  color: white;
}
#profileListSection .profileListSectionMain .profileFilterSection .profileFilterBox .profileFilterCheckBox {
  width: 100%;
  margin-top: 15px;
}
#profileListSection .profileListSectionMain .profileFilterSection .profileFilterBox .profileFilterCheckBox .form-group {
  display: block;
  margin-top: 10px;
  margin-bottom: 0;
}
#profileListSection .profileListSectionMain .profileFilterSection .profileFilterBox .profileFilterCheckBox .form-group input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
#profileListSection .profileListSectionMain .profileFilterSection .profileFilterBox .profileFilterCheckBox .form-group label {
  position: relative;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
}
#profileListSection .profileListSectionMain .profileFilterSection .profileFilterBox .profileFilterCheckBox .form-group label span {
  color: rgb(123, 122, 122);
  font-size: 12px;
}
#profileListSection .profileListSectionMain .profileFilterSection .profileFilterBox .profileFilterCheckBox .form-group label:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid var(--primaryColor);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 9px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 10px;
  border-radius: 5px;
}
#profileListSection .profileListSectionMain .profileFilterSection .profileFilterBox .profileFilterCheckBox .form-group input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 8px;
  width: 6px;
  height: 11px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
#profileListSection .profileListSectionMain .profileFilterSection .profileFilterBox .profileFilterCheckBox .form-group input:checked + label:before {
  background: var(--primaryColor);
}

#profileListSection .profileListSectionMain .profileFilterSection .profileFilterBtnArea {
  display: flex;
  /*position: absolute;
  bottom: 0;
  left: 0;*/
  z-index: 10;
  width: 100%;
  background: white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.057);
  justify-content: space-between;
  padding: 10px;
	margin-top: 10px;
	border-radius: 10px;
}
@media(max-width:480px){
	#profileListSection .profileListSectionMain .profileFilterSection .profileFilterBtnArea{
		display: none;
	}
}

#profileListSection .profileListSectionMain .profileFilterSection .profileFilterBtnArea .clearFiletr {
  flex: 0 0 48%;
  padding: 14px;
  background: #eee;
  color: black;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 10px;
}
#profileListSection .profileListSectionMain .profileFilterSection .profileFilterBtnArea .applyFilter {
	flex: 0 0 48%;
  padding: 14px;
  background: var(--primaryColor);
  color: white;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 10px;
}




#profileListSection .profileListSectionMain .profileFilterSection .MobProfileFilterBtnArea {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  background: white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.057);
  justify-content: space-between;
  padding: 10px;
}
@media(max-width:480px){
	#profileListSection .profileListSectionMain .profileFilterSection .MobProfileFilterBtnArea{
		display: flex;
	}
}

#profileListSection .profileListSectionMain .profileFilterSection .MobProfileFilterBtnArea .closeFiletr {
  flex: 0 0 48%;
  padding: 14px;
  background: #eee;
  color: black;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 10px;
}
#profileListSection .profileListSectionMain .profileFilterSection .MobProfileFilterBtnArea .MobApplyFilter {
	flex: 0 0 48%;
  padding: 14px;
  background: var(--primaryColor);
  color: white;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 10px;
}
#profileListSection .profileListSectionMain .profileListingPanel {
  width: calc(100% - 450px);
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  #profileListSection .profileListSectionMain .profileListingPanel {
    width: calc(100% - 400px);
  }
}
@media (max-width: 768px) {
  #profileListSection .profileListSectionMain .profileListingPanel {
    width: calc(100% - 280px);
  }
}
@media (max-width: 480px) {
  #profileListSection .profileListSectionMain .profileListingPanel {
    width: 100%;
  }
}
#profileListSection .profileListSectionMain .profileListingPanel .profileTitle {
  width: 100%;
  display: flex;
  border-bottom: 1px solid white;
  padding-bottom: 10px;
}
#profileListSection .profileListSectionMain .profileListingPanel .profileTitle h1 {
  font-size: 25px;
  font-weight: 400;
  margin: 0;
}
@media (max-width: 480px) {
  #profileListSection .profileListSectionMain .profileListingPanel .profileTitle h1 {
    font-size: 20px;
    line-height: 1.5;
  }
}
#profileListSection .profileListSectionMain .profileListingPanel .profileListingPanelSection {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}
#profileListSection .profileListSectionMain .profileListingPanel .profileListingPanelSection::after {
  content: "";
  height: 0;
  width: 23%;
}
@media (max-width: 1024px) {
  #profileListSection .profileListSectionMain .profileListingPanel .profileListingPanelSection::after {
    width: 48%;
  }
}
#profileListSection .profileListSectionMain .profileListingPanel .profileListingPanelSection .dummyDiv {
  flex: 0 0 23%;
  height: 0;
}
@media (max-width: 1024px) {
  #profileListSection .profileListSectionMain .profileListingPanel .profileListingPanelSection .dummyDiv {
    flex: 0 0 48%;
  }
}
#profileListSection .profileListSectionMain .profileListingPanel .profileListingPanelSection .profileBox {
  flex: 0 0 29%;
  display: none;
  flex-direction: column;
  background: white;
  margin-top: 40px;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  position: relative;
  cursor: pointer;
}
@media (max-width: 1024px) {
  #profileListSection .profileListSectionMain .profileListingPanel .profileListingPanelSection .profileBox {
    flex: 0 0 48%;
  }
}
@media (max-width: 480px) {
  #profileListSection .profileListSectionMain .profileListingPanel .profileListingPanelSection .profileBox {
    flex: 100%;
  	flex-direction: row;
	justify-content: space-between;
  	margin-top: 10px;
  }
}
#profileListSection .profileListSectionMain .profileListingPanel .profileListingPanelSection .profileBox .profileBoxBtn {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
#profileListSection .profileListSectionMain .profileListingPanel .profileListingPanelSection .profileBox .profileBoxContent .profiledetails{
	display:flex;
	justify-content:space-between;
	margin-top:0.7rem;
}
#profileListSection .profileListSectionMain .profileListingPanel .profileListingPanelSection .profileBox .profileBoxContent .profiledetails h6{
	font-size:16px;
	font-weight:400;
	text-align:end;
}

#profileListSection .profileListSectionMain .profileListingPanel .profileListingPanelSection .profileBox .profileBoxThumbnail {
  width: 100%;
  height: 220px;
  background: rgb(184, 184, 184);
  border-radius: 10px;
  overflow: hidden;
  border: 5px solid white;
  position: relative;
}
@media (max-width: 480px) {
  #profileListSection .profileListSectionMain .profileListingPanel .profileListingPanelSection .profileBox .profileBoxThumbnail {
    width: 130px;
	  height: 130px;
  }
}
#profileListSection .profileListSectionMain .profileListingPanel .profileListingPanelSection .profileBox .profileBoxThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#profileListSection .profileListSectionMain .profileListingPanel .profileListingPanelSection .profileBox .profileBoxThumbnail .heart {
  height: 35px;
  width: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 2;
}
#profileListSection .profileListSectionMain .profileListingPanel .profileListingPanelSection .profileBox .profileBoxThumbnail .heart button {
  background: rgba(2, 2, 2, 0.3647058824);
  border: none;
  height: 35px;
  width: 35px;
  display: flex;
  justify-content: center;
  border-radius: 50%;
  align-items: center;
  cursor: pointer;
  transition: ease-in-out all 0.1s;
  color: white;
}
#profileListSection .profileListSectionMain .profileListingPanel .profileListingPanelSection .profileBox .profileBoxThumbnail .heart button i {
  font-size: 16px;
}
#profileListSection .profileListSectionMain .profileListingPanel .profileListingPanelSection .profileBox .profileBoxThumbnail .heart button:active {
  width: 25px;
  height: 25px;
  border-radius: 50%;
}
#profileListSection .profileListSectionMain .profileListingPanel .profileListingPanelSection .profileBox .profileBoxThumbnail .heart button:active i {
  font-size: 12px;
  transition: ease-in-out all 0.1s;
}
#profileListSection .profileListSectionMain .profileListingPanel .profileListingPanelSection .profileBox .profileBoxThumbnail .heart .fa-regular {
  color: #fff;
}
#profileListSection .profileListSectionMain .profileListingPanel .profileListingPanelSection .profileBox .profileBoxThumbnail .heart .fa-solid {
  color: red;
}
#profileListSection .profileListSectionMain .profileListingPanel .profileListingPanelSection .profileBox .profileBoxContent {
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
@media(max-width: 480px){
#profileListSection .profileListSectionMain .profileListingPanel .profileListingPanelSection .profileBox .profileBoxContent{
		width: calc(100% - 160px);
		padding: 10px 10px 10px 0px;
	}
}
#profileListSection .profileListSectionMain .profileListingPanel .profileListingPanelSection .profileBox .profileBoxContent .profileBoxContentHead {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}
#profileListSection .profileListSectionMain .profileListingPanel .profileListingPanelSection .profileBox .profileBoxContent .profileBoxContentHead .profileId {
  font-size: 16px;
  font-weight: 500;
  color: black;
}
#profileListSection .profileListSectionMain .profileListingPanel .profileListingPanelSection .profileBox .profileBoxContent .profileBoxContentHead .profileYear {
  font-size: 14px;
  font-weight: 400;
  color: black;
}
#profileListSection .profileListSectionMain .profileListingPanel .profileListingPanelSection .profileBox .profileBoxContent .profilePlace {
  font-size: 14px;
  font-weight: 400;
  margin-top: 10px;
  height: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  color: black;
}
#profileListSection .profileListSectionMain .profileListingPanel .profileListingPanelSection .skellyLoaderSection {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#profileListSection .profileListSectionMain .profileListingPanel .profileListingPanelSection .skellyLoaderSection .skellyLoaderBox {
  flex: 0 0 23%;
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}
@media (max-width: 1024px) {
  #profileListSection .profileListSectionMain .profileListingPanel .profileListingPanelSection .skellyLoaderSection .skellyLoaderBox {
    flex: 0 0 48%;
  }
}
@media (max-width: 480px) {
  #profileListSection .profileListSectionMain .profileListingPanel .profileListingPanelSection .skellyLoaderSection .skellyLoaderBox {
    flex: 100%;
  }
}
#profileListSection .profileListSectionMain .profileListingPanel .profileListingPanelSection .skellyLoaderSection .skellyLoaderBox .skellyLoaderThumbnail {
  width: 100%;
  height: 220px;
  border-radius: 10px;
  position: relative;
  background: #e1e1e1;
  overflow: hidden;
}
@media (max-width: 480px) {
  #profileListSection .profileListSectionMain .profileListingPanel .profileListingPanelSection .skellyLoaderSection .skellyLoaderBox .skellyLoaderThumbnail {
    height: 280px;
  }
}
#profileListSection .profileListSectionMain .profileListingPanel .profileListingPanelSection .skellyLoaderSection .skellyLoaderBox .skellyLoaderThumbnail::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, #e1e1e1 0%, #d2d2d3 20%, #e1e1e1 40%, #e1e1e1 100%);
  background-size: 450px 400px;
  background-repeat: no-repeat;
  -webkit-animation: shimmer 1.4s linear infinite;
          animation: shimmer 1.4s linear infinite;
}
@-webkit-keyframes shimmer {
  0% {
    background-position: -450px 0px;
  }
  100% {
    background-position: 450px 0px;
  }
}
@keyframes shimmer {
  0% {
    background-position: -450px 0px;
  }
  100% {
    background-position: 450px 0px;
  }
}
#profileListSection .profileListSectionMain .profileListingPanel .profileListingPanelSection .skellyLoaderSection .skellyLoaderBox .skellyLoaderLine1, #profileListSection .profileListSectionMain .profileListingPanel .profileListingPanelSection .skellyLoaderSection .skellyLoaderBox .skellyLoaderLine2 {
  width: 100%;
  height: 20px;
  border-radius: 10px;
  position: relative;
  background: #e1e1e1;
  overflow: hidden;
  margin-top: 20px;
}
#profileListSection .profileListSectionMain .profileListingPanel .profileListingPanelSection .skellyLoaderSection .skellyLoaderBox .skellyLoaderLine1::before, #profileListSection .profileListSectionMain .profileListingPanel .profileListingPanelSection .skellyLoaderSection .skellyLoaderBox .skellyLoaderLine2::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, #e1e1e1 0%, #d2d2d3 20%, #e1e1e1 40%, #e1e1e1 100%);
  background-size: 450px 400px;
  background-repeat: no-repeat;
  -webkit-animation: shimmer 1.4s linear infinite;
          animation: shimmer 1.4s linear infinite;
}
@keyframes shimmer {
  0% {
    background-position: -450px 0px;
  }
  100% {
    background-position: 450px 0px;
  }
}
#profileListSection .profileListSectionMain .profileListingPanel .pagination {
  width: 100%;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#profileListSection .profileListSectionMain .profileListingPanel .pagination a {
  text-decoration: none;
  padding: 8px 20px;
  border: 2px solid var(--primaryColor);
  font-size: 14px;
  background: white;
  border-radius: 10px;
  color: var(--primaryColor);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  transition: 0.2s;
	cursor: pointer;
}
#profileListSection .profileListSectionMain .profileListingPanel .pagination a:hover {
  opacity: 0.7;
  transition: 0.2s;
}
#profileListSection .profileListSectionMain .profileListingPanel .pagination .paginationActive {
  background: var(--primaryColor);
  color: white;
  margin-left: 20px;
}
#profileListSection .profileListSectionMain .profileListingPanel .profileElse{
	width: 100%;
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 60vh;
}
#profileListSection .profileListSectionMain .profileListingPanel .profileElse .profileElseThumbnail{
	width: 300px;
}
@media(max-width:480px){
	#profileListSection .profileListSectionMain .profileListingPanel .profileElse .profileElseThumbnail{
		width: 200px;
	}
}
#profileListSection .profileListSectionMain .profileListingPanel .profileElse .profileElseThumbnail img{
	width: 100%;
    height: 100%;
    object-fit: contain;
}
#profileListSection .profileListSectionMain .profileListingPanel .profileElse p{
	font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 50px;
}
#profileListSection .scrollTop {
  position: fixed;
  z-index: 90;
  right: 5%;
  bottom: 50px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: none;
  justify-content: center;
  align-items: center;
  background: darkorange;
  color: white;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.068);
}
@media (max-width: 480px) {
  #profileListSection .scrollTop {
    bottom: 80px;
  }
}
#profileListSection .scrollTop span {
  font-size: 25px;
}

.mobFilterBtnArea {
  display: none;
}
@media (max-width: 480px) {
  .mobFilterBtnArea {
    display: flex;
    position: fixed;
    z-index: 100;
    bottom: 0;
    padding: 10px 5%;
    background: white;
    width: 100%;
    left: 0;
  }
}
.mobFilterBtnArea .mobFilterBtn {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border-radius: 10px;
  font-weight: 500;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
  border: 1px solid var(--primaryColor);
}

.profileDetailsPopup {
  position: fixed;
  z-index: 150;
  top: 0px;
  width: 950px;
  max-height: calc(100vh - 100px);
  background: white;
  border-radius: 10px;
  padding: 0px 40px 40px 40px;
  transform: translateX(-50%);
  left: 50%;
  display: none;
  visibility: hidden;
  opacity: 0;
  transition: ease-out all 0.3s;
}
@media (max-width: 768px) {
  .profileDetailsPopup {
    width: 100%;
    top: -50px;
    left: 0;
    transform: initial;
    height: 100vh;
    max-height: inherit;
    border-radius: 0;
  }
}
@media (max-width: 480px) {
  .profileDetailsPopup {
    padding: 0 20px 20px 20px;
  }
}
.profileDetailsPopup .profileDetailsPopupHead {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
  padding: 20px 0px;
}
.profileDetailsPopup .profileDetailsPopupHead h1 {
  margin: 0;
  font-size: 18px;
  color: var(--primaryColor);
}
.profileDetailsPopup .profileDetailsPopupHead .closeProfileDetailsPopup {
  background: rgba(238, 238, 238, 0.4784313725);
  color: black;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}
.profileDetailsPopup .profileDetailsPopupHead .closeProfileDetailsPopup:hover {
  transition: 0.3s;
  background: #eee;
}
.profileDetailsPopup .profileDetailsPopupMain {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .profileDetailsPopup .profileDetailsPopupMain {
    height: 75vh;
    overflow-y: auto;
  }
}
@media (max-width: 480px) {
  .profileDetailsPopup .profileDetailsPopupMain {
    height: calc(100vh - 170px);
  }
}
.profileDetailsPopup .profileDetailsPopupMain .profilePictureBox {
  width: 35%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .profileDetailsPopup .profileDetailsPopupMain .profilePictureBox {
    width: 100%;
  }
}
.profileDetailsPopup .profileDetailsPopupMain .profilePictureBox .profilePictureBoxThumbnail {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  max-height: 300px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.062);
}
@media (max-width: 768px) {
  .profileDetailsPopup .profileDetailsPopupMain .profilePictureBox .profilePictureBoxThumbnail {
    width: 300px;
  }
}
@media (max-width: 480px) {
  .profileDetailsPopup .profileDetailsPopupMain .profilePictureBox .profilePictureBoxThumbnail {
    width: 100%;
    height: 280px;
  }
}
.profileDetailsPopup .profileDetailsPopupMain .profilePictureBox .profilePictureBoxThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.profileDetailsPopup .profileDetailsPopupMain .profilePictureBox .getContactBtn {
  width: 100%;
  margin-top: 20px;
  padding: 15px;
  border-radius: 10px;
  background: rgb(9, 174, 9);
  color: white;
  font-size: 16px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  font-weight: 400;
}
@media (max-width: 768px) {
  .profileDetailsPopup .profileDetailsPopupMain .profilePictureBox .getContactBtn {
    position: absolute;
    bottom: 10px;
    width: 90%;
    z-index: 10;
  }
}
.profileDetailsPopup .profileDetailsPopupMain .profilePictureBox .getContactBtn span {
  margin-right: 15px;
  font-size: 18px;
}
.profileDetailsPopup .profileDetailsPopupMain .profileDetailsBox {
  width: 60%;
  max-height: calc(100vh - 160px);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .profileDetailsPopup .profileDetailsPopupMain .profileDetailsBox {
    width: 100%;
    margin-top: 20px;
  }
}
.profileDetailsPopup .profileDetailsPopupMain .profileDetailsBox::-webkit-scrollbar {
  width: 5px;
}
.profileDetailsPopup .profileDetailsPopupMain .profileDetailsBox::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.048);
}
.profileDetailsPopup .profileDetailsPopupMain .profileDetailsBox::-webkit-scrollbar-thumb {
  background: var(--primaryColor);
  border-radius: 5px;
}
.profileDetailsPopup .profileDetailsPopupMain .profileDetailsBox::-webkit-scrollbar-thumb:hover {
  background: red;
}
.profileDetailsPopup .profileDetailsPopupMain .profileDetailsBox h2 {
  margin: 0;
  font-size: 25px;
  font-weight: 500;
}
.profileDetailsPopup .profileDetailsPopupMain .profileDetailsBox ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}
.profileDetailsPopup .profileDetailsPopupMain .profileDetailsBox ul li {
  list-style: none;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  align-items: flex-start;
}
.profileDetailsPopup .profileDetailsPopupMain .profileDetailsBox ul li span {
  flex: 0 0 40%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  opacity: 0.7;
}
.profileDetailsPopup .profileDetailsPopupMain .profileDetailsBox ul li p {
  flex: 0 0 55%;
  font-size: 14px;
  margin: 0;
  line-height: 1.7;
}

.profileDetailsPopupActive {
  top: 50px;
  visibility: visible;
  opacity: 1;
  transition: ease-in all 0.3s;
}
@media (max-width: 768px) {
  .profileDetailsPopupActive {
    top: 0;
  }
}

#plansDetails {
  width: 100%;
  padding: 50px 25% 100px 25%;
  margin-top: 70px;
}
@media (max-width: 1024px) {
  #plansDetails {
    padding: 50px 10% 100px 10%;
  }
}
@media (max-width: 768px) {
  #plansDetails {
    padding: 50px 5%;
  }
}
#plansDetails .registrationSuccessAllert {
  width: 100%;
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
#plansDetails .registrationSuccessAllert .closeRegistrationSuccessAllert {
  color: rgb(107, 107, 107);
  width: 30px;
  height: 30px;
  cursor: pointer;
}
#plansDetails .registrationSuccessAllert .RegistrationSuccessComments {
  width: calc(100% - 45px);
  display: flex;
  flex-direction: column;
}
#plansDetails .registrationSuccessAllert .RegistrationSuccessComments h2 {
  font-size: 25px;
  font-weight: 500;
  margin: 0;
  color: rgb(6, 191, 6);
}
@media (max-width: 480px) {
  #plansDetails .registrationSuccessAllert .RegistrationSuccessComments h2 {
    font-size: 22px;
  }
}
#plansDetails .registrationSuccessAllert .RegistrationSuccessComments p {
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
  margin-top: 10px;
  color: rgb(132, 131, 131);
}
#plansDetails .plansDetailsThumbnail {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}
#plansDetails .plansDetailsThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#plansDetails h1 {
  font-size: 2em;
  margin: 0;
  font-weight: 600;
  margin-top: 20px;
  color: var(--primaryColor);
}
@media (max-width: 480px) {
  #plansDetails h1 {
    margin-top: 40px;
  }
}
#plansDetails h4 {
  margin: 0;
  margin-top: 10px;
  font-size: 16px;
  color: black;
  font-weight: 400;
}
#plansDetails .priceDetails {
  width: 100%;
  margin-top: 40px;
  padding: 20px;
  border-radius: 10px;
  background: rgba(21, 255, 0, 0.158);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
@media (max-width: 480px) {
  #plansDetails .priceDetails {
    background: rgba(21, 255, 0, 0.06);
  }
}
#plansDetails .priceDetails h3 {
  font-size: 2em;
  font-weight: 500;
  margin: 0 10px;
}
@media (max-width: 480px) {
  #plansDetails .priceDetails h3 {
    font-size: 1.7em;
    margin: 0px 5px;
  }
}
#plansDetails .priceDetails h3 span {
  font-size: 32px;
}
@media (max-width: 480px) {
  #plansDetails .priceDetails h3 span {
    font-size: 28px;
  }
}
#plansDetails .plansDetailsBtnArea {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#plansDetails .plansDetailsBtnArea a {
  text-decoration: none;
  flex: 0 0 48%;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  font-size: 20px;
  margin-top: 20px;
}
@media (max-width: 480px) {
  #plansDetails .plansDetailsBtnArea a {
    flex: 100%;
  }
}
#plansDetails .plansDetailsBtnArea .gopaymentsBtn {
  background: rgb(9, 174, 9);
  color: white;
}
#plansDetails .plansDetailsBtnArea .gopaymentsBtn:hover {
  background: var(--primaryColor);
  transition: 0.3s;
}
#plansDetails .plansDetailsBtnArea .skipThisBtn {
  border: 1px solid rgb(203, 203, 203);
  color: black;
}
#plansDetails .plansDetailsBtnArea .skipThisBtn:hover {
  background: #eee;
  border: 1px solid #eee;
  transition: 0.3s;
}
#plansDetails .termsConditions {
  margin-top: 20px;
  font-size: 14px;
}
#plansDetails .termsConditions a {
  color: rgb(96, 96, 96);
}

.myAccountCanvas {
  width: 100%;
  margin-top: 70px;
  padding: 20px 0px;
  background: rgba(238, 238, 238, 0.642);
  min-height: calc(100vh - 70px);
}
@media (max-width: 480px) {
  .myAccountCanvas {
    margin-top: 60px;
  }
}
.myAccountCanvas .myAccountCanvasMain {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.myAccountCanvas .myAccountCanvasMain .myAccountSidemenu {
  width: 350px;
  background: white;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .myAccountCanvas .myAccountCanvasMain .myAccountSidemenu {
    width: 250px;
  }
}
@media (max-width: 480px) {
  .myAccountCanvas .myAccountCanvasMain .myAccountSidemenu {
    display: none;
  }
}
.myAccountCanvas .myAccountCanvasMain .myAccountSidemenu .myAccountSidemenuHead {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  border-bottom: 1px solid #eee;
}
.myAccountCanvas .myAccountCanvasMain .myAccountSidemenu .myAccountSidemenuHead .myAccountSidemenuThumbnail {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primaryColor);
}
.myAccountCanvas .myAccountCanvasMain .myAccountSidemenu .myAccountSidemenuHead .myAccountSidemenuThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.myAccountCanvas .myAccountCanvasMain .myAccountSidemenu .myAccountSidemenuHead p {
  width: calc(100% - 60px);
  font-size: 18px;
  font-weight: 500;
}
.myAccountCanvas .myAccountCanvasMain .myAccountSidemenu .myAccountSidemenuBody {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.myAccountCanvas .myAccountCanvasMain .myAccountSidemenu .myAccountSidemenuBody ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px 10px;
}
.myAccountCanvas .myAccountCanvasMain .myAccountSidemenu .myAccountSidemenuBody ul li {
  list-style: none;
  width: 100%;
}
.myAccountCanvas .myAccountCanvasMain .myAccountSidemenu .myAccountSidemenuBody ul li a {
  text-decoration: none;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 10px;
  margin-top: 5px;
  border-radius: 5px;
  transition: 0.3s;
}
.myAccountCanvas .myAccountCanvasMain .myAccountSidemenu .myAccountSidemenuBody ul li a:hover {
  background: rgba(238, 238, 238, 0.566);
  transition: 0.3s;
}
.myAccountCanvas .myAccountCanvasMain .myAccountSidemenu .myAccountSidemenuBody ul li a span {
  font-size: 18px;
  color: rgb(151, 151, 151);
}
.myAccountCanvas .myAccountCanvasMain .myAccountSidemenu .myAccountSidemenuBody ul li a p {
  width: calc(100% - 30px);
  font-size: 14px;
  color: black;
  margin: 0;
}
.myAccountCanvas .myAccountCanvasMain .myAccountSidemenu .myAccountSidemenuBody ul li .myAccountActiveLink {
  background: rgba(238, 238, 238, 0.566);
}
.myAccountCanvas .myAccountCanvasMain .myAccountSidemenu .myAccountSidemenuBody ul li .myAccountActiveLink span {
  color: var(--primaryColor);
}
.myAccountCanvas .myAccountCanvasMain .myAccountSidemenu .myAccountSidemenuBody ul li .myAccountActiveLink p {
  color: var(--primaryColor);
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody {
  width: calc(100% - 400px);
  background: white;
  border-radius: 10px;
  padding: 20px;
}
@media (max-width: 768px) {
  .myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody {
    width: calc(100% - 280px);
  }
}
@media (max-width: 480px) {
  .myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody {
    width: 100%;
  }
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyHead{
	width :100%;
	display :flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 40px;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyHead h2{
	font-size: 20px;
	font-weight: 600;
}
 .myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyHead .editBtn{
	font-size: 14px;
    width: 25px;
    height: 25px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #00c400;
    color: white;
    text-decoration: none;
	transition: .3s;
}.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyHead .editBtn{
	transition: .3s;
	opacity: .8;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox1 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox1 .profilePictureBox {
  width: 35%;
  display: flex;
  flex-direction: column;
	position: relative;
}
@media (max-width: 1024px) {
  .myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox1 .profilePictureBox {
    width: 100%;
  }
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox1 .profilePictureBox .profilePictureBoxThumbnail {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.062);
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox1 .profilePictureBox .profilePictureBoxThumbnail .profilePictureBoxThumbnailBox{
	width :100%;
	height: 300px;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox1 .profilePictureBox .profilePictureBoxThumbnail .profilePictureBoxThumbnailBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox1 .profilePictureBox .profilePictureBoxThumbnail .owl-dots, 
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox1 .profilePictureBox .profilePictureBoxThumbnail .owl-nav{
	display: none;
}

.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox1 .profilePictureBox .profilePictureControlls{
	position: absolute;
	top: 150px;
	width: 100%;
	z-index: 1;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox1 .profilePictureBox .profilePictureControlls .owl-nav{
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0px 20px;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox1 .profilePictureBox .profilePictureControlls .owl-nav button{
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	justify-content :center;
	align-items: center;
	font-size: 16px;
	cursor: pointer;
	border: none;
	background: #eee;
	transition: .3s;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox1 .profilePictureBox .profilePictureControlls .owl-nav button:hover{
	transition: .3s;
	background: var(--primaryColor);
	color: white;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox1 .profilePictureBox .contactDetails {
  width: 100%;
  margin-top: 10px;
  padding: 20px;
  background: rgba(13, 254, 0, 0.053);
  border-radius: 10px;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox1 .profilePictureBox .contactDetails ul {
  width: 100%;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox1 .profilePictureBox .contactDetails ul li {
  list-style: none;
  margin-top: 20px;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox1 .profilePictureBox .contactDetails ul li:nth-child(1) {
  margin-top: 0;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox1 .profilePictureBox .contactDetails ul li p {
  margin: 0;
  font-size: 16px;
  display: flex;
  align-items: center;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox1 .profilePictureBox .contactDetails ul li p span {
  font-size: 16px;
  margin-right: 15px;
  color: var(--primaryColor);
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox1 .profilePictureBox .endMembership {
  padding: 17px 25px;
  width: 100%;
  font-size: 16px;
  background: var(--primaryColor);
  color: white;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 20px;
  text-align: center;
  transition: 0.3s;
  font-weight: 500;
  text-transform: uppercase;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox1 .profilePictureBox .endMembership:hover {
  background: white;
  color: var(--primaryColor);
  transition: 0.3s;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox1 .profileDetailsBox {
  width: 60%;
  max-height: calc(100vh - 160px);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox1 .profileDetailsBox {
    width: 100%;
    max-height: inherit;
    margin-top: 50px;
  }
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox1 .profileDetailsBox::-webkit-scrollbar {
  width: 5px;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox1 .profileDetailsBox::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.048);
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox1 .profileDetailsBox::-webkit-scrollbar-thumb {
  background: var(--primaryColor);
  border-radius: 5px;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox1 .profileDetailsBox::-webkit-scrollbar-thumb:hover {
  background: red;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox1 .profileDetailsBox h2 {
  margin: 0;
  font-size: 25px;
  font-weight: 500;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox1 .profileDetailsBox ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox1 .profileDetailsBox ul li {
  list-style: none;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  align-items: flex-start;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox1 .profileDetailsBox ul li span {
  flex: 0 0 40%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  opacity: 0.7;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox1 .profileDetailsBox ul li p {
  flex: 0 0 55%;
  font-size: 14px;
  margin: 0;
  line-height: 1.7;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox2 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
	border: 1px solid #eee;
	margin-top: 30px;
	padding: 30px;
}
@media(max-width: 480px){
	.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox2 {
		padding: 20px;
	}
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox2 .myAccountDetailsBodyBox2Head{
	width :100%;
	display :flex;
	justify-content :space-between;
	align-items :center;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox2 .myAccountDetailsBodyBox2Head h2{
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 0;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox2 .myAccountDetailsBodyBox2Head .editBtn{
	font-size: 14px;
    width: 25px;
    height: 25px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #00c400;
    color: white;
    text-decoration: none;
	transition: .3s;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox2 .myAccountDetailsBodyBox2Head .editBtn{
	transition: .3s;
	opacity: .8;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox2 ul{
	width: 100%;
	display :flex;
	flex-direction: column;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox2 ul li{
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 20px;
	list-style: none;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox2 ul li p{
	flex: 0 0 30%;
	font-size: 14px;
	opacity: .8;
}
@media(max-width: 480px){
	.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox2 ul li p{
		flex: 0 0 90%
	}
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox2 ul li span{
	font-size: 14px;
	font-weight: 500;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox2 ul li h3{
	flex: 0 0 65%;
	font-size: 16px;
	font-weight: 500;
}
@media(max-width: 480px){
	.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox2 ul li h3{
		flex: 100%;
		margin-top: 10px;
	}
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox2::after {
  content: "";
  height: 0;
  width: 23%;
}
@media (max-width: 1024px) {
  .myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox2::after {
    width: 48%;
  }
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox2 .dummyDiv {
  flex: 0 0 23%;
  height: 0;
}
@media (max-width: 1024px) {
  .myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox2 .dummyDiv {
    flex: 0 0 48%;
  }
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox2 .profileBox {
  flex: 0 0 23%;
  display: none;
  flex-direction: column;
  background: white;
  margin-bottom: 40px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.043);
  text-decoration: none;
  position: relative;
}
@media (max-width: 1024px) {
  .myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox2 .profileBox {
    flex: 0 0 48%;
  }
}
@media (max-width: 480px) {
  .myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox2 .profileBox {
    flex: 100%;
  }
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox2 .profileBox .profileBoxBtn {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox2 .profileBox .profileBoxThumbnail {
  width: 100%;
  height: 220px;
  background: rgb(184, 184, 184);
  border-radius: 10px;
  overflow: hidden;
  border: 5px solid white;
  position: relative;
}
@media (max-width: 768px) {
  .myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox2 .profileBox .profileBoxThumbnail {
    height: 180px;
  }
}
@media (max-width: 480px) {
  .myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox2 .profileBox .profileBoxThumbnail {
    height: 250px;
  }
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox2 .profileBox .profileBoxThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox2 .profileBox .profileBoxThumbnail .heart {
  height: 35px;
  width: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 2;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox2 .profileBox .profileBoxThumbnail .heart button {
  background: rgba(2, 2, 2, 0.3647058824);
  border: none;
  height: 35px;
  width: 35px;
  display: flex;
  justify-content: center;
  border-radius: 50%;
  align-items: center;
  cursor: pointer;
  transition: ease-in-out all 0.1s;
  color: white;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox2 .profileBox .profileBoxThumbnail .heart button i {
  font-size: 16px;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox2 .profileBox .profileBoxThumbnail .heart button:active {
  width: 25px;
  height: 25px;
  border-radius: 50%;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox2 .profileBox .profileBoxThumbnail .heart button:active i {
  font-size: 12px;
  transition: ease-in-out all 0.1s;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox2 .profileBox .profileBoxThumbnail .heart .fa-regular {
  color: #fff;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox2 .profileBox .profileBoxThumbnail .heart .fa-solid {
  color: red;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox2 .profileBox .profileBoxContent {
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox2 .profileBox .profileBoxContent .profileBoxContentHead {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox2 .profileBox .profileBoxContent .profileBoxContentHead .profileId {
  font-size: 16px;
  font-weight: 500;
  color: black;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox2 .profileBox .profileBoxContent .profileBoxContentHead .profileYear {
  font-size: 14px;
  font-weight: 400;
  color: black;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox2 .profileBox .profileBoxContent .profilePlace {
  font-size: 14px;
  font-weight: 400;
  margin-top: 10px;
  height: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  color: black;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox2 .skellyLoaderSection {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox2 .skellyLoaderSection .skellyLoaderBox {
  flex: 0 0 23%;
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}
@media (max-width: 1024px) {
  .myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox2 .skellyLoaderSection .skellyLoaderBox {
    flex: 0 0 48%;
  }
}
@media (max-width: 480px) {
  .myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox2 .skellyLoaderSection .skellyLoaderBox {
    flex: 100%;
  }
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox2 .skellyLoaderSection .skellyLoaderBox .skellyLoaderThumbnail {
  width: 100%;
  height: 220px;
  border-radius: 10px;
  position: relative;
  background: #e1e1e1;
  overflow: hidden;
}
@media (max-width: 768px) {
  .myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox2 .skellyLoaderSection .skellyLoaderBox .skellyLoaderThumbnail {
    height: 180px;
  }
}
@media (max-width: 480px) {
  .myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox2 .skellyLoaderSection .skellyLoaderBox .skellyLoaderThumbnail {
    height: 250px;
  }
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox2 .skellyLoaderSection .skellyLoaderBox .skellyLoaderThumbnail::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, #e1e1e1 0%, #d2d2d3 20%, #e1e1e1 40%, #e1e1e1 100%);
  background-size: 450px 400px;
  background-repeat: no-repeat;
  -webkit-animation: shimmer 1.4s linear infinite;
          animation: shimmer 1.4s linear infinite;
}
@keyframes shimmer {
  0% {
    background-position: -450px 0px;
  }
  100% {
    background-position: 450px 0px;
  }
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox2 .skellyLoaderSection .skellyLoaderBox .skellyLoaderLine1, .myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox2 .skellyLoaderSection .skellyLoaderBox .skellyLoaderLine2 {
  width: 100%;
  height: 20px;
  border-radius: 10px;
  position: relative;
  background: #e1e1e1;
  overflow: hidden;
  margin-top: 20px;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox2 .skellyLoaderSection .skellyLoaderBox .skellyLoaderLine1::before, .myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox2 .skellyLoaderSection .skellyLoaderBox .skellyLoaderLine2::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, #e1e1e1 0%, #d2d2d3 20%, #e1e1e1 40%, #e1e1e1 100%);
  background-size: 450px 400px;
  background-repeat: no-repeat;
  -webkit-animation: shimmer 1.4s linear infinite;
          animation: shimmer 1.4s linear infinite;
}
@keyframes shimmer {
  0% {
    background-position: -450px 0px;
  }
  100% {
    background-position: 450px 0px;
  }
}



.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .profileElse{
	width: 100%;
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 60vh;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .profileElse .profileElseThumbnail{
	width: 300px;
}
@media(max-width:480px){
	.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .profileElse .profileElseThumbnail{
		width: 200px;
	}
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .profileElse .profileElseThumbnail img{
	width: 100%;
    height: 100%;
    object-fit: contain;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .profileElse p{
	font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 50px;
}





.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox3 {
  width: 100%;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox3 form {
  display: flex;
	flex-direction:column;
  flex-wrap: wrap;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox3 form h2{
    width: 100%;
    margin-top: 40px;
    font-size: 30px;
    font-weight: 500;
    color: black;
    background: #00ff6912;
    padding: 10px;
    text-align: center;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox3 form .formGroup {
  flex: 0 0 48%;
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}
@media (max-width: 1024px) {
  .myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox3 form .formGroup {
    flex: 100%;
  }
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox3 form .formGroup .img-thumbnail {
  height: 120px;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox3 form .formGroup label {
  font-size: 16px;
  font-weight: 300;
  color: rgb(152, 152, 152);
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox3 form .formGroup .otp-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox3 form .formGroup .otp-container .otp-number-input {
  width: 40px;
  height: 33px;
  margin: 0 2px;
  border: none;
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
  padding: 0;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 0;
  padding-bottom: 0;
  font-size: 30px;
  box-shadow: none;
  text-align: center;
  background-color: none;
  font-weight: 600;
  border-radius: 0;
  outline: 0;
  transition: border 0.3s ease;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox3 form .formGroup .otp-container .otp-number-input:focus {
  border-color: rgba(0, 0, 0, 0.5);
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox3 form .formGroup .otp-container .otp-number-input.otp-filled-active {
  border-color: var(--primaryColor);
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox3 form .formGroup input {
	height:45px;
  padding: 5px 15px;
  border-radius: 5px;
  outline: none;
  color: black;
  border: 1px solid #ccc;
  font-size: 16px;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox3 form .formGroup input:focus {
  border: 1px solid var(--primaryColor);
  color: var(--primaryColor);
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox3 form .formGroup select {
  width: 100%;
  height: 45px;
  padding: 5px 15px;
  border-radius: 5px;
  margin-top: 5px;
  outline: none;
  border: 1px solid #ccc;
  font-size: 16px;
  color: black;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox3 form .formGroup select:focus {
  border: 1px solid var(--primaryColor);
  color: var(--primaryColor);
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox3 form .formGroup .formGroupCheckboxMain {
  width: 100%;
  display: flex;
	gap:5rem;
  align-items: center;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox3 form .formGroup .formGroupCheckboxMain .formGroupCheckbox {
  margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
	
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox3 form .formGroup .formGroupCheckboxMain .formGroupCheckbox input[type=radio][id^=myCheckbox] {
  display: none;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox3 form .formGroup .formGroupCheckboxMain .formGroupCheckbox label {
  border: 1px solid #ccc;
  padding: 10px;
  position: relative;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox3 form .formGroup .formGroupCheckboxMain .formGroupCheckbox label:before {
  background-color: white;
  color: white;
  content: " ";
  display: block;
  border-radius: 50%;
  border: 1px solid var(--primaryColor);
  position: absolute;
  top: -5px;
  left: -5px;
  width: 25px;
  height: 25px;
  text-align: center;
  line-height: 28px;
  transition-duration: 0.4s;
  transform: scale(0);
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox3 form .formGroup .formGroupCheckboxMain .formGroupCheckbox label img {
  height: 100px;
  width: 100px;
  transition-duration: 0.2s;
  transform-origin: 50% 50%;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox3 form .formGroup .formGroupCheckboxMain .formGroupCheckbox :checked + label {
  border-color: var(--primaryColor);
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox3 form .formGroup .formGroupCheckboxMain .formGroupCheckbox :checked + label:before {
  content: "✓";
  background-color: var(--primaryColor);
  transform: scale(1);
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox3 form .formGroup .formGroupCheckboxMain .formGroupCheckbox :checked + label img {
  transform: scale(0.9);
  /* box-shadow: 0 0 5px #333; */
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox3 form .formGroup .formImageUpload {
  width: 100%;
  margin-top: 10px;
	display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox3 form .formGroup .formImageUpload label.cabinet {
  display: block;
  cursor: pointer;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox3 form .formGroup .formImageUpload label.cabinet input.file {
  position: relative;
  height: 100%;
  width: auto;
  opacity: 0;
  -moz-opacity: 0;
  filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  margin-top: -30px;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox3 form .formGroup .formImageUpload figure figcaption {
  position: absolute;
  bottom: 0;
  color: #fff;
  width: 100%;
  padding-left: 9px;
  padding-bottom: 5px;
  text-shadow: 0 0 10px #000;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox3 form .formGroup .formImageUpload .avatar-upload {
    position: relative;
	width: 24%;
	height: 100px;
}
@media(max-width:480px){
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox3 form .formGroup .formImageUpload .avatar-upload {
		width: 48%;
		margin-top: 10px;
	}
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox3 form .formGroup .formImageUpload .avatar-upload .avatar-edit {
	position: absolute;
	right: 10px;
	z-index: 1;
	bottom: 10px;
}

.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox3 form .formGroup .formImageUpload .avatar-upload .avatarDelete {
	position: absolute;
	right: 10px;
	z-index: 1;
	top: 10px;
	width:30px;
	height: 30px;
	border-radius: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: red;
	cursor: pointer;
	color: white;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox3 form .formGroup .formImageUpload .avatar-upload .avatarDelete span{
	font-size: 18px;
}

.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox3 form .formGroup .formImageUpload .avatar-upload .avatar-edit input {
	display: none;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox3 form .formGroup .formImageUpload .avatar-upload .avatar-edit input + label {
	display: inline-block;
	width: 30px;
	height: 30px;
	border-radius: 100%;
	background: #FFFFFF;
	cursor: pointer;
	font-weight: normal;
	transition: all .2s ease-in-out;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #3eb25f;
	color: white;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox3 form .formGroup .formImageUpload .avatar-upload .avatar-edit input + label span{
	font-size: 18px;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox3 form .formGroup .formImageUpload .avatar-upload .avatar-edit label:hover {
	background: #5cd57f;
}

.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox3 form .formGroup .formImageUpload .avatar-preview {
	width: 100%;
	height: 100%;
	position: absolute;
	border-radius: 10px;
	border: 1px solid #ccc;
	overflow: hidden;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox3 form .formGroup .formImageUpload  .avatar-preview div {
	width: 100%;
	height: 100%;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox3 form .formGroupTextarea {
  flex: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox3 form .formGroupTextarea label {
  font-size: 16px;
  font-weight: 300;
  color: rgb(152, 152, 152);
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox3 form .formGroupTextarea textarea {
  width: 100%;
  height: 100px;
  padding: 5px 15px;
  border-radius: 5px;
  margin-top: 5px;
  outline: none;
  color: black;
  border: 1px solid #ccc;
  font-size: 16px;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox3 form .formGroupTextarea textarea:focus {
  border: 1px solid var(--primaryColor);
  color: var(--primaryColor);
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox3 form .dummyDiv {
  flex: 0 0 48%;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox3 form .formBtnArea {
  width: 100%;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox3 form .formBtnArea button {
  background: var(--primaryColor);
  border: 0;
  color: #fff;
  margin-top: 30px;
  padding: 10px 25px;
  font-size: 14px;
  border-radius: 5px;
  letter-spacing: 1px;
  font-weight: 300;
  cursor: pointer;
  transition: 0.2s;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox3 form .formBtnArea button:hover {
  transition: 0.2s;
  opacity: 0.7;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .myAccountDetailsBodyBox3 form .formBtnArea button[disabled] {
  opacity: 0.6;
  cursor: default;
}

#testimonailsList {
  width: 100%;
  margin-top: 70px;
  padding: 100px 0px;
}
@media (max-width: 480px) {
  #testimonailsList {
    margin-top: 60px;
  }
}
#testimonailsList .testimonailsTitle {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#testimonailsList .testimonailsTitle h1 {
  font-size: 3em;
  font-weight: 500;
  text-align: center;
  font-family: "Trirong", serif;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  #testimonailsList .testimonailsTitle h1 {
    font-size: 2.5em;
  }
}
@media (max-width: 480px) {
  #testimonailsList .testimonailsTitle h1 {
    font-size: 2em;
  }
}
#testimonailsList .testimonailsTitle h1::after {
  position: absolute;
  z-index: -1;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  background-image: url(../images/loveIcon.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 768px) {
  #testimonailsList .testimonailsTitle h1::after {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 480px) {
  #testimonailsList .testimonailsTitle h1::after {
    width: 80px;
    height: 80px;
  }
}
#testimonailsList .testimonailsListMain {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 20px;
  position: relative;
}
#testimonailsList .testimonailsListMain::after {
  content: "";
  height: 0;
  width: 30%;
}
#testimonailsList .testimonailsListMain .testimonailsListBox {
  flex: 0 0 30%;
  display: flex;
  flex-direction: column;
  margin-top: 50px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.053);
  border-radius: 10px;
}
@media (max-width: 1024px) {
  #testimonailsList .testimonailsListMain .testimonailsListBox {
    flex: 0 0 48%;
  }
}
@media (max-width: 480px) {
  #testimonailsList .testimonailsListMain .testimonailsListBox {
    flex: 100%;
  }
}
#testimonailsList .testimonailsListMain .testimonailsListBox .testimonailsListThumbnail {
  width: 100%;
  height: 250px;
  background: #eee;
  border-radius: 10px;
  overflow: hidden;
}
#testimonailsList .testimonailsListMain .testimonailsListBox .testimonailsListThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#testimonailsList .testimonailsListMain .testimonailsListBox .testimonailsListDetails {
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
#testimonailsList .testimonailsListMain .testimonailsListBox .testimonailsListDetails h4 {
  font-size: 18px;
  font-weight: 500;
}
#testimonailsList .testimonailsListMain .testimonailsListBox .testimonailsListDetails span {
  font-size: 12px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  color: var(--primaryColor);
}
#testimonailsList .testimonailsListMain .testimonailsListBox .testimonailsListDetails span i {
  font-size: 14px;
  margin-right: 10px;
}
#testimonailsList .testimonailsListMain .testimonailsListBox .testimonailsListDetails p {
  font-size: 14px;
  border-top: 1px solid #eee;
  padding-top: 10px;
  line-height: 1.8;
  font-weight: 300;
  margin-top: 20px;
  margin-bottom: 0;
}

#innerAbout {
  width: 100%;
  margin-top: 70px;
  padding: 50px 10% 100px 10%;
}
@media (max-width: 768px) {
  #innerAbout {
    padding: 50px 5% 100px 5%;
  }
}
@media (max-width: 480px) {
  #innerAbout {
    margin-top: 60px;
  }
}
#innerAbout .innerAboutBanner {
  width: 100%;
  height: 500px;
  background: #eee;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 768px) {
  #innerAbout .innerAboutBanner {
    height: 280px;
  }
}
@media (max-width: 480px) {
  #innerAbout .innerAboutBanner {
    height: 220px;
  }
}
#innerAbout .innerAboutBanner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#innerAbout h1 {
  font-size: 2.5em;
  font-weight: 600;
  margin-top: 50px;
  font-family: "Trirong", serif;
}
@media (max-width: 480px) {
  #innerAbout h1 {
    font-size: 2em;
  }
}
#innerAbout p {
  font-size: 18px;
  line-height: 1.8;
  margin-top: 20px;
  font-weight: 300;
}
@media (max-width: 480px) {
  #innerAbout p {
    font-size: 16px;
  }
}

#contactBanner {
  width: 100%;
  margin-top: 70px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
@media (max-width: 480px) {
  #contactBanner {
    margin-top: 60px;
  }
}
#contactBanner::after {
  position: absolute;
  width: 110%;
  height: 400px;
  z-index: -1;
  content: "";
  background: linear-gradient(45deg, #ee0979, #ff6a00);
  top: -10%;
  left: -5%;
  transform: rotate(-3deg);
}
@media (max-width: 768px) {
  #contactBanner::after {
    height: 300px;
  }
}
#contactBanner .contactBannerMain {
  width: 100%;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media (max-width: 768px) {
  #contactBanner .contactBannerMain {
    height: 300px;
  }
}
#contactBanner .contactBannerMain h1 {
  font-size: 3em;
  font-weight: 500;
  color: white;
  text-align: center;
  font-family: "Trirong", serif;
}
@media (max-width: 768px) {
  #contactBanner .contactBannerMain h1 {
    font-size: 2.5em;
  }
}
#contactBanner .contactBannerMain p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.918);
  margin-top: 10px;
  text-align: center;
}

#contactDetails {
  width: 100%;
  padding: 100px 10%;
}
@media (max-width: 1024px) {
  #contactDetails {
    padding: 100px 5%;
  }
}
@media (max-width: 480px) {
  #contactDetails {
    padding: 50px 0px;
  }
}
#contactDetails .contactDetailsMain {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#contactDetails .contactDetailsMain .contactDetailsBox {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  #contactDetails .contactDetailsMain .contactDetailsBox {
    flex: 100%;
  }
}
#contactDetails .contactDetailsMain .contactDetailsBox h1 {
  font-size: 25px;
  font-weight: 500;
}
#contactDetails .contactDetailsMain .contactDetailsBox .contactGroup {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}
#contactDetails .contactDetailsMain .contactDetailsBox .contactGroup label {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.5;
  display: flex;
  align-items: center;
}
#contactDetails .contactDetailsMain .contactDetailsBox .contactGroup label span {
  font-size: 16px;
  margin-right: 15px;
}
#contactDetails .contactDetailsMain .contactDetailsBox .contactGroup a {
  text-decoration: none;
  font-size: 14px;
  margin-top: 15px;
  color: var(--primaryColor);
  margin-left: 30px;
}
#contactDetails .contactDetailsMain .contactDetailsBox .contactGroup p {
  font-size: 14px;
  margin-top: 10px;
  line-height: 1.8;
  color: rgb(88, 88, 88);
  margin-left: 30px;
}
#contactDetails .contactDetailsMain .contactDetailForm {
  flex: 0 0 45%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.043);
  border-radius: 10px;
  padding: 40px;
}
@media (max-width: 768px) {
  #contactDetails .contactDetailsMain .contactDetailForm {
    flex: 100%;
    margin-top: 50px;
  }
}
@media (max-width: 480px) {
  #contactDetails .contactDetailsMain .contactDetailForm {
    padding: 30px 20px;
  }
}
#contactDetails .contactDetailsMain .contactDetailForm form {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#contactDetails .contactDetailsMain .contactDetailForm form .formGroup {
  flex: 0 0 48%;
  display: flex;
  flex-direction: column;
}
#contactDetails .contactDetailsMain .contactDetailForm form .formGroup label {
  font-size: 16px;
  font-weight: 300;
  color: rgb(152, 152, 152);
}
#contactDetails .contactDetailsMain .contactDetailForm form .formGroup input {
  width: 100%;
  height: 45px;
  padding: 5px 15px;
  border-radius: 5px;
  margin-top: 5px;
  outline: none;
  color: black;
  border: 1px solid #ccc;
  font-size: 16px;
}
#contactDetails .contactDetailsMain .contactDetailForm form .formGroup input:focus {
  border: 1px solid var(--primaryColor);
  color: var(--primaryColor);
}
#contactDetails .contactDetailsMain .contactDetailForm form .formGroup2 {
  flex: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
#contactDetails .contactDetailsMain .contactDetailForm form .formGroup2 label {
  font-size: 16px;
  font-weight: 300;
  color: rgb(152, 152, 152);
}
#contactDetails .contactDetailsMain .contactDetailForm form .formGroup2 input {
  width: 100%;
  height: 45px;
  padding: 5px 15px;
  border-radius: 5px;
  margin-top: 5px;
  outline: none;
  color: black;
  border: 1px solid #ccc;
  font-size: 16px;
}
#contactDetails .contactDetailsMain .contactDetailForm form .formGroup2 input:focus {
  border: 1px solid var(--primaryColor);
  color: var(--primaryColor);
}
#contactDetails .contactDetailsMain .contactDetailForm form .formGroupTextarea {
  flex: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
#contactDetails .contactDetailsMain .contactDetailForm form .formGroupTextarea label {
  font-size: 16px;
  font-weight: 300;
  color: rgb(152, 152, 152);
}
#contactDetails .contactDetailsMain .contactDetailForm form .formGroupTextarea textarea {
  width: 100%;
  height: 100px;
  padding: 5px 15px;
  border-radius: 5px;
  margin-top: 5px;
  outline: none;
  color: black;
  border: 1px solid #ccc;
  font-size: 16px;
}
#contactDetails .contactDetailsMain .contactDetailForm form .formGroupTextarea textarea:focus {
  border: 1px solid var(--primaryColor);
  color: var(--primaryColor);
}
#contactDetails .contactDetailsMain .contactDetailForm form .formBtnArea {
  width: 100%;
  margin-top: 20px;
}
#contactDetails .contactDetailsMain .contactDetailForm form .formBtnArea button {
  padding: 12px 30px;
  background: var(--primaryColor);
  color: white;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 5px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 300;
  transition: 0.3s;
}
#contactDetails .contactDetailsMain .contactDetailForm form .formBtnArea button:hover {
  transition: 0.3s;
  opacity: 0.7;
}


.profileDetailsSection{
	width :100%;
	margin-top: 70px;
	padding: 100px 25%;
	display: flex;
	flex-direction: column;
}
@media(max-width:1800px){
	.profileDetailsSection{
		padding: 100px 20%;
	}
}
@media(max-width:1024px){
	.profileDetailsSection{
		padding: 50px 10%;
	}
}
@media(max-width:768px){
	.profileDetailsSection{
		padding: 50px 5%;
	}
}
@media(max-width:480px){
	.profileDetailsSection{
		margin-top: 70px;
		padding: 20px 2.5% 50px 2.5%;
	}
}
.profileDetailsSection .profileDetailsHead{
	width :100%;
	display :flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.profileDetailsSection .profileDetailsHead .profileDetailsImgMain{
	position: relative;
	width: 300px;
}
@media(max-width:768px){
.profileDetailsSection .profileDetailsHead .profileDetailsImgMain{
		width: 100%;
	}
}
.profileDetailsSection .profileDetailsHead .profileDetailsImgMain .profileDetailsImg{
	width: 100%;
}
.profileDetailsSection .profileDetailsHead .profileDetailsImgMain .profileDetailsImg .profileDetailsImgBox{
	width :100%;
	height: 300px;
	background: #eee;
	overflow: hidden;
	display: block;
}
.profileDetailsSection .profileDetailsHead .profileDetailsImgMain .profileDetailsImg .profileDetailsImgBox img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.profileDetailsSection .profileDetailsHead .profileDetailsImgMain  .profileDetailsImgControlls {
  width: 100%;
	position: absolute;
    top: 45%;
    z-index: 1;
}
.profileDetailsSection .profileDetailsHead .profileDetailsImgMain  .profileDetailsImgControlls .custom-nav2 {
  display: flex;
	padding: 0px 10px;
  justify-content: space-between;
  align-items: center;
}
.profileDetailsSection .profileDetailsHead .profileDetailsImgMain  .profileDetailsImgControlls .custom-nav2 button {
  width: 30px;
  height: 30px;
  border: none;
  outline: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  border-radius: 50px;
  cursor: pointer;
  background: rgb(0 0 0 / 20%);
  color: #fff;
  transition: 0.3s;
}
.profileDetailsSection .profileDetailsHead .profileDetailsImgMain  .profileDetailsImgControlls .custom-nav2 button:hover {
  transition: 0.3s;
  background: var(--primaryColor);
  color: white;
}
.profileDetailsSection .profileDetailsHead .profileDetailsBox{
	width: calc(100% - 350px);
	display: flex;
	flex-direction: column;
}
@media(max-width:768px){
.profileDetailsSection .profileDetailsHead .profileDetailsBox{
		width: 100%;
	margin-top: 30px;
	}
}
.profileDetailsSection .profileDetailsHead .profileDetailsBox h2{
	font-size: 25px;
	font-weight: 500;
}
.profileDetailsSection .profileDetailsHead .profileDetailsBox p{
	font-size: 16px;
	margin-top: 15px;
	opacity:.7;
}
.profileDetailsSection .profileDetailsHead .profileDetailsBox .getContactBtn{
	width: fit-content;
	margin-top: 30px;
	padding: 15px 30px;
	border-radius: 10px;
	background: rgb(9, 174, 9);
	color: white;
	font-size: 16px;
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	text-transform: uppercase;
	font-weight: 400;
	transition: .3s;
}
.profileDetailsSection .profileDetailsHead .profileDetailsBox .getContactBtn:hover{
	transition: .3s;
	opacity: .7;
}
.profileDetailsSection .profileDetailsHead .profileDetailsBox .getContactBtn span{
	margin-right: 10px;
}
.profileDetailsSection .profileDetailsBody{
	width: 100%;
	display:flex;
	flex-direction: column;
}
.profileDetailsSection .profileDetailsBody .profileDetailsBodyBox{
	width: 100%;
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #eee;
	display: flex;
	flex-direction: column;
}
.profileDetailsSection .profileDetailsBody .profileDetailsBodyBox h2{
	font-size: 20px;
	font-weight: 600;
}
.profileDetailsSection .profileDetailsBody .profileDetailsBodyBox ul{
	width :100%;
	display: flex;
	flex-direction: column;
}
.profileDetailsSection .profileDetailsBody .profileDetailsBodyBox ul li{
	list-style: none;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: flex-start;
	margin-top: 20px;
}
.profileDetailsSection .profileDetailsBody .profileDetailsBodyBox ul li p{
	font-size: 14px;
	flex: 0 0 30%;
}
.profileDetailsSection .profileDetailsBody .profileDetailsBodyBox ul li span{
	font-size: 14px;
}
.profileDetailsSection .profileDetailsBody .profileDetailsBodyBox ul li h4{
	font-size: 14px;
	font-weight: 500;
	flex: 0 0 65%;
}
.profileDetailsSection .profileDetailsBody .profileDetailsBodyBox .GyroscopeImg{
	width: 100%;
	margin-top: 30px;
}
.profileDetailsSection .profileDetailsBody .profileDetailsBodsyBox .GyroscopeImg img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.profileDetailsSection .profileDetailsBody .profileDetailsBodyBox .downloadName{
	display:flex;
	align-items:center;
	margin-top:1.4rem;
	gap:3rem;
}
.profileDetailsSection .profileDetailsBody .profileDetailsBodyBox .downloadName a{
	color:var(--primaryColor);
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .DownloadName{
	display:flex;
	flex-direction:column;
} 
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .DownloadName h2{
	font-size:20px;
	font-weight:600;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .DownloadName .downloadName{
	margin-top:1.4rem;
	display:flex;
	align-items:center;
	margin-top:1.4rem;
	gap:3rem;
}
.myAccountCanvas .myAccountCanvasMain .myAccountDetailsBody .DownloadName .downloadName a{
	color:var(--primaryColor);
}
/*membership-section--*/


#membership{
	margin-top:4rem;
	padding:180px 0;
	@media(max-width:480px){
	padding:100px 0;
	}
}
#membership .membershipHead{
	display:flex;   
	justify-content: space-between;
	flex-wrap:wrap;
}
@media (max-width:768px){
	#membership .membershipHead{
		row-gap: 2rem;
	}
}
#membership .membershipHead .membership-card{
	flex:0 0 45%;
	background:white;
	box-shadow:1px 1px 7px 0px rgba(0, 0, 0, 0.15), 0px 0px 2px 0px rgba(0, 0, 0, 0.05);
	border-radius:5px;
	padding:1.5rem;
}
@media (max-width:1024px){
	#membership .membershipHead .membership-card{
	flex:0 0 48%;
	}
}
@media (max-width:768px){
	#membership .membershipHead .membership-card{
		flex:100%;
	}
}
#membership .membershipHead .membership-card .cardHead{
	width:100%;
	display:flex;
	flex-direction:column;
	align-items:center;
	background:var(--primaryColor);
	border-radius:5px;
	padding:1rem 1.5rem;
}
#membership .membershipHead .membership-card .cardHead h1{
	font-size:1.2em;
	color:white;
}
#membership .membershipHead .membership-card .cardHead h2{
	font-size:0.9em;
	font-weight:500;
	margin-top:10px;
	color:white;
}
#membership .membershipHead .membership-card .cardHead h4{
	font-size:1em;
	font-weight:400;
	color:white;
	margin-top:10px;
}
#membership .membershipHead .membership-card .membership-text{
	margin-top:14px;
}
#membership .membershipHead .membership-card .membership-text h1{
	font-size:1.3rem;
	font-weight:500;
}
#membership .membershipHead .membership-card .membership-text ul{
	display:flex;
	flex-direction:column;
	margin-top:10px;
	line-height:1.9rem;
	margin-left:1rem;
}
#membership .membershipHead .membership-card .membership-text ul li p{
	@media(max-width:480px){
		font-size:14px;
	}
}
#membership .membershipHead .membership-card button{
	width:100%;
	font-size:15px;
	margin-top:20px;
	border:none;
	outline:none;
	color:white;
	background:var(--primaryColor);
	height:2.5rem;
	border-radius:5px;
	cursor:pointer;
}


.deleteAlert {
  position: fixed;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: 110;
  background: white;
  border-radius: 10px;
  padding: 40px;
  width: 400px;
  display: none;
}
@media(max-width: 480px){
	.deleteAlert{
		width: 90%;
	}
}
.deleteAlert .deleteAlertMian {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.deleteAlert .deleteAlertMian .deleteAlertThumbnail {
  width: 200px;
}
.deleteAlert .deleteAlertMian .deleteAlertThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.deleteAlert .deleteAlertMian .deleteAlertContent {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.deleteAlert .deleteAlertMian .deleteAlertContent p {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}
.deleteAlert .deleteAlertMian .deleteAlertContent .deleteAlertBtnArea {
  width: 100%;
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.deleteAlert .deleteAlertMian .deleteAlertContent .deleteAlertBtnArea .closedeleteAlert {
  flex: 0 0 48%;
  padding: 14px;
  text-align: center;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  background: #eee;
  color: black;
  transition: 0.2s;
}
.deleteAlert .deleteAlertMian .deleteAlertContent .deleteAlertBtnArea .closedeleteAlert:hover {
  transition: 0.2s;
  opacity: 0.7;
}
.deleteAlert .deleteAlertMian .deleteAlertContent .deleteAlertBtnArea .confirmdeleteAlert {
  flex: 0 0 48%;
  padding: 14px;
  text-align: center;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  background: red;
  color: white;
  transition: 0.2s;
}
.deleteAlert .deleteAlertMian .deleteAlertContent .deleteAlertBtnArea .confirmdeleteAlert:hover {
  transition: 0.2s;
  opacity: 0.7;
}
/*# sourceMappingURL=style.css.map */