.popup {
	display: none;
}

.popup-login {
	position: relative;
	width: auto;
	padding: 0;
	border-radius: 15px 15px 5px 5px;
	background-image: url('../images/popup-bg.png');
	background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: top right;
}

.popup-login::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	display: block;
	width: 100%;
	height: 12px;
	background: #55BD40;
}

.popup-login-tab {
	display: none;
}

.popup-login-tab.is-active {
	display: block;
}

.popup-form {
	width: 320px;
}

.popup-form--big {
	width: 510px;
}

.popup-form--flex {
	margin-right: 70px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.popup__title {
	font-weight: 700;
	font-size: 25px;
	line-height: 29px;
	margin-bottom: 20px;
}

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

.field {
	padding-left: 16px !important;
	font-weight: 500 !important;
	margin-bottom: 10px;
	border-radius: 5px;
	border: 1px solid #1795D2 !important;
	width: 100%;
	height: 39px !important;
	font-size: 12px !important;
	color: #000;
}

.popup-form--flex .label {
	display: block;
	/* margin-bottom: 0; */
	width: 48.5%;
}

.popup-login .btn {
	margin-bottom: 10px;
	height: 39px;
	width: 100%;
	background: #1795D2;
	box-shadow: none !important;
}

.popup-login .btn--green {
	background: #55BD40;
}

.popup-login .btn--green:hover {
	background: #75c066;
}

.popup-login-tab--login {
	padding: 26px 51px 51px 46px;
}

.popup-login-tab--register {
	padding: 56px;
}

.popup-form__footer {
	display: flex;
	align-items: center;
}

.popup-form__footer .btn {
	width: 164px;
	height: 55px;
	margin-right: 27px;
}

.checkbox {
	position: relative;
	display: flex;
	align-items: center;
	font-size: 12px;
	line-height: 19px;
	font-weight: 500;
}

.checkbox__box {
	position: relative;
	margin-right: 12px;
	width: 17px;
	min-width: 17px;
	height: 17px;
	border-radius: 2px;
	border: 1px solid #55BD40;
}

.checkbox__box::after {
	content: '';
	position: absolute;
	left: 3px;
	top: 3px;
	display: block;
	width: 9px;
	height: 9px;
	border-radius: 2px;
	background: #55BD40;
	display: none;
}

input[type="checkbox"]:checked + .checkbox__box::after {
	display: block;
}

.input-hidden {
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	width: 0;
	height: 0;
	visibility: hidden;
}

.label__text {
	margin-bottom: 3px;
	font-weight: 500;
	font-size: 12px;
	line-height: 20px;
	color: #000;
}

.popup-login .btn--link {
	width: auto;
	height: auto;
	background: none;
	text-decoration: underline;
	color: #1795D2;
	padding: 0;
}

.popup-login .btn--link:hover {
	text-decoration: none;
	background: none !important;
}