

/* Start:/local/templates/rd_worldclass_copy/components/bitrix/form.result.new/fullpage/style.css?17544718631395*/
.rd-form-fullpage {
	position: relative;
	height: calc(100vh - 132px);
	display: flex;
	align-items: center;
	background-size: cover;
	min-height: 1000px;
	border-radius: 20px;
}

.rd-form-fullpage form {
	width: 100%;
	margin: auto;
	max-width: 1300px;
}

.rd-form-fullpage__image {
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 0;
}

.rd-form-fullpage__container {
	position: relative;
	z-index: 10;
	width: 100%;
	max-width: 30%;
	min-width: 400px;
	max-height: 80vh;
	min-height: 540px;
}

.rd-form-fullpage__container .rd-form {
	background: white;
	box-shadow: 0 0 80px -50px rgba(0, 0, 0, 0.55);
	padding: 42px 36px 36px 30px;
	border-radius: 10px;
	overflow: auto;
}

.rd-form-loader {
    position: absolute;
    left: 20%;
    top: 30%;
}

.rd-form-loader img {
    width: 100px;
}

@media (max-width: 1366px) {
	.rd-form-fullpage form {
		width: 985px;
	}
}

@media (max-width: 1024px) {
	.rd-form-fullpage form {
		width: 730px;
	}
}

@media (max-width: 768px) {
	.rd-form-fullpage form {
		width: auto;
		margin: auto 20px;
	}

	.rd-form-fullpage__container {
		min-width: 320px;
		max-width: 100%;
		margin: auto;
	}
}


.rd-form-fullpage {
    background-size: 60%;
    background-image: url(https://arwen-api.worldclass.ru/uploads/hero_1b6ef7e96a.png) !important;
    background-color: rgb(244 246 249);
    background-position: 85% 50%;
    background-repeat: no-repeat;
}
/* End */


/* Start:/local/templates/rd_worldclass_copy/css/rd-form.css?17544718637562*/
.rd-form {
	/*	*/
}

.rd-form p {
	color: #7a7d84;
}

.rd-form p + p {
	margin-top: 1em;
}

.rd-form__title {
	font-size: 42px;
	letter-spacing: -1px;
	font-weight: 400;
	color: #272727;
	margin-bottom: 12px;
}

.rd-form__desc {
	font-size: 18px;
	letter-spacing: -0.5px;
	font-weight: 400;
	color: #272727;
	padding: 10px 0 20px;
}

.rd-form__field {
	position: relative;
	margin-bottom: 20px;
}

.rd-form__field--hidden,
.rd-form__field--company {
	display: none;
}

.rd-form__field--company--visible {
	display: block;
}

.rd-form__field input,
.rd-form__field input[type="text"],
.rd-form__field input[type="email"],
.rd-form__field input[type="tel"],
.rd-form__field select,
.rd-form__field textarea {
	width: 100%;
	padding: 10px 30px 0;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	height: 46px;
	box-shadow: 0 0 5px -10px rgba(0, 0, 0, 0.15);
	transition: 150ms;
	background: transparent;
}

.rd-form__field select {
	color: #7a7d84;
	padding: 5px 30px 5px;
	cursor: pointer;
}

.rd-form__field label.error {
	padding: 0;
	color: #ed1c24;
	position: absolute;
	left: 10px;
	top: calc(100% + 2px);
	font-size: 12px;
}

.rd-form__field label.checkbox-error {
	display: inline-block;
	padding: 0;
	color: #ed1c24;
	position: auto;
	left: auto;
	top: auto;
	font-size: 12px;
}

.rd-form__field--filled select {
	color: black;
}

.rd-form__field select:hover,
.rd-form__field input:hover {
	border-color: rgb(184 187 192 / 60%);
	box-shadow: 0 0 4px -1px rgba(0, 0, 0, 0.1);
}

.rd-form__field--focused input,
.rd-form__field--focused select,
.rd-form__field select:focus,
.rd-form__field input:focus {
	border-color: #b8bbc0;
	box-shadow: 0 0 7px -2px rgba(0, 0, 0, 0.15);
}

.rd-form__field--focused .rd-form__label:not(.rd-form__label--checkbox) {
	transform: scale(0.8) translateY(-18px);
}

.rd-form__field select ~ .rd-form__label {
	display: none;
}

.rd-form__input--checkbox {
	position: absolute;
	visibility: hidden;
}

.rd-form__label {
	position: absolute;
	color: #7a7d84;
	font-size: 14px;
	font-weight: 400;
	top: -5px;
	bottom: 0;
	margin: auto;
	left: 30px;
	height: 1em;
	pointer-events: none;
	transition: transform 350ms;
	transform-origin: 0 100%;
}

.rd-form__label--checkbox {
	padding-left: 48px;
	position: relative;
	height: auto;
	left: 0;
	z-index: 340;
	cursor: pointer;
	pointer-events: all;
	display: flex;
	align-items: center;
	min-height: 35px;
	top: 0;
}

.rd-form__label--checkbox a {
	color: #000;
	transition: 150ms;
}

.rd-form__label--checkbox a:hover {
	color: #ce1d24;
}

.rd-form__label--checkbox::before {
	content: '';
	border: 2px solid #e0e0e0;
	width: 30px;
	height: 30px;
	border-radius: 2px;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	margin: auto;
}

.rd-form__label--checkbox::after {
	content: "";
	width: 24px;
	height: 24px;
	background: #ed1c24;
	position: absolute;
	top: 5px;
	left: 5px;
	bottom: 5px;
	margin: auto;
	transform: scale(0);
	transition: .2s ease-out;
}

.rd-form__input:checked + .rd-form__label--checkbox::after {
	transform: scale(1);
}

.rd-form__input:checked + .rd-form__label--checkbox::before {
	border-color: #ed1c24;
}

.rd-form__buttons {
	display: flex;
	flex-wrap: wrap;
	margin-top: 30px;
}

.rd-form__buttons button {
	background: #ff151e;
	border: none;
	height: auto;
	padding: 15px 45px;
	color: white;
	box-shadow: none;
	font-size: 15px;
	font-weight: 400;
	transition: 150ms;
	border-radius: 50px;
	margin-bottom: 20px;
	margin-right: 30px;
}

.rd-form__buttons button:last-child {
	margin-right: 0;
}

.rd-form__buttons button:hover {
	background: #ce1d24;
}

.rd-form__options-container {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
	align-content: flex-start;
	width: 100%;
}

.rd-form__option {
	color: #000;
	font-size: 14px;
	flex-basis: 25%;
	width: 25%;
	min-width: 170px;
	cursor: pointer;
	max-height: 47px;
	min-height: 47px;
	height: 47px;
}

.rd-form__option:hover {
	text-decoration: underline;
}

.rd-form__option span {
	display: block;
	opacity: 0.5;
	font-size: 13px;
}

.rd-form__options {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(11, 11, 11, 0.75);
	z-index: 100;
	flex-wrap: wrap;
	align-items: flex-start;
	align-content: flex-start;
	display: none;
	overflow: auto;
	padding-top: 40px;
}

.rd-form__options--opened {
	display: flex;
	flex-flow: column;
}

.rd-form__options-close {
	color: #5f5f5f;
	position: absolute;
	top: 50px;
	right: 0;
	z-index: 20;
	left: 0;
	width: 100%;
	max-width: 980px;
	padding-right: 15px;
	margin: auto;
	display: flex;
	justify-content: flex-end;
}

.rd-form__options-close::before {
	content: '\e91d';
	font-family: 'icomoon', sans-sarif;
	font-size: 24px;
	cursor: pointer;
	transition: opacity 350ms;
	opacity: 0.8;
}

.rd-form__options-close:hover::before {
	opacity: 0.5;
}

.rd-form__club-type {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
	padding: 0 60px;
	background: white;
	width: 100%;
	max-width: 980px;
	margin: 0 auto;
}

.rd-form__club-type-header {
	width: 100%;
	display: flex;
	order: 0;
}

.rd-form__club-type-footer {
	width: 100%;
	border-bottom: 2px solid #dadada;
	margin-top: 10px;
	order: 999999;
}

.rd-form__club-type:last-child .rd-form__club-type-footer {
	border-bottom: none;
}

.rd-form__club-type--RED .rd-form__club-type-header::before {
	content: 'World Class';
	font-size: 22px;
	color: #ff0008;
	font-weight: bold;
	height: 80px;
	display: flex;
	align-items: center;
}

.rd-form__club-type--RED::after {
	content: '';
	background: url(/local/templates/rd_worldclass/media/clubs/logo_wc.png) right center no-repeat;
	background-size: contain;
	width: 160px;
	height: 100px;
	position: absolute;
	top: 0;
	right: 60px;
}

.rd-form__club-type--GREEN .rd-form__club-type-header::before {
	content: 'World Class';
	font-size: 22px;
	color: #019548;
	font-weight: bold;
	height: 100px;
	display: flex;
	align-items: center;
}

.rd-form__club-type--GREEN .rd-form__club-type-header::after {
	content: 'LITE';
	font-size: 22px;
	color: #019548;
	height: 100px;
	display: flex;
	align-items: center;
	padding-left: 0.5em;
}

.rd-form__club-type--GREEN::after {
	content: '';
	background: url(/local/templates/rd_worldclass/media/clubs/logo_wc_lite.png) right center no-repeat;
	background-size: contain;
	width: 160px;
	height: 100px;
	position: absolute;
	top: 0;
	right: 60px;
}

.rd-form__club-type--PREMIUM .rd-form__club-type-header::before {
	content: 'World Class';
	font-size: 22px;
	color: #3c231c;
	font-weight: bold;
	height: 100px;
	display: flex;
	align-items: center;
}

.rd-form__club-type--PREMIUM .rd-form__club-type-header::after {
	content: 'Luxury';
	font-size: 22px;
	color: #3c231c;
	height: 100px;
	display: flex;
	align-items: center;
	padding-left: 0.5em;
}

.rd-form__club-type--PREMIUM::after {
	content: '';
	background: url(/local/components/agima/modal.clubs_select/templates/.default/image/feedback_2_1367.jpg) right center no-repeat;
	background-size: contain;
	width: 112px;
	height: 100px;
	position: absolute;
	top: 0;
	right: 60px;
}

@media (max-width: 1366px) {
}

@media (max-width: 1024px) {
}

@media (max-width: 768px) {
	.rd-form__club-type {
		padding: 0 20px;
	}

	.rd-form-fullpage form {
		margin: auto;
	}

	.rd-form__club-type--RED::after,
	.rd-form__club-type--PREMIUM::after,
	.rd-form__club-type--GREEN::after {
		width: 100px;
	}

	.rd-form__title {
		margin-left: 25px;
		font-size: 35px;
	}

	.rd-form__option {
		width: 50%;
		flex-basis: 50%;
	}
}

/* End */
/* /local/templates/rd_worldclass_copy/components/bitrix/form.result.new/fullpage/style.css?17544718631395 */
/* /local/templates/rd_worldclass_copy/css/rd-form.css?17544718637562 */
