#popup_window{
	cursor: pointer;
}
.popup-overlay {
	width: 100%;
	height: 100%;
	position: fixed;
	background-color: var(--bg-overlay);
	top: 0;
	left: 100%;
	opacity: 0;
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	-webkit-transition: opacity .2s ease-out;
	-o-transition: opacity .2s ease-out;
	transition: opacity .2s ease-out;
	z-index: 9998;
	content-visibility: visible;
}
.overlay .popup-overlay {
	opacity: 0.6;
	left: 0
}
.popup {
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: -9999;
	content-visibility: visible;
}
.popup .popup-body {
	display: none;
	padding: 30px 0 20px 0;
	-webkit-transition: opacity .2s ease-out;
	-o-transition: opacity .2s ease-out;
	transition: opacity .2s ease-out;
	position: relative;
	text-align: center;
	background-color: var(--color-grey);
	border: 10px solid var(--color-grey);
	border-radius: var(--basic-border-radius);
	background-clip: padding-box;
	-webkit-box-shadow: 10px 17px 30px var(--shadow-grey-transp);
	box-shadow: 10px 17px 30px var(--shadow-grey-transp);
	font-family: var(--font-family);
}
.popup-body .popup-content {
	max-height: 80vh;
	max-height: calc(var(--vh, 1vh) * 80);
}
.popup-body,
.popup-body .popup-content {
	box-sizing: border-box;
}
.popup .popup-body .popup-cont {
	overflow-y: auto;
}

.popup.visible, .popup.transitioning {
	z-index: 9999;
}
.popup.visible .popup-body {
	display: block;
}
.popup .popup-exit {display: block; width: 17px; height: 17px; background: url(/images2019/design/micro-elements/popups-close.svg) right 0 no-repeat; text-decoration: underline; position: absolute; top: 6px; right: 6px; opacity: .4; cursor: pointer;}
.popup .popup-exit:hover {border: none; opacity: 1;}
.popup .popup-content {overflow-y: auto;}

@media only screen and (max-width: 1024px) {
	.popup-overlay {display: none !important;}
	.popup {
		top: 0;
		left: 0;
	}
	.popup .popup-body {
		-moz-border-radius: 0;
		-webkit-border-radius: 0;
		border-radius: 0;
		-webkit-box-shadow: none;
		box-shadow: none;
		box-sizing: border-box;
	}
	.popup-body .popup-content {
		max-height: none;
	}
}

/* popup exit animation */
.popup .popup-exit, .popup .popup-exit:hover {
	opacity: 1 !important;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
}
.popup .popup-exit:hover {
	-webkit-transform: rotate(-180deg);
	-moz-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	-o-transform: rotate(-180deg);
	transform: rotate(-180deg);
}
/* /popup exit animation */

/* sizes */
/*all-features*/
.popup.popup-all-features .popup-body,
.popup.popup-all-features .popup-body .popup-content {
	width: calc(100vw - 400px);
	height: calc(100vh - 40px);
	height: calc((var(--vh, 1vh) * 100) - 40px);
}
.popup-body .popup-content {
	max-height: calc(100vh - 40px);
	max-height: calc((var(--vh, 1vh) * 100) - 40px);
}
.popup.popup-all-features .popup-body {
	background-color: var(--common-white);
	border: 10px solid var(--common-white);
	position: relative;
}

.popup.popup-all-features .popup-body::before {
	width: calc(100% + 20px);
	height: 224px;
	background: linear-gradient(180deg, #F7F7F7 0%, #F7F7F7 40px, rgba(247, 247, 247, 0) 81%);
	position: absolute;
	top: -10px;
	left: -10px;
	border-radius: 8px 8px 0 0;
	content: '';
}
.popup.popup-all-features .popup-body .popup-cont {
	position: relative;
}

.popup.popup-all-features .sk-fading-circle {
	margin-top: -25px;
	top: 50%;
}
@media only screen and (max-width: 1400px) {
	.popup.popup-all-features .popup-body,
	.popup.popup-all-features .popup-body .popup-content {
		width: 1000px;
	}
}
.popup.popup-all-features .popup-body .popup-cont {
	width: calc(100% - 20px); /* .popup-body width - self padding */
	padding: 0;
	height: calc(100vh - 90px);
	height: calc((var(--vh, 1vh) * 100) - 90px);
}

@media only screen and (max-width: 1024px) {
	.popup.popup-all-features .popup-body {
		width: 100vw;
		height: 100vh;
		height: calc(var(--vh, 1vh) * 100);
		margin-top: 0 !important;
		margin-left: 0 !important;
		padding-bottom: 0;
	}
	.popup.popup-all-features .popup-body .popup-content {
		width: 100vw;
		height: calc(100vh - 50px);
		height: calc((var(--vh, 1vh) * 100) - 50px);
	}
	.popup.popup-all-features .popup-body .popup-cont {
		width: calc(100vw - 20px); /* .popup-body width - self padding - 20px */
		padding: 0;
		height: calc(100vh - 50px);
		height: calc((var(--vh, 1vh) * 100) - 50px);
		overflow-y: scroll;
	}

	.popup.popup-all-features .popup-body::before {
		border-radius: 0;
	}
}
/*/all-features*/

/*contact-popup*/
.popup.header-contact-popup .popup-body {
	width: 846px;
	background-color: var(--bg-grey-light);
	border: 10px solid var(--bg-grey-light);
	text-align: left;
}
.popup.header-contact-popup .popup-body .popup-cont {
	padding: 0 26px 0 46px;
}
.popup.header-contact-popup .btn {text-decoration: none;}

@media only screen and (max-width: 1024px) {
	.popup.header-contact-popup .popup-body {
		width: 100vw;
		height: 100vh;
		height: calc(var(--vh, 1vh) * 100);
		margin-top: 0 !important;
		margin-left: 0 !important;
	}
	.popup.header-contact-popup .popup-body .popup-cont {
		padding: 0 46px;
		height: calc(100vh - 70px);
		height: calc((var(--vh, 1vh) * 100) - 70px);
		overflow-y: scroll;
	}
}
/*/contact-popup*/

/*cloudvps popup*/
.popup.popup-plans-cloudvps .popup-body {
	width: 700px;
	background-color: var(--bg-grey-light);
	border: 10px solid var(--bg-grey-light);
	text-align: left;
}
.popup.popup-plans-cloudvps .popup-body .popup-cont {
	padding: 0 26px 0 46px;
}
.popup.popup-plans-cloudvps .btn {text-decoration: none;}

@media only screen and (max-width: 1024px) {
	.popup.popup-plans-cloudvps .popup-body {
		width: 100vw;
		height: 100vh;
		height: calc(var(--vh, 1vh) * 100);
		margin-top: 0 !important;
		margin-left: 0 !important;
	}
	.popup.popup-plans-cloudvps .popup-body .popup-cont {
		padding: 0 46px;
		height: calc(100vh - 70px);
		height: calc((var(--vh, 1vh) * 100) - 70px);
		overflow-y: scroll;
	}
}
/*/cloudvps popup*/

/*verifywhy-popup*/
.popup.verifywhy-popup .popup-body {
	width: 734px;
	background-color: var(--bg-grey-light);
	border: 10px solid var(--bg-grey-light);
	text-align: left;
	padding: 0 0 20px 0;
}
.popup.verifywhy-popup .popup-body .popup-cont {
	padding: 0 26px 0 46px;
}
.popup.verifywhy-popup span.underline {
	display: block;
	font-size: 26px;
	padding: 10px 0;
}

@media only screen and (max-width: 1024px) {
	.popup.verifywhy-popup .popup-body {
		width: 100vw;
		height: 100vh;
		height: calc(var(--vh, 1vh) * 100);
		margin-top: 0 !important;
		margin-left: 0 !important;
	}
	.popup.verifywhy-popup .popup-body .popup-cont {
		width: calc(100vw - 112px); /* .popup-body width - self padding - 20px */
		padding: 0 46px;
		height: calc(100vh - 70px);
		height: calc((var(--vh, 1vh) * 100) - 70px);
		overflow-y: scroll;
	}
}
/*/verifywhy-popup*/

/*video-popup*/
.popup.video-popup .popup-body {
	width: 620px;
	background-color: var(--bg-grey-light);
	border: 10px solid var(--bg-grey-light);
	text-align: left;
}
.popup.video-popup .popup-body .popup-cont {
	padding: 0 20px;
}

@media only screen and (max-width: 1024px) {
	.popup.video-popup .popup-body {
		width: 100vw;
		height: 100vh;
		height: calc(var(--vh, 1vh) * 100);
		margin-top: 0 !important;
		margin-left: 0 !important;
	}
	.popup.video-popup .popup-body .popup-cont {
		width: calc(100vw - 20px); /* .popup-body width - self padding - 20px */
		padding: 0 0;
		height: calc(100vh - 70px);
		height: calc((var(--vh, 1vh) * 100) - 70px);
		overflow-y: scroll;
	}
}
/*/video-popup*/

/*dontleave popup*/
#additional-questions.popup .popup-body {
	width: 808px;
	background-color: var(--common-white);
	border: 10px solid var(--common-white);
	text-align: left;
	color: var(--text-color-black);
}
@media only screen and (max-width: 1024px) {
	#additional-questions.popup {display: none !important;}
}
/*/dontleave popup*/

/*registration popup*/
.popup.popup-registration .popup-body {
	width: 570px;
	text-align: left;
}
#popup-registration.popup .popup-body {
	margin-left: -295px; /* top: auto; left: (width + 20px (border)/2);*/
	padding: 40px 0 38px;
}
#popup-auth.popup .popup-body {
	margin-left: -295px; /* top: auto;  left: (width + 20px (border)/2);*/
	background-color: var(--common-white);
	border-top: 10px solid var(--common-white);
	border-bottom: 10px solid var(--bg-grey-light);
	border-right: 0 none;
	border-left: 0 none;
	padding: 25px 0 0;
}
#popup-auth.popup .popup-exit {
	right: 16px;
}
#popup-auth.popup .popup-content {
	background-color: var(--bg-grey-light);
}
#popup-auth.popup .popup-cont {
	padding: 0 0 40px;
	background-color: var(--bg-grey-light);
}

@media only screen and (max-width: 1024px) {
	.popup.popup-registration .popup-body,
	.popup.popup-registration .popup-body .popup-content,
	#popup-auth .popup-body,
	#popup-auth .popup-body .popup-content {
		width: 100vw;
		height: 100vh;
		height: calc(var(--vh, 1vh) * 100);
	}
	#popup-registration.popup .popup-body,
	#popup-auth .popup-body {
		margin-top: 0 !important;
		margin-left: 0 !important;
	}
	#popup-registration.popup .popup-body .popup-cont {
		width: calc(100vw - 20px); /* .popup-body width - self padding - 20px */
		height: calc(100vh - 60px);
		height: calc((var(--vh, 1vh) * 100) - 60px);
		overflow-y: scroll;
	}
	#popup-auth .popup-body .popup-content {
		width: 100vw;
		height: calc(100vh - 30px);
		height: calc((var(--vh, 1vh) * 100) - 30px);
		overflow-y: scroll;
	}
}
/*/registration popup*/

/* coupon request */
.popup.coupon-request-popup .popup-body {
	width: 590px;
	height: auto;
	min-height: 300px;
	background-color: var(--bg-grey-light);
	border: 10px solid var(--bg-grey-light);
	text-align: center;
	padding: 30px 0 17px 0;
}
.popup.coupon-request-popup .popup-body .popup-cont {
	padding: 0 20px;
	height: auto;
	min-height: 290px;	/* .popup-body height */
}

.homeright-coupons-inputbox {
	padding: 0 20px; text-align: center;
	margin-bottom: 30px;
}
.homeright-coupons-inputbox input[type="text"] {
	display: block;
	margin: 0 auto;
	position: relative;
	padding: 0 7px;
	line-height: 48px;
	width: 368px;
	max-width: calc(100% - 40px);
	height: 50px;
	border: 1px solid var(--borders-grey-input);
	border-radius: 7px;
	background-clip: padding-box;
	background-color: var(--common-white);
	color: var(--text-color-black);
	font-family: var(--font-family);
	font-size: var(--text-size);
	text-align: left;
	box-sizing: border-box;
}
#coupon-request-form #message {
	padding: 0 20px 20px 20px;
}

@media only screen and (max-width: 1024px) {
	.popup.coupon-request-popup .popup-body {
		width: 100vw;
		height: 100vh;
		height: calc(var(--vh, 1vh) * 100);
		min-height: 0;
	}
	.popup.coupon-request-popup .popup-body {
		margin-top: 0 !important;
		margin-left: 0 !important;
	}
	.popup.coupon-request-popup .popup-body .popup-cont {
		width: calc(100vw - 60px); /* .popup-body width - self padding - 20px */
		padding: 0 20px;
		height: calc(100vh - 60px);
		height: calc((var(--vh, 1vh) * 100) - 60px);
		min-height: 0;
		overflow-y: scroll;
	}
}
/* coupon request */

/*domains-popup*/
.popup.popup-domains .popup-body {
	width: 520px;
	background-color: var(--bg-grey-light);
	border: 10px solid var(--bg-grey-light);
	text-align: center;
}
.popup.popup-domains .popup-body .popup-cont {
	padding: 0 20px 20px 20px;
}

@media only screen and (max-width: 1024px) {
	.popup.popup-domains .popup-body {
		width: 100vw;
		height: 100vh;
		height: calc(var(--vh, 1vh) * 100);
	}
	.popup.popup-domains .popup-body {
		margin-top: 0 !important;
		margin-left: 0 !important;
	}
	.popup.popup-domains .popup-body .popup-cont {
		width: calc(100vw - 60px); /* .popup-body width - self padding - 20px */
		height: calc(100vh - 60px);
		height: calc((var(--vh, 1vh) * 100) - 60px);
		overflow-y: scroll;
	}
}

@media only screen and (max-width: 610px) {
	.popup.popup-domains .btn-medium,
	.popup.popup-domains .btn-medium:hover {
		height: auto;
		line-height: 23px;
		padding-right: 25px; padding-left: 25px;
	}
}
/*/domains-popup*/

/*popup-invoice*/
.popup.popup-invoice .popup-body {
	width: 734px;
	background-color: var(--bg-grey-light);
	border: 10px solid var(--bg-grey-light);
	text-align: left;
}
.popup.popup-invoice .popup-body .popup-cont {
	padding: 0 26px 0 26px;
	min-height: 100px;
}

@media only screen and (max-width: 1024px) {
	.popup.popup-invoice .popup-body {
		width: 100vw;
		height: 100vh;
		height: calc(var(--vh, 1vh) * 100);
	}
	.popup.popup-invoice .popup-body {
		margin-top: 0 !important;
		margin-left: 0 !important;
	}
	.popup.popup-invoice .popup-body .popup-cont {
		width: calc(100vw - 60px); /* .popup-body width - self padding - 20px */
		padding: 0 20px;
		height: calc(100vh - 70px) !important;
		height: calc((var(--vh, 1vh) * 100) - 70px) !important;
		overflow-y: scroll;
	}
}
/*/popup-invoice*/


/* contact popup */

.popup.header-contact-popup .cont-popup-head {color: var(--text-color-black); font-size: var(--text-big-size); padding: 25px 0 18px 0;}
.popup.header-contact-popup .cont-popup-head-first {padding-top: 1px;}
.popup.header-contact-popup p {line-height: 23px;}
.popup.header-contact-popup p.cont-popup-chat {padding: 7px 0 39px 0;}
.popup.header-contact-popup p.cont-popup-chat .btn-medium {padding-right: 20px; padding-left: 20px;}
.popup.header-contact-popup p.cont-popup-emails {
	line-height: 33px;
	padding: 0 0 15px 0;
	position: relative;
	margin-top: -17px;
}
.popup.header-contact-popup .cont-popup-lnk {padding: 4px 0 21px 0;}
/* /contact popup */

/* coupon request popup */
#coupon-request {padding-bottom: 10px;}
#coupon-request p:first-child {position: relative; margin: -5px 0 0 0; padding: 0 0 20px 0;}
#coupon-request .code-input-box {width: 195px; display: inline-block; position: relative; margin-bottom: 17px;}
#coupon-request input#code-input { height: 38px; line-height: 38px; text-align: center; display: block; margin: 0 auto 0 auto; padding: 0; width: 193px; border: dashed 1px var(--borders-dashed-gray); color: var(--text-color-black); font-family: var(--font-family); font-size: var(--text-size); font-weight: bold;}
#coupon-request .code-input-box::before {display: block; position: absolute; top: -11px; right: 1px; width: 21px; height: 18px; content: " "; font-size: 1px; line-height: 1px; background: url(/images2019/design/micro-elements/cut-black.svg) 0 0 no-repeat;}
#coupon-request br {display: none;}
#coupon-request-popup input.homeright-coupons-btn, #coupon-request-popup input.homeright-coupons-btn:hover {border: none; outline: none;}
/* /coupon request popup */

/* popup-res-video */
.popup-res-video .popup-cont span {display: block; color: var(--text-color-black); font-size: 18px; font-weight: bold; text-align: left; padding: 26px 0 0 0;}
/* /popup-res-video */

/* popup-banners */
.popup.popup-banners .popup-body {
	width: auto;
	padding: 30px 20px 20px 20px;
}
.popup.popup-banners .popup-body .popup-cont {
	min-height: 134px;
}
.popup-cont.dialogboxContent {
	background: none;
	padding: 0;
}
.popup-cont.dialogboxContent textarea {
	width: 398px;
	height: 128px;
}
/* /popup-banners */

/* popup-banners-img */
.popup.popup-banners-img .popup-body {
	width: auto;
	max-width: calc(100vw - 40px);
	max-height: calc(100vh - 40px);
	max-height: calc((var(--vh, 1vh) * 100) - 40px);
	padding: 30px 20px 20px 20px;
}

.popup.popup-banners-img .popup-body .popup-content {
	max-width: calc(100vw - 40px);
	max-height: calc(100vh - 110px);
	max-height: calc((var(--vh, 1vh) * 100) - 110px);
	overflow: auto;
}

.popup.popup-banners-img .popup-body .popup-cont {
	overflow: visible;
}
/* /popup-banners-img */

/* popup-mission */
.popup.popup-mission .popup-body {
	width: 954px;
	height: auto;
	background-color: var(--bg-grey-light);
	border: 10px solid var(--bg-grey-light);
	text-align: left;
	}
.popup.popup-mission .popup-body .popup-cont {
	padding: 43px 300px 45px 50px;
	}
.popup.popup-mission .popup-body .popup-cont::before {
	position: absolute;
	display: block;
	content: "";
	width: 188px;
	height: 308px;
	background: url("/images2019/design/sketch-cats-etc/career-popup-cat.png") 0 0 no-repeat;
	right: 73px;
	top: calc(50% - 154px);
	}
@media (-webkit-min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2/1), (min-resolution: 192dpi) and (min-width: 1025px) {
	.popup.popup-mission .popup-body .popup-cont::before {
		background-image: url(/images2019/design/sketch-cats-etc/career-popup-cat@x2.png);
		background-size: cover;
	}
}
.popup-mission-cat {display: none;}
@media only screen and (max-width: 1024px) {
	.popup.popup-mission .popup-body {
		width: 100vw;
		height: 100vh;
		height: calc(var(--vh, 1vh) * 100);
		}
	.popup.popup-mission .popup-body {
		margin-top: 0 !important;
		margin-left: 0 !important;
		}
	.popup.popup-mission .popup-body .popup-cont {
		width: calc(100vw - 112px); /* .popup-body width - self padding - 20px */
		padding: 0 46px;
		height: calc(100vh - 70px);
		height: calc((var(--vh, 1vh) * 100) - 70px);
		overflow-y: scroll;
		}
	.popup.popup-mission .popup-body .popup-cont::before {
		display: none;
		}
	.popup-mission-cat {
		display: block;
		width: 188px; height: 308px;
		margin: 20px auto 0;
		background: url("/images2019/design/sketch-cats-etc/career-popup-cat.png") 0 0 no-repeat;
		}
	}
@media (-webkit-min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2/1), (min-resolution: 192dpi) and (max-width: 1024px) {
	.popup-mission-cat {
		background-image: url(/images2019/design/sketch-cats-etc/career-popup-cat@x2.png);
		background-size: cover;
	}
}
/* /popup-mission */

/* change period popup */
.popup.change-period-popup .popup-body {
	width: 846px;
	background-color: var(--bg-grey-light);
	border: 10px solid var(--bg-grey-light);
	text-align: left;
}
.popup.change-period-popup .popup-body .popup-cont {
	padding: 0 36px 0 36px;
}
.popup.change-period-popup .btn {text-decoration: none;}

@media only screen and (max-width: 1024px) {
	.popup.change-period-popup .popup-body {
		width: 100vw;
		height: 100vh;
		height: calc(var(--vh, 1vh) * 100);
		margin-top: 0 !important;
		margin-left: 0 !important;
	}
	.popup.change-period-popup .popup-body .popup-cont {
		padding: 0 46px;
		height: calc(100vh - 70px);
		height: calc((var(--vh, 1vh) * 100) - 70px);
		overflow-y: scroll;
	}
}
.popup.change-period-popup .change-period-head {color: var(--text-color-black); font-size: var(--text-big-size); padding: 1px 0 18px 0;}
.popup.change-period-popup p.change-period-btn {padding: 7px 0 39px 0; text-align: center;}
.popup.change-period-popup p.change-period-btn .btn-medium {padding-right: 20px; padding-left: 20px;}
#leftcontainer .popup.change-period-popup .change-period-table {margin: 0 auto 19px;}
#leftcontainer .popup.change-period-popup .change-period-table td {font-size: var(--text-small-size); line-height: 23px; padding: 0 24px 0 0;}
@media only screen and (max-width: 610px) {
	#leftcontainer .popup.change-period-popup .change-period-table td {display: block; padding: 0;}
	#leftcontainer .popup.change-period-popup .change-period-table td:nth-child(2) {padding: 0 0 8px 0;}
}
/* /change period popup */

/* delay payment popup */
.popup.delay-payment-popup .popup-body {
	width: 800px;
	background-color:var(--bg-grey-light);
	border: 10px solid var(--bg-grey-light);
	text-align: left;
	font-size: 19px;
	color: #000000;
}
.popup.delay-payment-popup .popup-body .popup-cont {
	padding: 20px 36px 0 36px;
}
.popup.delay-payment-popup textarea {
	width: 100%;
	height: 50px;
	background: #FFFFFF;
	border: 1px solid rgba(0, 0, 0, 0.5);
	border-radius: 4px;
	margin: -7px 0 29px;
	font-size: 19px;
	line-height: 23px;
	color: #000000;
	padding: 10px;
	box-sizing: border-box;
	resize: vertical;
}
.delay-payment-btn {
	text-align: center;
	padding-bottom: 36px;
}
.delay-payment-btn .btn {
	text-decoration: none;
}
.popup.delay-payment-popup .errormessage {
	font-size: 16px;
	line-height: 18px;
	color: #FF5252;
	padding: 13px 0 13px 20px;
	margin-bottom: 36px;
	background: url(/clients/templates/portal/images/delay-payment-error.svg) 0 center no-repeat;
}
.delay-success {
	font-weight: bold;
	text-align: center;
	padding-bottom: 243px;
	background: url(/clients/templates/portal/images/delay-payment-cat.svg) center bottom 15px no-repeat;
}

@media only screen and (max-width: 1024px) {
	.popup.delay-payment-popup .popup-body {
		width: 100vw;
		height: 100vh;
		height: calc(var(--vh, 1vh) * 100);
		margin-top: 0 !important;
		margin-left: 0 !important;
	}
	.popup.delay-payment-popup .popup-body .popup-cont {
		padding: 0 46px;
		height: calc(100vh - 70px);
		height: calc((var(--vh, 1vh) * 100) - 70px);
		overflow-y: scroll;
	}
}

@media only screen and (max-width: 500px) {
	.delay-success {background: none;}
}
/* /delay payment popup */

/*cloud-subscr-form*/
#additional-questions.popup.popup-cloud-subscr-form .popup-body {
	width: 1100px;
	max-width: 85vw;
	background-color: var(--bg-grey-light);
	border: 10px solid var(--bg-grey-light);
	text-align: left;
	color: var(--text-color-black);
}
#additional-questions.popup.popup-cloud-subscr-form .popup-body .popup-cont {
	padding: 0 26px 30px 26px;
}

@media only screen and (max-width: 1024px) {
	#additional-questions.popup.popup-cloud-subscr-form .popup-body {
		width: 100vw;
		height: 100vh;
		height: calc(var(--vh, 1vh) * 100);
		margin-top: 0 !important;
		margin-left: 0 !important;
	}
	#additional-questions.popup.popup-cloud-subscr-form .popup-body .popup-cont {
		padding: 0 46px;
		height: calc(100vh - 70px);
		height: calc((var(--vh, 1vh) * 100) - 70px);
		overflow-y: scroll;
	}
}
/*/cloud-subscr-form*/

/* typeform-inactive popup */
.popup.popup-typeform-inactive .popup-body {
	width: 520px;
	background-color: var(--bg-grey-light);
	border: 10px solid var(--bg-grey-light);
	text-align: center;
}
.popup.popup-typeform-inactive .popup-body .popup-cont {
	padding: 20px 30px 10px 30px;
}
.popup.popup-typeform-inactive .btn {text-decoration: none;}

@media only screen and (max-width: 1024px) {
	.popup.popup-typeform-inactive .popup-body {
		width: 100vw;
		height: 100vh;
		height: calc(var(--vh, 1vh) * 100);
		margin-top: 0 !important;
		margin-left: 0 !important;
	}
	.popup.popup-typeform-inactive .popup-body .popup-cont {
		padding: 0 46px;
		height: calc(100vh - 70px);
		height: calc((var(--vh, 1vh) * 100) - 70px);
		overflow-y: scroll;
	}
}
/* /typeform-inactive popup */


/* /sizes */


/* animation */
.animated {
	-webkit-animation-duration: 0.2s;
	animation-duration: 0.2s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.animated.infinite {
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

@-webkit-keyframes flipInX {
	from {
		-webkit-transform: translateY(-18px) perspective(800px) rotateX(8deg);
		transform: translateY(-18px) perspective(800px) rotateX(8deg);
		opacity: 0;
	}

	to {
		-webkit-transform: translateY(0) perspective(800px) rotateX(0);
		transform: translateY(0) perspective(800px) rotateX(0);
		opacity: 1;
	}
}

@keyframes flipInX {
	from {
		-webkit-transform: translateY(-18px) perspective(800px) rotateX(8deg);
		transform: translateY(-18px) perspective(800px) rotateX(8deg);
		opacity: 0;
	}

	to {
		-webkit-transform: translateY(0) perspective(800px) rotateX(0);
		transform: translateY(0) perspective(800px) rotateX(0);
		opacity: 1;
	}
}

.flipInX {
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	-webkit-animation-name: flipInX;
	animation-name: flipInX;
}

@-webkit-keyframes flipOutX {
	from {
		-webkit-transform: translateY(0) perspective(800px) rotateX(0);
		transform: translateY(0) perspective(800px) rotateX(0);
		opacity: 1;
	}

	to {
		-webkit-transform: translateY(-18px) perspective(800px) rotateX(8deg);
		transform: translateY(-18px) perspective(800px) rotateX(8deg);
		opacity: 0;
	}
}

@keyframes flipOutX {
	from {
		-webkit-transform: translateY(0) perspective(800px) rotateX(0);
		transform: translateY(0) perspective(800px) rotateX(0);
		opacity: 1;
	}

	to {
		-webkit-transform: translateY(-18px) perspective(800px) rotateX(8deg);
		transform: translateY(-18px) perspective(800px) rotateX(8deg);
		opacity: 0;
	}
}

.flipOutX {
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	-webkit-animation-name: flipOutX;
	animation-name: flipOutX;
}
/* /animation */





