.fasttestimonial-wrap {
	max-width: 800px;
	margin: auto;
	padding: 20px;
	box-sizing: border-box;
	background: #fff;
	margin-top: 15px;
	border-radius: 10px;
	border: 2px solid #ddd;
}
.fasttestimonial-wrap h1{
	padding-bottom: 15px;
}
.fasttestimonial-wrap label{
	padding-bottom: 10px;
	font-weight: bold;
	margin-right: 15px;
}
.fasttestimonial-wrap input{
	margin-bottom: 15px;
}
.fasttestimonial-wrap input.cp-basic{
	cursor: pointer;
}
.fasttestimonial-wrap input[type="radio"]{
	margin-bottom: 5px;
}

.copy_shortcode{
	margin-bottom: 30px;
}
.copy_shortcode h4{
	margin: 0;
	padding-bottom: 5px;
}
.copy_shortcode input{
	margin-bottom: 0px;
}
.copy_shortcode p {
	margin: 0px;
	margin-bottom: 0px;
	margin-top: 5px;
	display: inline-block;
	padding: 5px 15px;
	background: #2196F3;
	color: #fff;
	border-radius: 6px;
	cursor: pointer;
}

/* switch */
.switch {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 28px;
	padding-bottom: 0px !important;
}

.switch input { 
	opacity: 0;
	width: 0;
	height: 0;
}

.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	-webkit-transition: .4s;
	transition: .4s;
}

.slider::before {
	position: absolute;
	content: "";
	height: 18px;
	width: 26px;
	left: 4px;
	bottom: 5px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
}

input:checked + .slider {
 	background-color: #2196F3;
}

input:focus + .slider {
 	box-shadow: 0 0 1px #2196F3;
 }

input:checked + .slider:before {
	-webkit-transform: translateX(26px);
	-ms-transform: translateX(26px);
	transform: translateX(26px);
}