.wpforms-form .wpforms-title {
    font-size: 25px !important;
}

.wpforms-form .wpforms-title {
    color: #ffffff !important;
}

.wpforms-form .wpforms-description {
	font-size: 12px !important;
}

.wpforms-form .wpforms-description {
	color: #ffffff !important;
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

.text-white {
	color: #FFF !important;
}

.text-cyan {
	color: #53ddca !important;
	transition: all .2s ease-in-out;
}

a.text-cyan {
	text-decoration: underline;
}

a.text-cyan:hover,
a.text-cyan:focus {
	color: #d320ac !important;
}

.ebook-form-wrapper {
	width: 100%;
	max-width: 575px;
	background: linear-gradient(to bottom, #5f4595, #26d6dc);
	margin: 70px auto !important;
	border-radius: 1rem;
	padding: 1.5rem;
	box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

.ebook-form-wrapper h2 {
		font-size: 28px;
    line-height: 34px;
	  color: #04fdfd;
    text-align: center;
    font-weight: bold;
    margin-bottom: 1rem;
}

.ebook-form-wrapper p {
	color: #FFFFFF;
}

.ebook-form-wrapper p span {
	cursor: pointer;
}

.ebook-form-wrapper .name-container {
	display: flex;
	gap: 27px;
	flex-direction: column;
	margin-bottom: 27px;
}

.ebook-form-wrapper .name-container > p {
	padding: 0;
}

.checkbox-terms input[type="checkbox"],
.wpcf7-list-item label > input[type="checkbox"] {
  width: 1px;
	height: 1px;
	opacity: 0;
	position: absolute;
	z-index: -999;
}

.wpcf7-list-item {
	margin-left: 0;
}

.checkbox-terms input[type="checkbox"] + span,
.wpcf7-list-item label > input[type="checkbox"] +  span {
	display: flex;
	gap: 1rem;
	color: #FFF;
	position: relative;
	cursor: pointer;
}

.checkbox-terms input[type="checkbox"] + span:before,
.wpcf7-list-item label > input[type="checkbox"] +  span:before {
	content: '';
	width: 1rem;
	height: 1rem;
	background: #FFF;
	display: inline-block;
	flex: none;
	margin-top: 0.125rem;
	transition: all .2s ease-in-out;
}

.checkbox-terms input[type="checkbox"]:checked + span:before,
.wpcf7-list-item label > input[type="checkbox"]:checked +  span:before {
	background: #f912a1;
}

.checkbox-terms input[type="checkbox"] + span:after,
.wpcf7-list-item label > input[type="checkbox"] +  span:after {
	content: " ";
	width: 0.25rem;
	height: 0.675rem;
	border-right: 2px solid white;
	border-bottom: 2px solid white;
	display: inline-block;
	position: absolute;
	transform: rotate(-45deg);
	left: 0.3rem;
	top: 0.075rem;
	transition: all .2s ease-in-out;
	opacity: 0;
}

.checkbox-terms input[type="checkbox"]:checked + span:after,
.wpcf7-list-item label > input[type="checkbox"]:checked +  span:after {
	transform: rotate(45deg);
	opacity: 1;
}

body[data-button-style^="rounded"].ascend .container-wrap .ebook-form-wrapper input[type="submit"],
body[data-button-style^="rounded"] .ebook-form-wrapper input[type=submit],
.wpcf7-form input[type=submit] {
  background-color: #FFF;
  color: #333;
	padding-top: 16px!important;
  padding-bottom: 16px!important;
	border-radius: 0.25rem !important;
}

body[data-button-style^="rounded"].ascend .container-wrap .ebook-form-wrapper input[type="submit"]:hover,
body[data-button-style^="rounded"] .ebook-form-wrapper input[type=submit]:hover,
.wpcf7-form input[type=submit]:hover {
  background-color: #d320ac;
  color: #FFF;
}

.wpcf7 input[type=submit]:disabled,
.wpcf7 input[type=submit]:hover:disabled {
	background: lightgrey;
	color: grey;
	box-shadow: none !important;
	transform: none !important;
}

.submit-form-fix > p {
	display: flex;
	justify-content: center;
	position: relative;
}

.wpcf7 > p {
	position: relative;
}

.submit-form-fix > p .wpcf7-spinner,
.wpcf7-spinner {
	/*display: none;*/
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.wpcf7 form .wpcf7-response-output {
  padding: 1em 1em;
	text-align: center;
}

.wpcf7 form.sent .wpcf7-response-output {
	border-color: #46b450;
	background: #46b450;
	color: white;
}

.select2-container.select2-container--default.select2-container--open:not(.select2) {
	margin-top: 2.25rem;
}

/*.select2-search--dropdown.select2-search--hide {
    display: block;
    opacity: 0;
    pointer-events: none;
    height: 1px;
}*/

.wpcf7-not-valid-tip {
	background: transparent;
	box-shadow: none !important;
	color: red !important;
	font-size: small !important;
	padding-left: 0 !important;
}

.wpcf7-not-valid {
	border-color: red !important;
}


.wpcf7-valid {
	border-color: green !important;
}

.checkbox-terms {
	color: #FFF;
	display: flex;
	align-items: start;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.checkbox-terms span {
	color: #FFF;
	cursor: pointer;
}

.checkbox-terms a {
	color: #53ddca !important;
  text-decoration: underline;
	transition: all .2s ease-in-out;
}

.checkbox-terms a:hover,
.checkbox-terms a:focus {
	color: #FFF !important;
}

@media (min-width: 768px) {
	.ebook-form-wrapper .name-container {
		flex-direction: row;
	}
	
	.ebook-form-wrapper {
		border-radius: 2rem;
		padding: 3rem;
	}

	.ebook-form-wrapper h2 {
			font-size: 42px;
			line-height: 48px;
			margin-bottom: 1.5rem;
	}
}