body {
	min-height: 100vh !important;
	display: flex !important;
	flex-direction: column !important;
}

footer {
	margin-top: auto !important;
}

#donate_floating_button {
	z-index: 999;
	position: fixed;
	max-width: 200px;
	right: 0;
	top: 15px;
}

.header__logo__link img {
	max-height: 80px;
	padding: 10px;
}

.footer__logo img {
	max-height: 80px;
}

a.no-style {
	color: unset;
}

.contact-form-select {
	width: 100%;
	min-height: 60px;
	display: flex;
	align-items: center;
}

.list {
	max-height: 200px;
}

.select2-container--default .select2-selection--single {
	width: 100%;
	display: flex;
	min-height: 40px;
	align-items: center;
	border-color: #000;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	top: 25%;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
	color: #000;
	font-size: 14px;
	font-weight: 100;
	padding: 0px 22px;
}

.select2.select2-container.select2-container--default {
	width: 100% !important;
}

.breadcrumb-item.active {
	color: #fff !important;
}

.breadcrumb-item.active a {
	color: #fff !important;
}

.breadcrumb-item.active a:hover {
	color: #c40f70 !important;
}

.paymentsCustoms__field {
	text-align: center;
}

.paymentsInput {
	display: flex;
	justify-content: center;
}

.select2-selection:focus {
	outline: 0 !important;
}

.contact--layout1 {
	margin-top: 15px;
	margin-bottom: 15px;
}

.commentsPost--style2 {
	padding-top: 20px !important;
}


.itSocial ul {
	display: inline-flex;
	gap: 0px;
}

.itSocial ul li a {
	height: 40px;
	width: 40px;
	display: grid;
	place-content: center;
	font-size: 20px;
	color: #fff;
	transition: all 0.4s ease;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
}

.itSocial ul li:hover a {
	color: #615d59;
	transform: scale(1.2);
	transition: all 0.4s ease;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
}

.footer__social {
	text-align: right;
	margin-bottom: 50px;
	background-color: #fff !important;
}

.itSocial2 a.icon {
	height: 40px !important;
	width: 40px !important;
	display: grid !important;
	place-content: center !important;
	font-size: 20px !important;
	color: #c40f70 !important;
	transition: all 0.4s ease;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
}

.itSocial2 a.icon:hover {
	color: #615d59 !important;
	transition: all 0.4s ease;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	transform: scale(1.2);
}

.itSocial2 a.text {
	color: black;
	font-family: "CoconLight";
	font-weight: lighter;
}

.footer__line {
	margin: 0;
	opacity: 1;
	height: 2px !important;
	width: 50px !important;
	background-color: #c40f70 !important;
}

.top-footer-part {
	margin: 0px 100px 0px 100px;
}

.it-btn:hover {
	background: #615d59 !important;
}

.btn--secondary .it-btn:hover {
	background-color: #615d59 !important;
}

@media screen and (max-width: 720px) {
	.paymentsAmountChoice {
		display: flex;
		flex-wrap: wrap;
	}

	.project-donate-btn-container {
		padding: 0px 9px 50px 9px !important;
	}

	.project-donate-btn {
		width: 100%;
		padding-right: 0px !important;
		padding-left: 0px !important;
		justify-content: center;
	}
}

@media screen and (max-width: 992px) {
	.or_custom {
		text-align: center !important;
	}

	#donate_floating_button {
		position: absolute;
		max-width: 150px;
		padding: 17px 20px;
		left: -5px;
		bottom: unset;
		top: 95px;
		transition: all 0ms;
	}
	
	#sticky-anchor{
		position: absolute;
		top: 95px;
	}

	#donate_floating_button.stick {
		position: fixed !important;
		top: 0 !important;
	  }
}


/* checkbox style */
.boxes {
  margin: auto;
  padding: 30px;
  background: transparent;
}

/*Checkboxes styles*/
input[type="checkbox"] { display: none; }

input[type="checkbox"] + label {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 20px;
  font: 14px/20px;
  color: rgb(43, 43, 43);
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

input[type="checkbox"] + label:last-child { margin-bottom: 0; }

input[type="checkbox"] + label:before {
  content: '';
  display: block;
  width: 22px;
  height: 22px;
  border: 2px solid #c40f70;
  border-radius: 5px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 1;
  -webkit-transition: all .12s, border-color .08s;
  transition: all .12s, border-color .08s;
}

input[type="checkbox"]:checked + label:before {
  width: 10px;
  top: -5px;
  left: 5px;
  border: 2.5px solid #c40f70;
  border-radius: 0;
  opacity: 1;
  border-top-color: transparent;
  border-left-color: transparent;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}