/* Global Styles */
body {
    /* background: url(/static/images/donor-bg.ae4e2d4ee0b285f6.jpg); */
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 76vh;
    overflow: auto;
    margin: 0;
    background-color: #FFF;
    color: #454545;
    font-family: "Roboto", Lato;
    font-size: 14px;
    font-stretch: normal;
    font-style: normal;
    font-weight: normal;
    letter-spacing: normal;
    line-height: normal;
    margin: 0;
    /* height: 100%; */ 
    min-height: 100%;
    height: 100vh;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

h1 {
    color: #292929;
    font-family: Roboto;
    font-size: 24px;
    font-stretch: normal;
    font-style: normal;
    font-weight: bold;
    letter-spacing: normal;
    line-height: normal;
}

/* Card Styles */
.card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    padding: 20px;
}

/* User Info Styles */
.user-info {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
}

.profile-image {
    max-width: 200px;
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Campaign Info Styles */
.campaign-info {
   /* background-color: #f5f5f5; */
    padding: 20px;
    border-radius: 5px;
    /*margin-top: 20px;*/
	margin-top: 0;
	margin-bottom: 35px;
	
	.header {
		color: #000;
	    font-size: 49px;
	    font-weight: bold;
	    opacity: 0.8;
	    text-align: center;
	    margin-top: 0;
		margin-block-start: 0.67em;
		margin-block-end: 0.67em;
	}
	
	.campaign-detail-text {
		p{
			background-color: #FFF;
			color: #454545;
			font-family: "Roboto", Lato;
			font-size: 14px;
			font-stretch: normal;
			font-style: normal;
			font-weight: normal;
			letter-spacing: normal;
			line-height: normal;
			font-size: 16px;
			line-height: 26px;
		}
		background-color: #FFF;
		color: #454545;
		font-family: "Roboto", Lato;
		font-size: 14px;
		font-stretch: normal;
		font-style: normal;
		font-weight: normal;
		letter-spacing: normal;
		line-height: normal;
		font-size: 16px;
		line-height: 26px;
	}
}

.campaign-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.campaign-image {
    max-width: 150px;
    border-radius: 8px;
    margin-right: 20px;
	float: left;
	margin-right: 20px;
	/* border: 1px solid #4A4A4A; */
	border-radius: 50px;
	height: 56px;
	width: 56px;
	text-align: center;
}

/* Progress Bar */
.progress-container {
    margin: 20px 0;
}

.progress-bar {
    background-color: #e9ecef;
    border-radius: 4px;
    height: 20px;
    overflow: hidden;
	height: 30px;
	width: 100%;
}

.progress-fill {
    background-color: #D62C3D;
    height: 100%;
    transition: width 0.3s ease;
}

.progress-fill.full {
	background-color: #5F9A21;
}

/* Donation Info Styles */
.donation-info {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
}

.link-expire-wrapper {
	color: #bf1e2e;
	font-size: 1.2rem;
  text-align: center;
  padding: 30px;
}
/* Typography */
h1 {
    color: #333;
    margin-bottom: 30px;
}

h2 {
    color: #444;
    margin-bottom: 20px;
}

/* Utility Classes */
.timestamp {
    color: #666;
    font-size: 0.9em;
}

.text-muted {
    color: #6c757d;
}

.text-primary {
    color: #007bff;
}

.text-success {
    color: #28a745;
}

.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

/* Status Badges */
.badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.85em;
    font-weight: 600;
}

.badge-active {
    background-color: #28a745;
    color: white;
}

.badge-inactive {
    background-color: #dc3545;
    color: white;
} 

.donation-form-container {
  max-width: 600px;
  margin: 0 auto;
  /* padding: 20px; */
  font-family: "Roboto", Lato;
  border-radius: 10px;
  border: solid 1px #979797;
  padding: 15px;
  margin-bottom: 35px;
  transition: transform 0.3s ease;
  padding-right: 50px;
}

.donation-form-container .donation-heading {
  font-size: 21px;
}

.form-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 25px;
    font-weight: 500;
}

.donation-form {
    display: flex;
    flex-direction: column;
    /* gap: 20px; */
	
	.form-note {
		color: #bf1e2e;
	}
}

#customAmount {
  margin-bottom: 10px;
}

/*.form-group {
    margin-bottom: 15px;
}*/

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
	font-size: 16px;
}

.donate-btn {
  border-radius: 8px;
  font-size: 21px;
  font-weight: bold;
  margin: 20px auto;
  text-align: center;
  width: 175px;
  cursor: pointer;
  background-color: #D62C3D;
  border: 1px solid transparent;
  color: #FFF;
  display: block;
  height: 50px;
  opacity: 1;
}

.donate-btn:disabled {
	opacity: .6
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.2s;
}

.form-control:focus {
    border-color: #0066cc;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0,102,204,0.2);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    margin: 0;
}

.checkbox-container {
    display: flex;
    align-items: center;
    /* cursor: pointer; */
    user-select: none;
}

.anonymus-section {
	.checkbox-container {
		display: flex;
	    align-items: center;
	    margin-bottom: 0;
	}
}

.checkbox-container input[type="checkbox"] {
    margin-right: 10px;
    width: 20px;
    height: 20px;
	display: none;
}

.label[name="coverFeesLabel"] {
	vertical-align: super;
  margin-bottom: 8px;
  display: inline-block;
}

.mt-10 {
	margin-top: 10px;
}

.required {
    color: #dc3545;
    margin-left: 2px;
}

.text-muted {
    display: block;
    margin-top: 10px;
    color: #666;
    font-size: 14px;
}

.btn-donate {
    background-color: #dc3545;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.2s;
}

.btn-donate[disabled="true"] {
	background-color: #ea929a;
}

.btn-donate:hover {
    background-color: #c82333;
}

.btn-donate:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(220,53,69,0.3);
}

/* Custom checkbox styling */
.checkmark {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 3px;
    margin-right: 10px;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: #dc3545;
    border-color: #dc3545;
}

.checkbox-container input:checked ~ .checkmark:after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.label-text {
    font-size: 16px;
    color: #333;
	font-weight: 500;
}

h1 {
  font-size: 1.2em;
  margin-bottom: 0;
}
nav a {
  padding: 5px 10px;
  text-decoration: none;
  margin-top: 10px;
  display: inline-block;
  background-color: #eee;
  border-radius: 4px;
}
nav a:visited, a:link {
  color: #334953;
}
nav a:hover {
  color: #039be5;
  background-color: #CFD8DC;
}
nav a.active {
  color: #039be5;
}


body {
  font-family: $fontFamilyRoboto;
}

.closed {
  .sidebar {
    background: transparent;
    display: 0;
  }

  .main-panel {
    width: 100%;
  }
}

.p-selectbutton {
  .p-button {
    &.p-highlight {
      background: #d62c3d !important;
      border-color: #000 !important;
      color: #ffffff !important;
      &:hover {
        background: #d62c3d !important;
        border-color: #000 !important;
        color: #ffffff !important;
      }
      &:focus {
        box-shadow: none;
      }
    }
  }
  .p-button {
    &:not(.p-disabled):not(.p-highlight):hover {
      background: #d62c3d !important;
      border-color: #000 !important;
      color: #fff !important;
    }
  }
  
  .p-button-label {
	transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
	background: #ffffff;
	border-radius: 5px !important;
    color: #000;
    font-weight: 700;
    height: 45px;
    margin: 0 4px 18px;
    border: 1px solid #000;
	padding: 0.75rem 1.25rem;
	font-size: 1rem;
	cursor: pointer;
		
	&:hover {
		background: #d62c3d !important;
		border-color: #000 !important;
		color: #fff !important;
	}
	
	&.selected {
		background: #d62c3d !important;
		border-color: #000 !important;
		color: #fff !important;
	}
  }
}

.transaction-fee-note {
	color: #000;
	font-family: "Lato", Roboto;
	font-size: 16px;
	opacity: 0.8;
	margin: 0;
}

input {
  &.ng-dirty {
    &.ng-invalid > .p-inputtext {
      border-color: #e24c4c;
    }
  }
}

.p-checkbox {
  &:not(.p-checkbox-disabled) {
    .p-checkbox-box {
      &.p-highlight {
        border-color: #d62c3d !important;
        background: #d62c3d !important;
        color: #ffffff !important;
        &:hover {
          border-color: #d62c3d !important;
          background: #d62c3d !important;
          color: #ffffff !important;
        }
      }
    }
  }

  .p-disabled {
    border-color: #d62c3d !important;
    background: #d62c3d !important;
    color: #ffffff !important;
  }
}

.title {
  color: #292929;
  font-size: 24px;
  opacity: 0.87;
}

.title-underline {
  font-size: 24px;
  font-weight: bold;
  margin-right: 8px;
  position: relative;

  &::after {
    border-bottom: 3px solid $titleUnderline;
    content: "";
    left: 0;
    margin-top: 3px;
    position: absolute;
    top: 100%;
    width: 56%;
  }
}

.link-copied-message {
  background: $secondaryTextColor;
  border-radius: 5px;
  color: #fff;
  float: right;
  padding: 7px;
  z-index: 99999;
}

.payment-failed {
  background: $btnNumBgColor;
  border-radius: 5px;
  color: $white;
  padding: 5px;
  display: inline-block;
}

.btn-1 {
  background: $btnNumBgColor;
  border-radius: 4px;
  color: $white;
  margin: 0 30px;
  padding: 8px 1px;
  text-align: center;
  width: 32px;
}

.fa-check {
  font-size: 16px;
}

.fa-pencil {
  cursor: pointer;
}

.text-after {
  position: relative;

  &::after {
    border-top: 2px dashed #d9d8d7;
    content: "";
    height: 0;
    left: 0;
    margin: 15px auto;
    position: absolute;
    right: 0;
    width: 50%;
    z-index: 1;
  }
}

.active {
  color: $btnNumBgColor;
}

.ft-wt {
  font-weight: 400;
}

.btn-2 {
  background-color: $btnNumBgInactiveColor;
  border-radius: 4px;
  color: $white;
  margin: 0 30px;
  padding: 8px 1px;
  text-align: center;
  width: 32px;
}

.text-center {
  text-align: center;
}

.img-circle {
  border: 1px solid $black;
  border-radius: 50%;
  width: 60px;
}

.img-max {
  max-height: 100%;
  max-width: 100%;
}

.anchor-color {
  color: #2B90FF !important;
}

.inline {
  display: inline-block;
}

.underline {
  text-decoration: underline;
}

.mr-zero {
  margin: 0;

  &.c-name {
    margin: 10px;
  }
}

.margin-six {
  margin: 6px;
}

.padding-tb-zero {
  padding-bottom: 0;
  padding-top: 0;
}

.mr-20 {
  margin: 20px 0;
}

.ml-10 {
  margin: 0 10px;
}

.ml-20 {
  margin: 0 20px;
}

.tier {
  color: #000;
  font-family: Lato;
  font-size: 18px;
  font-weight: bold;
  margin: 0;
  opacity: 0.78;
  padding-left: 0;
}

.tier-details {
  font-family: Lato;
  font-size: 16px;
  opacity: 0.78;
  padding-left: 0;
}

.center-block {
  display: block;
  margin: 60px auto;
}

.mt-zero {
  margin-top: 0;
}

.mb-20 {
  margin-bottom: 20px;
}

.right-panel {
  background-color: $mainContentBgColor;
}

.right-panel-wrapper {
  padding: 25px;
}

.form-buttons {
  .ui-button {
    &:hover,
    &:focus {
      background-color: $themeBtnBgColor;
      border-color: transparent;
      outline: 0;
    }
  }
}

.theme-button-secondary {
  background: transparent;
  border: 1px solid $themeBtnBgColor;
  border-radius: 3px;
  box-shadow: 0;
  color: $themeBtnBgColor;
  cursor: pointer;
  display: block;
  font-size: 16px;
  font-weight: 500;
  height: 36px;
  opacity: 1;
  padding: 12px 0;
  text-align: center;

  &.ui-button {
    &:hover {
      background: $themeBtnBgColor;
      border: 0;
    }
  }
}

.theme-btn {
  background-color: $themeBtnBgColor;
  border: 1px solid transparent;
  border-radius: 4px;
  color: $white;
  display: block;
  font-size: 28px;
  height: 50px;
  opacity: 1;

  &.ui-button {
    &:focus,
    &:hover {
      background: $themeBtnBgColor;
      border: 1px solid transparent;
    }
  }

  &:disabled {
    background-color: #ea929a;
  }

  
}

.p-button:enabled:hover {
  background: $themeBtnBgColor;
  color: #ffffff;
  border-color: #ea929a;
}

.delete-btn {
  height: 44px;
  margin-bottom: 20px;
  width: 276px;

  .ui-button-text {
    font-size: 20px;
  }
}

.icon-style {
  opacity: 0.6;
  position: absolute;
  right: 0;

  &.fa {
    display: block;
    font-size: 28px;
  }
}

.relative-block {
  position: relative;
}

.add-more {
  color: $breadCumbActiveColor;
  cursor: pointer;
  float: right;
}

.add-more-btn {
  color: $breadCumbActiveColor;
  font-size: 16px;
  font-weight: bold;
  height: 19px;
  margin: 40px 0;
  text-align: right;
}

.middle-section {
  background: $white;
  overflow: visible;
  padding-top: 24px;
  position: relative;
}

.pd-lr {
  padding-left: 0;
  padding-right: 0;
}

.social-icon {
  display: inline-block;
  margin-right: 10px;
  margin-top: 12px;

  img {
    margin: -5px 5px;
    width: 54px;
  }

  .left-arrow {
    background-color: $white;
    border: 1px solid #d8d8d8;
    color: #000;
    font-size: 10px;
    padding: 3px 7px;
    text-align: center;
  }

  .pd-lr {
    padding-left: 0;
    padding-right: 0;
  }
}

.para {
  color: $black;
  font-size: 14px;
  opacity: 0.6;
}

.mt-13 {
  margin: 13px 0;
}

.pl-80 {
  padding: 0 50px 0 80px;
}

.m10 {
  margin: 10px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-10 {
  margin-top: 10px;
}

.m-20 {
  margin: 20px;
}

.mt-50 {
  margin-top: 50px;
}

.align-right {
  float: right;
}

.mt-20 {
  margin: 20px 0;
}

.mtb-10 {
  margin: 10px 0;
}

.border-btm {
  border-bottom: $primaryBorder;

  &:nth-last-child(1) {
    border: 0;
  }
}

.text-and-link {
  color: #bf1e2e;
}

.next-btn {
  background-color: $formBtnBgColor;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 20px;
  height: 44px;
  object-fit: contain;
  width: 127px;

  &:hover {
    background: $formBtnBgColor;
    border: 1px solid transparent;
    outline: 0;
  }
}

.mr-rt-15 {
  margin-right: 15px;
}

.center-wrapper {
  background: $white;
  margin: 0 auto;
  overflow: hidden;
  padding: 25px;
  position: relative;
  width: 400px;
}

.border-botttom {
  border-bottom: solid 1px #cbcbcb;
}

.text-right-align {
  text-align: right;
}

.text-no-wrap {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.full-height {
  height: 79vh;
}

.top-margin {
  margin-top: 56px;
}

.coach-inner-wrap {
  background: url("/static/images/donor-bg.ae4e2d4ee0b285f6.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 76vh;
  overflow: auto;
  padding: 38px 0;
  padding-bottom: 0;
}

.clearfix {
  clear: both;
  float: none;
}

.coach-layout {
  background: #fff;
  margin: 0 auto;
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;

  .col-pad-right {
    padding-right: 40px;
  }
}

.social-share {
  padding: 0 50px 0 50px;
  justify-content : center;
}
.social-share button {
    cursor: pointer;
  }

  .social-share .soc-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 13px;
    margin-top: 8px;
  }
  
  .social-share button {
	border: 0;
	background: transparent;
  }
  .social-share button:first-child {
    padding-left: 0;
  }

.p-tb-25 {
	padding-top: 25px;
	padding-bottom: 25px;
}

.app-header {
  background: #fff;
  margin: 0 auto;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  overflow: hidden;
  padding-left: 60px;
  padding-right: 60px;
  padding-top: .5rem;

  .logo {
    padding: 0px 4px 8px 27px;
	  margin: 0px 40px;
  }
}

.sub-details {
  color: #000;
  font-family: Roboto;
  font-size: 14px;
  font-stretch: normal;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-height: normal;
  opacity: 0.5;
}

.success-box {
  padding: 15px;
}

.overflow-hidden {
  overflow: hidden;
}

.pad-left {
  padding-left: 27px;
}

.mr-10 {
  margin-right: 10px;
  margin-top: 10px;
}

.mrr-10 {
  margin-right: 10px;
}

.footer-margin {
  margin-bottom: 60px;
}

.profile-info {
	padding: 20px;
}

.back-btn {
  border-radius: 8px;
  font-size: 21px;
  font-weight: bold;
  margin: 0 auto;
  text-align: center;
}

.coach-footer {
  background: #fff;
  bottom: 0;
  font-family: Lato;
  left: 0;
  padding: 10px 0;
  position: relative;
  right: 0;
  width: 100%;

  .footer {
    margin-left: auto;
    margin-right: auto;
    max-width: 1440px;
    padding: 0 35px;

    .copy-right {
      color: $calendarIconColor;
      font-size: 14px;
    }

    a {
      color: #292929;
      font-size: 14px;
    }
  }
}

.ui-progressbar {
  height: 20px;
}

@media screen and (max-width: 1440px) {
  .next-btn {
    width: 84px;
  }

  .social-icon {
    margin-top: 10px;
  }

  .progressbar {
    height: 13px;
    width: 91%;
  }
}

.loader-hidden {
  visibility: hidden;
}

.loader-page-center-overlay {
  background-color: transperent;
  bottom: 0;
  height: 70px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 88px;
  z-index: 500000;
}

.loader-wrap {
  display: block;

  .loading {
    bottom: 0;
    height: 2em;
    left: 0;
    margin: auto;
    overflow: show;
    position: fixed;
    right: 0;
    top: 0;
    width: 2em;
    z-index: 999;

    &::before {
      background-color: rgba(0, 0, 0, 0.3);
      content: "";
      display: block;
      height: 100%;
      left: 0;
      position: fixed;
      top: 0;
      width: 100%;
    }
  }
}

.donar-container {
  background: url("/static/images/donationBG1.png");
  background-repeat: no-repeat;
  background-size: cover;
  overflow: auto;
  padding: 0 20px;
}

.donar-container .donar-title {
  border-bottom: 6px solid #df1e2e;
  color: #df1e2e;
  margin: 16px 0 0;
  padding-bottom: 10px;
  text-align: center;
  text-transform: uppercase;
}

.donar-container .tech-slideshow {
  height: 200px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7);
}

.donar-container .tech-slideshow .mover {
  padding: 8px 15px;
  border-bottom: 2px solid rgba(223, 30, 46, 0.5);
  transition: transform 0.5s ease;
}

.donar-container .tech-slideshow .mover:nth-of-type(odd) {
  background: rgba(0, 0, 0, 0.02);
  border-bottom: 2px solid rgba(201, 199, 199, 0.5);
}

.donar-container .tech-slideshow .mover:hover {
  background: rgba(223, 30, 46, 0.03);
}

.donar-container .tech-slideshow .mover .item-name {
  color: rgba(0, 0, 0, 0.8);
  font-size: 15px;
  font-weight: 500;
  margin: 0;
  opacity: 0.8;
  line-height: 1.2;
}

.donar-container .tech-slideshow .mover .item-name.title {
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: capitalize;
  white-space: nowrap;
}

#donation-container {
  position: relative;
  animation: scrollUp 20s linear infinite;
}

#donation-container:hover {
  animation-play-state: paused;
}

@keyframes scrollUp {
  0% { transform: translateY(0); }
  100% { transform: translateY(-100%); }
}

.donor-message {
  display: block;
  font-size: 0.75em;
  color: rgba(102, 102, 102, 0.8);
  font-style: italic;
  margin-top: 3px;
}

.grid {
  display: flex;
  padding: 5px 0;
}

.p-progressbar {
  border-radius: 0;
  width: 91%;
  height: 30px;
}


.p-ripple {
	&.p-element {
		&.p-button {
			&.p-component {
				border-radius: 5px !important;
				color: #000;
				font-weight: 700;
				height: 45px;
				margin: 0 4px 20px;
				border: 1px solid #000;
			}
		}
	}
}

.profile-wrapper{
	.item-name {
	    color: #505050;
	    font-family: "Lato", Roboto;
	    font-size: 16px;
	    margin: 0;
	    opacity: 0.8;
      line-height: normal;
      letter-spacing: 0.73px;
	}
	.item-value {
	    color: #000;
	    font-family: "Lato", Roboto;
	    font-size: 22px;
	    font-weight: bold;
	    letter-spacing: 0.8px;
	    margin: 4px 0;
	}
} 

.label {
  color: #000;
  font-family: "Lato", Roboto;
  font-size: 16px;
  font-weight: bold;
  opacity: 0.8;
}

.pl-50 {
  padding: 0 0 0 50px;
}

.plr-50 {
  padding: 0 50px 0 50px;
}

.coach-inner-wrap {
    background: url(/static/images/donor-bg.ae4e2d4ee0b285f6.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 76vh;
    overflow: auto;
    padding: 38px 0;
	padding-bottom: 0;
}

.coach-layout {
    background: #FFF;
    margin: 0 auto;
    margin-left: auto;
    margin-right: auto;
    max-width: 1000px;
}

.profile-wrapper {
    background: #FFF;
    margin-bottom: 20px;
    padding: 25px;
	  margin-bottom: 38px;
	
	.center-block {
	    margin: 60px auto 35px;
	}
}

.link-copied-message {
	background: #11AC60;
	border-radius: 5px;
	color: #FFF;
	float: right;
	padding: 7px;
	display: none
}

.payment-status {
	.heading {
	    color: #000;
	    font-size: 49px;
	    font-weight: bold;
	    opacity: 0.8;
	}
	
	.para {
		color: #000;
		opacity: 0.6;
		font-size: 16px;
		line-height: 26px;
	}
	
	.back-btn {
		background-color: #D62C3D;
		border: 1px solid transparent;
		color: #FFF;
		height: 50px;
		opacity: 1;
		padding: 0.75rem 1.25rem;
	}
}

.payment-page {
	.coach-layout {
		padding: 1rem 2rem;
	}
	.stripe-form {
		width: 30vw;
		min-width: 500px;
		align-self: center;
		box-shadow: 0px 0px 0px 0.5px rgba(50, 50, 93, 0.1), 0px 2px 5px 0px rgba(50, 50, 93, 0.1), 0px 1px 1.5px 0px rgba(0, 0, 0, 0.07);
		border-radius: 7px;
		padding: 10px;
		margin: auto;
		padding: 1rem 2rem;
		
		.not-refresh-msg {
			color: red;
			font-style: italic;
			
			span {
				display: block;
				font-style: normal;
				padding-top: 4px;
			}
		}
		
		.mb-15 {
		    margin-bottom: 15px;
		}
		
		.StripeElement {
			min-height: 239px;
			margin-bottom: 24px;
			padding: 10px;
			border: 1px solid #7777774d !important;
		}
		
		#submit {
			background: #0055DE;
			font-family: Arial, sans-serif;
			color: #ffffff;
			border-radius: 4px;
			border: 0;
			padding: 12px 16px;
			font-size: 16px;
			font-weight: 600;
			cursor: pointer;
			display: block;
			transition: all 0.2sease;
			box-shadow: 0px 4px 5.5px 0px rgba(0, 0, 0, 0.07);
			width: 100%;
		}
	}
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* display: none; */
  justify-content: center;
  align-items: center;
  z-index: 99;
}

.spinner {
  border: 16px solid #f3f3f3;
  border-top: 16px solid rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
  position: fixed;
  z-index: 99;
  top: 50%;
  left: 43%;
}

.hidden {
  display: none;
}

.donor-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 30px;
  margin-top: 0;
}

.item-name {
  font-size: 17px;
  margin-bottom: 10px;
}

.item-name.title {
  font-size: 17px;
  margin-bottom: 10px;
}

.form-error, .maxLength-error {
	color: #D62C3D;
	margin-top: 5px;
	display: inline-block;
	display:none;
}
.maxLength-error {
	display: none;
}

.d-flex {
	display: flex;
}

.campaign-wrapper {
    align-items: center;
    background: #eaeaea;
    display: flex;
    justify-content: center;
    min-height: 364px;
    padding: 0;
    background-size: cover;
    background-repeat: no-repeat;
}

.campaign-wrapper .donor-img {
  border: 2px solid #000;
  border-radius: 50%;
  height: 200px;
  width: 200px;
}

.campaign-wrapper .div-center {
  align-items: center;
  display: flex;
}

.campaign-wrapper .text-wrap {
  margin: 0 25px;
}

.campaign-wrapper .name {
  color: #000;
  display: block;
  font-size: 55px;
  margin-bottom: 0;
}

.campaign-wrapper .para {
  color: #000;
  font-size: 35px;
  margin-top: 0;
  opacity: 1;
}

.student-details-wrapper {
  padding: 10px 25px 0 25px;
}

.coach-wrapper {
  border-radius: 10px;
  border: solid 1px #979797;
  background-color: #f7f7f7;
  padding: 6px 15px;
  align-items: center;
}

.campaign-name-wrapper {
  flex: 1;
}

.campaign-name-wrapper .campaign-name {
  padding: 16px;
  border-radius: 8px;
  background-color: rgba(18, 174, 135, 0.15);
  text-align: center;
  margin: 0;
  color: #000;
}
.student-image img {
  width: 220px;
  height: 220px;
  margin: -150px 40px 0 0;
  border: 1px solid rgb(151, 151, 151);
  border-radius: 50%;

}
.student-name {
  font-size: 24px;
  margin-bottom: 12px;
  margin-top: 25px;
  color: #000;
}

.student-name .student-position {
  color: #666;
  font-size: 18px;
}
p {
  line-height: 1.4;
}

.coach-wrapper h3 {
  margin: 0;
  margin-bottom: 5px;
  color: #000;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.p-selectbutton .p-button-label {
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
  background: #ffffff;
  border-radius: 5px !important;
  color: #000;
  font-weight: 700;
  height: 40px;
  margin: 0 4px 20px;
  border: 1px solid #000;
  padding: 0.75rem 1.125rem;
  font-size: 1rem;
  cursor: pointer;
}

.payment-page .not-refresh-msg {
  color: red;
  font-style: italic;
}
.payment-page .not-refresh-msg span {
  display: block;
  font-style: normal;
  padding-top: 4px;
}

.payment-page #payment-form #submit {
  background: #0055DE;
  font-family: Arial, sans-serif;
  color: #ffffff;
  border-radius: 4px;
  border: 0;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: block;
  transition: all 0.2sease;
  box-shadow: 0px 4px 5.5px 0px rgba(0, 0, 0, 0.07);
  width: 100%;
}

.payment-page .coach-layout {
  padding: 1rem 2rem;
}

.payment-page .stripe-form {
  width: 30vw;
  min-width: 500px;
  align-self: center;
  box-shadow: 0px 0px 0px 0.5px rgba(50, 50, 93, 0.1), 0px 2px 5px 0px rgba(50, 50, 93, 0.1), 0px 1px 1.5px 0px rgba(0, 0, 0, 0.07);
  border-radius: 7px;
  padding: 10px;
  margin: auto;
  padding: 1rem 2rem;
}
.p-selectbutton .p-button-label.selected {
  background: #d62c3d !important;
  border-color: #000 !important;
  color: #fff !important;
}

.payment-status .back-btn {
  background-color: #D62C3D;
  border: 1px solid transparent;
  color: #FFF;
  height: 50px;
  opacity: 1;
  padding: 0.75rem 1.25rem;
}

.ecommerce-wrapper {
  border-radius: 10px;
  border: solid 1px #979797;
  padding: 15px;
  margin-bottom: 35px;
  transition: transform 0.3s ease;
}

.product-wrapper:hover {
  transform: scale(1.03)
}

.ecommerce-wrapper .ecommerce-sec-heading {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 21px;
}

.ecommerce-wrapper .product-wrapper {
  width: 98%;
  position: relative;
  border: 2px solid #dadada;
  border-radius: 10px;
  display: block;
  text-decoration: none;
  height: 163px;
}

.ecommerce-wrapper .product-wrapper img{
  height: 80%;
  width: 100%;
  border-radius: 8px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-color: #bfb7b7;
  max-height: 99%;
}

.ecommerce-wrapper .product-price {
  display: inline-block;
  padding: 9px 15px;
  background-color: rgba(255, 255, 255, .9);
  position: absolute;
  top: 50%;
  font-weight: 600;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  color: #000;
}

.ecommerce-wrapper .shop-now-link {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  width: 100%;
  cursor: pointer;
  background-color: #D62C3D;
  color: #FFF;
  display: block;
  text-decoration: none;
  margin-top: -4px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  padding: 8px 0;
  position: absolute;
  bottom: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.pt-0 {
  padding-top: 0 !important;
}

.mt-15{
  margin-top: 15px !important;
}

.mb-35 {
	margin-bottom: 35px;
}

.mb-30 {
  margin-bottom: 30px;
}

.campaign-details {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
}

.view-more {
  color: #d62c3d;
  display: none;
}

.view-more:hover {
  cursor: pointer;
}

#campaignDetailsText {
  line-height: 1.5em;
  font-size: 16px;
  line-height: 1.5em;
  max-height: 4.5em; /* 3 lines x 1.5em */
  overflow: hidden;
  position: relative;
  transition: max-height 0.3s ease;
  display: inline-block;
}

.mobile-view {
  display: none;
}

.campaign-details:has(.expanded) {
  display: block;
}

#campaignDetailsText.expanded {
  display: inline;
  max-height: max-content;
}

.multi-progress {
  display: flex;
  border: 1px solid #ddd;
  background: #fff;
  color: #444;
  height: 30px;
  border-radius: 2px;
  overflow: hidden;
  /* box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2); */
}

.custom-progressbar {
  height: 100%;
  transition: width 0.3s ease-in-out;
  cursor: pointer;
}

.donation-value {
  background-color: #d62c3d;
}

.campign-sell-value {
  background-color: #ffbbc2;
}

.progress-empty {
  background-color: #fff;
}

.marketplace-error {
  text-align: center;
  color: red;
  font-size: 14px;
  padding: 15px 0px;
}

@media screen and (max-width: 767px) {
  .sm\:col-12 {
  flex: 0 0 auto;
  width: 100%;
  }
 }
 
 @media screen and (max-width: 1440px) {
 	.campaign-info {
 		.header {
 			font-size: 30px;
 		}
 	}
 }

 @media screen and (max-width: 767px) {
  .profile-wrapper .donation-form-container {
    padding: 10px !important;
  }
  .coach-inner-wrap{
    padding: 20px 0px 0px;
  }

  .ecommerce-wrapper .product-wrapper {
    height: 115px;
  }

  .ecommerce-wrapper .product-price {
    padding: 5px 10px;
    top: 42%;
    font-size: 10px;
  }

  .coach-footer .footer {
    padding: 0;
  }

  .inner-container.coach-layout {
    margin: 0 15px;
  }

  .coach-footer .footer .copy-text{
    text-align: left;
  }
  .coach-footer .footer .privacy-text {
    text-align: right;
  }
  .coach-footer .footer .privacy-text .ml-10 {
    margin: 0;
  }
  .coach-footer .footer .privacy-text .inline {
    display: inline-block !important;
    margin: 0;
    text-decoration: underline;
  }
  .campaign-info {
	  padding-bottom: 0;
  }
  .donate-btn {
	  margin: 10px 0 20px 0;
  }
  .profile-wrapper .item-name, #campaignDetailsText{
    font-size: 14px;
  }

  .profile-wrapper, .campaign-info {
    margin-bottom: 20px;
  }

  .student-name {
    margin-bottom: 8px;
  }

  .ecommerce-wrapper {
    padding: 15px 10px;
	margin-bottom: 20px;
	margin-top: 10px
  }

  .social-share .soc-title {
    font-size: 22px;
  }

  .ecommerce-wrapper .product-wrapper img {
    max-height: 99%;
  }
    
  .mobile-view {
    display: block;
    padding-left: 0;
    padding-right: 0;
	padding: 20px 0;
  }
  .desktop-view {
    display: none;
  }
  .plr-50, .student-details-wrapper, .social-share {
    padding: 0;
  }
  .coach-wrapper {
    margin-top: 10px;
    margin-bottom: 20px;
  }
  .student-image img.donor-img {
    height: 80px;
    width: 80px;
  }
  .student-image {
    width: 25%;
  }
  .campaign-name-wrapper .campaign-name {
    padding: 6px;
    font-size: 16px;
  }

  .sm-m-0 {
    margin: 0;
  }
  
  .student-name, .ecommerce-wrapper .ecommerce-sec-heading {
    font-size: 20px;
  }
  .profile-wrapper .item-value {
    font-size: 16px;
  }
  .campaign-wrapper .div-center {
    display: block;
    text-align: center;
  }
  .campaign-wrapper .name, .campaign-wrapper .para {
    font-size: 20px;
  }
  .campaign-wrapper {
    min-height: 137px;
    padding: 30px;
  }
 	.profile-info, .donation-form-container, .donar-container {
 		padding: 0 !important;
 	}
 	.pl-50 {
 	    padding: 0;
 	}

 	.campaign-info {
 		.header {
 			font-size: 20px;
 		}
 	}
   .tier-details {
     font-size: 14px;
    }

   .tier {
     font-size: 15px;
   }

   .mb-center {
     display: block;
     margin: 0 auto;
   }

   .coach-layout {
     padding: 0;
   }

   .privacy-text,
   .copy-text {
     margin-bottom: 0;
     text-align: center;
   }

   .app-header {
     .logo {
       padding: 8px 0;
       text-align: center;
     }
   }
    .pad-left {
      padding-left: 10px;
    }

  .hide-col-reponsive {
    display: none;
  }
   
  .payment-status {
	  .heading {
   	    font-size: 20px;
   	}
  }
   
  .payment-page .stripe-form {
    min-width: auto !important;
    padding: 0;
    margin: auto;
    width: 100% !important;;
  } 

  .xs-p-0 {
    padding: 0;
  }

  .form-control {
    width: 91%;
  }

  .progress-bar {
    width: 100%;
  }

  .donor-title {
    margin-top: 10px;
  }  

  .app-header {
	  padding-left: 20px;
  }

  .app-header .logo {
    margin: 0;
    text-align: left;
  }

  .xs-pr-0 {
    padding-right: 0;
  }
}
@media screen and (max-width: 374px) {
  .inner-container.coach-layout  {
    margin: 0;  
  }
	
}

@media screen and (max-width: 359px) {
  .ecommerce-wrapper .shop-now-link {
    font-size: 14px;
  }

  .campaign-info {
    padding: 10px;
  }

  .xs-pr-0 {
    padding-right: 0;
  }
}