/* include reset */
@import "/css/reset.css";

body {
	background-color: #d9d9d9;
	color: #cccccc;
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	margin: 0;
	padding: 0;
	height: 100%;
	font-size: 16px;
	line-height: 20px;
}
body {
	position: relative;
    width: 100%;
    height: 100%;
}
canvas {
	display: block;
	margin: 0;
	position: relative;
	background: transparent;
}

/* font weights */
.medium {
	font-weight: 500;
}
.medium_italic {
	font-weight: 500;
	font-style: italic;
}
.bold {
	font-weight: 700;
}
.extra_bold {
	font-weight: 800;
}
.black {
	font-weight: 900;
}

/* website not holding page */
a {
	text-decoration: underline;
}
a:hover {
	text-decoration: none;
}
h2 {
	color: #FFF;
	font-size: 40px;
	font-weight: 900;
	line-height: 50px;
	margin-bottom: 15px;
}
h3 {
	font-size: 25px;
	font-weight: 900;
	line-height: 30px;
	margin-bottom: 15px;
}
h4 {
	font-weight: 800;
	line-height: 20px;
	margin-bottom: 15px;
}
p {
	margin-bottom: 15px;
}
b {
	font-weight: 800;
}

.container {
	padding: 30px 20px;
	text-align: left;
	margin: 0 auto;
	max-width: 1440px;
}

/* warning box */
.warning {
	background: #E7004C;
	color: #FFF;
	padding: 20px;
	z-index: 1;
	position:fixed;
	margin: 0 auto;
	top:10px;
	left:0;
	right:0;
	box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
	min-width: 10%;
	max-width: 20%;
}

/* Customize a checkbox, the label (the container) */
	.checkbox-container {
		line-height: 25px;
		display: inline-block;
		position: relative;
		padding-left: 35px;
		margin-bottom: 20px;
		-webkit-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
	}

	/* Hide the browser's default checkbox */
	.checkbox-container input {
		position: absolute;
		opacity: 0;
		cursor: pointer;
		height: 0;
		width: 0;
	}

	/* Create a custom checkbox */
	.checkmark {
		cursor: pointer;
		position: absolute;
		top: 0;
		left: 0;
		height: 25px;
		width: 25px;
		background-color: none;
		border: 2px solid #FFF;
	}
	.checkmark.error {
		border: 2px solid #E7004C;
	}

	/* On mouse-over, add a grey background color */
	.checkbox-container:hover input ~ .checkmark {
		background-color: none;
	}

	/* When the checkbox is checked, add a blue background */
	.checkbox-container input:checked ~ .checkmark {
		border: 2px solid #FFF;
	}

	/* Create the checkmark/indicator (hidden when not checked) */
	.checkmark:after {
		content: "";
		position: absolute;
		display: none;
	}

	/* Show the checkmark when checked */
	.checkbox-container input:checked ~ .checkmark:after {
		display: block;
	}

	/* Style the checkmark/indicator */
	.checkbox-container .checkmark:after {
		left: 9px;
		top: 5px;
		width: 5px;
		height: 10px;
		border: solid white;
		border-width: 0 3px 3px 0;
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		transform: rotate(45deg);
	}

/* drop down */
	.drop-down {
		background: none;
		border: 2px solid #FFF;
		color: #FFF;
		display: inline-block;
	    font-size: 14px;
	    height: 40px;
	    line-height: 36px;
	    margin: 0 20px 30px 0;
	    width: 47%;
	    position: relative;
	}
	.drop-down.goal.error,
	.drop-down.country.error {
		border: 2px solid #E7004C;
	}
	.drop-down span {
		display: inline-block;
    	width: 100%;
    	padding: 0 40px 0 10px;
    	height: 36px;
    	overflow-x: hidden;
    	overflow-y: hidden;
	}
	.drop-down.inactive {
		opacity: 0.5;
	}
	.drop-down .material-icons {
		float: left;
		font-size: 30px;
		height: 36px;
		line-height: 36px;
		width: 36px;
	}
	.drop-down .drop-down-link {
		height: 36px;
		position: absolute;
		right: 0;
		top: 0;
		transition: all 0.3s ease;
		width: 36px;
	}
	.drop-down .drop-down-link i.material-icons {
		color: #FFFFFF;
		font-size: 40px;
		height: 36px;
		line-height: 36px;
		transition: all 0.3s ease;
		width: 40px;
	}
	.drop-down .drop-down-link:hover {
		opacity: 0.7;
	}
	.drop-down .drop-down-link.up i {
		transform: rotate(180deg);
	}
	.drop-down .results {
		background: #FFFFFF;
		border: 2px solid #FFFFFF;
		left: -2px;
		position: absolute;
		top: 38px;
		width: 100%;
		box-sizing: content-box;
		z-index: 12;
	}
	.drop-down .results ul {
		margin: 0;
		padding: 0;
		list-style-type: none;
		width: 100%;
	}
	.drop-down .results ul li a {
		box-sizing: border-box;
		font-size: 16px;
		height: 42px;
		padding: 10px;
		line-height: 24px;
		display: inline-block;
		text-decoration: none;
		color: #646E70;
		width: 100%;
	}
	.drop-down .results ul li:hover {
		background: #F5F5F5;
	}
	.drop-down .results ul li a span {
		color: #FFFFFF;
	}
	.drop-down .results ul li i {
		color: #FFFFFF;
		position: absolute;
		right: 5px;
		top: 10px;
	}
	.drop-down .results ul {
		max-height: 300px;
		overflow: hidden;
		overflow-y: auto;
	}
	.drop-down .results ul li {
		position: relative;
	}
	@media only screen and (max-width: 540px) {
		.quote-block label {
			width: 100%;
		}
	}
	@media only screen and (max-width: 1368px) {
		.drop-down {
			margin-right: 0;
			width: 100%;
		}
		.recorder .select-record {
			padding-right: 20px;
		}
	}

/* header */
	header {
		background: #FFF;
		height: 80px;
		width: 100%;
	}
	header .container {
		padding: 20px;
	}

/* recorder */
	.recorder .container {
		padding: 30px 0 30px 20px;
	}
	.recorder {
		background-color: #d9d9d9;
		color: #FFF;
		padding-bottom: 180px;
		text-align: center;
		width: 100%;
	}
	.recorder .container {
		text-align: center;
	}
	.recorder .left,
	.recorder .right {
		display: inline-block;
		float: left;
		margin-bottom: 90px;
		text-align: left;
		width: 50%;
	}
	.recorder .left .voices {
		margin-bottom: 20px;
	}
	.recorder .checkbox-container {
		color: #000;
	}
	.recorder .checkbox-container a {
		font-size: 16px;
		color: #000;
		font-style: italic;
	}
	.recorder .record-interface {
		text-align: center;
		width: 100%;
	}
	.record-progress-ring-button {
		position: relative;
		text-align: center;
		margin-bottom: 20px;
	}
	.record-progress-ring-button .record-button {
		background: none;
		border: none;
		cursor: pointer;
		left: 50%;
		position: absolute;
	    top: 50%;
    	transform: translate(-49%,-47%);
    	z-index: 10;
    	margin: 0;
    	padding: 0;
	}
	.record-button:disabled {
		opacity: 0.5;
	}
	.record-progress-ring-button .record-button .material-icons {
		font-size: 100px;
		transition: font-size 0.833s;
	}
	.recorder .record-interface .progress-ring {
		display: inline-block;
		height: 384px;
		margin: 0 auto;
		width: 384px;
		-webkit-backface-visibility: hidden;
		-moz-backface-visibility:    hidden;
		-ms-backface-visibility:     hidden;
		-webkit-transform: translate3d(0, 0, 0);
	}
	.record-progress-ring-button .record-button .countdown {
		background: none;
		display: none;
		font-family: 'Poppins', sans-serif;
		font-weight: 600;
	    font-size: 100px;
	    position: relative;
	    z-index: 10;
	    top: 2px;
	}
	#submit-recording,
	#record-again {
		background: none;
		border: 2px solid #FFF;
		color: #FFF;
		display: inline-block;
		height: 40px;
		line-height: 36px;
		margin: 0 20px 20px 0;
		text-decoration: none;
		width: 180px;
	}
	#recordingsList {
    	align-items: center;
	}
	#recordingsList audio {
		display: block;
		margin: 0 auto 20px auto;
	}
	.recorder .right .countdown-cop {
		background: url('../img/side_paper.png') 50% 50% / cover;
		color: #000;
		font-size: 14px;
		font-weight: 500;
		line-height: 18px;
		margin-top: 100px;
		min-height: 300px;
		padding: 50px 60px 100px 60px;
		position: relative;
		text-align: left;
		width: 100%;
	}
	.recorder .right .countdown-cop .stickers {
		background: url('../img/stickers_group.png') top left no-repeat;
		display: inline-block;
		height: 213px;
		position: absolute;
		right: 20px;
		top: -120px;
		width: 211px;
	}
	.recorder .right .day-countdown {
		display: inline-block;
		float: left;
		font-size: 10px;
		height: 110px;
		margin: 0 30px 20px 0;
		width: 110px;
	}
	.recorder .right p {
		padding-right: 20px;
	}
	.recorder a.read-more {
		clear: both;
		display: inline-block;
		font-size: 25px;
		position: relative;
		text-decoration: none;
		text-align: center;
		width: 100%;
	}
	.recorder a.read-more:after {
		font-family: 'Material Icons';
		font-size: 60px;
		font-weight: 900;
		line-height: 40px;
		content: "\e313";
		display: inline-block;
		height: 60px;
        width: 100%;
	}
	.recorder .thankyou {
		display: inline-block;
		padding-right: 20px;
		text-align: left;
		width: 100%;
	}
	.recorder .thankyou h2 {
		margin-bottom: 5px;
	}
	.recorder .thankyou h3 {
		color: #FFF;
		margin-bottom: 5px;
	}
	.recorder .thankyou .stickers-holder {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.recorder .thankyou .left-box,
	.recorder .thankyou .right-box {
		border:  2px solid #FFF;
		display: inline-block;
		float: left;
		margin-bottom: 30px;
		min-height: 200px;
		padding: 30px;
		width: 47%;
	}
	.recorder .thankyou .right-box,
	.recorder .thankyou .left-box {
		font-size: 20px;
	}
	.recorder .thankyou .left-box p {
		margin-bottom: 8px;
	}
	.recorder .thankyou .left-box .goal {
		font-weight: 800;
	}
	.recorder .thankyou .left-box b {
		font-weight: 800;
	}
	.recorder .thankyou .left-box .normal {
		font-weight: 500;
	}
	.recorder .thankyou .share-icons {
		float: right;
	}
	.recorder .thankyou .share-icons .facebook {
		background: url('/img/facebook.svg');
		display: inline-block;
		height: 25px;
		width: 25px;
	}
	.recorder .thankyou .share-icons .instagram {
		background: url('/img/instagram.svg');
		display: inline-block;
		height: 25px;
		width: 25px;
	}
	.recorder .thankyou .share-icons .twitter {
		background: url('/img/twitter.svg');
		display: inline-block;
		height: 25px;
		width: 25px;
	}
	@media only screen and (max-width: 1150px){
		.recorder .right .countdown-cop {
			padding: 100px 60px 100px 60px;
		}
	}
	@media only screen and (max-width: 1050px){
		.recorder .thankyou .left-box,
		.recorder .thankyou .right-box {
			width: 100%;
		}
	}
	@media only screen and (max-width: 900px){
		.recorder {
			padding-bottom: 240px;
		}
		.recorder .container {
			padding: 30px 0;
		}
		.recorder .container .left {
			padding-left: 20px;
		}
		.recorder .right p,
		.recorder .right h4 {
		    padding-left: 20px;
		}
		.recorder .thankyou {
			padding-left: 20px;
		}
	}
	@media only screen and (max-width: 870px){
		.recorder .left,
		.recorder .right {
			width: 100%;
		}
	}
	@media only screen and (max-width: 860px){
		.recorder .right .countdown-cop {
			padding: 100px 20px 100px 60px;
		}
		.recorder .thankyou .left-box,
		.recorder .thankyou .right-box {
			width: 100%;
		}
	}
	@media only screen and (max-width: 600px){
		.recorder {
			padding-bottom: 300px;
		}
		.recorder .right .countdown-cop {
			padding: 100px 20px 150px 60px;
		}
	}
	@media only screen and (max-width: 530px){
		.recorder .thankyou .left-box img,
		.recorder .thankyou .right-box img {
			width: 100%;
		}
	}
	/* recorder section from forest for change */
		#recorder label {
			display: block;
			font-size: 14px;
			margin: 0 auto 15px auto;
			max-width: 620px;
			text-align: left;
		}
		#recorder p {
			margin: 0 auto 30px auto;
			max-width: 1071px;
		}

		.record-box {
			display: none;
		}

/* goals */
	.goals {
		background: url(../img/grey-paper.png) 50% 100% / cover #ce5b77;
		padding-bottom: 130px;
		width: 100%;
	}
	.goals h2 {
		color: #e5243b;
	}
	.goals p {
		color: #000;
	}
	.goals .goals-container {
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
	}
	.goals .goals-container img {
		margin: 0 71px 71px 0;
	}
	.goals .goals-container span.opacitated {
		opacity: 0.4;
	}
	.goals .goals-container img.sticker {
		margin: 0 0 71px 0;
	}
	@media only screen and (max-width: 850px){
		.goals .goals-container img {
			margin: 0 30px 30px 0;
		}
	}
	@media only screen and (max-width: 581px){
		.goals .goals-container {
			justify-content: space-between;
			margin: 0;
			padding: 0 0 40px 0;
		}
	}
	.tooltip_templates {
		display: none;
	}
	.tooltipster-base h5 {
		left: 20px;
		position: absolute;
		top: 35px;
		display: inline-block;
		font-size: 50px;
	}
	#tooltip-1 h5,
	#tooltip-1 .heading {
		color: #e5243b;
	}
	#tooltip-2 h5,
	#tooltip-2 .heading {
		color: #dda63a;
	}
	#tooltip-3 h5,
	#tooltip-3 .heading {
		color: #4c9f38;
	}
	#tooltip-4 h5,
	#tooltip-4 .heading {
		color: #c5192d;
	}
	#tooltip-5 h5,
	#tooltip-5 .heading {
		color: #ff3a21;
	}
	#tooltip-6 h5,
	#tooltip-6 .heading {
		color: #26bde2;
	}
	#tooltip-7 h5,
	#tooltip-7 .heading {
		color: #fcc30b;
	}
	#tooltip-8 h5,
	#tooltip-8 .heading {
		color: #a21942;
	}
	#tooltip-9 h5,
	#tooltip-9 .heading{
		color: #fd6925;
	}
	#tooltip-10 h5,
	#tooltip-10 .heading {
		color: #dd1367;
	}
	#tooltip-11 h5,
	#tooltip-11 .heading {
		color: #fd9d24;
	}
	#tooltip-12 h5,
	#tooltip-12 .heading {
		color: #bf8b2e;
	}
	#tooltip-13 h5,
	#tooltip-13 .heading {
		color: #3f7e44;
	}
	#tooltip-14 h5,
	#tooltip-14 .heading {
		color: #0a97d9;
	}
	#tooltip-15 h5,
	#tooltip-15 .heading {
		color: #56c02b;
	}
	#tooltip-16 h5,
	#tooltip-16 .heading {
		color: #00689d;
	}
	#tooltip-17 h5,
	#tooltip-17 .heading {
		color: #19486a;
	}

/* countdown */
	.countdown {
		background: url(../img/pink-paper.png) 50% 100% / cover #7b1e5d;
		color: #000;
		padding-bottom: 130px;
		width: 100%;
	}
	.countdown .container {
		padding: 0 20px 30px 20px;
	}
	.countdown h2 {
		font-size: 40px;
	}
	.countdown h3 {
		color: #8e0d26;
		font-size: 25px;
	}
	.countdown .month-day-countdown {
		margin-bottom: 30px;
	}
	@media only screen and (max-width: 931px){
		.countdown {
			position: relative;
			top: -100px;
		}
	}

/* footer */
	footer {
		background-color: #7b1e5d;
		padding-bottom: 200px;
		position: relative;
		text-align: left;
		width: 100%;
		z-index: 2;
	}
	footer h2 {
		display: inline-block;
		float: left;
		margin-bottom: 50px;
	}
	footer p {
		clear: both;
		float: left;
		position: relative;
		top: -150px;
		width: 100%;
	}
	footer .sticker {
		display: inline-block;
		float: right;
		position: relative;
		top: -160px;
	}
	.footer-logos {
		background-color: #fff;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		padding: 20px;
		position: relative;
		top: -100px;
		width: 100%;
	}
	.footer-logos img {
		align-self: center;
		margin: 10px;
	}
	@media only screen and (max-width: 931px){
		footer {
			position: relative;
			top: -100px;
		}
	}
	@media only screen and (max-width: 740px){
		footer .sticker {
			clear: both;
			float: left;
			top: 0;
		}
		.footer-logos,
		footer p {
			top: 0;
		}
	}



/* mobile css to copy */

	@media only screen and (max-width: 1070px){

	}