html {
    min-width: 320px;
}

body
{
	margin: 0;
	font-family: "TabacSans", Arial, sans-serif;
	font-size: 16px;
	color: #333;
	background-color: #fff;
}

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

a, a:visited {
	text-decoration: none;
	color: #4dade9;
}

img {
	border: 0;
	margin: 0;
	padding: 0;
}

wbr:after { content: "\00200B"; } /* IE does not handle wbr elements*/

.spacer {
	width: 100%;
	height: 50px;
}
.spacer--s {
	height: 15px;
}

.spacer--m {
	height: 30px;
}

.spacer--border {
	border-top: 1px solid #e5e5e5;
}

.text-right {
	text-align: right;
}

.text-left {
	text-align: left;
}

.text-center {
	text-align: center;
}

.text-red {
	color: #ea0000;
}

.text-blue {
	color: #4dade9;
}

.text-inherit {
	color: inherit;
}

.text-block__left-aligned {
	display: inline-block;
	text-align: left;
}

.visible-only {
	display: none;
}

.visible-only__desktop {
	display: inline-block;
}

.alert {
    max-width: 460px;
	width: 100%;
	padding: 17px 20px 20px 70px;
	display: none;
	font-size: 0.875em;
	margin: 20px auto;
	background-repeat: no-repeat;
	background-size: 30px 30px;
	background-position: 20px 50%;
}

.alert__title {
	font-weight: 600;
}

.alert__title:not(:empty) + .alert__content {
	margin-top: 6px;
}

.alert__content a {
	text-decoration: underline;
}

.alert--danger .alert__content a {
	color: #b30505;
}

.alert--danger {
	background-color: #fef3f7;
	color: #b30505;
	background-image: url('/static/img/icon-danger.svg');
}

.alert--danger:not(.duplicate-order) .alert__title:before {
	content: '';
}

.alert--success {
	display: block;
	background-color: #f3fef7;
	color: #05b305;
	background-image: url('/static/img/icon-success.svg');
}

.alert--success .alert__title {
	height: 9px;
}

.alert--success .alert__content a {
	color: #05b305;
}

.alert--payment-flow {
	max-width: 100%;
	margin: 20px 0;
}

.pfMobileNormalView {
	text-align: center;
}

.pfMobileErrorView .alert--payment-flow,
.payment-flow__error .alert--payment-flow,
.payment-flow__complete .alert--payment-flow {
	display: block;
}

.alert--payment-flow .alert__title {
	height: auto;
}

.alert--payment-flow .alert__title:before {
	content: '';
}

.heading--payment-flow {
    margin: 0;
    font-size: 36px;
    font-weight: 500;
}

.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}

.inline-flex {
	display: -webkit-box;
	display: -ms-inline-flexbox;
	display: -webkit-inline-flex;
	display: inline-flex;
}

.flex--align-items-start {
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.flex--align-items-end {
	-webkit-align-items: flex-end;
	-ms-flex-align: end;
	align-items: flex-end;
}

.flex--align-items-stretch {
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}

.flex--align-items-center {
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.flex--justify-content-space-around {
	-webkit-justify-content: space-around;
	-ms-flex-pack: distribute;
	justify-content: space-around;
}

.flex--justify-content-space-between {
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.flex--justify-content-start {
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.flex--justify-content-end {
	-webkit-justify-content: flex-end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.flex--justify-content-center {
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.flex--no-wrap {
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
}

.flex--wrap {
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.flex--equal-width {
	-ms-flex-grow: 1;
	-ms-flex-positive: 1;
	-webkit-flex-grow: 1;
	flex-grow: 1;

	-ms-flex-shrink: 0;
	-ms-flex-negative: 0;
	-webkit-flex-shrink: 0;
	flex-shrink: 0;

	-ms-flex-basis: 0;
	-ms-flex-preferred-size: 0;
	-webkit-flex-basis: 0;
	flex-basis: 0;
}

.header {
	margin: 0;
	padding: 0;
	padding-top: calc(constant(safe-area-inset-top))!important;
	padding-top: calc(env(safe-area-inset-top))!important;
	background-color: #333;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
}

.is-ios-app .header {
    padding-top: 21px;
}

.header-mask {
	margin-top: calc(constant(safe-area-inset-top))!important;
	margin-top: calc(env(safe-area-inset-top))!important;
	height: 40px;
}

.is-ios-app .header-mask {
    margin-top: 21px;
}

.wrap {
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
	padding: 10px;
}

.wrap + .wrap {
	padding-top: 0;
}

.wrap--header {
	position: relative;
	padding: 0;
}

.wrap--footer {
	height: 45px;
}

.header__logo {
	padding: 0 13px;
}

.header__menu {
	height: 40px;
}

.header__down-arrow {
	margin: 0 7px;
}

.header__drop-links-container {
	background-color: #4dade9;
	position: absolute;
	top: 40px; left: 0;
	margin: 0;
	padding: 13px;
	width: 192px;
	z-index: 5;
	display: none;
}

.header__drop-links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.header__drop-links li {
	padding: 7px 0;
}

.header__link,
a.header__link {
	display: block;
	color: #fff;
	font-size: 12px;
	position: relative;
}

.header__link:after {
	position: absolute;
	right: 0;
	content: '>';
}

.header__email {
	color: #fff;
	font-size: 0.75em;
	margin-left: 10px;
}

.header--show-drop-links .header__drop-links-container {
	display: block;
}

.header--show-drop-links .header__logo {
	background-color: #4dade9;
}

.header__account {
	padding: 0 6px 0 13px;
}

.header__user-avatar {
	display: none;
}

.header__account--show-avatar .header__user-avatar {
	display: block;
}

#address-confirm,
.header__account--show-avatar .header__shrek-avatar {
	display: none;
}

.header__account-container {
	background-color: #4dade9;
	position: absolute;
	top: 40px; right: 0;
	margin: 0;
	padding: 13px;
	width: 255px;
	z-index: 5;
	display: none;
	text-align: center;
	font-size: 0.875em;
}
.header--show-account-links .header__account-container {
	display: block;
}

.header--show-account-links .header__account {
	background-color: #4dade9;
}

.header__paragraph {
	margin: 15px 0 10px 0;
	color: #bce5fe;
	font-size: 0.75em;
}

.header__login-btn {
	display: inline-block;
	padding: 12px 18px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	border: 1px solid #fff;
	color: #fff;
	font-size: 0.875em;
	margin: 30px 0;
}

a.header__login-btn {
	color: #fff;
}

.header__menu-border {
	height: 1px;
	background-color: #94d3ed;
	width: 100%;
}

.header__register-btn {
	color: #333;
}

.header__register-text {
	display: inline-block;
	margin-top: 20px;
	color: #fff;
}

.header__register-text .header__register-btn {
    color: #fff;
}

.nav-bar {
	background-color: #e5e5e5;
	margin-bottom: 40px;
	height: 60px;
	overflow: hidden;
}

.nav-menu {
	height: 90px;
	list-style: none;
	padding: 0;
	margin-top: 25px;
	overflow-x: scroll;
	overflow-y: hidden;
}

.nav-menu__item {
	padding-bottom: 15px;
	margin: 0 13px;
	white-space: nowrap;
}

.nav-menu__item a {
	color: #333;
}
.nav-menu__item--active {
	padding-bottom: 11px;
	border-bottom: 4px solid #4dade9;
}

.content {
	display: block;
	margin: 0;
	padding: 0;
	min-height: calc(100vh - 235px);
}

.form {
	padding-top: 40px;
	background-color: #f8f8f8;
	display: block;
	width: 630px;
	margin: 0 auto;
}

.form__form {
	width: 100%;
}

.form--offer {
	padding-bottom: 40px;
}

.form__side {
	width: 235px;
}

.form__container--user-email {
	width: 300px;
	margin: 0 auto;
}

.form__container--user-email .form__side {
	width: auto;
}

.form__container--user-email .form-splitter__text {
	background-color: #fff;
}


.form__side > div {
	width: 100%;
}

.form__btn {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;

	cursor: pointer;
	width: 100%;
	max-width: 235px;
	min-height: 42px;
	border-radius: 3px;
	background-color: #4dade9;
	border: none;
	color: #fff;
	font-family: "TabacSans", sans-serif;
}

a.form__btn {
	color: #fff;
}

.form__error-container {
    font-size: 0.75em;
}

.reminder-container {
	width: 100%;
	max-width: 235px;
}

.reminder-container {
	display: inline-block;
}

.form--offer .form__group {
	max-width: 235px;
	margin: 0 auto;
}

.form-splitter {
    padding: 10px;
	position: relative;
}

.form-splitter:before {
	width: 1px;
	display: block;
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	background-color: #d1d1d1;
	opacity: .6;
}

.form-splitter.form-splitter__always-horizontal {
	width: 100%;
}

.form-splitter.form-splitter__always-horizontal:before {
	height: 1px;
	width: auto;
	left: 0;
	top: 50%;
	bottom: auto;
	right: 0;
}

.form-splitter__text {
	display: inline-block;
	background-color: #f8f8f8;
	padding: 5px;
	color: #d1d1d1;
	font-size: 12px;
	font-weight: 300;
	font-style: italic;
	position: relative;
}

.buttonsContainer .form-splitter__text{
	background-color: #fff;
}

.form__input {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;

	border: 1px solid #e0e0e0;
	border-radius: 3px;
	background-color: #fff;
	padding: 8px;
	width: 100%;
	outline: none;
	font-size: 1em;
	font-family: "TabacSans", sans-serif;
}

.form__input--select {
	background-image: url('/static/img/icon-down-arrow.svg');
	background-repeat: no-repeat;
	background-position: center right 10px;
	background-size: 10px 5px;
}

.form__input--select::-ms-expand {
	display: none;
}

.form__input:active,
.form__input:focus {
	border-color: #22ace3;
	outline: none;
}

.form__input--no-border {
	border-color: transparent;
}

.form__input--no-border:active,
.form__input--no-border:focus {
    border-color: transparent;
}

.form__input--no-pad {
	padding: 0;
}

.form__group {
	display: block;
	font-size: 0.75em;
}

.form__group--remember-me {
	margin: 18px 0;
	font-size: 0.6875em;
}

.form__group--remember-me .custom-checkbox__text {
	padding-top: 4px;
}

.text--additional {
	display: inline-block;
	color: #4dade9;
}

.text--spacing {
	margin-left: 10px;
}

.login__register-container {
	font-size: 0.875em;
	background-color: #efefef;
	height: 115px;
	padding: 10px;
	margin-top: 40px;
	text-align: center;
}

.login__register-btn {
	color: #4dade9;
}

.minumeedia__container {
	background-color: white;
	padding: 16px 0 16px 0;
}

.minumeedia__logo {
	background-image: url('/static/img/logo-minumeedia.svg');
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 130px auto;
	width: 130px;
	height: 20px;
	left: 0;
	overflow: visible;
}

.minumeedia__btn {
	border: 1px solid #4dade9;
	border-radius: 40px;
	font-size: 11px;
	width:330px;
}
.minumeedia__btn:hover {
	cursor: pointer;
}

.minumeedia__btn-text-product::after {
	content:"MINU MEEDIA DIGIPAKETT ";
}

.minumeedia__btn-text-price--blue,
.minumeedia__text--blue{
	color:#00afec;
	font-weight: 600;
 }
.minumeedia__btn-text-price--container {
	display: inline-block;
}

.minumeedia__btn-text--regular{
	font-weight: 400;
}
.minumeedia__btn-text--regular .hidden-lg {
	display: none;
}
.minumeedia__btn-text {
	font-size: 14px;
	text-align: center;
	color: #303030;
	margin: 11px;
}

.minumeedia__btn-text-offer {
	font-size: 12px;
	margin-top: 7px;
	color: #999999;
	font-size: 12px;
	letter-spacing: 0.12px;
}

.minumeedia__text{
	display: inline-block;
	width: 116px;
	color: #999999;
	font-size: 11px;
	text-align: right;
}

.minumeedia__border {
	width: 631px;
	height:2px;
	background-color:#e1e1e1;
	position:absolute;
}

.custom-checkbox {
	display: none;
}

.custom-checkbox + label span:first-child {
	display: inline-block;
	vertical-align: top;
	cursor: pointer;
	width: 20px;
	height: 20px;
	min-width: 20px; /* required when flexed */
	border-radius: 3px;
	border: 1px solid #d7d7d7;
	background-color: #fff;
	background-image: url('/static/img/checked.png');
	background-position: 4px 6px;
	background-size: 65%;
	background-repeat: no-repeat;
}

.custom-checkbox__text {
	display: inline-block;
	width: calc(100% - 30px);
	padding-left: 3px;
}

.custom-checkbox:checked + label span:first-child {
	border-color: #33b9ef;
	background-color: #33b9ef;
}

.custom-checkbox + label span.form__input--invalid:first-child,
.form__input--invalid,
.form__input[type="text"].form__input-required.form__input--invalid {
	border-color: #ea0000;
}

.user-auth-methods {
	border-top: 1px solid #f2f2f2;
}

.user-auth-methods__info {
	font-size: 0.875em;
	margin: 30px 0;
}

.publisher__btns,
.user-auth-methods__btns {
	margin: 0 auto;
	max-width: 510px;
}

.publisher__btns .publisher__btn,
.user-auth-methods__btns .auth-login {
	margin: 0 10px 15px 10px;
	display: inline-block;
}

.user__data {
    width: 402px;
	margin-right: 100px;
}

.user__data--newspaper {
	margin: 0 auto;
	width: 460px;
}

.user__data--newspaper .user-data-row__title {
	margin-right: 5px;
}

.user__avatar {
	text-align: center;
}

.hide-avatar-label,
.user__avatar .settings-heading {
	width: 150px;
	margin: 0 auto 45px auto;
	display: block;
	text-align: left;
}

.footer {
	background-color: #f1f1f1;
	color: #666;
	font-size: 0.6875em;
	margin-top: 50px;
}

.footer__slash {
	color: #ccc;
	padding: 0 7px;
}

.heading-1,
h1 {
	font-size: 1em;
	font-weight: 600;
	text-align: center;
	margin: 0 0 15px 0;
}

.publisher__btn,
.auth-login {
	border: 0;
	width: 235px;
	height: 40px;
	margin: 15px auto;
	cursor: pointer;
	text-align: left;
	border-radius: 3px;
	background-repeat: no-repeat;
	background-position: 16px center;
	padding-left: 50px;
	color: #fff;
	transform: translateZ(0);
}

a.publisher__btn,
a.auth-login {
	color: #fff;
}

.auth-login--payment {
    padding: 0;
    width: 50px;
    display: inline-block;
    background-position: center;
	margin: 0;
}

.auth-login--payment + .auth-login--payment {
	margin: 0 0 0 10px;
}

.verificationCode {
	margin: 10px 0;
}

.publisher__btn {
	padding: 0;
	background-position: center;
}

.auth-login--id {
	background-color: #005ba8;
	background-image: url('/static/img/icon-id.svg');
	background-size: 20px 16px;
}

.auth-login--id:active,
.auth-login--id:hover {
	background-color: #2c79b9;
}

.auth-login--fb {
	background-color: #3b5998;
	background-image: url('/static/img/icon-fb.svg');
	background-size: 12px 22px;
}

.auth-login--fb:active,
.auth-login--fb:hover {
	background-color: #4362a4;
}

.auth-login--google {
	background-color: #dc4e41;
	background-image: url('/static/img/icon-google.svg');
	background-size: 28px 18px;
}

.auth-login--google:active,
.auth-login--google:hover {
	background-color: #ea5e52;
}

.auth-login--tw {
	background-color: #55acee;
	background-image: url('/static/img/icon-twitter.svg');
	background-size: 21px 17px;
}

.auth-login--tw:active,
.auth-login--tw:hover {
	background-color: #6fbaf3;
}

.auth-login--draugiem {
	background-color: #F26722;
	background-image: url('/static/img/icon-draugiem.svg');
    background-size: 47px 42px;
    background-position-x: inherit;
}

.auth-login--draugiem:active,
.auth-login--draugiem:hover {
	background-color: #f47b3f;
}

.auth-login--tvnetinbox {
	background-color: #1C2D87;
	background-image: url('/static/img/icon-tvnet.svg');
    background-size: 47px 42px;
    background-position-x: inherit;
}

.auth-login--tvnetinbox:active,
.auth-login--tvnetinbox:hover {
	background-color: #33449D;
}


.publisher__btn--81 {
	background-color: #4dade9;
	background-image: url('/static/img/logo-postimees.svg');
	background-size: 103px 20px;
}

.publisher__btn--383 {
	background-color: #00ab4e;
	background-image: url('/static/img/logo-parnupostimees.svg');
	background-size: 142px 21px;
}

.publisher__btn--246 {
	background-color: #0e0e0e;
	background-image: url('/static/img/logo-sakala.svg');
	background-size: 71px 26px;
}

.publisher__btn--382 {
	background-color: #1e77bc;
	background-image: url('/static/img/logo-virumaateataja.svg');
	background-size: 157px 18px;
}

.publisher__btn--380 {
	background-color: #007852;
	background-image: url('/static/img/logo-lepostimees.svg');
	background-size: 111px 20px;
}

.publisher__btn--381 {
	background-color: #2356a3;
	background-image: url('/static/img/logo-jarvateataja.svg');
	background-size: 108px 19px;
}

.publisher__btn--384 {
	background-color: #ED1C24;
	background-image: url('/static/img/logo_tartu_postimees.svg');
	background-size: 108px 19px;
}

.publisher__btn--4777 {
	background-color: #005185;
	background-image: url('/static/img/logo_pohjarannik.svg');
	background-size: 120px 19px;
}

.publisher__btn--veebitv {
	background-color: #e83f33;
	background-image: url('/static/img/logo-veebitv.svg');
	background-size: 120px;
}

.settings-heading {
	text-align: left;
	margin-bottom: 45px;
}

.user-form {
    max-width: 650px;
    margin: 0 auto 30px auto;
}

.user-data-row {
	min-height: 55px;
}

.user-data-row .form__input {
	font-size: 0.875em;
}

.user-data-row__modify {
	display: none;
	width: 230px;
}

.user-data-row__value {
	margin-left: 9px;
	font-size: 0.875em;
}

.user-data-row--hidden,
.user__data--modifying #modify-user-data-btn,
.user__data--modifying .user-data-row__value,
#save-user-data-btn {
	display: none;
}

.user__data--modifying .user-data-row--hidden {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}
.user__data--modifying .user-data-row__modify,
.user__data--modifying #save-user-data-btn {
	display: inline-block;
}

.user__data--modifying .user-data-row__modify-block {
	display: block;
}

.form__input--select-short {
	width: 60px;
	margin-right: 15px;
}

.form__input--select-long {
	width: 80px;
}

.form__input--switch-type {
	padding-right: 25px;
}

.btn--switch-type {
	width: 25px;
	display: inline-block;
	text-align: center;
	font-size: 0.875em;
	padding: 8px 0;
	margin-left: -25px;
}

.user-data-row__title {
	width: 170px;
	display: inline-block;
	font-size: 0.75em;
}

.user__image,
.user__image-container {
	width: 150px;
	height: 150px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

.user__image-container {
	background-color: #eee;
	position: relative;
	margin: 0 auto;
}

.user__image-container:after {
	background-position: center center;
	background-repeat: no-repeat;
	bottom: -15px;
	content: "";
	position: absolute;
	left: 0;
	height: 23px;
	width: 23px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

.user__image-container--id:after {
	background-color: #005ba8;
	background-image: url('/static/img/icon-id.svg');
	background-size: 15px;
}

.user__image-container--facebook:after {
	background-color: #3b5998;
	background-image: url('/static/img/icon-fb.svg');
	background-size: 8px auto;
}

.user__image-container--google:after {
	background-color: #dc4e41;
	background-image: url(/static/img/icon-google.svg);
	background-size: 17px auto;
}

.user__image-container--twitter:after {
	background-color: #55acee;
	background-image: url(/static/img/icon-twitter.svg);
	background-size: 15px auto;
}

.user__image-container--draugiem:after {
	background-color: #F26722;
	background-image: url(/static/img/icon-draugiem.svg);
	background-size: 30px auto;
}

.user__image-container--inboxlv:after {
	background-color: #F26722;
	background-image: url(/static/img/icon-tvnet.svg);
	background-size: 25px auto;
}

.input--upload-avatar {
	display: none;
}

.input--upload-avatar + label {
	position: absolute;
	left: 50%;
	cursor: pointer;

	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);

	bottom: -20px;
	width: 40px;
	height: 40px;

	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;

	background-color: #4dade9;

	border: 2px solid #fff;
}

.person-nav {
	margin-bottom: 20px;
}

.person-nav__item {
	margin-right: 20px;
	font-weight: 500;
	color: #999;
}

a.person-nav__item {
	color: #999;
}

.person-nav__item--active,
a.person-nav__item--active {
	color: #333;
}

.juridical-heading {
	font-size: 2.8125em;
	font-weight: 600;
	text-align: left;
}

.juridical-info {
	font-size: 1.5em;
	margin-top: 25px;
	margin-bottom: 40px;
	font-weight: 500;
}

.juridical-department {
	font-weight: 500;
	margin-bottom: 25px;
}

.juridical-department__name {
	vertical-align: top;
	display: inline-block;
	width: 235px;
}

.juridical-department__data {
	vertical-align: top;
	display: inline-block;
}

.juridical-department__row {
	margin: 0;
	padding: 0;
}

.mysubscription {
	padding: 20px 0 15px 0;
	border-bottom: 1px solid #e5e5e5;
}

.mysubscription__item {
	flex-basis: 100%;
	padding: 0 40px;
}

.mysubscription__title {
	color: #4dade9;
	font-size: 1.5em;
	font-weight: 500;
	text-transform: uppercase;
}

.mysubscription__valid-to {
	color: #777777;
	font-size: 14px;
	margin-top: 10px;
}

.form__btn--anchor {
	display: inline-block;
	width: auto;
	padding: 11px 40px;
}

.form__btn--update_card,
.form__btn--end-subscription {
	margin-left: 10px;
}

.form__btn--no-limit {
	max-width: none;
}

.order-box {
	display: inline-block;
	width: calc(33.3% - 18px);
	height: 320px;
	background-color: #f8f8f8;
	margin: 0 9px 20px 9px;
	text-align: center;
	padding: 30px 20px 0 20px;
	vertical-align: top;
}

.order-box:hover {
	background-color: #e5e5e5;
}

.order-box__img {
	max-width: 270px;
	max-height: 142px;
}

.order-box__prod-name {
	color: #333333;
	font-size: 1.5em;
	font-weight: 500;
}

.orders-box.showDescriptionAndPrice a {
	height: auto;
}

.showDescriptionAndPrice .form__btn--anchor {
	margin-bottom: 28px;
}

.showDescriptionAndPrice .order-box__prod-short-description {
	color: #666666;
	font-size: 14px;
	font-weight: 400;
	line-height: 18px;
	margin-top: 10px;
	display: block;
}

.showDescriptionAndPrice .order-box__prod-price {
	color: #4dade9;
	font-size: 24px;
	font-weight: 400;
	line-height: 32px;
	display: block;
}

.showDescriptionAndPrice .order-box__prod-additional-text {
	color: #666666;
	font-size: 11px;
	display: block;
	font-weight: 600;
}

.mail {
	width: 100%;
}

.loginTo {
	font-size: 12px;
	margin-bottom: 6px;
}

.mail-box {
	width: 50px;
	height: 38px;
	border-radius: 3px;
	background-color: #4dade9;
	background-image: url("/static/img/subscriptions/mail_icon.svg");
	background-size: 25px 16px;
	background-position: center;
	background-repeat: no-repeat;
	display: inline-block;
}

.mail-box--facebook {
	background-color: #3b5998;
	background-image: url(/static/img/icon-fb.svg);
	background-size: 12px 22px;
}

.mail-box--google {
	background-color: #dc4e41;
	background-image: url(/static/img/icon-google.svg);
	background-size: 28px 18px;
}

.example-products-box {
	width: 400px;
	margin-right: 18px;
	font-size: 0;
}

.example-products-box__item {
	background-color: #f8f8f8;
	padding: 0 30px;
}

.product-87 .example-products-box__item,
.product-93 .example-products-box__item,
.product-95 .example-products-box__item,
.product-97 .example-products-box__item,
.product-99 .example-products-box__item,
.product-101 .example-products-box__item,
.product-103 .example-products-box__item,
.product-105 .example-products-box__item,
.product-106 .example-products-box__item,
.product-111 .example-products-box__item,
.product-120 .example-products-box__item,
.product-121 .example-products-box__item,
.product-123 .example-products-box__item,
.product-124 .example-products-box__item,
.product-125 .example-products-box__item,
.product-126 .example-products-box__item
{
	padding: 0;
	background: transparent;
}

.product-121 .product-title div {
	font-size: 14px;
}

.example-products-box__newspaper-img {
	margin-right: 15px;
}

.example-products-box__title {
	color: #333333;
	font-size: 1.5em;
	font-weight: 500;
	padding: 0;
	margin: 0;
}

.example-products-box__title--mobile {
	display: none;
}

.example-products-box__info {
	padding: 0;
	margin: 0;
}

.example-products-box.example-products-box-mobile {
	display: none;
}

.product-periods {
	background-color: #f8f8f8;
	padding: 0 30px;
}

.price-container-top {
	display: block;
	position: relative;
	text-align: center;
	padding: 30px 0;
}

.price-container-top + .price-container-top {
	border-top: 1px solid #e5e5e5;
}

.product-title {
	font-weight: 400;
	font-size: 28px;
	margin-bottom: 20px;
}

.price-title {
	color: #333333;
	font-size: 24px;
	font-weight: 400;
}

.price-container {
	margin-bottom: 20px;
}

.old-price {
	text-decoration: line-through;
	font-size: 14px;
}

.real-price {
	color: #4dade9;
	font-size: 44px;
	font-weight: 500;
}

.period-custom-radio {
	font-size: 0;
}

.product-description__small-text {
	padding: 5px 0;
	font-size: 11px;
	line-height: 1.4em;
	display: inline-block;
}

.product-description__small-text p {
	font-size: 13px;
}

.product-description__small-text .apollo-offer {
	color: #ff8200;
	display: block;
}

.product-description__additional-text {
	padding: 5px 0;
	font-size: 11px;
	line-height: 1.4em;
	display: inline-block;
	font-weight: 600;
}

.period-custom-radio__radio {
	display: none;
}

.user-disclaimer__big-text {
	font-size: 20px;
	font-weight: 400;
	line-height: 1.2em;
	text-align: center;
	padding: 30px 20px;
}

.rightSide {
	align-self: flex-end;
	position: relative;
}

.breadcrumb {
	overflow: hidden;
	counter-reset: flag;
	margin-bottom: 31px;
}

.breadcrumb__title, .breadcrumb__link:before {
	position: absolute;
	z-index: 2;
	overflow: hidden;
	white-space: nowrap;
}

.breadcrumb__link {
	text-decoration: none;
	outline: none;
	display: block;
	float: left;
	font-size: 14px;
	font-weight: 400;
	padding: 16px 10px 0 95px;
	background: linear-gradient(#666, #333);
	position: relative;
	width: 25%;
	height: 49px;
	background: #f5f5f5;
	color: #888888;
	transition: all 0.5s;
}

a.breadcrumb__link {
	color: #888888;
}

.breadcrumb__link:first-child {
	padding-left: 60px;
}

.breadcrumb__link:first-child:before {
	left: 19px;
}

.breadcrumb__link:last-child {
	padding-right: 20px;
}

.breadcrumb__link:after {
	content: '';
	position: absolute;
	top: 0;
	right: -18px;
	width: 49px;
	height: 49px;
	transform: scale(1, -2) rotate(45deg);
	z-index: 1;
	box-shadow: 3px -3px 0 0 rgba(255, 255, 255, 1);
	background: #f5f5f5;
	color: #888888;
	transition: all 0.5s;
}

.breadcrumb__link:last-child:after {
	content: none;
}

.breadcrumb__link:before {
	content: counter(flag);
	counter-increment: flag;
	border-radius: 100%;
	width: 26px;
	height: 26px;
	line-height: 25px;
	margin: 12px 0;
	position: absolute;
	top: 0;
	left: 55px;
	font-weight: 500;
	background: #e5e5e5;;
	color: #888888;
	text-align: center;
}

.breadcrumb__link:hover:before {
	background-color: #f5f5f5;
	transition: all 0.5s
}

.breadcrumb__link--active {
	color: #4dade9;
	min-width: 155px;
}

a.breadcrumb__link--active  {
	color: #4dade9;
}

.breadcrumb__link--active:before {
	background-color: #4dade9;
	color: #ffffff;
}
.breadcrumb__link:hover, .breadcrumb__link--active,
.breadcrumb__link:hover:after, .breadcrumb__link--active:after{
	background: #e5e5e5;
}

.payment-method__link {
    display: inline-block;
    width: 96%;
    height: 18px;
	margin: 0 auto;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.payment-options {
	padding: 0;
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.25s linear;
	text-align: center;
}

.payment-options.payment-options__active {
	max-height: 250px;
}

.payment-flow__section-title {
    font-weight: 500;
	font-size: 11px;
	margin: 10px 0;
	text-transform: uppercase;
	white-space: nowrap;
	text-align: center;
	display: inline-block;
}

.pfMobileNormalView .payment-flow__section-title {
	display: block;
}

.payment-flow__section-title--big {
	font-size: 1.625em;
}

.payment-flow__info-border {
	border-top: 1px solid #e5e5e5;
}

.pfPaymentOption {
	display: inline-block;
	text-align: center;
	width: 132px;
	padding: 15px 4px;
	overflow: hidden;
	border-radius: 3px;
	border: 1px solid #e1e1e1;
	cursor: pointer;
	margin: 2.5px;
}

.pfPaymentOption:first-child {
	margin-left: 0;
}

.pfPaymentOption:last-child {
	margin-right: 0;
}

.pfPaymentOption .payment-flow__section-title:before {
	content: '';
	display: block;
	height: 24px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% auto;
	vertical-align: middle;
	margin: 0 auto 4px;
}

.pfPaymentOption-banklink .payment-flow__section-title:before {
	background-image: url("/static/img/subscriptions/icon-e-arve.svg");
	width: 35px;
}

.pfPaymentOption-mobile .payment-flow__section-title:before {
	background-image: url("/static/img/subscriptions/icon-mobiilimakse.svg");
	width: 16px;
}

.pfPaymentOption-creditcard .payment-flow__section-title:before {
	background-image: url("/static/img/subscriptions/icon-kaardimakse.svg");
	width: 31px;
}

#iframe-payment-container {
    z-index: 9999;
    background-color: #ffffff; 
    min-width: 320px; 
    min-height: 325px; 
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display:none;
}

#iframe-payment-container .closeBtn {
    height: 40px;
    width: 40px;
    cursor: pointer;
    position: absolute;
    right: 5px;
    top: 5px;
    text-align: center;
    background-image: url("/static/img/pysimaksed/close_modal.svg");
	background-repeat: no-repeat;
	background-size: 25px 25px;
	background-position: center;
}

#iframe-payment-everypay {
	max-height: 100vh;
	max-width: 100vw;
    border: 0px;
    height: 420px;
    width: 320px;
}

#dimmed_background_box {
	display: none;
	height: 100%;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9998;
	background-color: #000000;
	opacity: 0.5;
}

#dimmed_background_box .loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    position: fixed;
    left: 50%;
    top: 50%;
    margin: -60px 0 0 -60px;
    z-index: 9999;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.payment-bill-list {
    list-style: none;
    background-color: #f8f8f8;
    padding: 0 20px;
    font-weight: 400;
    font-size: 1.125em;
}

.payment-bill-list__item {
    padding: 15px 0;
}

.payment-bill-list__item:not(:last-child) {
    border-bottom: 1px solid #e5e5e5;
}

.payment-bill-list__title {
    display: inline-block;
    padding-right: 15px;
}

.payment-bill-list__title--small {
	font-size: 0.875em;
}

.payment-bill-list__description {
	max-width: 400px;
}

.payment-bill-list__price {
    display: inline-block;
    padding-left: 5px;
}

.payment-bill-list__total {
	text-align: right;
	font-weight: 500;
}

.hover-tooltip {
	cursor: pointer;
	position: relative;
	width: 17px;
	height: 17px;
	border-radius: 50%;
	background-color: #4dade9;
	color: #fff;
	font-size: 0.75em;
	z-index: 5;
	margin-left: 4px;
}

.hover-tooltip a {
	color: #fff;
}

.hover-tooltop__content {
	display: none;
	background: #4dade9;
	position: absolute;
	top: calc(50% - 1px);
	left: calc(100% + 15px);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 250px;
	padding: 8px;
	color: #fcfcfc;
	line-height: 150%;
}

.hover-tooltop__content:after {
	right: 100%;
	top: 50%;
	border-style: solid;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(136, 183, 213, 0);
	border-right-color: #4dade9;
	border-width: 10px;
	margin-top: -10px;
}

.hover-tooltip--show .hover-tooltop__content {
	display: block;
}

#house, #appartment, #houseTitle, #appartmentTitle
{
	display: none;
}

.required:after {
	content: '\00a0*';
	color: #e52412;
}

.terms-disclaimer {
	color: #333333;
	font-size: 14px;
	font-weight: 300;
	width: 100%;
	padding: 30px 0;
	text-align: center;
}

.promotional-disclamer {
	color: #333333;
	font-size: 14px;
	font-weight: 300;
	width: 100%;
	padding: 5px 0 30px 0;
	text-align: center;
}

.paper-order__total-container {
	color: #333333;
	font-size: 24px;
	background-color: #f8f8f8;
	text-align: center;
	padding: 15px;
}

.paper-order__total-container .order-total__title {
	font-weight: 400;
}

.paper-order__total-container #order-total__sum {
	font-weight: 500;
	margin-left: 10px;
}

.paper-order__total-container #order-total__sum:after {
	content: attr(data-after);
}

.promotional-disclamer,
.terms-disclaimer,
.pfPaymentOption,
.variant-19-alternative {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	font-size: 14px;
}

#variant-19-faux-checkbox + label span:first-child {
	vertical-align: middle;
	margin: 0 6px 3px 0;
}

.variant-19-alternative {
	padding: 0 15px;
}

#variant-19-paper-order {
	border: none;
	padding: 10px 0;
	display: none;
	text-align: left;
}

.variant-19-paper-order__paper-select {
	max-width: 230px;
}

.variant-19-paper-order__disclaimer {
	font-size: 14px;
	margin-left: 14px;
	-ms-flex-shrink: 0.8;
	-ms-flex-negative: 0.8;
	-webkit-flex-shrink: 0.8;
	flex-shrink: 0.8;
}

.variant-19-paper-order__address .form__group,
.variant-19-paper-order__personal-data .form__group {
	margin: 10px 0;
	-ms-flex-shrink: 0.5;
	-ms-flex-negative: 0.5;
	-webkit-flex-shrink: 0.5;
	flex-shrink: 0.5;
}

.variant-19-paper-order__address .form__group span,
.variant-19-paper-order__personal-data .form__group span {
	display: inline-block;
	width: 60px;
}

.variant-19-paper-order__address .form__input,
.variant-19-paper-order__personal-data .form__input {
	width: 165px;
	margin-left: 14px;
	margin-right: 6px;
}

.variant-19-paper-order__address-numbers .form__input {
	width: 60px;
}

.payment-disclaimer {
	font-size: 11px;
	color: #666;
	text-align: center;
	padding: 15px 0;
}

.payment-disclaimer--phone {
	padding-top: 0;
}

.user-agreements .switch-title {
    margin-bottom: 6px;
    font-weight: bold;
}

.user-agreements .title-link {    
    color: #333;
    font-size: 1em;
}

.user-agreements .switch-history {
    color: #D3D3D3;
    margin-top: 6px;
    font-size: 12px
}

.agreements-heading {
    text-align: left;
    margin-bottom: 15px;
}

.switch-field {
    padding: 10px 0 20px 0;
	overflow: hidden;
}

.switch-history.hide {
    display:none;
}

.switch-inputs {
    margin-top: 20px;
}

.switch-field input {
    position: absolute !important;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    width: 1px;
    border: 0;
    overflow: hidden;
}

.switch-field label {
    margin: auto 0;
}

.switch-field label {
    display: inline-block;
    width: 100%;
    max-width: 150px;
    min-height: 35px;
    padding: 10px 0;
    background-color: #D3D3D3;
    border-radius: 3px;
    margin-right: 35px;
    color: #ffffff;
    font-size: 14px;
    font-weight: normal;
    text-align: center;
    text-shadow: none;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition:    all 0.1s ease-in-out;
    -ms-transition:     all 0.1s ease-in-out;
    -o-transition:      all 0.1s ease-in-out;
    transition:         all 0.1s ease-in-out;
}

.switch-field label:hover {
	cursor: pointer;
}

.switch-field input:checked + label {
    background-color: #00aeef;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.agreements__btn {
    display: inline-block;
    width: 100%;
    max-width: 150px;
    min-height: 35px;
    padding: 10px 0;
    background-color: #00aeef;
    border-radius: 3px;
    color: #ffffff;
    font-size: 13px;
    font-weight: normal;
    text-align: center;
    text-shadow: none;
    margin-bottom: 20px;
}

@media only screen and (max-width: 939px) {
	.visible-only__desktop {
		display: none;
	}

	.visible-only__mobile {
		display: inline-block;
	}

	.wrap {
		max-width: 700px;
	}

	.nav-bar {
		margin-bottom: 10px;
	}

    .header__drop-links-container,
    .header__account-container {
        left: 0;
        right: 0;
        width: auto;
    }

	.content {
		display: block;
		margin: 0;
		padding: 0;
		min-height: calc(100vh - 280px);
	}

	.spacer {
		height: 25px;
	}

	.spacer--s,
	.spacer--m {
		height: 10px;
	}

	.spacer--border {
		border-top: none;
	}

	.alert {
		width: auto;
	}
	.user__data--newspaper,
	.form {
		max-width: 450px;
		width: 100%;
	}

	.form-splitter {
		width: 100%;
	}

	.form-splitter:before {
		height: 1px;
		width: auto;
		left: 0;
		top: 50%;
		bottom: auto;
		right: 0;
	}

	.mysubscription,
	.payment-flow,
	.user-form,
	.form__container {
		-webkit-box-orient: vertical;
		-moz-box-orient: vertical;
		-webkit-box-direction: normal;
		-moz-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.text-center-mob {
		text-align: center;
	}

	.example-products-box {
		width: 100%;
		margin: 0;
	}

	.example-products-box__description {
		display: block;
	}

	.example-products-box__newspaper-img {
		margin: 0;
	}

	.example-products-box__title {
		display: none;
		margin-bottom: 20px;
		font-size: 1.25em;
	}

	.example-products-box__title--mobile {
		display: block;
	}

	.example-products-box.example-products-box-mobile {
		display: block;
	}

	.mysubscription {
		text-align: center;
	}

	.mysubscription__item {
		flex-basis: auto;
	}

    .user-form,
    .form__container {
        padding: 15px 0;
    }

	.form__container {
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.heading--payment-flow {
		margin: 20px 0;
		font-size: 26px;
	}

    .payment-flow > div:last-child,
	.form__side:not(.form__container--user-email):last-child {
		order: 0;
		-ms-flex-preferred-size: auto;
		-webkit-flex-basis: auto;
		flex-basis: auto;
	}

	.user-data-row__modify,
	.form__container--user-email .form__side:first-child,
	.user__avatar .settings-heading,
	.user__avatar,
	.user__data {
		width: 100%;
	}

	.form__side {
		width: 235px;
	}

	.form__side.flex--equal-width {
		-ms-flex-basis: auto;
		-ms-flex-preferred-size: auto;
		-webkit-flex-basis: auto;
		flex-basis: auto;
	}

	.user-auth-methods__btns,
	.publisher__btns {
		width: 300px;
		text-align: center;
	}

	.auth-login:not(.auth-login--payment) {
		margin: 7px auto;
	}

	.user__avatar .settings-heading {
		margin-top: 20px;
	}

	.publisher__btns .publisher__btn,
	.user-auth-methods__btns .auth-login {
		margin: 0 0 15px 0;
	}

	.user-data-row__title {
		width: auto;
		display: block;
		text-align: left;
		margin-bottom: 5px;
	}

	.user-data-row__value {
		margin: 0;
	}

	.user-data-row {
		margin-bottom: 20px;
	}
	.user-data-row:not(.user-data-row--hidden) {
		height: auto;
		display: block;
	}

	.form__input--select-long {
		width: calc(100% - 150px);
	}

	.juridical-department__name {
		display: block;
		margin-bottom: 20px;
	}

	.wrap--footer {
		height: 120px;
		display: block;
		text-align: center;
	}

	.footer__item {
		display: block;
		margin-bottom: 5px;
	}

	.footer__copyright {
		margin-top: 15px;
	}

	.order-box {
		width: auto;
		display: block;
	}

	.footer__slash,
    .header__email,
    .breadcrumb :not(.breadcrumb__link--active) > .breadcrumb__title {
		display: none;
	}

	.breadcrumb__link:not(.breadcrumb__link--active):not(first-child):before {
		left: 40%;
	}

	.breadcrumb__link:not(.breadcrumb__link--active):first-child:before {
		left: 30%;
	}

	.breadcrumb__link {
		padding: 16px 0 0 60px;
		width: 10%;
	}

	.breadcrumb__link--active {
		padding: 16px 0 0 60px;
		width: 100%;
	}

	.breadcrumb__link--active:hover:before {
		color: #4dade9;
	}

	.breadcrumb__link--active:before {
		left: 25px;
	}

	.breadcrumb__link:first-child:after {
		right: 3px;
	}

	.breadcrumb__link:first-child {
		z-index: 3;
	}

	.breadcrumb__link:nth-child(2) {
		z-index: 2;
	}

	.breadcrumb__link:after {
		right: 0;
	}

	.login__register-container {
		margin-top: 3px;
		height: 160px;
	}


	.juridical-heading {
		font-size: 1.875em;
	}

	.form-elements-width {
		width: 235px;
		margin: 0 auto;
	}

	.payment-options.payment-options__active {
		max-height: 1000px;
	}

	.price-container-top {
		padding: 15px 0;
	}

	.product-periods {
		padding: 0 12px;
	}

	.product-title {
		font-size: 26px;
	}

	.user-disclaimer__big-text {
		font-size: 16px;
		padding-top: 15px;
		padding-bottom: 10px;
	}

	.terms-disclaimer {
		padding: 15px 0;
	}

	.minumeedia__container {
		text-align: center;
		display: block;
	}

	.minumeedia__logo {
		background-position: center center;
		margin-bottom: 15px;
		margin-left: auto;
		margin-right: auto;
		width:144px;
		height:25px;
	}

	.minumeedia__btn {
		margin-left: auto;
		margin-right: auto;
		border-radius: 50px;
		font-size: 14px;
		width:250px;
	}

	.minumeedia__btn-text-price--blue{
		font-weight: 400;
	}
	.minumeedia__text--blue {
		font-weight: 600;
	}

	.minumeedia__btn-text-price--month {
		color: #333;
	}

	.minumeedia__btn-text-price--container {
		display: block;
		margin-left: 0;
	}

	.minumeedia__btn-text-price--container span:first-child {
		font-size: 30px;
	}

	.minumeedia__btn-text {
		text-align: center;
		color: #666666;
		margin: 11px 25px;
	}

	.minumeedia__btn-text--regular .hidden-lg {
		display: block;
	}

	.minumeedia__text{
		width: 250px;
		height: 11px;
		font-size: 11px;
		margin-left: auto;
		margin-right: auto;
		margin-top:7px;
		text-align: center;
	}

	.minumeedia__border {
		display: none;
	}
    
    .user-agreements .user-form {    
        margin: 0;
    }

	span.form__btn--end-subscription {
		display: block;
	}
}

/* this need refactoring */
.mobileExisting .popUpWindow .smallWindow {
	display: block;
}

.mobileExisting .popUpWindow .smallWindow h4 a {
	margin-top: 15px;
}

.popUpWindow {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.75);
	z-index: -1;
	color: #444;
}

.popUpWindow.successFlag {
	z-index: 25;
	display: block;
	height: 100%;
}

.popUpWindow .smallWindow {
	background-color: #fff;
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 45px;
    padding: 15px;
	text-align: center;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: none;
}

.popUpWindow .smallWindow h2,
.popUpWindow .smallWindow h4 {
	margin: 0;
	padding: 0;
	font-weight: 600;
	margin-bottom: 30px;
}

.popUpWindow .smallWindow .extra {
    padding: 0 20px;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 30px;
}

.popUpWindow .smallWindow .extra .blue {
    color: #4dade9;
}

.popUpWindow .smallWindow.spacious h2 {
	margin-bottom: 2.9em;
	margin-top: 1.4em;
}

.popUpWindow .smallWindow h2 {
	font-size: 28px;
	line-height: 1.36em;
}

.popUpWindow .smallWindow h2 span {
	color: #22ace3;
}

.popUpWindow .smallWindow h4 {
	font-size: 14px;
	line-height: 1.57em;
}

.popUpWindow .smallWindow a:not(.conditions),
.banner.hasSubscription a {
	height: 44px;
	line-height: 3.14em;
	font-size: 14px;
	font-weight: 600;
	display: inline-block;
	color: #fff;
	background-color: #4dade9;
	border-radius: 3px;
	padding: 0 10px;
	margin-bottom: 10px;
	margin-right: 5px;
	width: 100%;
	max-width: 210px;
}

@media only screen and (min-width: 1170px) {
	.popUpWindow .smallWindow {
		position: absolute;
		max-width: 450px;
		max-height: 350px;
		padding: 30px;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
	}
    
    .popUpWindow.small .smallWindow {
		max-height: 235px;
	}
}

.popUpWindow .closeConfirmPopUp {
	cursor: pointer;
	font-weight: bold;
	position: absolute;
	padding: 6px;
	right: 0;
	top: 0;
}

.popUpWindow .smallWindow.confirm {
	height: auto;
	width: auto;
    padding-top: 50px;
}

@media only screen and (max-width: 990px) {
	.payment-options {
		max-width: 310px;
		margin: 0 auto;
	}

	.payment-options {
		max-width: 310px;
		margin: 0 auto;
	}

	.pfPaymentOption {
		max-width: 145px;
		width: 145px;
		margin-top: 2px;
		margin-bottom: 0;
	}

	.pfPaymentOption:first-child,
	.pfPaymentOption:last-child {
		margin: 2px 3.5px 0;
	}
}

@media only screen and (max-width: 680px) {
	.product-periods,
	.example-products-box {
		position: relative;
		left: -10px;
		width: 100vw;
	}
    
    .user-agreements {    
        padding: 0 25px;
    }
}
@media only screen and (max-width: 480px) {
	.paper-order__total-container,
	.variant-19-paper-order__address-numbers,
	.variant-19-paper-order__paper-select-container {
		display: block;
	}

	.variant-19-paper-order__disclaimer {
		margin-left: 0;
		margin-top: 10px;
	}
    
    .switch-inputs {
        text-align: center;
    }
    
    .switch-field label {
        max-width: 130px;
        margin-right: 0;
    }
    
    .switch-field label:first-of-type {
        margin-right: 10px;
    }

}