/* Input + button wrapper */
.rw-reg-input {
	position: relative;
	display: block;
}
/* Registration input */
.rw-reg-input > input {
	position: relative;
	z-index: 1;
}
/* Registration button */
.rw-reg-input > button {
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	z-index: 2;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}

/* Registration alert */
.rw-reg-alert > div {
	padding: 6px 18px;
	background-color: #e74c3c;
	color: #ffffff;
    border-radius: 4px;
	margin-bottom: 1.5em;
	transform-origin: 50% 0;
	animation: append-animate .3s cubic-bezier(.165,.84,.44,1);
}
.rw-reg-alert.rw-reg-alert-alt > div {
	margin-top: 10px;
	margin-bottom: 0;
	text-align: center;
	border-radius: 10px;
}
@keyframes append-animate {
	from {
		transform: scaleY(0);
		opacity: 0;
	}
	to {
		transform: scaleY(1);
		opacity: 1;	
	}
}

/* Registration Data Field */
.rw-reg-reg-data {
	display: none !important;
}

/* Registration Output */
.rw-reg-data-fields {
	border: 1px solid var(--base);
    padding: 15px;	
	margin-bottom: 1.5em;
	margin-right: 15px;
	display: none;
}
.rw-reg-data-fields.active {
	display: block;
	animation: append-animate .3s cubic-bezier(.165,.84,.44,1);
}
.rw-reg-data-fields p {
	margin-bottom: 0;
}
.rw-reg-data-fields-output {
	display: flex;
	margin-bottom: 1em;
}
@media (max-width: 600px) {
	.rw-reg-data-fields {
		margin-right: 0;
	}
	.rw-reg-data-fields-output {
		display: block;
	}
}

/* Registration Output Boxes */
.rw-reg-data-fields-output > div {
	margin-right: 15px;
}
.rw-reg-data-fields-output > div > div {
	font-size: 14px;
	font-weight: 700;
}
@media (max-width: 600px) {
	.rw-reg-data-fields-output > div {
		margin-right: 0;
		margin-bottom: 1rem;
	}
}

/* Registration Output Checkbox */
.rw-reg-data-fields .wpcf7-list-item {
	padding: 0;
	margin: 0;
}

/* Spinner */
.rw-spinner {
	display: inline-block;
	position: relative;
	width: 1em;
	height: 1em;
}
.rw-spinner div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 1.25em;
    height: 1.25em;
    margin: 0;
    border: 3px solid #1aa0e1;
    border-radius: 50%;
    animation: rw-spinner 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #1aa0e1 transparent transparent transparent;
}
.rw-spinner div:nth-child(1) {
	animation-delay: -0.45s;
}
.rw-spinner div:nth-child(2) {
	animation-delay: -0.3s;
}
.rw-spinner div:nth-child(3) {
	animation-delay: -0.15s;
}
@keyframes rw-spinner {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* Shortcode */
.rw-reg-cta {
	
}
.rw-reg-form {
	
}
.rw-reg-form-inner {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	margin-left: -5px;
	margin-right: -5px;
}
.rw-reg-form-control {
	width: 100%;
	padding: 0 5px;
}
.rw-reg-form-input, .rw-reg-search-preview {
	display: block;
	padding: 10px;
    border-radius: 10px !important;
    border: 1px solid var(--contrast-3) !important;
    background-color: #FAC812 !important;
    column-gap: 0.5em;
    font-weight: 700;
    text-align: left;
    margin-bottom: 0px;
    color: var(--contrast);
	width: 100%;
	text-transform: uppercase;
}
.rw-reg-form-btn {
	display: block;
	padding: 10px;
    border-radius: 10px;
    border: 1px solid var(--contrast-3);
    background-color: var(--global-color-9);
	font-weight: bold;
    text-align: center;
    margin-bottom: 0px;
    color: var(--base-3);
	width: 100%;
	text-transform: uppercase;
}
.rw-reg-form-btn:hover {
	background-color: var(--global-color-8);
}
@media (max-width: 767px) {
	.rw-reg-form-inner {
		flex-wrap: wrap;	
	}
}
.rw-reg-form-error {
	font-size: 0.8rem;
	border-radius: 5px;
	padding: 5px 10px;
	background-color: red;
	color: #fff;
	text-align: center;
	display: none;	
}
.rw-reg-form-error.active {
	display: block;
}

/* Modal */
#rw-reg-search-popup {
	position: fixed;
	top: 0;
	left: 0;
	opacity: 0;
	width: 100%;
	height: 100%;
	padding: 2rem 15px 15px 15px;
	background-color: rgba(0,0,0,0.25);	
	display: none;
	transition: opacity .15s linear;
	z-index: 9999999;
	display: flex;
	align-items: center;
	justify-content: center;
}
#rw-reg-search-popup .rw-contact-popup-inner {
	width: 600px;
	max-width: 100%;
}
#rw-reg-search-popup.active {
	opacity: 1;
}
#rw-reg-search-popup .rw-contact-popup-header h4 {
	margin-bottom: 0;	
}
#rw-reg-search-preview {
    display: block;
    padding: 0 10px;
    border-radius: 10px !important;
    border: 1px solid var(--contrast-3) !important;
    background-color: #FAC812 !important;
    column-gap: 0.5em;
    font-weight: 700;
    text-align: center;
	margin-bottom: 1em;
    color: #000;
    width: 100%;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 2rem;	
}
.content-columns {
    margin-right: -15px;	
}