html, body {
	width: 100%;
	height: 100%;
	font-family: 'Lato', sans-serif;
	background: #F4F9FF;
}

body, body * {
	box-sizing: border-box;
}

.ellipsis {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.flex-row {
	display: flex;
	flex-direction: row;
	width: 100%;
}

.flex-column {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.flex-nowrap {
	flex-wrap: nowrap;
}

.flex-wrap {
	flex-wrap: wrap;
}

.align-items-center {
	align-items: center;
}

.justify-content-center {
	justify-content: center;
}

.no-margin {
	margin: 0;
}

.infinite-preloader {
	width:30px;
	height:30px;
	display: inline-block;
	padding:0px;
	border-radius:100%;
	border:2px solid;
	border-top-color: rgba(255, 0, 0, 0.65);
	border-bottom-color: rgba(0,0,0, 0.15);
	border-left-color: rgba(243, 1, 1, 0.65);
	border-right-color:rgba(0,0,0, 0.15);
	-webkit-animation: infinite-preloader 0.8s linear infinite;
	animation: infinite-preloader 0.8s linear infinite;
}

@keyframes infinite-preloader {
	from {transform: rotate(0deg);}
	to {transform: rotate(360deg);}
}

@-webkit-keyframes infinite-preloader {
	from {-webkit-transform: rotate(0deg);}
	to {-webkit-transform: rotate(360deg);}
}

#main {
	padding-top: 15px;
	width: 100%;
	height: 100%;
}

#register_container {
	max-width: 521px;
	width: 100%;
	margin: 0 auto;
	border-radius: 5px;
	background-color: rgb(255, 255, 255);
	box-shadow: 0px 20px 64px 0px rgba(35, 49, 144, 0.16);
	-webkit-box-shadow: 0px 20px 64px 0px rgba(35, 49, 144, 0.16);
	-moz-box-shadow: 0px 20px 64px 0px rgba(35, 49, 144, 0.16);
	margin-bottom: 60px;
}

#register_container .top-side {
	text-align: center;
	border-bottom: 1px solid #CFD9E2;
	padding: 20px;
	padding-bottom: 24px;
}

#register_container .top-side p.title {
	font-weight: 400;
	color: #304754;
	font-size: 40px;
	margin-top: 16px;
	margin-bottom: 8px;
}

#register_container .top-side p.subtitle {

}

#register_container .no-obligations {
	color: #4CAF50;
	font-weight: 700;
}

#register_container .bottom-side {
	text-align: center;
	padding-bottom: 30px;
}

#register_container .bottom-side img {
	max-width: 100%;
}

#register_container .bottom-side .terms {
	padding: 10px;
	font-size: 12px;
	color: #999;
}

#register_container .bottom-side .terms a {
	color: #999;
}

#register_container form {
	padding: 40px;
}

#register_container form > div {
	margin-bottom: 22px;
}

#register_container form label {
	color: #304754;
	font-size: 14px;
	font-weight: 700;
	display: block;
	margin-bottom: 10px;
}

#register_container form input[type="text"],
#register_container form input[type="password"],
#register_container form input[type="email"] {
	border-radius: 4px;
	vertical-align: middle;
	background: #FFF;
	font-size: 14px;
	border: 1px solid rgba(34, 36, 38, .15);
	margin: 0;
	width: 100%;
	outline: 0;
	text-align: left;
	line-height: 1.2142em;
	color: rgba(0, 0, 0, 0.87);
	padding: 14px 10px;
}

#register_container form.disabled button {
	background: #b0c6d2 !important;
	border: solid 1px #f05d63 !important;
}

#register_container form .row {
	position: relative;
}

#register_container form .row.flex-row .column {
	flex: 1 1 50%;
	position: relative;
}


#register_container form .error input,
#register_container form .error #phone_number {
	border-color: #fb4b3e;
	background-color: #ffedeb;
}

#register_container form input[type="text"]:focus {
	border-color: #96C8DA;
	color: rgba(0, 0, 0, .8);
	box-shadow: none;
}

#register_container form #phone_number {
	position: relative;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	border: 1px solid #E5E8F7;
	align-items: center;
	width: 100%;
	height: 46px;
	line-height: 46px;
	border-radius: 3px;
}

#register_container form #phone_number.focus {
	border-color: #96C8DA;
	color: rgba(0, 0, 0, .8);
	box-shadow: none;
}

#register_container form #phone_number .countries-select {
	max-width: 70px;
	height: 100%;
	width: 100%;
}

#register_container form #phone_number .countries-input {
	width: 100% !important;
	border: none !important;
}

#register_container form .drop-down-element {
	width: 100%;
	height: 100%;
}

#register_container form .drop-down-element .list-element {
	position: absolute;
	top: 100%;
	display: none;
	max-height: 170px;
	overflow: auto;
	background: #ffffff;
	width: 100%;
	left: -1px;
	border: 1px solid rgba(34, 36, 38, .15);
	box-shadow: 0 5px 29px 3px rgba(30, 30, 30, 0.15);
	z-index: 1;
	border-radius: 0px 0px 4px 4px;
	transition: all 200ms ease-in;
	margin: 0;
	padding: 0;
}

#register_container form .drop-down-element.show .list-element {
	display: block;
}

#register_container form .drop-down-element.show .list-element .item {
	position: relative;
	cursor: pointer;
	display: block;
	border: none;
	height: auto;
	text-align: left;
	color: rgba(0, 0, 0, .87);
	font-size: 14px;
	text-transform: none;
	font-weight: 400;
	box-shadow: none;
	line-height: 34px;
	font-family: Roboto, sans-serif;
}

#register_container form .drop-down-element.show .list-element .item:hover,
#register_container form .drop-down-element.show .list-element .item.hover {
	background-color: #F8F8F8;
}

#register_container form .drop-down-element.show .list-element .item.selected span {
	font-weight: 700;
}

#register_container form .drop-down-element.show .list-element strong,
#register_container form .drop-down-element .header-element strong {
	vertical-align: middle;
	display: inline-block;
	width: 20px;
	height: 15px;
	background-size: cover;
	margin: 0px 12px 0px 16px;
}

#register_container form .drop-down-element .header-icon {
	position: absolute;
	right: 7px;
	width: 22px;
	height: 22px;
	margin-top: -9px;
	top: 50%;
}

#register_container form .drop-down-element .header-element {
	width: 100%;
	height: 100%;
	position: relative;
	outline: none;
}

#register_container form .drop-down-element.show .header-icon {
	transform: rotate(180deg);
}

.radio {
	margin: 0.5rem;
}

.radio input[type="radio"] {
	position: absolute;
	opacity: 0;
}

.radio .radio-label {
	color: #656668 !important;
	font-size: 13px !important;
	font-weight: 500 !important;
}

.radio input[type="radio"] + .radio-label:before {
	content: '';
	background: #f4f4f4;
	border-radius: 100%;
	border: 1px solid #b4b4b4;
	display: inline-block;
	width: 12px;
	height: 12px;
	position: relative;
	margin-right: 1em;
	vertical-align: top;
	cursor: pointer;
	text-align: center;
	transition: all 250ms ease;
}

.radio input[type="radio"]:checked + .radio-label {
	font-weight: 700 !important;
	color: #323230 !important;
}

.radio input[type="radio"]:checked + .radio-label:before {
	background-color: #3197ee;
	box-shadow: inset 0 0 0 2px #f4f4f4;
}

.radio input[type="radio"]:focus + .radio-label:before {
	outline: none;
	border-color: #3197ee;
}

.radio input[type="radio"]:disabled + .radio-label:before {
	box-shadow: inset 0 0 0 2px #f4f4f4;
	border-color: #b4b4b4;
	background: #b4b4b4;
}

.radio input[type="radio"] + .radio-label:empty:before {
	margin-right: 0;
}

#register_container form #submit_button {
	cursor: pointer;
	background: #F2134C;
	outline: none;
	font-size: 15px;
	border: 0px;
	color: #fff;
	font-weight: 700;
	padding: 14px 10px;
	width: 100%;
	border-radius: 3px;
}

#register_container form .error-container {
	position: absolute;
	width: 100%;
	background-color: #fff;
	z-index: 2;
	top: 0px;
	color: #fb4b3e;
}

#register_container form .row.last-row {
	text-align: center;
}

#register_container form .row.last-row .infinite-preloader {
	display: none;
	margin: 0 auto;
}
/* REGISTER WITHOUT CC */
#register_container.no-cc form {
	padding-bottom: 0;
}

/* REGISTER WITH CC */

#register_container.need-cc .free-days {
	color: #555;
	font-weight: 700;
	padding-bottom: 6px;
}

#register_container.need-cc form {
	padding-bottom: 0;
}

#register_container.need-cc.redirecting .top-side p.title {
	font-weight: 700;
	color: #304754;
	font-size: 18px;
	margin-bottom: 0;
	padding-top: 0;
}

#register_container.need-cc.redirecting .top-side {
	padding: 40px 0 0 0;
	border-bottom: 0;
}


#register_container.need-cc.redirecting .top-side #logo,
#register_container.need-cc.redirecting .free-days,
#register_container.need-cc.redirecting .no-obligations,
#register_container.need-cc.redirecting form,
#register_container.need-cc.redirecting .bottom-side {
	display: none;
}

#register_container.need-cc.redirecting .infinite-preloader {
	margin-top: 14px;
}

#register_container.need-cc.redirecting .account-info {
	padding: 27px;
	padding-top: 0;
	line-height: 24px;
	text-align: center;
}

#register_container.need-cc.redirecting .account-info .need-to-validate {
	color: #555;
	font-size: 15px;
	line-height: 24px;
	margin-bottom: 16px;
}

#register_container.need-cc.redirecting .account-info .not-charging {
	font-weight: bold;
	color: #4CAF50;
	line-height: 20px;
	background: #f4f9ff;
	padding: 24px;
	border-radius: 6px;
}

#register_container select {
	border-radius: 4px;
	font-size: 14px;
	border: 1px solid rgba(34, 36, 38, .15);
	margin: 0;
	width: 100%;
	outline: 0;
	text-align: left;
	line-height: 1.2142em;
	color: rgba(0, 0, 0, 0.87);
	padding: 14px 10px;
}

#register_container .checkout-container {
	/*padding: 10px;*/
	/*min-height: 300px;*/
	height: 100%;
	width: 100%;
	padding: 0 10px;
}

.register_row.hidden-form form#register_form,
.register_row.hidden-form .bottom-side,
.register_row.hidden-form .brndmntns-awards-container-register.brndmntns-tools-awards-reg-mobile
{
	display: none !important;
}

#register_main_container .checkout-completed-message {
	height: 100%;
}

.createaccount .bm-tooltip {
    height: 16px;
    width: 16px;
    position: relative;
    top: -32px;
    vertical-align: middle;
    display: flex;
    align-items: center;
    margin-left: auto;
    right: 13px;
	background: url("data:image/svg+xml;charset=utf8,    %3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 16 16'%3E      %3Cpath fill='%23CBD1D7' fill-rule='evenodd' d='M15.333 8A7.333 7.333 0 1 1 .667 8a7.333 7.333 0 0 1 14.666 0Zm-8.25 3.667a.917.917 0 0 0 1.834 0V7.083a.917.917 0 1 0-1.834 0v4.584ZM8 5.25a.917.917 0 1 1 0-1.833.917.917 0 0 1 0 1.833Z' clip-rule='evenodd'/%3E    %3C/svg%3E") center/16px no-repeat;
}
.createaccount .bm-tooltip .bm-tooltiptext {
	visibility: hidden;
	width: max-content;
	max-width:240px;
	font-family: latoregular, sans-serif;
	color: rgb(251, 252, 253);
	text-align: left;
	position: absolute;
	z-index: 3;
	bottom: 150%;
	font-size: 11px;
	background-color: #092540;
	padding: 10px;
	transform: translateX(-50%);
	left: 50%;
	border-radius: 8px;
}
.createaccount .bm-tooltip:hover .bm-tooltiptext {
	visibility:visible
}
.createaccount .bm-tooltip .bm-tooltiptext .ok {
	padding-left: 20px;
	background: url("data:image/svg+xml;charset=utf8,        %3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 500'%3E          %3Cpath fill='%234fbf3f' d='M179.5 329.6L444.7 64.4l53 53-318.2 318.2-53.1-53.1L2.3 258.4l53-53 124.2 124.2z'/%3E        %3C/svg%3E") left no-repeat;
}
.createaccount .bm-tooltip .bm-tooltiptext .wrong {
	padding-left: 20px;
	background: url("data:image/svg+xml;charset=utf8,        %3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 500'%3E          %3Cpath fill='%23ff442d' d='M462.7 84.7l-53-53L247 194.4 84.3 31.7l-53 53L194 247.4 31.3 410l53 53.1L247 300.4l162.7 162.7 53-53.1L300 247.4z'/%3E        %3C/svg%3E") left no-repeat;
}

@media (max-width: 560px) {
	#main {
		padding-top: 20px;
		padding-left: 20px;
		padding-right: 20px;
	}

	#register_container form {
		padding: 20px;
	}
	#register_container form .row.flex-row {
		flex-wrap: wrap;
	}

	#register_container form .row.flex-row .column:first-child {
		margin-right: 0px;
		margin-bottom: 20px;
	}

	#register_container form .row.flex-row .column {
		flex: 1 1 100%;
	}
}