/* :: Progress bar
----------------------------------------------- */
#progress-bar .total-count {
	font-size: .7em !important;
	font-weight: normal !important;
	font-style: normal !important;
	text-align: right;
}
#progress-bar .total-count strong {
	font-size: .9em !important;
	line-height: 1rem !important;
	font-weight: bold !important;
	padding: 0 15px !important;
}
#progress-bar .total-bar,
#progress-bar .total-count {
	-webkit-border-radius: 6px 6px 00;
	-moz-border-radius: 6px 6px 0 0;
	border-radius: 6px 6px 0 0;
	padding: 15px 20px 5px !important;
	margin-top: 5px !important;
	margin-bottom: 0 !important
}
#progress-bar .total-bar span,
#progress-bar .total-count span {
	display: inline;
}
#progress-bar .total-bar {
	font-size: .8em !important;	
}
#progress-bar .progress {
	height: 8px;
	font-size: 1%;
	margin-bottom: 0;
	overflow: hidden;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
		  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}
#progress-bar .progress-bar {
	float: left;
	width: 0;
	height: 100%;
	font-size: 12px;
	line-height: 20px;
	text-align: center;
	-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
		  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
	-webkit-transition: width 0.6s ease;
		  transition: width 0.6s ease;
}

/* :: Progress steps
----------------------------------------------- */

:root {
  --color-white: #fff;
  --color-black: #333;
  --color-gray: #75787b;
  --color-gray-light: #bbb;
  --color-gray-disabled: #e8e8e8;
  --color-green: #53a318;
  --color-green-dark: #383;
  --font-size-small: .65rem;
  --font-size-default: .75rem;
}

.progress-steps {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}
.progress-steps li {
  flex: 2;
  position: relative;
  padding: 0 0 0 0;
  font-size: var(--font-size-default);
  line-height: 1.5;
  color: var(--color-black);
  font-weight: 600;
  white-space: nowrap;
  overflow: visible;
  min-width: 0;
  text-align: center;	
  border-bottom: 4px solid var(--color-gray-disabled);
}
.progress-steps li.is-complete {
	  color: var(--color-white);
}
.progress-steps li.is-active {
	  color: var(--color-green);
}
.progress-steps li:first-child,
.progress-steps li:last-child {
  flex: 1;
}
.progress-steps li:first-child {
  text-align: left;
}
.progress-steps li:last-child {
  text-align: right;
}
.progress-steps li:before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-color: var(--color-gray-disabled);
  border-radius: 50%;
  border: 3px solid var(--color-white);
  position: absolute;
  left: calc(50% - 6px);
  bottom: -14px;
  z-index: 3;
  transition: all .2s ease-in-out;
}
.progress-steps li:first-child:before {
  left: 0;
}
.progress-steps li:last-child:before {
  right: 0;
  left: auto;
}
.progress-steps span {
	position: relative;
	margin: 0 auto;
	top:8px;
	left:9.5px;
	z-index: 30;
	cursor: default;
  transition: opacity .3s ease-in-out;
}
.progress-steps li:first-child span {
	left:12px;
}
.progress-steps li:last-child span {
  width: 200%;
  display: inline-block;
  position: absolute;
  left: calc(-100% - 11px);
}
.progress-steps li.is-complete i {
	margin-left: -2px;
}
/*
.progress-steps li:not(.is-active) span {
  opacity: 0;
}
*/
.progress-steps .is-complete:not(:first-child):after,
.progress-steps .is-active:not(:first-child):after {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  bottom: -2px;
  left: -50%;
  z-index: 2;
  border-bottom: 2px solid var(--color-green);
}
.progress-steps .is-complete:last-child:after,
.progress-steps .is-active:last-child:after {
  width: 200%;
  left: -100%;
}

.progress-steps .is-complete:before {
  background-color: var(--color-green);
}
.progress-steps .is-complete:hover:before {
  background-color: var(--color-green);
}
.progress-steps .is-active:before,
.progress-steps li:not(.is-complete):hover:before,
.progress-steps .is-hovered:before {
  background-color: var(--color-white);
  border-color: var(--color-green);
}
.progress-steps li:hover:before,
.progress-steps .is-hovered:before {
  transform: scale(1.33);
}
/*
.progress-steps li:hover span,
.progress-steps li.is-hovered span {
  opacity: 1;
}

.progress-steps:hover li:not(:hover) span {
  opacity: 0;
}
*/

.x-ray .progress-steps,
.x-ray .progress-steps li {
  border: 1px dashed red;
}

.progress-steps .has-changes {
  opacity: 1 !important;
}
.progress-steps .has-changes:before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  left: calc(50% - 4px);
  bottom: -20px;
  background-image: url('data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%208%208%22%3E%3Cpath%20fill%3D%22%23ed1c24%22%20d%3D%22M4%200l4%208H0z%22%2F%3E%3C%2Fsvg%3E');
}


/* :: Signature form
----------------------------------------------- */
#form-signatures hr {
	border-width: 4px;
}

/* Fonts */
#form-signatures .inner h1,
#form-signatures .inner h2 {
	text-transform: uppercase;
}

#form-signatures .local-data {
	height: calc(3.5rem + 2px) !important;
	padding: 1rem 0.75rem;
	margin-bottom: .4rem;
	text-align: left !important;	
	cursor: pointer !important;	
}
#form-signatures .local-data .float-start {
	line-height: 1rem;
}
#form-signatures .local-data .float-end small {
	font-size: .6rem;
	width: 40%;
	display:inline-block !important;
	float: right;
	text-align: right !important;
	padding: 1.5rem 0;
	text-decoration: underline;
}
#form-signatures .inner {
	padding: 10px 50px 40px;
	margin-bottom: 0px;
	-webkit-border-radius: 0 0 6px 6px;
	-moz-border-radius: 0 0 6px 6px;
	border-radius: 0 0 6px 6px;
}
#form-signatures .inner h1 {
	font-size: 2.8em;
	text-transform: none;
}
#form-signatures .inner h2 {
	font-size: 2em;
}
#signatures a:not(.btn) {
	font-weight: bold;
	text-decoration: underline;
}
#form-signatures .btn,
.bottomMenu-wrapper .btn {
	height: 50px;
	font-weight: bold;
	font-size: 18px;
	border: none;
	-webkit-border-radius: 3px 3px 3px 3px;
	-moz-border-radius: 3px 3px 3px 3px;
	border-radius: 3px 3px 3px 3px;	
	-o-transition:.5s !important;
	-ms-transition:.5s !important;
	-moz-transition:.5s !important;
	-webkit-transition:.5s !important;
	transition:.5s !important;		
}
#form-signatures .btn-submit,
.bottomMenu-wrapper .btn-submit{
	text-transform: uppercase;
	border: none;
}
#form-signatures .btn-twitter,
#form-signatures .btn-facebook,
#form-signatures .btn-copylink,
#form-signatures .btn-whatsapp,
#form-signatures .btn-telegram {
	background-size: 35px;
	display: block;
	border: none;
	width: 100%;
	margin: 10px 0;
	text-decoration: none;
	text-transform: uppercase;	
	font-size: 16px;
	padding-top: 13px;
}
#form-signatures .btn-donations {
	color: #FFFFFF !important;
	text-transform: uppercase;
	display: block;
	border: none;
	width: 100%;
	margin: 10px 0;
	text-decoration: none;
	font-size: 16px;
	padding-top: 16px;
	text-align: center;
}

#signatures small.privacy-text {
	padding: .5em 1.2em 1em;
	color: rgba(255,255,255,0.80) !important;
}
#signatures small.privacy-text a {
	text-decoration: underline !important;
	color: rgba(255,255,255,0.80) !important;	
}

.signature-xs-btn {
	display:none;
}

@media (max-width: 992px) {	
}
@media (max-width: 767px) {
	#form-signatures .inner {
		text-align:center !important;
		padding: 20px 20px 20px;
	}
	#form-signatures .sign-here h1 {
		font-size: 2.8rem;
		line-height: 3rem;		
		margin-top:0;
	}
	#form-signatures .controls {
		text-align:left !important;		
	}
	#form-signatures form .g-0 {
		margin-bottom: 0;
	}
	#form-signatures form .g-0 .col-md-6 {
		padding: 0 !important;
	}
	#form-signatures .signature-fields {
		display:none;
	}
	#form-signatures .signature-xs-btn {
		display:block;
	}
	/*
	#registration {
		margin-left: 0px;
		margin-top:-25px;
	}
	#form-registration .inner {
		text-align:center !important;
		padding: 20px 20px 20px;
	}
	*/
}