body.stop-scrolling {
	min-height: 100%;
	overflow-y: auto;
}

body.stop-scrolling.wp-admin {
	min-height: calc(100vh + 100px);
}

.sweet-overlay {
	background-color: black;
	/* IE8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
	/* IE8 */
	background-color: rgba(0, 0, 0, 0.7);
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	display: none;
	z-index: 10000;
}

.sweet-alert,
.sweet-alert * {
	box-sizing: border-box;
}

.sweet-alert {
	background-color:#fff;
	width: 550px;
	padding: 20px;
	border-radius: 5px;
	text-align: center;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -275px;
	margin-top: -200px;
	display: none;
	z-index: 99999;
}

.wp-admin .sweet-alert {
	width: 714px;
	padding: 20px 90px 40px;
	margin-top: -15% !important;
	margin-left: -357px;
}

@media all and (max-width: 540px) {
	.sweet-alert {
		width: auto;
		margin-left: 0;
		margin-right: 0;
		left: 15px;
		right: 15px;
	}
}

@media (max-width:991px) {
	.wp-admin .sweet-alert {
		padding: 20px;
		width: calc(100% - 30px);
		margin-left: 15px;
	}
}

.sweet-alert .sweet-alert-wrap {
	position: relative;
}

.sweet-alert .sweet-alert-wrap .sa-confirm-button-container {
	position: static;
}

body:not(.wp-admin) .sweet-alert .sa-button-container {
	height: 0;
}

.wp-admin .sweet-alert .sa-button-container {
	display: flex;
  justify-content: center;
}

.wp-admin .sweet-alert .sa-button-container .cancel {
	margin-right: 25px;
	background-color: #3167f6 !important;
}

.wp-admin .sweet-alert .sa-button-container .confirm {
	background-color: #57be72 !important;
}

.wp-admin .sweet-alert .sa-button-container button {
	border-radius: 5px;
	padding: 10px 40px;
}

@media all and (max-width: 540px) {
	.wp-admin .sweet-alert .sa-button-container button {
		padding: 10px 22px;
		font-size: 14px !important;
	}
}

.wp-admin .sweet-alert .sa-confirm-button-container {
	width: auto;
}

.sweet-alert h2 {
	color: #2a2a2d;
	font-size: 30px;
	text-align: center;
	font-weight: 600;
	text-transform: none;
	position: relative;
	margin: 25px 0 15px;
	padding: 0;
	line-height: 40px;
	display: block;
}

.sweet-alert p {
	color: #2a2a2d;
	font-size: 18px;
	text-align: center;
	font-weight: 400;
	position: relative;
	text-align: inherit;
	float: none;
	margin: 0;
	padding: 0;
	line-height: 1.6;
}

.sweet-alert p code {
	color: #000;
}

.sweet-alert fieldset {
	border: none;
	position: relative;
}

.sweet-alert .sa-error-container {
	background-color: #f1f1f1;
	margin-left: -17px;
	margin-right: -17px;
	overflow: hidden;
	padding: 0 10px;
	max-height: 0;
	webkit-transition: padding 0.15s, max-height 0.15s;
	transition: padding 0.15s, max-height 0.15s;
}

.sweet-alert .sa-error-container.show {
	padding: 10px 0;
	max-height: 100px;
	webkit-transition: padding 0.2s, max-height 0.2s;
	transition: padding 0.25s, max-height 0.25s;
}

.sweet-alert .sa-error-container .icon {
	display: inline-block;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background-color: #ea7d7d;
	color: white;
	line-height: 24px;
	text-align: center;
	margin-right: 3px;
}

.sweet-alert .sa-error-container p {
	display: inline-block;
}

.sweet-alert .sa-input-error {
	position: absolute;
	top: 29px;
	right: 26px;
	width: 20px;
	height: 20px;
	opacity: 0;
	-webkit-transform: scale(0.5);
	transform: scale(0.5);
	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	-webkit-transition: all 0.1s;
	transition: all 0.1s;
}

.sweet-alert .sa-input-error::before, .sweet-alert .sa-input-error::after {
	content: "";
	width: 20px;
	height: 6px;
	background-color: #f06e57;
	border-radius: 3px;
	position: absolute;
	top: 50%;
	margin-top: -4px;
	left: 50%;
	margin-left: -9px;
}

.sweet-alert .sa-input-error::before {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.sweet-alert .sa-input-error::after {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.sweet-alert .sa-input-error.show {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}

.sweet-alert input {
	width: 100%;
	box-sizing: border-box;
	border-radius: 3px;
	border: 1px solid #d7d7d7;
	height: 43px;
	margin-top: 10px;
	margin-bottom: 17px;
	font-size: 18px;
	box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.06);
	padding: 0 12px;
	display: none;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.sweet-alert input:focus {
	outline: none;
	box-shadow: 0px 0px 3px #c4e6f5;
	border: 1px solid #b4dbed;
}

.sweet-alert input:focus::-moz-placeholder {
	transition: opacity 0.3s 0.03s ease;
	opacity: 0.5;
}

.sweet-alert input:focus:-ms-input-placeholder {
	transition: opacity 0.3s 0.03s ease;
	opacity: 0.5;
}

.sweet-alert input:focus::-webkit-input-placeholder {
	transition: opacity 0.3s 0.03s ease;
	opacity: 0.5;
}

.sweet-alert input::-moz-placeholder {
	color: #bdbdbd;
}

.sweet-alert input::-ms-clear {
	display: none;
}

.sweet-alert input:-ms-input-placeholder {
	color: #bdbdbd;
}

.sweet-alert input::-webkit-input-placeholder {
	color: #bdbdbd;
}

.sweet-alert.show-input input {
	display: block;
}

.sweet-alert .sa-confirm-button-container {
	width: 100%;
	display: inline-block;
	position: relative;
}

.sweet-alert .la-ball-fall {
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -27px;
	margin-top: 4px;
	opacity: 0;
	visibility: hidden;
}

.sweet-alert button {
	color: white;
	border: none;
	box-shadow: none;
	font-size: 18px;
	font-weight: 500;
	padding: 10px 15px;
	margin: 0;
	cursor: pointer;
	text-transform: none;
	cursor: pointer;
	text-transform: none;
}

.sweet-alert-custom-close {
	width: 50px !important;
  height: 50px !important;
	position: absolute !important;
	top: -14px !important;
	right: -22px !important;
	border-radius: 50% !important;
	display: inline-block !important;
	background-color: rgb(140, 212, 245) !important;
}

body:not(.wp-admin) .sweet-alert .confirm {
	display: none !important;
}

.sweet-alert .sweet-alert-embed {
	margin: 20px 0;
	position: relative;
	width: 100%;
	padding-bottom: 56%;
}

.sweet-alert .sweet-alert-embed > div {
	position: absolute !important;
	padding-bottom: 0 !important;
	height: 100% !important;
	width: 100%;
}

.sweet-alert .sweet-alert-embed iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.sweet-alert .sweet-alert-buttons {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.sweet-alert .sweet-alert-buttons a {
	font-size: 16px;
	font-weight: 600;
	padding: 10px 15px;
	border-radius: 4px;
	text-decoration: none;
	transition: .2s linear filter;
	color: #000;
}

.sweet-alert .sweet-alert-buttons a:hover,
.sweet-alert .sweet-alert-buttons a:active,
.sweet-alert .sweet-alert-buttons a:focus {
	filter: brightness(90%);
	color: #fff;
}

.sweet-alert .sweet-alert-buttons a:not(:last-child) {
	margin-right: 20px;
}

.sweet-alert button.cancel {
	background-color: #C1C1C1;
}

.sweet-alert button.cancel:hover {
	background-color: #b9b9b9;
}

.sweet-alert button.cancel:active {
	background-color: #a8a8a8;
}

.sweet-alert button.cancel:focus {
	box-shadow: rgba(197, 205, 211, 0.8) 0px 0px 2px, rgba(0, 0, 0, 0.0470588) 0px 0px 0px 1px inset !important;
}

.sweet-alert button[disabled] {
	opacity: .6;
	cursor: default;
}

.sweet-alert button.confirm[disabled] {
	color: transparent;
}

.sweet-alert button.confirm[disabled] ~ .la-ball-fall {
	opacity: 1;
	visibility: visible;
	transition-delay: 0s;
}

.sweet-alert button::-moz-focus-inner {
	border: 0;
}

.sweet-alert[data-has-cancel-button=false] button {
	box-shadow: none !important;
}

.sweet-alert[data-has-confirm-button=false][data-has-cancel-button=false] {
	padding-bottom: 40px;
}

.sweet-alert .sa-icon {
	width: 80px;
	height: 80px;
	border: 4px solid gray;
	-webkit-border-radius: 40px;
	border-radius: 40px;
	border-radius: 50%;
	margin: 20px auto;
	padding: 0;
	position: relative;
	box-sizing: content-box;
}

.sweet-alert .sa-icon.sa-error {
	border-color: #F27474;
}

.sweet-alert .sa-icon.sa-error .sa-x-mark {
	position: relative;
	display: block;
}

.sweet-alert .sa-icon.sa-error .sa-line {
	position: absolute;
	height: 5px;
	width: 47px;
	background-color: #F27474;
	display: block;
	top: 37px;
	border-radius: 2px;
}

.sweet-alert .sa-icon.sa-error .sa-line.sa-left {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	left: 17px;
}

.sweet-alert .sa-icon.sa-error .sa-line.sa-right {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	right: 16px;
}

.sweet-alert .sa-icon.sa-warning {
	border-color: #F8BB86;
}

.sweet-alert .sa-icon.sa-warning .sa-body {
	position: absolute;
	width: 5px;
	height: 47px;
	left: 50%;
	top: 10px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	margin-left: -2px;
	background-color: #F8BB86;
}

.sweet-alert .sa-icon.sa-warning .sa-dot {
	position: absolute;
	width: 7px;
	height: 7px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	margin-left: -3px;
	left: 50%;
	bottom: 10px;
	background-color: #F8BB86;
}

.sweet-alert .sa-icon.sa-info {
	border-color: #C9DAE1;
}

.sweet-alert .sa-icon.sa-info::before {
	content: "";
	position: absolute;
	width: 5px;
	height: 29px;
	left: 50%;
	bottom: 17px;
	border-radius: 2px;
	margin-left: -2px;
	background-color: #C9DAE1;
}

.sweet-alert .sa-icon.sa-info::after {
	content: "";
	position: absolute;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	margin-left: -3px;
	top: 19px;
	background-color: #C9DAE1;
	left: 50%;
}

.sweet-alert .sa-icon.sa-success {
	border-color: #A5DC86;
}

.wp-admin .sweet-alert .sa-icon.sa-success {
	display: none !important;
}

.sweet-alert .sa-icon.sa-success::before, .sweet-alert .sa-icon.sa-success::after {
	content: '';
	-webkit-border-radius: 40px;
	border-radius: 40px;
	border-radius: 50%;
	position: absolute;
	width: 60px;
	height: 120px;
	background: white;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.sweet-alert .sa-icon.sa-success::before {
	-webkit-border-radius: 120px 0 0 120px;
	border-radius: 120px 0 0 120px;
	top: -7px;
	left: -33px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transform-origin: 60px 60px;
	transform-origin: 60px 60px;
}

.sweet-alert .sa-icon.sa-success::after {
	-webkit-border-radius: 0 120px 120px 0;
	border-radius: 0 120px 120px 0;
	top: -11px;
	left: 30px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transform-origin: 0px 60px;
	transform-origin: 0px 60px;
}

.sweet-alert .sa-icon.sa-success .sa-placeholder {
	width: 80px;
	height: 80px;
	border: 4px solid rgba(165, 220, 134, 0.2);
	-webkit-border-radius: 40px;
	border-radius: 40px;
	border-radius: 50%;
	box-sizing: content-box;
	position: absolute;
	left: -4px;
	top: -4px;
	z-index: 2;
}

.sweet-alert .sa-icon.sa-success .sa-fix {
	width: 5px;
	height: 90px;
	background-color: white;
	position: absolute;
	left: 28px;
	top: 8px;
	z-index: 1;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.sweet-alert .sa-icon.sa-success .sa-line {
	height: 5px;
	background-color: #A5DC86;
	display: block;
	border-radius: 2px;
	position: absolute;
	z-index: 2;
}

.sweet-alert .sa-icon.sa-success .sa-line.sa-tip {
	width: 25px;
	left: 14px;
	top: 46px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.sweet-alert .sa-icon.sa-success .sa-line.sa-long {
	width: 47px;
	right: 8px;
	top: 38px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.sweet-alert .sa-icon.sa-custom {
	background-size: contain;
	border-radius: 0;
	border: none;
	background-position: center center;
	background-repeat: no-repeat;
}

/*
 * Animations
 */
@-webkit-keyframes showSweetAlert {
	0% {
		transform: scale(0.7);
		-webkit-transform: scale(0.7);
	}

	45% {
		transform: scale(1.05);
		-webkit-transform: scale(1.05);
	}

	80% {
		transform: scale(0.95);
		-webkit-transform: scale(0.95);
	}

	100% {
		transform: scale(1);
		-webkit-transform: scale(1);
	}
}

@keyframes showSweetAlert {
	0% {
		transform: scale(0.7);
		-webkit-transform: scale(0.7);
	}

	45% {
		transform: scale(1.05);
		-webkit-transform: scale(1.05);
	}

	80% {
		transform: scale(0.95);
		-webkit-transform: scale(0.95);
	}

	100% {
		transform: scale(1);
		-webkit-transform: scale(1);
	}
}

@-webkit-keyframes hideSweetAlert {
	0% {
		transform: scale(1);
		-webkit-transform: scale(1);
	}

	100% {
		transform: scale(0.5);
		-webkit-transform: scale(0.5);
	}
}

@keyframes hideSweetAlert {
	0% {
		transform: scale(1);
		-webkit-transform: scale(1);
	}

	100% {
		transform: scale(0.5);
		-webkit-transform: scale(0.5);
	}
}

@-webkit-keyframes slideFromTop {
	0% {
		top: 0%;
	}

	100% {
		top: 50%;
	}
}

@keyframes slideFromTop {
	0% {
		top: 0%;
	}

	100% {
		top: 50%;
	}
}

@-webkit-keyframes slideToTop {
	0% {
		top: 50%;
	}

	100% {
		top: 0%;
	}
}

@keyframes slideToTop {
	0% {
		top: 50%;
	}

	100% {
		top: 0%;
	}
}

@-webkit-keyframes slideFromBottom {
	0% {
		top: 70%;
	}

	100% {
		top: 50%;
	}
}

@keyframes slideFromBottom {
	0% {
		top: 70%;
	}

	100% {
		top: 50%;
	}
}

@-webkit-keyframes slideToBottom {
	0% {
		top: 50%;
	}

	100% {
		top: 70%;
	}
}

@keyframes slideToBottom {
	0% {
		top: 50%;
	}

	100% {
		top: 70%;
	}
}

.showSweetAlert[data-animation=pop] {
	-webkit-animation: showSweetAlert 0.3s;
	animation: showSweetAlert 0.3s;
}

.showSweetAlert[data-animation=none] {
	-webkit-animation: none;
	animation: none;
}

.showSweetAlert[data-animation=slide-from-top] {
	-webkit-animation: slideFromTop 0.3s;
	animation: slideFromTop 0.3s;
}

.showSweetAlert[data-animation=slide-from-bottom] {
	-webkit-animation: slideFromBottom 0.3s;
	animation: slideFromBottom 0.3s;
}

.hideSweetAlert[data-animation=pop] {
	-webkit-animation: hideSweetAlert 0.2s;
	animation: hideSweetAlert 0.2s;
}

.hideSweetAlert[data-animation=none] {
	-webkit-animation: none;
	animation: none;
}

.hideSweetAlert[data-animation=slide-from-top] {
	-webkit-animation: slideToTop 0.4s;
	animation: slideToTop 0.4s;
}

.hideSweetAlert[data-animation=slide-from-bottom] {
	-webkit-animation: slideToBottom 0.3s;
	animation: slideToBottom 0.3s;
}

@-webkit-keyframes animateSuccessTip {
	0% {
		width: 0;
		left: 1px;
		top: 19px;
	}

	54% {
		width: 0;
		left: 1px;
		top: 19px;
	}

	70% {
		width: 50px;
		left: -8px;
		top: 37px;
	}

	84% {
		width: 17px;
		left: 21px;
		top: 48px;
	}

	100% {
		width: 25px;
		left: 14px;
		top: 45px;
	}
}

@keyframes animateSuccessTip {
	0% {
		width: 0;
		left: 1px;
		top: 19px;
	}

	54% {
		width: 0;
		left: 1px;
		top: 19px;
	}

	70% {
		width: 50px;
		left: -8px;
		top: 37px;
	}

	84% {
		width: 17px;
		left: 21px;
		top: 48px;
	}

	100% {
		width: 25px;
		left: 14px;
		top: 45px;
	}
}

@-webkit-keyframes animateSuccessLong {
	0% {
		width: 0;
		right: 46px;
		top: 54px;
	}

	65% {
		width: 0;
		right: 46px;
		top: 54px;
	}

	84% {
		width: 55px;
		right: 0px;
		top: 35px;
	}

	100% {
		width: 47px;
		right: 8px;
		top: 38px;
	}
}

@keyframes animateSuccessLong {
	0% {
		width: 0;
		right: 46px;
		top: 54px;
	}

	65% {
		width: 0;
		right: 46px;
		top: 54px;
	}

	84% {
		width: 55px;
		right: 0px;
		top: 35px;
	}

	100% {
		width: 47px;
		right: 8px;
		top: 38px;
	}
}

@-webkit-keyframes rotatePlaceholder {
	0% {
		transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
	}

	5% {
		transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
	}

	12% {
		transform: rotate(-405deg);
		-webkit-transform: rotate(-405deg);
	}

	100% {
		transform: rotate(-405deg);
		-webkit-transform: rotate(-405deg);
	}
}

@keyframes rotatePlaceholder {
	0% {
		transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
	}

	5% {
		transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
	}

	12% {
		transform: rotate(-405deg);
		-webkit-transform: rotate(-405deg);
	}

	100% {
		transform: rotate(-405deg);
		-webkit-transform: rotate(-405deg);
	}
}

.animateSuccessTip {
	-webkit-animation: animateSuccessTip 0.75s;
	animation: animateSuccessTip 0.75s;
}

.animateSuccessLong {
	-webkit-animation: animateSuccessLong 0.75s;
	animation: animateSuccessLong 0.75s;
}

.sa-icon.sa-success.animate::after {
	-webkit-animation: rotatePlaceholder 4.25s ease-in;
	animation: rotatePlaceholder 4.25s ease-in;
}

@-webkit-keyframes animateErrorIcon {
	0% {
		transform: rotateX(100deg);
		-webkit-transform: rotateX(100deg);
		opacity: 0;
	}

	100% {
		transform: rotateX(0deg);
		-webkit-transform: rotateX(0deg);
		opacity: 1;
	}
}

@keyframes animateErrorIcon {
	0% {
		transform: rotateX(100deg);
		-webkit-transform: rotateX(100deg);
		opacity: 0;
	}

	100% {
		transform: rotateX(0deg);
		-webkit-transform: rotateX(0deg);
		opacity: 1;
	}
}

.animateErrorIcon {
	-webkit-animation: animateErrorIcon 0.5s;
	animation: animateErrorIcon 0.5s;
}

@-webkit-keyframes animateXMark {
	0% {
		transform: scale(0.4);
		-webkit-transform: scale(0.4);
		margin-top: 26px;
		opacity: 0;
	}

	50% {
		transform: scale(0.4);
		-webkit-transform: scale(0.4);
		margin-top: 26px;
		opacity: 0;
	}

	80% {
		transform: scale(1.15);
		-webkit-transform: scale(1.15);
		margin-top: -6px;
	}

	100% {
		transform: scale(1);
		-webkit-transform: scale(1);
		margin-top: 0;
		opacity: 1;
	}
}

@keyframes animateXMark {
	0% {
		transform: scale(0.4);
		-webkit-transform: scale(0.4);
		margin-top: 26px;
		opacity: 0;
	}

	50% {
		transform: scale(0.4);
		-webkit-transform: scale(0.4);
		margin-top: 26px;
		opacity: 0;
	}

	80% {
		transform: scale(1.15);
		-webkit-transform: scale(1.15);
		margin-top: -6px;
	}

	100% {
		transform: scale(1);
		-webkit-transform: scale(1);
		margin-top: 0;
		opacity: 1;
	}
}

.animateXMark {
	-webkit-animation: animateXMark 0.5s;
	animation: animateXMark 0.5s;
}

@-webkit-keyframes pulseWarning {
	0% {
		border-color: #F8D486;
	}

	100% {
		border-color: #F8BB86;
	}
}

@keyframes pulseWarning {
	0% {
		border-color: #F8D486;
	}

	100% {
		border-color: #F8BB86;
	}
}

.pulseWarning {
	-webkit-animation: pulseWarning 0.75s infinite alternate;
	animation: pulseWarning 0.75s infinite alternate;
}

@-webkit-keyframes pulseWarningIns {
	0% {
		background-color: #F8D486;
	}

	100% {
		background-color: #F8BB86;
	}
}

@keyframes pulseWarningIns {
	0% {
		background-color: #F8D486;
	}

	100% {
		background-color: #F8BB86;
	}
}

.pulseWarningIns {
	-webkit-animation: pulseWarningIns 0.75s infinite alternate;
	animation: pulseWarningIns 0.75s infinite alternate;
}

@-webkit-keyframes rotate-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

@keyframes rotate-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/* Internet Explorer 9 has some special quirks that are fixed here */
/* The icons are not animated. */
/* This file is automatically merged into sweet-alert.min.js through Gulp */
/* Error icon */
.sweet-alert .sa-icon.sa-error .sa-line.sa-left {
	-ms-transform: rotate(45deg) \9;
}

.sweet-alert .sa-icon.sa-error .sa-line.sa-right {
	-ms-transform: rotate(-45deg) \9;
}

/* Success icon */
.sweet-alert .sa-icon.sa-success {
	border-color: transparent\9;
}

.sweet-alert .sa-icon.sa-success .sa-line.sa-tip {
	-ms-transform: rotate(45deg) \9;
}

.sweet-alert .sa-icon.sa-success .sa-line.sa-long {
	-ms-transform: rotate(-45deg) \9;
}

/*!
 * Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
 * Copyright 2015 Daniel Cardoso <@DanielCardoso>
 * Licensed under MIT
 */
.la-ball-fall,
.la-ball-fall > div {
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.la-ball-fall {
	display: block;
	font-size: 0;
	color: #fff;
}

.la-ball-fall.la-dark {
	color: #333;
}

.la-ball-fall > div {
	display: inline-block;
	float: none;
	background-color: currentColor;
	border: 0 solid currentColor;
}

.la-ball-fall {
	width: 54px;
	height: 18px;
}

.la-ball-fall > div {
	width: 10px;
	height: 10px;
	margin: 4px;
	border-radius: 100%;
	opacity: 0;
	-webkit-animation: ball-fall 1s ease-in-out infinite;
	-moz-animation: ball-fall 1s ease-in-out infinite;
	-o-animation: ball-fall 1s ease-in-out infinite;
	animation: ball-fall 1s ease-in-out infinite;
}

.la-ball-fall > div:nth-child(1) {
	-webkit-animation-delay: -200ms;
	-moz-animation-delay: -200ms;
	-o-animation-delay: -200ms;
	animation-delay: -200ms;
}

.la-ball-fall > div:nth-child(2) {
	-webkit-animation-delay: -100ms;
	-moz-animation-delay: -100ms;
	-o-animation-delay: -100ms;
	animation-delay: -100ms;
}

.la-ball-fall > div:nth-child(3) {
	-webkit-animation-delay: 0ms;
	-moz-animation-delay: 0ms;
	-o-animation-delay: 0ms;
	animation-delay: 0ms;
}

.la-ball-fall.la-sm {
	width: 26px;
	height: 8px;
}

.la-ball-fall.la-sm > div {
	width: 4px;
	height: 4px;
	margin: 2px;
}

.la-ball-fall.la-2x {
	width: 108px;
	height: 36px;
}

.la-ball-fall.la-2x > div {
	width: 20px;
	height: 20px;
	margin: 8px;
}

.la-ball-fall.la-3x {
	width: 162px;
	height: 54px;
}

.la-ball-fall.la-3x > div {
	width: 30px;
	height: 30px;
	margin: 12px;
}

/*
 * Animation
 */
@-webkit-keyframes ball-fall {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-145%);
		transform: translateY(-145%);
	}

	10% {
		opacity: .5;
	}

	20% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	80% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	90% {
		opacity: .5;
	}

	100% {
		opacity: 0;
		-webkit-transform: translateY(145%);
		transform: translateY(145%);
	}
}

@-moz-keyframes ball-fall {
	0% {
		opacity: 0;
		-moz-transform: translateY(-145%);
		transform: translateY(-145%);
	}

	10% {
		opacity: .5;
	}

	20% {
		opacity: 1;
		-moz-transform: translateY(0);
		transform: translateY(0);
	}

	80% {
		opacity: 1;
		-moz-transform: translateY(0);
		transform: translateY(0);
	}

	90% {
		opacity: .5;
	}

	100% {
		opacity: 0;
		-moz-transform: translateY(145%);
		transform: translateY(145%);
	}
}

@-o-keyframes ball-fall {
	0% {
		opacity: 0;
		-o-transform: translateY(-145%);
		transform: translateY(-145%);
	}

	10% {
		opacity: .5;
	}

	20% {
		opacity: 1;
		-o-transform: translateY(0);
		transform: translateY(0);
	}

	80% {
		opacity: 1;
		-o-transform: translateY(0);
		transform: translateY(0);
	}

	90% {
		opacity: .5;
	}

	100% {
		opacity: 0;
		-o-transform: translateY(145%);
		transform: translateY(145%);
	}
}

@keyframes ball-fall {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-145%);
		-moz-transform: translateY(-145%);
		-o-transform: translateY(-145%);
		transform: translateY(-145%);
	}

	10% {
		opacity: .5;
	}

	20% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0);
	}

	80% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0);
	}

	90% {
		opacity: .5;
	}

	100% {
		opacity: 0;
		-webkit-transform: translateY(145%);
		-moz-transform: translateY(145%);
		-o-transform: translateY(145%);
		transform: translateY(145%);
	}
}

@-webkit-keyframes pulsate {
	0% {
		opacity: 0;
		-webkit-transform: scale(0.1);
		transform: scale(0.1);
	}

	50% {
		opacity: 1;
	}

	100% {
		opacity: 0;
		-webkit-transform: scale(1.2);
		transform: scale(1.2);
	}
}

@keyframes pulsate {
	0% {
		opacity: 0;
		-webkit-transform: scale(0.1);
		transform: scale(0.1);
	}

	50% {
		opacity: 1;
	}

	100% {
		opacity: 0;
		-webkit-transform: scale(1.2);
		transform: scale(1.2);
	}
}

#wpadminbar .quicklinks #wp-admin-bar-recordings .ab-empty-item {
	display: none;
}


.quotevids-loader,
.quotevids-loader-overlay {
	display: none;
}

.quotevids-loading .quotevids-loader,
.quotevids-loading .quotevids-loader-overlay {
	display: block;
}

.quotevids-loading .quotevids-loader-overlay {
	background-color: rgba(0, 0, 0, 0.7);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	min-height: 360px;
	z-index: 999999998;
}

.quotevids-loading .quotevids-loader {
	-webkit-animation: pulsate 1s ease-out;
	animation: pulsate 1s ease-out;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	border: 5px solid #f9f9f9;
	-webkit-border-radius: 30px;
	border-radius: 30px;
	height: 30px;
	left: 50%;
	margin: -15px 0 0 -15px;
	opacity: 0;
	position: fixed;
	top: 50%;
	width: 30px;
	z-index: 999999999;
}

.quotevids-template .site-inner {
	margin: 0;
	max-width: 100%;
	padding: 0;
}

.quotevids-template h1,
.quotevids-template h2,
.quotevids-template h3,
.quotevids-template h4,
.quotevids-template h5,
.quotevids-template h6 {
	line-height: 1.25;
	margin: 0 0 10px;
	text-rendering: optimizeLegibility;
}

.quotevids-template .quotevids-hide {
	display: none;
}

.quotevids-template .quotevids-container {
	background: #fff;
	position: relative;
}

.quotevids-template .quotevids-container a {
	text-decoration: none;
	font-weight: 500;
}

.quotevids-template .quotevids-section {
	padding: 0 15px;
}

.quotevids-template .quotevids-section.quotevids-section-main {
	padding-bottom: 50px;
}

.quotevids-template .post-password-form {
	background: #fff;
	padding: 30px;
	max-width: 500px;
	margin: 0 auto;
}

.quotevids-template .post-password-form p:last-of-type {
	margin: 0;
}

.quotevids-template .quotevids-bg-image {
	background-attachment: scroll;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 25%;
}

.quotevids-bg-white {
	background: #fff;
}

.quotevids-template .quotevids-wrap {
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 80px;
	padding: 0;
}

@media only screen and (min-width: 1023px) {
	.quotevids-template .quotevids-wrap {
		max-width: 1300px;
	}
}

.quotevids-template .quotevids-flex {
	display: flex;
	flex-wrap: wrap;
}

.quotevids-template .quotevids-left {
	max-width: 73%;
	flex: 0 0 73%;
	background: #fff;
}

@media (max-width:1250px) {
	.quotevids-template .quotevids-left {
		max-width: 70%;
		flex: 0 0 70%;
	}
}

@media (max-width:1096px) {
	.quotevids-template .quotevids-left {
		max-width: 100%;
		flex: 0 0 100%;
	}
}

.quotevids-template .quotevids-left.protected {
	max-width: 100%;
	flex: 0 0 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.quotevids-template .quotevids-left.protected form label {
	margin-top: 10px;
	display: block;
}

.quotevids-template .quotevids-left.protected form input {
	display: block;
	width: 100%;
}

.quotevids-template .quotevids-left.protected form input[type="password"] {
	max-width: 468px;
	padding: 11.5px 15px;
	margin: 5px 0 20px;
	border-radius: 4px;
	border: 1px solid #b3b3b3;
}

.quotevids-template .quotevids-left.protected form input[type="submit"] {
	font-size: 16px;
	padding: 10px 15px;
	font-weight: 600;
	border-radius: 4px;
	border: 1px solid #b3b3b3;
}

.quotevids-template .quotevids-right {
	max-width: 27%;
	flex: 0 0 27%;
	background: #fff;
	text-align: center;
}

@media (max-width:1250px) {
	.quotevids-template .quotevids-right {
		max-width: 30%;
		flex: 0 0 30%;
	}
}

@media (max-width:1096px) {
	.quotevids-template .quotevids-right {
		max-width: 100%;
		flex: 0 0 100%;
	}
}

.quotevids-template .quotevids-right a {
	color: #000;
}

.quotevids-template .quotevids-right a:hover,
.quotevids-template .quotevids-right a:focus {
	color: #000;
}

.quotevids-template .quotevids-right .quotevids-block-padded {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.quotevids-template .quotevids-title {
	text-align: center;
}

.quotevids-template .quotevids-title h1 {
	color: #000;
	font-size: 30px;
	margin: 0;
	padding: 50px 0;
}

@media only screen and (min-width: 810px) {
	.quotevids-template .quotevids-title h1 {
		font-size: 40px;
	}
}

@media only screen and (min-width: 1023px) {
	.quotevids-template .quotevids-title h1 {
		font-size: 50px;
	}
}

.quotevids-template .quotevids-video {
	position: relative;
	height: calc(100% - 66px);
	min-height: 533px;
}

@media (max-width:1096px) {
	.quotevids-template .quotevids-video {
    height: auto;
		min-height: auto;
    padding-bottom: calc(71% - 66px);
	}
}

.quotevids-template .quotevids-video > div {
	position: absolute !important;
	padding-bottom: 0 !important;
	height: 100% !important;
	width: 100%;
}

.quotevids-template .quotevids-video iframe {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.quotevids-template .quotevids-bottom-section {
	padding: 30px 0 30px;
}

@media only screen and (min-width: 810px) {
	.quotevids-template .quotevids-bottom-section {
		padding-top: 60px;
	}
}

.quotevids-template .quotevids-block {
	max-width: 100%;
}

.quotevids-template .quotevids-shadow {
	-webkit-box-shadow: 0 19px 20px 10px rgba(0, 0, 0, 0.05);
	-moz-box-shadow: 0 19px 20px 10px rgba(0, 0, 0, 0.05);
	box-shadow: 0 19px 20px 10px rgba(0, 0, 0, 0.05);
}

.quotevids-template .quotevids-quote-button-wrap {
	text-align: center;
	height: 66px;
	position: relative;
	bottom: 0;
}

.quotevids-template .quotevids-quote-button-wrap .button {
	display: flex;
	align-items: center;
	justify-content: center;
	max-height: 66px;
	height: 66px;
	font-size: 30px;
	font-weight: 600;
	padding: 5px 20px 5px;
	text-decoration: none;
	color: #fff;
	transition: filter .2s linear;
	border-radius: 0;
	transform: translateY(0px) !important;
}

@media (max-width:991px) {
	.quotevids-template .quotevids-quote-button-wrap .button {
		font-size: 22px;
	}
}

.quotevids-template .quotevids-quote-button-wrap .button:hover,
.quotevids-template .quotevids-quote-button-wrap .button:focus {
	filter: brightness(90%);
}

.quotevids-template .quotevids-buttons-block .button {
	display: block;
	text-align: center;
	border-radius: 4px;
	padding: 10px 15px;
	background: #dddddd;
	transition: filter .2s linear;
}

.quotevids-template .quotevids-buttons-block .button:last-child {
	margin-left: 0 !important;
}

.quotevids-template .quotevids-buttons-block .button:hover,
.quotevids-template .quotevids-buttons-block .button:focus {
	filter: brightness(90%);
}

.quotevids-template .quotevids-buttons-block .button {
	margin-bottom: 15px;
}

.quotevids-template .quotevids-block-embed {
	position: relative;
}

.quotevids-template .quotevids-block-padded {
	padding: 40px;
}

@media (max-width:991px) {
	.quotevids-template .quotevids-block-padded {
		padding: 20px;
	}
}

.quotevids-template .quotevids-avatar-wrap img {
	width: 80px;
	height: 80px;
}

.quotevids-template .quotevids-block-title {
	font-size: 21px;
	font-weight: 500;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.quotevids-template .avatar {
	border-radius: 100%;
}

.quotevids-template .quotevids-agent-name {
	font-size: 30px;
	font-weight: 500;
	margin-bottom: 5px;
}

@media (max-width:991px) {
	.quotevids-template .quotevids-agent-name {
		font-size: 22px;
	}
}

.quotevids-template .bp-name {
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 10px;
	margin-top: 0;
}

.quotevids-template .bp-address {
	margin-top: 0;
}

.quotevids-template .bp-contact-card {
	margin-bottom: 10px;
}

.quotevids-template .quotevids-agent-info {
	margin: 0;
	font-size: 16px;
}

.quotevids-template .quotevids-agent-bio,
.quotevids-template .quotevids-agent-bio p {
	display: none;
	margin: 0;
}

.quotevids-template .quotevids-agent-social {
	padding-left: 0;
	margin-bottom: 30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.quotevids-template .quotevids-agent-social .quotevids-social-icon {
	display: inline-block;
	font-size: 22px;
	list-style-type: none;
	line-height: 1;
	padding-left: 0;
	width: 39.08px;
}

.quotevids-template .quotevids-agent-social .quotevids-social-icon:not(:last-child) {
	margin-right: 5px;
}

.quotevids-template .quotevids-agent-social a {
	display: block;
	color: #fff;
	padding: 8px;
	border-radius: 100%;
	max-width: 100%;
}

.quotevids-template .quotevids-agent-social a:hover,
.quotevids-template .quotevids-agent-social a:focus {
	color: #fff;
}

.quotevids-template .quotevids-agent-social .quotevids-social-facebook a {
  background: #3b5998;
	transition: .2s linear background;
}

.quotevids-template .quotevids-agent-social .quotevids-social-facebook a:hover,
.quotevids-template .quotevids-agent-social .quotevids-social-facebook a:focus {
  background: #4264aa;
}

.quotevids-template .quotevids-agent-social .quotevids-social-googleplus a {
  background: #dd4b39;
	transition: .2s linear background;
}

.quotevids-template .quotevids-agent-social .quotevids-social-googleplus a:hover,
.quotevids-template .quotevids-agent-social .quotevids-social-googleplus a:focus {
  background: #e15f4f;
}

.quotevids-template .quotevids-agent-social .quotevids-social-linkedin a {
  background: #0077b5;
	transition: .2s linear background;
}

.quotevids-template .quotevids-agent-social .quotevids-social-linkedin a:hover,
.quotevids-template .quotevids-agent-social .quotevids-social-linkedin a:focus {
  background: #0088cf;
}

.quotevids-template .quotevids-agent-social .quotevids-social-twitter a {
  background: #00acee;
	transition: .2s linear background;
}

.quotevids-template .quotevids-agent-social .quotevids-social-twitter a:hover,
.quotevids-template .quotevids-agent-social .quotevids-social-twitter a:focus {
  background: #09bbff;
}

.quotevids-template .quotevids-agent-social .quotevids-social-instagram a {
  background: #fcaf45;
	transition: .2s linear background;
}

.quotevids-template .quotevids-agent-social .quotevids-social-instagram a:hover,
.quotevids-template .quotevids-agent-social .quotevids-social-instagram a:focus {
  background: #ffc678;
}

.quotevids-template .quotevids-embed {
	position: static;
}

.quotevids-template .quotevids-embed.video {
	position: relative;
	padding-bottom: 56%;
}

.quotevids-template .quotevids-embed.video iframe {
	position: absolute;
	width: 100%;
	height: 100%;
}

.quotevids-template .quotevids-content-block p,
.quotevids-template .quotevids-content-block > ol,
.quotevids-template .quotevids-content-block > ul,
.quotevids-template .quotevids-content-block > dl {
	margin-bottom: 16px;
}

@media only screen and (min-width: 810px) {
	.quotevids-template .quotevids-content-block p,
	.quotevids-template .quotevids-content-block > ol,
	.quotevids-template .quotevids-content-block > ul,
	.quotevids-template .quotevids-content-block > dl {
		margin-bottom: 26px;
	}
}

.quotevids-template .quotevids-content-block ol,
.quotevids-template .quotevids-content-block ul {
	margin-left: 20px;
}

@media only screen and (min-width: 810px) {
	.quotevids-template .quotevids-content-block ol,
	.quotevids-template .quotevids-content-block ul {
		margin-left: 40px;
	}
}

.quotevids-template .quotevids-content-block li {
	margin-bottom: 1%;
}

.quotevids-template .quotevids-content-block ol > li {
	list-style-type: decimal;
}

.quotevids-template .quotevids-content-block ul > li {
	list-style-type: disc;
}

.quotevids-template .quotevids-content-block li ol,
.quotevids-template .quotevids-content-block li ul {
	margin-top: 1%;
}

.quotevids-template .quotevids-content-block blockquote {
	border-left: 7px solid #f5f5f5;
	margin: 4% 5% 4% 0;
	padding: 0 0 0 5%;
}

.quotevids-template .quotevids-content-block table {
	border-collapse: separate;
	border: 1px solid #e6e6e6;
	border-left: 0;
	margin: 20px 0;
	width: 100%;
}

.quotevids-template .quotevids-content-block table th,
.quotevids-template .quotevids-content-block table td {
	border-left: 1px solid #e6e6e6;
	border-top: 1px solid #e6e6e6;
	line-height: 1.2;
	padding: 10px;
	text-align: left;
	vertical-align: top;
}

.quotevids-template .quotevids-content-block table thead:first-child tr:first-child th,
.quotevids-template .quotevids-content-block table tbody:first-child tr:first-child th,
.quotevids-template .quotevids-content-block table tbody:first-child tr:first-child td {
	border-top: 0 none;
}

.quotevids-template .quotevids-content-block code {
	background: #f5f5f5;
	border: 1px solid #cdcdcd;
	color: #1c1e1f;
	padding: 2px 4px;
}

.quotevids-template .ast-container {
	max-width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	color: #212124;
}

.quotevid-template-paragraph {
	font-weight: 600 !important;
}

.quotevid-template-message-wrap {
	position: relative;
	padding: 25px;
	border-radius: 10px;
	border: 2px solid #cdcdcd;
	margin: 0 0 25px;
}

.quotevid-template-message {
	text-align: left;
}

.quotevid-template-copy {
	background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBVcGxvYWRlZCB0bzogU1ZHIFJlcG8sIHd3dy5zdmdyZXBvLmNvbSwgR2VuZXJhdG9yOiBTVkcgUmVwbyBNaXhlciBUb29scyAtLT4NCjxzdmcgZmlsbD0iIzAwMDAwMCIgaGVpZ2h0PSI4MDBweCIgd2lkdGg9IjgwMHB4IiB2ZXJzaW9uPSIxLjEiIGlkPSJMYXllcl8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiANCgkgdmlld0JveD0iMCAwIDQ2MCA0NjAiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGc+DQoJPGc+DQoJCTxnPg0KCQkJPHBhdGggZD0iTTQyNS45MzQsMEgxNzEuNjYyYy0xOC4xMjIsMC0zMi44NjQsMTQuNzQzLTMyLjg2NCwzMi44NjR2NzcuMTM0aDMwVjMyLjg2NGMwLTEuNTc5LDEuMjg1LTIuODY0LDIuODY0LTIuODY0aDI1NC4yNzINCgkJCQljMS41NzksMCwyLjg2NCwxLjI4NSwyLjg2NCwyLjg2NHYyNTQuMjcyYzAsMS41OC0xLjI4NSwyLjg2NS0yLjg2NCwyLjg2NWgtNzQuNzI5djMwaDc0LjcyOQ0KCQkJCWMxOC4xMjEsMCwzMi44NjQtMTQuNzQzLDMyLjg2NC0zMi44NjVWMzIuODY0QzQ1OC43OTcsMTQuNzQzLDQ0NC4wNTUsMCw0MjUuOTM0LDB6Ii8+DQoJCQk8cGF0aCBkPSJNMjg4LjMzOSwxMzkuOTk4SDM0LjA2OGMtMTguMTIyLDAtMzIuODY1LDE0Ljc0My0zMi44NjUsMzIuODY1djI1NC4yNzJDMS4yMDQsNDQ1LjI1NywxNS45NDYsNDYwLDM0LjA2OCw0NjBoMjU0LjI3Mg0KCQkJCWMxOC4xMjIsMCwzMi44NjUtMTQuNzQzLDMyLjg2NS0zMi44NjRWMTcyLjg2M0MzMjEuMjA2LDE1NC43NDEsMzA2LjQ2MSwxMzkuOTk4LDI4OC4zMzksMTM5Ljk5OHogTTI4OC4zNDEsNDMwSDM0LjA2OA0KCQkJCWMtMS41OCwwLTIuODY1LTEuMjg1LTIuODY1LTIuODY0VjE3Mi44NjNjMC0xLjU4LDEuMjg1LTIuODY1LDIuODY1LTIuODY1aDI1NC4yNzJjMS41OCwwLDIuODY1LDEuMjg1LDIuODY1LDIuODY1djI1NC4yNzNoMC4wMDENCgkJCQlDMjkxLjIwNiw0MjguNzE1LDI4OS45Miw0MzAsMjg4LjM0MSw0MzB6Ii8+DQoJCTwvZz4NCgk8L2c+DQo8L2c+DQo8L3N2Zz4=");
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	right: 15px;
	top: 15px;
	width: 27px;
	height: 27px;
	cursor: pointer;
	border-radius: 5px;
}

.quotevid-template-copy:active {
	background: #cdcdcd;
}

.quotevids-template .quotevids-notes-button {
	display: block;
	text-align: center;
  border-radius: 4px;
  padding: 10px 15px;
	margin-top: auto;
	transition: filter .2s linear;
}

.quotevids-template .quotevids-notes-button:hover,
.quotevids-template .quotevids-notes-button:active,
.quotevids-template .quotevids-notes-button:focus {
	filter: brightness(90%);
}