.configuration{
	padding-right: 3rem;
	h1{
		img{
			margin-right: 2rem;
		}
	}
	.volunteer{
		padding: 3rem 3rem 0.1rem;
		box-shadow: 0.2rem 0.4rem 1.3rem rgba(24, 24, 24, 0.07);
		background: #fff;
		h2{

		}
	}
	.yourcode{
		display: flex;
		justify-content: space-between;
		align-items: center;
		border: 0.1rem solid #c0c0c0;
		background: #f4f4f4;
		padding: 2rem;
		p{
			color: #606060;
			font: 1.4rem/2rem $font2;
			padding-right: 2rem;
		}
		&__generate{
			white-space: nowrap;
			span{
			font-size: 2.2rem;
			text-transform: uppercase;
			margin-right: 1.5rem;
			}
			button{
				display: inline-block;
				padding: 1rem 2rem;
				color: #fff;
				font: 1.5rem $font2;
				background: #ff7a05;
				cursor: pointer;
				&:hover{
					-webkit-box-shadow: 0px 5px 20px -5px rgba(0,0,0,0.57);
					box-shadow: 5px 40px -10px rgba(0,0,0,0.57);
					-webkit-transition: all 0.4s ease 0s;
					-o-transition: all 0.4s ease 0s;
					transition: all 0.4s ease 0s;
				}
			}
		}
	}
	.chart-block-wrap{
		display: flex;
		padding-top: 3rem;
		.chart-block{
			h3{
				font-size: 2.2rem;
			}
			&__item{
				display:flex;
				border: 0.1rem solid #c0c0c0;
				background: #fafafa;
				padding: 2.4rem 1.5rem 0;
			}
			.color-pucker{
				// display: flex;

			}
		}
	}
}

@media screen and (max-width: 992px){
.configuration{
	.yourcode{
		flex-direction: column;
		p{
			text-align: center;
			padding-right: 0;
			padding-bottom: 1.5rem;
		}
	}
}
}

@media screen and (max-width: 480px){
.configuration .yourcode__generate{
	white-space: normal;
	text-align: center;
	span{
		display: block;
		margin-right: 0;
	}
}
}