@import url(https://fonts.googleapis.com/css?family=Rubik:300,300i,400,400i,500,500i,700,700i,900,900);
@import url(https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900&display=swap);
@import url(https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400,500,600,700,800,900&display=swap);
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800&display=swap);

@-webkit-keyframes rotation-right {
	from {
		-webkit-transform: rotate(0deg);
	}

	to {
		-webkit-transform: rotate(359deg);
	}
}

@-webkit-keyframes rotation-left {
	from {
		-webkit-transform: rotate(0deg);
	}

	to {
		-webkit-transform: rotate(-359deg);
	}
}

.rot_r_anim {
	-webkit-animation: rotation-right 2s infinite linear;
}

.rot_l_anim {
	-webkit-animation: rotation-left 2s infinite linear;
}

/* mixin for multiline */
h1 {
	font-family: "Open Sans", sans-serif;
	font-style: normal;
	font-weight: 300;
	color: #4753A3;
	font-size: 2rem;
}

h2 {
	font-family: "Open Sans", sans-serif;
	font-style: normal;
	font-weight: 300;
	color: #4753A3;
	font-size: 1.75rem;
}

h3 {
	font-style: normal;
	font-weight: 400;
	font-size: 1.5rem;
}

h4 {
	font-style: normal;
	font-weight: 400;
	font-size: 1.3125rem;
}

h5 {
	font-style: normal;
	font-weight: 500;
	font-size: 1.125rem;
}

h6 {
	font-style: normal;
	font-weight: 400;
	font-size: 1rem;
}

.section {
	clear: both;
	width: 100%;
	height: auto;
	padding: 12px 0;
	/* 12px 0; */
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.section label {
	font-family: 'Rubik', sans-serif;
	font-weight: 500;
	font-size: 0.875rem;
}

.field .field__label label {
	color: #333;
	font-style: normal;
	font-weight: normal;
	font-size: 0.75rem;
	line-height: auto;
}

html,
body {
	overflow-x: hidden;
	width: 100%;
	height: 100%;
	/* Disables pull-to-refresh and overscroll glow effect.*/
	overscroll-behavior-y: contain;
}

body {
	background: #fff;
	background-image: url(../images/logo_bk.svg);
	padding: 0;
	margin: 0;
	font-family: "Rubik", sans-serif;
	background-position: right;
	background-repeat: no-repeat;
	background-size: auto;
	position: relative;
}

.no-svg body {
	background-image: url(../images/logo_bk.png);
}

@media only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3 / 2),
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
	.no-svg body {
		background-image: url(../images/logo_bk@2x.png);
	}
}

.wrapper {
	width: 100%;
	height: auto;
	height: calc(100% - 100px);
	padding: 8px 6px 0px 6px !important;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

@media (orientation: portrait) and (min-width: 240px) {
	.wrapper {
		padding: 0 8px;
	}
}

footer {
	width: 100%;
	height: 56px;
	background: black;
	color: white;
	font-weight: bold;
	font-size: 24px;
	text-align: center;
	position: fixed;
	-webkit-box-shadow: -2px -2px 5px 0px rgba(0, 0, 0, 0.35);
	box-shadow: -2px -2px 5px 0px rgba(0, 0, 0, 0.35);
	/*Here's what sticks it*/
	bottom: 0;
	/*to the bottom of the window*/
	left: 0;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

hr {
	border-top: 1px solid rgba(82, 134, 230, 0.1);
}

.scrim {
	display: none;
	position: fixed;
	height: 100vh;
	width: 100vw;
	bottom: 0;
	left: 0;
	background-color: black;
	opacity: 0.4;
	z-index: 2000;
}

.sheet_bottom-scrim {
	display: none;
	position: fixed;
	height: 100vh;
	width: 100vw;
	bottom: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.35);
	z-index: 2000;
}

input,
select {
	width: 100%;
	font-style: normal;
	font-weight: normal;
	line-height: 20px;
	color: #333;
	border: none;
	background: transparent;
	font-size: 0.875rem;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

input[type=text]:focus {
	outline: 0px;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

input[type=number] {
	-moz-appearance: textfield;
}

input[type=password] {
	font-size: 20px;
	-webkit-text-security: circle;
	letter-spacing: 5px;
}

textarea:focus,
input:focus,
select:focus {
	outline: none;
}

select {
	display: inline-block;
	line-height: 20px;
	padding: 0 0 0 5px;
	cursor: pointer;
	text-overflow: ellipsis;
	background-image: url(../images/arrow_drop_down.svg);
	background-position: right;
	background-repeat: no-repeat;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.no-svg select {
	background-image: url(../images/arrow_drop_down.png);
}

@media only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3 / 2),
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
	.no-svg select {
		background-image: url(../images/arrow_drop_down@2x.png);
	}
}

select:focus {
	background-image: url(../images/arrow_drop_up.svg);
	background-position: right;
	background-repeat: no-repeat;
}

.no-svg select:focus {
	background-image: url(../images/arrow_drop_up.png);
}

@media only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3 / 2),
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
	.no-svg select:focus {
		background-image: url(../images/arrow_drop_up@2x.png);
	}
}

select::-ms-expand {
	display: none;
}

select:-moz-focusring {
	color: transparent;
	text-shadow: 0 0 0 #000;
}

::-webkit-scrollbar {
	width: 2px;
	height: 2px;
}

/* Track */
::-webkit-scrollbar-track {
	background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: #555;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
	-webkit-text-fill-color: #4753A3;
	-webkit-box-shadow: 0 0 0px 1000px white inset;
	-webkit-transition: background-color 5000s ease-in-out 0s;
	transition: background-color 5000s ease-in-out 0s;
}

.wrapper__content-center {
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

/* */
.principal_section {
	width: 100%;
	height: auto;
	min-height: 56px;
	margin: 8px 0 12px 0;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.principal_section .principal_section__icon {
	float: left;
	width: 56px;
	height: 56px;
	margin: 0 8px 0 0;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.principal_section .principal_section__title {
	float: left;
	width: calc(100% - 72px);
	height: 24px;
	margin: 0 8px 0 0;
	line-height: 56px;
	font-weight: 600;
	color: #333;
	font-size: 1.3125rem;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

/* */
.title_section {
	width: 100%;
	height: auto;
	min-height: 48px;
	margin: 8px 0 0 8px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.title_section .title_section__icon {
	float: left;
	width: 24px;
	height: 24px;
	margin: 12px 8px 12px 0;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.title_section .title_section__title {
	float: left;
	width: calc(100% - 40px);
	height: 24px;
	margin: 15px 8px 8px 0;
	line-height: 18px;
	font-weight: 500;
	color: #333;
	font-size: 0.875rem;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.section_description {
	width: 100%;
	height: auto;
	padding: 0 0 8px 40px;
	line-height: 18px;
	font-weight: 400;
	color: #333;
	font-size: 0.75rem;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

textarea {
	border: 0.5px solid #B1B1B1;
	width: 100%;
	font-family: 'Rubik', sans-serif;
	font-weight: 400;
	font-size: 1rem;
	line-height: 18px;
	margin: 5px 0;
	padding: 3px;
}

.i-metod_provision {
	background-image: url(../images/provision.svg);
}

.no-svg .i-metod_provision {
	background-image: url(../images/provision.png);
}

@media only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3 / 2),
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
	.no-svg .i-metod_provision {
		background-image: url(../images/provision@2x.png);
	}
}

.i-metod_provision_40 {
	background-image: url(../images/provision_40.svg);
}

.no-svg .i-metod_provision_40 {
	background-image: url(../images/provision_40.png);
}

@media only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3 / 2),
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
	.no-svg .i-metod_provision_40 {
		background-image: url(../images/provision_40@2x.png);
	}
}

.i-metod_provision_48 {
	background-image: url(../images/provision_48.svg);
}

.no-svg .i-metod_provision_48 {
	background-image: url(../images/provision_48.png);
}

@media only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3 / 2),
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
	.no-svg .i-metod_provision_48 {
		background-image: url(../images/provision_48@2x.png);
	}
}

.i-avatar_48 {
	background-image: url(../images/gabrielle_48.svg);
}

.no-svg .i-avatar_48 {
	background-image: url(../images/gabrielle_48.png);
}

@media only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3 / 2),
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
	.no-svg .i-avatar_48 {
		background-image: url(../images/gabrielle_48@2x.png);
	}
}

.i-follow_up {
	background-image: url(../images/follow-up.svg);
}

.no-svg .i-follow_up {
	background-image: url(../images/follow-up.png);
}

@media only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3 / 2),
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
	.no-svg .i-follow_up {
		background-image: url(../images/follow-up@2x.png);
	}
}

.i-safe_abortion {
	background-image: url(../images/safe-abortion.svg);
}

.no-svg .i-safe_abortion {
	background-image: url(../images/safe-abortion.png);
}

@media only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3 / 2),
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
	.no-svg .i-safe_abortion {
		background-image: url(../images/safe-abortion@2x.png);
	}
}

.i-statistics {
	background-image: url(../images/statistics.svg);
}

.no-svg .i-statistics {
	background-image: url(../images/statistics.png);
}

@media only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3 / 2),
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
	.no-svg .i-statistics {
		background-image: url(../images/statistics@2x.png);
	}
}

.i-settings {
	background-image: url(../images/settings.svg);
}

.no-svg .i-settings {
	background-image: url(../images/settings.png);
}

@media only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3 / 2),
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
	.no-svg .i-settings {
		background-image: url(../images/settings@2x.png);
	}
}

.i-may_details {
	background-image: url(../images/may_details.svg);
}

.no-svg .i-may_details {
	background-image: url(../images/may_details.png);
}

@media only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3 / 2),
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
	.no-svg .i-may_details {
		background-image: url(../images/may_details@2x.png);
	}
}

.i-about {
	background-image: url(../images/about.svg);
}

.no-svg .i-about {
	background-image: url(../images/about.png);
}

@media only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3 / 2),
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
	.no-svg .i-about {
		background-image: url(../images/about@2x.png);
	}
}

.i-logout {
	background-image: url(../images/logout.svg);
}

.no-svg .i-logout {
	background-image: url(../images/logout.png);
}

@media only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3 / 2),
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
	.no-svg .i-logout {
		background-image: url(../images/logout@2x.png);
	}
}

.i-by_voucher {
	background-image: url(../images/by_voucher.svg);
}

.no-svg .i-by_voucher {
	background-image: url(../images/by_voucher.png);
}

@media only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3 / 2),
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
	.no-svg .i-by_voucher {
		background-image: url(../images/by_voucher@2x.png);
	}
}

.i-by_phone_number {
	background-image: url(../images/by_phone_number.svg);
}

.no-svg .i-by_phone_number {
	background-image: url(../images/by_phone_number.png);
}

@media only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3 / 2),
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
	.no-svg .i-by_phone_number {
		background-image: url(../images/by_phone_number@2x.png);
	}
}

.i-by_client_details {
	background-image: url(../images/by_client_details.svg);
}

.no-svg .i-by_client_details {
	background-image: url(../images/by_client_details.png);
}

@media only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3 / 2),
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
	.no-svg .i-by_client_details {
		background-image: url(../images/by_client_details@2x.png);
	}
}

.i-payloads_24 {
	background-image: url(../images/payload_24.svg);
}

.no-svg .i-payloads_24 {
	background-image: url(../images/payload_24.png);
}

@media only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3 / 2),
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
	.no-svg .i-payloads_24 {
		background-image: url(../images/payload_24@2x.png);
	}
}

.i-details_24 {
	background-image: url(../images/details_24.svg);
}

.no-svg .i-details_24 {
	background-image: url(../images/details_24.png);
}

@media only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3 / 2),
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
	.no-svg .i-details_24 {
		background-image: url(../images/details_24@2x.png);
	}
}

.i-synchronized_24 {
	background-image: url(../images/synchronized_24.svg);
}

.no-svg .i-synchronized_24 {
	background-image: url(../images/synchronized_24.png);
}

@media only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3 / 2),
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
	.no-svg .i-synchronized_24 {
		background-image: url(../images/synchronized_24@2x.png);
	}
}

.i-sync_24 {
	background-image: url(../images/sync_24.svg);
}

.no-svg .i-sync_24 {
	background-image: url(../images/sync_24.png);
}

@media only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3 / 2),
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
	.no-svg .i-sync_24 {
		background-image: url(../images/sync_24@2x.png);
	}
}

.i-sync-pending_24 {
	background-image: url(../images/sync-pending_24.svg);
}

.no-svg .i-sync-pending_24 {
	background-image: url(../images/sync-pending_24.png);
}

@media only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3 / 2),
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
	.no-svg .i-sync-pending_24 {
		background-image: url(../images/sync-pending_24@2x.png);
	}
}

.i-sync-postponed_24 {
	background-image: url(../images/sync-postponed_24.svg);
}

.no-svg .i-sync-postponed_24 {
	background-image: url(../images/sync-postponed_24.png);
}

@media only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3 / 2),
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
	.no-svg .i-sync-postponed_24 {
		background-image: url(../images/sync-postponed_24@2x.png);
	}
}

.i-sync-error_24 {
	background-image: url(../images/sync-error_24.svg);
}

.no-svg .i-sync-error_24 {
	background-image: url(../images/sync-error_24.png);
}

@media only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3 / 2),
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
	.no-svg .i-sync-error_24 {
		background-image: url(../images/sync-error_24@2x.png);
	}
}

.i-sync-read-message_24 {
	background-image: url(../images/sync-read-message_24.svg);
}

.no-svg .i-sync-read-message_24 {
	background-image: url(../images/sync-read-message_24.png);
}

@media only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3 / 2),
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
	.no-svg .i-sync-read-message_24 {
		background-image: url(../images/sync-read-message_24@2x.png);
	}
}

.i-sync_36 {
	background-image: url(../images/sync_36.svg);
}

.no-svg .i-sync_36 {
	background-image: url(../images/sync_36.png);
}

@media only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3 / 2),
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
	.no-svg .i-sync_36 {
		background-image: url(../images/sync_36@2x.png);
	}
}

.i-sync-pending_36 {
	background-image: url(../images/sync-pending_36.svg);
}

.no-svg .i-sync-pending_36 {
	background-image: url(../images/sync-pending_36.png);
}

@media only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3 / 2),
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
	.no-svg .i-sync-pending_36 {
		background-image: url(../images/sync-pending_36@2x.png);
	}
}

.i-sync-postponed_36 {
	background-image: url(../images/sync-postponed_36.svg);
}

.no-svg .i-sync-postponed_36 {
	background-image: url(../images/sync-postponed_36.png);
}

@media only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3 / 2),
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
	.no-svg .i-sync-postponed_36 {
		background-image: url(../images/sync-postponed_36@2x.png);
	}
}

.i-sync-error_36 {
	background-image: url(../images/sync-error_36.svg);
}

.no-svg .i-sync-error_36 {
	background-image: url(../images/sync-error_36.png);
}

@media only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3 / 2),
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
	.no-svg .i-sync-error_36 {
		background-image: url(../images/sync-error_36@2x.png);
	}
}

.i-sync-read-message_36 {
	background-image: url(../images/sync-read-message_36.svg);
}

.no-svg .i-sync-read-message_36 {
	background-image: url(../images/sync-read-message_36.png);
}

@media only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3 / 2),
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
	.no-svg .i-sync-read-message_36 {
		background-image: url(../images/sync-read-message_36@2x.png);
	}
}

.i-fab_plus_48 {
	background-image: url(../images/fab_plus_40.svg);
}

.no-svg .i-fab_plus_48 {
	background-image: url(../images/fab_plus_40.png);
}

@media only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3 / 2),
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
	.no-svg .i-fab_plus_48 {
		background-image: url(../images/fab_plus_40@2x.png);
	}
}

.i-fab_plus_56 {
	background-image: url(../images/fab_plus_56.svg);
}

.no-svg .i-fab_plus_56 {
	background-image: url(../images/fab_plus_56.png);
}

@media only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3 / 2),
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
	.no-svg .i-fab_plus_56 {
		background-image: url(../images/fab_plus_56@2x.png);
	}
}

.i-voucher_24 {
	background-image: url(../images/voucher_24.svg);
}

.no-svg .i-voucher_24 {
	background-image: url(../images/voucher_24.png);
}

@media only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3 / 2),
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
	.no-svg .i-voucher_24 {
		background-image: url(../images/voucher_24@2x.png);
	}
}

.downloading_app {
	position: absolute;
	width: 50%;
	height: 50%;
	left: 30%;
	top: 20%;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.downloading_app .d_emp {
	-webkit-animation: 1.5s fade-in infinite;
	animation: 1.5s fade-in infinite;
	-webkit-animation-delay: 3s;
	animation-delay: 3s;
}

.downloading_app .c_emp {
	-webkit-animation: 2s fade-in infinite;
	-webkit-animation-delay: 3s;
	animation-delay: 3s;
}

.downloading_app .d_cli {
	-webkit-animation: 1.6s fade-in infinite;
	-webkit-animation-delay: 3s;
	animation-delay: 3s;
}

.downloading_app .c_cli {
	-webkit-animation: 1.9s fade-in infinite;
	-webkit-animation-delay: 3s;
	animation-delay: 3s;
}

.downloading_app .d_nur {
	-webkit-animation: 2s fade-in infinite;
	-webkit-animation-delay: 3s;
	animation-delay: 3s;
}

@-webkit-keyframes fade-in {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes fade-in {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

#page-wrap table {
	width: 100%;
	border-collapse: collapse;
	font-family: 'Rubik', sans-serif;
	font-size: 0.75rem;
}

#page-wrap table th {
	font-weight: 400;
	font-size: 0.75rem;
}

#page-wrap table td {
	font-weight: 400;
	font-size: 0.75rem;
}

#page-wrap table tr {
	font-weight: 400;
	font-size: 0.75rem;
}

.table_container {
	overflow-x: auto;
}

.table_container .from_six_cols {
	width: 100%;
}

.table_container .from_six_cols tr {
	font-weight: 400;
	font-size: 0.75rem;
}

.table_container .from_six_cols th {
	font-weight: 400;
	font-size: 0.75rem;
	display: none;
}

.table_container .from_six_cols td {
	display: block;
	font-weight: 400;
	font-size: 0.75rem;
}

.table_container .from_six_cols td:first-child {
	padding: 12px 0;
	font-weight: 500;
	min-width: 100px;
}

.table_container .from_six_cols td:before {
	content: attr(data-th) "";
	font-weight: 500;
	margin-left: 24px;
	width: 50%;
	display: inline-block;
}

.table_container .from_six_cols td div {
	float: right;
	text-align: right;
	width: 100%;
	max-width: 100px;
	width: 100%;
	padding-right: 16px;
}

@media (max-width: 480px) {
	.table_container .from_six_cols td div {
		max-width: 28%;
	}
}

@media (min-width: 600px) {
	.table_container .from_six_cols th {
		display: table-cell;
		padding: 102px;
	}

	.table_container .from_six_cols th:first-child {
		text-align: left;
		padding-left: 0;
		width: auto;
	}

	.table_container .from_six_cols th:before {
		content: attr(data-th) ": ";
		font-weight: 400;
		min-width: 50px;
		display: inline-block;
	}
}

@media (min-width: 600px) and (min-width: 600px) {
	.table_container .from_six_cols th:before {
		display: none;
	}
}

.table_container .from_six_cols td {
	text-align: left;
}

@media (min-width: 600px) {
	.table_container .from_six_cols td {
		display: table-cell;
		text-align: right;
		padding: 102px;
	}

	.table_container .from_six_cols td:first-child {
		text-align: left;
		padding-left: 0;
		width: auto;
	}

	.table_container .from_six_cols td:before {
		content: attr(data-th) "";
		font-weight: 400;
		display: inline-block;
	}
}

@media (min-width: 600px) and (min-width: 600px) {
	.table_container .from_six_cols td:before {
		display: none;
	}
}

.table_container .three_cols {
	width: 100%;
}

.table_container .three_cols tr {
	font-weight: 400;
	font-size: 0.75rem;
}

.table_container .three_cols th {
	font-weight: 400;
	font-size: 0.75rem;
	display: none;
}

.table_container .three_cols td {
	display: block;
	font-weight: 400;
	font-size: 0.75rem;
}

.table_container .three_cols td:first-child {
	padding: 12px 0;
	font-weight: 500;
}

.table_container .three_cols td div {
	float: right;
	text-align: right;
	width: 80%;
	max-width: 100px;
	padding-right: 16px;
}

.table_container .three_cols th {
	display: table-cell;
	padding: 102px;
}

.table_container .three_cols th:first-child {
	text-align: left;
	padding-left: 0;
	width: auto;
}

.table_container .three_cols td {
	text-align: left;
	display: table-cell;
	text-align: right;
	padding: 102px;
}

.table_container .three_cols td:first-child {
	text-align: left;
	padding-left: 0;
	width: auto;
}

.table_container .four_cols {
	width: 100%;
}

.table_container .four_cols tr {
	font-weight: 400;
	font-size: 0.75rem;
}

.table_container .four_cols th {
	font-weight: 400;
	font-size: 0.75rem;
	display: none;
}

.table_container .four_cols td {
	display: block;
	font-weight: 400;
	font-size: 0.75rem;
}

.table_container .four_cols td:first-child {
	padding: 12px 0;
	font-weight: 500;
	min-width: 100px;
}

.table_container .four_cols td:before {
	content: attr(data-th) "";
	font-weight: 500;
	margin-left: 24px;
	width: 50%;
	display: inline-block;
}

.table_container .four_cols td div {
	float: right;
	text-align: right;
	width: 100%;
	max-width: 100px;
	width: 100%;
	padding-right: 16px;
}

@media (max-width: 480px) {
	.table_container .four_cols td div {
		max-width: 28%;
	}
}

@media (min-width: 362px) {
	.table_container .four_cols th {
		display: table-cell;
		padding: 102px;
	}

	.table_container .four_cols th:first-child {
		text-align: left;
		padding-left: 0;
		width: auto;
	}

	.table_container .four_cols th:before {
		content: attr(data-th) ": ";
		font-weight: 400;
		min-width: 50px;
		display: inline-block;
	}
}

@media (min-width: 362px) and (min-width: 362px) {
	.table_container .four_cols th:before {
		display: none;
	}
}

.table_container .four_cols td {
	text-align: left;
}

@media (min-width: 362px) {
	.table_container .four_cols td {
		display: table-cell;
		text-align: right;
		padding: 102px;
	}

	.table_container .four_cols td:first-child {
		text-align: left;
		padding-left: 0;
		width: auto;
	}

	.table_container .four_cols td:before {
		content: attr(data-th) "";
		font-weight: 400;
		display: inline-block;
	}
}

@media (min-width: 362px) and (min-width: 362px) {
	.table_container .four_cols td:before {
		display: none;
	}
}

.table_container .five_cols {
	width: 100%;
}

.table_container .five_cols tr {
	font-weight: 400;
	font-size: 0.75rem;
}

.table_container .five_cols th {
	font-weight: 400;
	font-size: 0.75rem;
	display: none;
}

.table_container .five_cols td {
	display: block;
	font-weight: 400;
	font-size: 0.75rem;
}

.table_container .five_cols td:first-child {
	padding: 12px 0;
	font-weight: 500;
	min-width: 100px;
}

.table_container .five_cols td:before {
	content: attr(data-th) "";
	font-weight: 500;
	margin-left: 24px;
	width: 50%;
	display: inline-block;
}

.table_container .five_cols td div {
	float: right;
	text-align: right;
	width: 100%;
	max-width: 100px;
	width: 100%;
	padding-right: 16px;
}

@media (max-width: 480px) {
	.table_container .five_cols td div {
		max-width: 28%;
	}
}

@media (min-width: 428px) {
	.table_container .five_cols th {
		display: table-cell;
		padding: 102px;
	}

	.table_container .five_cols th:first-child {
		text-align: left;
		padding-left: 0;
		width: auto;
	}

	.table_container .five_cols th:before {
		content: attr(data-th) ": ";
		font-weight: 400;
		min-width: 50px;
		display: inline-block;
	}
}

@media (min-width: 428px) and (min-width: 428px) {
	.table_container .five_cols th:before {
		display: none;
	}
}

.table_container .five_cols td {
	text-align: left;
}

@media (min-width: 428px) {
	.table_container .five_cols td {
		display: table-cell;
		text-align: right;
		padding: 102px;
	}

	.table_container .five_cols td:first-child {
		text-align: left;
		padding-left: 0;
		width: auto;
	}

	.table_container .five_cols td:before {
		content: attr(data-th) "";
		font-weight: 400;
		display: inline-block;
	}
}

@media (min-width: 428px) and (min-width: 428px) {
	.table_container .five_cols td:before {
		display: none;
	}
}

.from_six_cols {
	border-collapse: collapse;
	overflow: hidden;
}

.from_six_cols th,
.from_six_cols td {
	margin: .5em 1em;
}

@media (min-width: 600px) {

	.from_six_cols th,
	.from_six_cols td {
		min-width: 50px;
		padding: 1em !important;
	}
}

.three_cols {
	border-collapse: collapse;
	overflow: hidden;
}

.three_cols th,
.three_cols td {
	margin: .5em 1em;
	min-width: 50px;
	padding: 1em !important;
}

.four_cols {
	border-collapse: collapse;
	overflow: hidden;
}

.four_cols th,
.four_cols td {
	margin: .5em 1em;
}

@media (min-width: 300px) {

	.four_cols th,
	.four_cols td {
		min-width: 50px;
		padding: 1em !important;
	}
}

.five_cols {
	border-collapse: collapse;
	overflow: hidden;
}

.five_cols th,
.five_cols td {
	margin: .5em 1em;
}

@media (min-width: 428px) {

	.five_cols th,
	.five_cols td {
		min-width: 50px;
		padding: 1em !important;
	}
}

.sheet_preview {
	width: 100%;
	height: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	min-width: 224px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.sheet_preview .section {
	margin-top: 16px;
	font-size: 1rem;
	font-weight: 500;
}

.sheet_preview .sheet_preview__name {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	float: left;
	width: 50%;
	padding: 12px 8;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	border-bottom: 1px solid #DDD;
}

@media (max-width: 380px) {
	.sheet_preview .sheet_preview__name {
		width: 100%;
		border-bottom: none;
		font-weight: 500;
		font-size: 0.625rem;
	}
}

.sheet_preview .sheet_preview__value {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	float: left;
	width: 50%;
	padding: 12px 8;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	border-bottom: 1px solid #DDD;
}

@media (max-width: 380px) {
	.sheet_preview .sheet_preview__value {
		width: 100%;
		font-size: 0.625rem;
	}
}

.button {
	float: left;
	min-width: 64px;
	height: 48px;
	min-height: 48px;
	padding: 0 16px;
	border-radius: 4px;
	letter-spacing: 1pt;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.button .button__container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.button .button__container .button-icon {
	float: left;
	width: 24px;
	height: 24px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 12px 8px 0 0;
	background-image: url(../images/placeholder_w.svg);
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.no-svg .button .button__container .button-icon {
	background-image: url(../images/placeholder_w.png);
}

@media only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3 / 2),
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
	.no-svg .button .button__container .button-icon {
		background-image: url(../images/placeholder_w@2x.png);
	}
}

.button .button__container .button-label {
	display: table;
	min-width: 64px;
	font-size: 1rem;
	text-align: center;
	font-style: normal;
	line-height: 48px;
	text-transform: uppercase;
	color: #FFFFFF;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.button-outline {
	float: left;
	min-width: 64px;
	height: 48px;
	min-height: 48px;
	margin-bottom: 12px;
	padding: 0 16px;
	border-radius: 4px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.button-outline .button__container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.button-outline .button__container .button-icon {
	float: left;
	width: 24px;
	height: 24px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 12px 8px 0 0;
	background-image: url(../images/placeholder_w.svg);
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.no-svg .button-outline .button__container .button-icon {
	background-image: url(../images/placeholder_w.png);
}

@media only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3 / 2),
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
	.no-svg .button-outline .button__container .button-icon {
		background-image: url(../images/placeholder_w@2x.png);
	}
}

.button-outline .button__container .button-label {
	display: table;
	min-width: 64px;
	font-size: 1rem;
	text-align: center;
	font-style: normal;
	line-height: 48px;
	text-transform: uppercase;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.button-text {
	float: left;
	min-width: 64px;
	height: 48px;
	min-height: 48px;
	margin-bottom: 12px;
	padding: 0 16px;
	border-radius: 4px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.button-text .button__container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.button-text .button__container .button-icon {
	float: left;
	width: 24px;
	height: 24px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 12px 8px 0 0;
	background-image: url(../images/placeholder_w.svg);
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.no-svg .button-text .button__container .button-icon {
	background-image: url(../images/placeholder_w.png);
}

@media only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3 / 2),
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
	.no-svg .button-text .button__container .button-icon {
		background-image: url(../images/placeholder_w@2x.png);
	}
}

.button-text .button__container .button-label {
	display: table;
	min-width: 64px;
	font-size: 1rem;
	text-align: center;
	font-style: normal;
	line-height: 48px;
	text-transform: uppercase;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.button-in_line {
	margin: 0 0 12px 8px;
}

.button-full_width {
	width: 100%;
	margin-bottom: 12px;
}

.button-min_width-left {
	width: calc(50% - 4px);
	margin-right: 4px;
}

@media (orientation: portrait) and (min-width: 240px) {
	.button-min_width-left {
		width: 100%;
		margin-right: 0;
	}
}

@media (orientation: landscape) and (min-width: 320px) {
	.button-min_width-left {
		width: 48%;
		margin-top: 8px;
		margin-right: 4px;
	}
}

@media (orientation: portrait) and (min-width: 360px) {
	.button-min_width-left {
		width: calc(50% - 6px);
		margin-right: 4px;
	}
}

@media (orientation: landscape) and (min-width: 480px) {
	.button-min_width-left {
		width: calc(50% - 6px);
		margin-right: 4px;
	}
}

.button-min_width-right {
	width: calc(50% - 4px);
	margin-left: 4px;
}

@media (orientation: portrait) and (min-width: 240px) {
	.button-min_width-right {
		width: 100%;
		margin-left: 0;
	}
}

@media (orientation: landscape) and (min-width: 320px) {
	.button-min_width-right {
		width: 48%;
		margin-top: 8px;
		margin-left: 4px;
	}
}

@media (orientation: portrait) and (min-width: 360px) {
	.button-min_width-right {
		width: calc(50% - 6px);
		margin-left: 4px;
	}
}

@media (orientation: landscape) and (min-width: 480px) {
	.button-min_width-right {
		width: calc(50% - 6px);
		margin-left: 4px;
	}
}

.chip {
	float: left;
	min-width: 64px;
	height: 32px;
	max-height: 32px;
	margin-bottom: 12px;
	margin-right: 8px;
	padding: 0 8px 0 4px;
	border-radius: 16px;
	letter-spacing: 1pt;
	background-color: #b1b1b1;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.chip .chip__container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.chip .chip__container .Thumbnail {
	float: left;
	width: 24px;
	height: 24px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 12px;
	margin-top: 4px;
	background-color: #B1B1B1;
	background-image: url(../images/gabrielle.svg);
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.no-svg .chip .chip__container .Thumbnail {
	background-image: url(../images/gabrielle.png);
}

@media only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3 / 2),
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
	.no-svg .chip .chip__container .Thumbnail {
		background-image: url(../images/gabrielle@2x.png);
	}
}

.chip .chip__container .chip-text {
	display: table;
	font-size: 0.875rem;
	text-align: center;
	font-style: normal;
	line-height: 32px;
	margin: 0 8px;
	color: #333;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.chip .chip__container .remove-icon {
	float: left;
	width: 18px;
	height: 18px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 7px;
	background-image: url(../images/remove.svg);
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.no-svg .chip .chip__container .remove-icon {
	background-image: url(../images/remove.png);
}

@media only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3 / 2),
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
	.no-svg .chip .chip__container .remove-icon {
		background-image: url(../images/remove@2x.png);
	}
}

.chip-outl {
	float: left;
	min-width: 64px;
	height: 32px;
	max-height: 32px;
	margin-bottom: 12px;
	margin-right: 8px;
	padding: 0 8px 0 4px;
	border-radius: 16px;
	letter-spacing: 1pt;
	border: 1px solid #b1b1b1;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.chip-outl .chip__container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.chip-outl .chip__container .Thumbnail {
	float: left;
	width: 24px;
	height: 24px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 12px;
	margin-top: 4px;
	background-color: #B1B1B1;
	background-image: url(../images/gabrielle.svg);
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.no-svg .chip-outl .chip__container .Thumbnail {
	background-image: url(../images/gabrielle.png);
}

@media only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3 / 2),
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
	.no-svg .chip-outl .chip__container .Thumbnail {
		background-image: url(../images/gabrielle@2x.png);
	}
}

.chip-outl .chip__container .chip-text {
	display: table;
	font-size: 0.875rem;
	text-align: center;
	font-style: normal;
	line-height: 32px;
	margin: 0 8px;
	color: #333;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.chip-outl .chip__container .remove-icon {
	float: left;
	width: 18px;
	height: 18px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 7px;
	background-image: url(../images/remove.svg);
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.no-svg .chip-outl .chip__container .remove-icon {
	background-image: url(../images/remove.png);
}

@media only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3 / 2),
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
	.no-svg .chip-outl .chip__container .remove-icon {
		background-image: url(../images/remove@2x.png);
	}
}

.navigation {
	position: fixed;
	width: 0;
	min-height: 100%;
	bottom: 0;
	left: 0;
	background-color: #FFFFFF;
	overflow-x: hidden;
	overflow-y: hidden;
	/*-webkit-transition: 0.5s;
    transition: 0.5s;*/
	-webkit-box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.35);
	box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.35);
}

.navigation .navigation__header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: sticky;
	position: -webkit-sticky;
	width: 100%;
	height: 100px;
	margin-bottom: 10px;
	padding: 16px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.navigation .navigation__header .navigation__logo {
	width: 56px;
	height: auto;
	margin: 0px 8px 8px 0px;
	background-image: url(../images/logo_cws.svg);
	background-repeat: no-repeat;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.no-svg .navigation .navigation__header .navigation__logo {
	background-image: url(../images/logo_cws.png);
}

@media only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3 / 2),
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
	.no-svg .navigation .navigation__header .navigation__logo {
		background-image: url(../images/logo_cws@2x.png);
	}
}

.navigation .navigation__header .navigation__user {
	font-family: "Rubik", sans-serif;
	font-style: normal;
	font-weight: 300;
	font-size: 1.5rem;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.navigation .navigation__header .navigation__close {
	margin-left: auto;
	width: 24px;
	height: 24px;
	background-image: url(../images/close.svg);
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	cursor: pointer;
}

.no-svg .navigation .navigation__header .navigation__close {
	background-image: url(../images/close.png);
}

@media only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3 / 2),
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
	.no-svg .navigation .navigation__header .navigation__close {
		background-image: url(../images/close@2x.png);
	}
}

.navigation .navigation__items {
	overflow-y: auto;
}

.navigation .navigation__items ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	width: 100%;
	background-color: #FFFFFF;
}

.navigation .navigation__items ul li .navigation__items-icon {
	float: left;
	width: 24px;
	height: 24px;
	margin: 12px 8px 12px 8px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.navigation .navigation__items ul li a {
	display: block;
	color: #000;
	padding: 16px 16px;
	text-decoration: none;
}

.navigation .navigation__items ul li #tile_items {
	line-height: 48px;
	padding: 0 16px;
	font-weight: 700 !important;
	cursor: context-menu;
}

.navigation .navigation__items ul li #tile_items:hover {
	background-color: #FFF;
}

.navigation .navigation__items ul li .examples {
	line-height: 48px;
	padding: 0 16px;
	cursor: pointer;
}

.navigation .closebtn {
	position: absolute;
	top: 0;
	right: 25px;
	font-size: 2.25rem;
	margin-left: 50px;
}

.field {
	float: left;
	width: 100%;
	height: auto;
	min-height: 50px;
	margin: 0px 0px 12px 0px;
	border: 1px solid #B1B1B1;
	border-radius: 4px;
	background-color: rgba(0, 0, 0, 0.009);
	text-align: left;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	/* Styles for a split password field */
}

.field .field__label {
	padding: 2px 8px 0 8px;
}

.field .field__label label {
	color: #333;
	font-style: normal;
	font-weight: normal;
	font-size: 0.75rem;
	line-height: auto;
}

.field span {
	color: #FF0000;
	padding-left: 5px;
}

.field .field__left {
	float: left;
	width: calc(100% - 24px);
	padding: 0 8px 0 8px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.field .split_password {
	/*-webkit-text-security: disc;*/
}

.field .split_password [maxlength="4"] {
	display: none;
}

.field .split_password [maxlength="1"] {
	width: 48px;
	float: left;
	height: 48px;
	min-height: 24px;
	margin: 2px 4px 4px 4px;
	border: 1px solid #B1B1B1;
	border-radius: 4px;
	/*background-color: rgba($color-typ-sl, 0.009);*/
	text-align: center;
	padding-left: 5px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.field input {
	margin-bottom: 2px;
	cursor: pointer;
}

.field .field__controls {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.field .field__controls .field__right {
	display: none;
	float: right;
	width: 24px;
	height: 24px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-right: 7px;
	cursor: pointer;
	background-image: url(../images/close.svg);
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.no-svg .field .field__controls .field__right {
	background-image: url(../images/close.png);
}

@media only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3 / 2),
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
	.no-svg .field .field__controls .field__right {
		background-image: url(../images/close@2x.png);
	}
}

.field .field__selector {
	width: calc(100% - 6px);
	padding-left: 2px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.field .field__selector-label {
	line-height: 48px;
	padding: 0 8px 0 8px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.field_leading_icon {
	float: left;
	width: 100%;
	height: auto;
	min-height: 50px;
	margin: 0px 0px 12px 0px;
	border: 1px solid #B1B1B1;
	border-radius: 4px;
	background-color: rgba(0, 0, 0, 0.009);
	text-align: left;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.field_leading_icon .field_leading_icon__controls {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.field_leading_icon .field_leading_icon__controls .field_leading_icon__l-icon {
	width: 24px;
	height: 24px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 12px 8px;
	cursor: pointer;
	background-image: url(../images/search.svg);
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.no-svg .field_leading_icon .field_leading_icon__controls .field_leading_icon__l-icon {
	background-image: url(../images/search.png);
}

@media only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3 / 2),
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
	.no-svg .field_leading_icon .field_leading_icon__controls .field_leading_icon__l-icon {
		background-image: url(../images/search@2x.png);
	}
}

.field_leading_icon .field_leading_icon__controls .field_leading_icon__input {
	float: left;
	width: calc(100% - 48px);
	padding: 0 8px 0 8px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.field_leading_icon .field_leading_icon__controls .field_leading_icon__input input {
	line-height: 46px;
	margin: 0;
}

.field_leading_icon .field_leading_icon__controls .field_leading_icon__right {
	display: none;
	float: right;
	width: 24px;
	height: 24px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 12px 7px 12px 0;
	cursor: pointer;
	background-image: url(../images/close.svg);
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.no-svg .field_leading_icon .field_leading_icon__controls .field_leading_icon__right {
	background-image: url(../images/close.png);
}

@media only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3 / 2),
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
	.no-svg .field_leading_icon .field_leading_icon__controls .field_leading_icon__right {
		background-image: url(../images/close@2x.png);
	}
}

/**********************/
.field-read_only {
	/*float: left;*/
	width: 100%;
	height: auto;
	min-height: 50px;
	margin: 0px 0px 12px 0px;
	text-align: left;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.field-read_only .field-read_only__label {
	padding: 2px 8px 0 8px;
}

.field-read_only .field-read_only__label label {
	color: #333;
	font-style: normal;
	font-weight: normal;
	font-size: 0.75rem;
	line-height: auto;
}

.field-read_only .field-read_only__text {
	float: left;
	width: calc(100% - 24px);
	padding: 0 8px 0 8px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.pin {
	border: none;
	margin-bottom: 20px;
}

.btm_nav {
	top: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	vertical-align: middle;
	width: 100%;
	height: 56px;
	text-align: center;
	overflow-y: hidden;
	overflow-x: auto;
	background-color: #FFFFFF;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.btm_nav .btm_nav__content {
	width: 100%;
	max-width: 672px;
	min-width: 320;
	margin: auto;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.btm_nav .btm_nav__content .btm_nav__section {
	float: left;
	cursor: pointer;
	width: calc(100%/4);
	max-width: 168px;
	min-width: 80px;
	height: 56px;
	text-align: center;
	padding-top: 8px;
	padding-bottom: 7px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.btm_nav .btm_nav__content .btm_nav__section:hover {
	background-color: rgba(51, 51, 51, 0.1);
}

.btm_nav .btm_nav__content .btm_nav__section .btm_nav__section-icon {
	margin: auto;
	width: 24px;
	height: 24px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.btm_nav .btm_nav__content .btm_nav__section .btm_nav__section-label {
	font-size: 0.75rem;
	padding: 5 12px 0 12px;
	line-height: 12px;
	font-weight: 400;
	color: #333;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.list {
	width: 100%;
	height: auto;
	background-color: transparent;
}

.list .card {
	width: 100%;
	height: auto;
	padding: 4px 0;
}

.list .card:hover {
	background-color: #f9f9f9;
}

.list .card .card__container {
	display: -ms-grid;
	display: grid;
	width: 100%;
	grid-template-areas: "card__support_visuals card__content card__cta";
	-ms-grid-columns: 56px auto fit-content(130px);
	/*  grid-template-columns: 56px auto 90px; */
	grid-template-columns: 56px auto fit-content(130px);
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

@media (max-width: 380px) {
	.list .card .card__container {
		-ms-grid-columns: 56px auto auto;
		grid-template-columns: 56px auto auto;
	}
}

.list .card .card__container .card__support_visuals {
	-ms-grid-row: 1;
	-ms-grid-column: 1;
	grid-area: card__support_visuals;
}

.list .card .card__container .card__content {
	-ms-grid-row: 1;
	-ms-grid-column: 2;
	grid-area: card__content;
	font-size: 14px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin-left: 4px;
}

@media (max-width: 380px) {
	.list .card .card__container .card__content {
		font-size: 12px;
	}
}

.list .card .card__container .card__content .card__row {
	float: left;
	width: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.list .card .card__container .card__cta {
	-ms-grid-row: 1;
	-ms-grid-column: 3;
	grid-area: card__cta;
	text-align: right;
}

@media (max-width: 380px) {
	.list .card .card__container .card__cta {
		padding: 0px;
	}
}

.list .card .card__container .card__cta .card__cta_status {
	font-size: 12px;
	text-align: right;
	padding-right: 8px;
}

.list .card .card__container .card__cta .card__cta_one {
	/*float: left;*/
	display: inline-block;
	width: 40px;
}

@media (max-width: 380px) {
	.list .card .card__container .card__cta .card__cta_one {
		padding-left: 0px;
	}
}

.list .card .card__container .card__cta .card__cta_two {
	/*float: right;*/
	width: 36px;
	height: 36px;
	margin-right: 4px;

	display: inline-block;
	vertical-align: text-bottom;
	text-align: center;
}

.snackbar {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	height: auto;
	min-height: 48px;
	border-radius: 4px;
	padding: 6px 8px 6px 16px;
	margin: 12px 0 12px;
	background-color: #FFFFFF;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.35);
	box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.35);
}

.snackbar .snackbar_suppor_visuals {
	float: left;
	width: 24px;
	height: 24px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	cursor: pointer;
	margin: 6px 0;
	background-image: url(../images/close.svg);
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.no-svg .snackbar .snackbar_suppor_visuals {
	background-image: url(../images/close.png);
}

@media only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3 / 2),
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
	.no-svg .snackbar .snackbar_suppor_visuals {
		background-image: url(../images/close@2x.png);
	}
}

.snackbar .snackbar_label {
	float: left;
	margin-top: 10px;
	width: calc(100% - 32px);
	line-height: auto;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.snackbar .snackbar_action {
	float: right;
	width: 24px;
	height: 24px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	cursor: pointer;
	margin: 6px 0;
	background-image: url(../images/close.svg);
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.no-svg .snackbar .snackbar_action {
	background-image: url(../images/close.png);
}

@media only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3 / 2),
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
	.no-svg .snackbar .snackbar_action {
		background-image: url(../images/close@2x.png);
	}
}

.selector {
	width: 100%;
}

.tab_fs {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	width: 50%;
	height: auto;
	margin: 0 auto;
	max-width: 558px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

@media (orientation: portrait) and (min-width: 240px) {
	.tab_fs {
		width: 100%;
	}
}

@media (orientation: landscape) and (min-width: 320px) {
	.tab_fs {
		width: 100%;
	}
}

.tab_fs .tab_fs__head {
	display: block;
	margin: 0 8px;
	padding: 0;
	list-style: none;
	width: 100%;
	-webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
	box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

@media (orientation: portrait) and (min-width: 240px) {
	.tab_fs .tab_fs__head {
		width: 100%;
		margin: 0;
	}
}

@media (orientation: landscape) and (min-width: 320px) {
	.tab_fs .tab_fs__head {
		width: 100%;
		margin: 0;
	}
}

.tab_fs .tab_fs__head>li {
	float: left;
	cursor: pointer;
	padding: 0px 8px;
	border-bottom: 0px;
	overflow: hidden;
	line-height: 48px;
	color: #333;
	text-transform: uppercase;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

@media (orientation: portrait) and (min-width: 240px) {
	.tab_fs .tab_fs__head>li {
		width: 100%;
		text-transform: capitalize;
		margin: 0;
		padding: 0px 8px;
		display: none;
	}
}

@media (orientation: landscape) and (min-width: 320px) {
	.tab_fs .tab_fs__head>li {
		width: 100%;
		text-transform: capitalize;
		margin: 0;
		padding: 0px 8px;
		display: none;
	}
}

@media (min-width: 558px) {
	.tab_fs .tab_fs__head>li {
		width: calc(100%/var(--tabs));
		position: relative;
		display: block;
		box-sizing: border-box;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
	}
}

@media (orientation: portrait) and (min-width: 240px) and (max-width: 557px) {
	.tab_fs .tab_fs__head>li.active {
		background-image: url(../images/arrow_drop_down.svg);
		background-position: right;
		background-repeat: no-repeat;
	}

	.no-svg .tab_fs .tab_fs__head>li.active {
		background-image: url(../images/arrow_drop_down.png);
	}
}

@media only screen and (orientation: portrait) and (min-width: 240px) and (max-width: 557px) and (-moz-min-device-pixel-ratio: 1.5),
only screen and (orientation: portrait) and (min-width: 240px) and (max-width: 557px) and (-o-min-device-pixel-ratio: 3 / 2),
only screen and (orientation: portrait) and (min-width: 240px) and (max-width: 557px) and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (orientation: portrait) and (min-width: 240px) and (max-width: 557px) and (min-device-pixel-ratio: 1.5) {
	.no-svg .tab_fs .tab_fs__head>li.active {
		background-image: url(../images/arrow_drop_down@2x.png);
	}
}

.tab_fs .tab_fs__head>li .tab_fs__head-icon {
	float: left;
	width: 24px;
	height: 24px;
	margin: 12px 8px;
	opacity: 0.5;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.tab_fs .tab_fs__head>li:hover {
	color: #000;
}

.tab_fs .tab_fs__head>li.active {
	display: block;
	opacity: 1;
}

.tab_fs .tab_fs__head>li ul {
	width: 100%;
	padding: 0;
	display: none;
	position: absolute;
	background-color: #FFFFFF;
	-webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.35);
	box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.35);
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

@media (orientation: portrait) and (min-width: 240px) {
	.tab_fs .tab_fs__head>li ul {
		width: calc(100% - 120px);
	}
}

@media (max-width: 557px) {
	.tab_fs .tab_fs__head>li ul {
		width: calc(100% - 20px);
	}
}

.tab_fs .tab_fs__head>li ul>li {
	padding: 0;
	width: 100%;
	position: relative;
	background-color: #FFFFFF;
	opacity: 1;
}

.tab_fs .tab_fs__head-icon_exp {
	position: absolute;
	top: 76px;
	right: 24px;
	width: 24px;
	height: 24px;
	background-image: url(../images/arrow_drop_down.svg);
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.no-svg .tab_fs .tab_fs__head-icon_exp {
	background-image: url(../images/arrow_drop_down.png);
}

@media only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3 / 2),
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
	.no-svg .tab_fs .tab_fs__head-icon_exp {
		background-image: url(../images/arrow_drop_down@2x.png);
	}
}

@media (min-width: 558px) {
	.tab_fs .tab_fs__head-icon_exp {
		display: none;
	}
}

.tab_fs__container {
	/*margin: 8px 0;*/
	width: 100%;
	height: auto;
	overflow: hidden;
	max-width: 558px;
	background-color: #FFF;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

@media (orientation: portrait) and (min-width: 240px) {
	.tab_fs__container {
		width: 100%;
	}
}

@media (orientation: landscape) and (min-width: 320px) {
	.tab_fs__container {
		width: 100%;
	}
}

@media (min-width: 558px) {
	.tab_fs__container {
		margin: 0 auto;
		width: 100%;
		padding: 8px 12px;
		border-bottom-left-radius: 4px;
		border-bottom-right-radius: 4px;
	}
}

.tab_fs__container .tab_fs__container-content {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	padding: 3px;
	padding-bottom: 50px !important;
}

@media (min-width: 558px) {
	.tab_fs__container .tab_fs__container-content {
		width: 100%;
		height: auto;
		overflow: hidden;
		padding: 16px 0 4px;
	}
}

@media (orientation: portrait) and (min-width: 240px) {
	.tab_fs__container .tab_fs__container-content .field {
		width: 100%;
		margin: 0 0 8px;
	}
}

@media (orientation: landscape) and (min-width: 320px) {
	.tab_fs__container .tab_fs__container-content .field {
		width: 100%;
		margin: 0 0 8px;
	}
}

@media (min-width: 558px) {
	.tab_fs__container .tab_fs__container-content .field {
		width: calc(50% - 8px);
		margin: 0 4px 8px 4px !important;
	}
}

@media (orientation: portrait) and (min-width: 240px) {
	.formField {
		width: 100%;
		margin: 0 0 8px;
	}
}

@media (orientation: landscape) and (min-width: 320px) {
	.formField {
		width: 100%;
		margin: 0 0 8px;
	}
}

@media (min-width: 558px) {
	.formField {
		width: calc(50% - 8px);
		margin: 0 4px 8px 4px !important;
	}
}

@media (orientation: portrait) and (min-width: 240px) {
	.tab_fs__container .tab_fs__container-content .section {
		width: 100%;
		margin: 0 0 8px;
	}
}

@media (orientation: landscape) and (min-width: 320px) {
	.tab_fs__container .tab_fs__container-content .section {
		width: 100%;
		margin: 0 0 8px;
	}
}

@media (min-width: 558px) {
	.tab_fs__container .tab_fs__container-content .section {
		width: calc(100% - 8px);
		margin: 0 4px 0px 4px !important;
	}
}

@media (orientation: portrait) and (min-width: 240px) {
	.tab_fs__container .tab_fs__container-content .button {
		width: 100%;
		margin: 0 0 8px;
	}
}

@media (orientation: landscape) and (min-width: 320px) {
	.tab_fs__container .tab_fs__container-content .button {
		width: 100%;
		margin: 0 0 8px;
	}
}

@media (min-width: 558px) {
	.tab_fs__container .tab_fs__container-content .button {
		margin: 8px 4px 12px 4px !important;
	}
}

.sheet_full-fs {
	display: none;
	position: fixed;
	width: 100%;
	height: 100vh;
	bottom: 0px;
	left: 0px;
	top: 0px;
	z-index: 1600;
	background-image: url(../images/logo_bk.svg);
	/*background-color: #FFF;*/
	background-position: right;
	background-repeat: no-repeat;
	background-size: auto;
}

.no-svg .sheet_full-fs {
	background-image: url(../images/logo_bk.png);
}

@media only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3 / 2),
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
	.no-svg .sheet_full-fs {
		background-image: url(../images/logo_bk@2x.png);
	}
}

.sheet_full-fs .wapper_card .sheet-title {
	vertical-align: middle;
	height: 56px;
	font-size: 18px;
	line-height: 24px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: calc(100vw - 100px);
}

.sheet_full-fs .wapper_card .sheet-title img {
	width: 28px;
	height: 28px;
	padding: 0 10px;
	-webkit-filter: invert(100%);
	filter: invert(100%);
}

.sheet_full-fs .wapper_card .tab_fs__head-icon_exp {
	display: none !important;
}

.sheet_bottom-fs {
	display: none;
	position: fixed;
	width: 100%;
	height: 60%;
	bottom: 0px;
	left: 0px;
	z-index: 2100;
	max-height: 270px;
	-webkit-box-shadow: -2px -2px 5px 0px rgba(0, 0, 0, 0.35);
	box-shadow: -2px -2px 5px 0px rgba(0, 0, 0, 0.35);
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	background-color: #FFF;
}

@media (orientation: portrait) and (min-width: 240px) {
	.sheet_bottom-fs {
		height: 80%;
	}
}

@media (orientation: portrait) and (min-width: 320px) {
	.sheet_bottom-fs {
		height: 80%;
		max-height: 280px;
	}
}

@media (orientation: portrait) and (min-width: 384px) {
	.sheet_bottom-fs {
		max-height: 270px;
	}
}

.sheet_bottom-fs .cta_buttons-text {
	float: left;
	width: 100%;
	height: auto;
	padding-top: 12px;
	padding-bottom: 12px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.sheet_bottom-fs .sync_all {
	width: 100%;
	height: 100%;
	padding: 8px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.sheet_bottom-fs .sync_all .sync_all__header {
	width: 100%;
	height: 48px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.sheet_bottom-fs .sync_all .sync_all__header .sync_all__header_title {
	float: left;
	width: calc(100% - 80px);
	text-align: left;
	color: #333;
}

@media (orientation: portrait) and (min-width: 240px) {
	.sheet_bottom-fs .sync_all .sync_all__header .sync_all__header_title {
		height: 36px;
		font-weight: 500;
		line-height: 18px;
		font-size: 1rem;
	}
}

@media (orientation: portrait) and (min-width: 320px) {
	.sheet_bottom-fs .sync_all .sync_all__header .sync_all__header_title {
		height: 40px;
		font-weight: 500;
		line-height: 18px;
		font-size: 1rem;
	}
}

@media (orientation: landscape) and (min-width: 320px) {
	.sheet_bottom-fs .sync_all .sync_all__header .sync_all__header_title {
		height: 36px;
		font-weight: 500;
		line-height: 18px;
		font-size: 1rem;
	}
}

.sheet_bottom-fs .sync_all .sync_all__header .sync_all__anim {
	float: right;
	width: 36px;
	height: 36px;
	margin: 0px 8px 0 0;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.sheet_bottom-fs .sync_all .bottom__wrapper {
	overflow-x: hidden;
	width: 100%;
}

.sheet_bottom-fs .sync_all .bottom__wrapper .sync_all__section {
	float: left;
	width: 100%;
	height: auto;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.sheet_bottom-fs .sync_all .bottom__wrapper .sync_all__section .sync_all__section_title {
	float: left;
	width: 100%;
	font-weight: 500;
	line-height: 18px;
	text-align: left;
	margin-top: 8px;
	color: #333;
	font-size: 1rem;
}

.sheet_bottom-fs .sync_all .bottom__wrapper .sync_all__section .sync_all__section_log {
	float: left;
	width: calc(100% - 16px);
	padding: 4px 4px 0 8px;
	font-weight: 400;
	line-height: 18px;
	text-align: left;
	color: #333;
	font-size: 14px;
}

.sheet_bottom-fs .sync_all .bottom__wrapper .sync_all__section .sync_all__section_msg {
	float: left;
	width: 100%;
	font-weight: 400;
	line-height: 18px;
	text-align: right;
	margin-top: 8px;
	color: #333;
	font-size: 0.9375rem;
}

.sheet_bottom-fs .bottom__wrapper {
	overflow-x: hidden;
	width: 100%;
	height: calc(100% - 48px);
}

.sheet_bottom-fs .bottom__wrapper-btn {
	overflow-x: hidden;
	width: 100%;
	height: calc(100% - 170px);
}

@media (orientation: portrait) and (min-width: 240px) {
	.sheet_bottom-fs .bottom__wrapper-btn {
		height: calc(100% - 170px);
	}
}

@media (orientation: portrait) and (min-width: 320px) {
	.sheet_bottom-fs .bottom__wrapper-btn {
		height: calc(100% - 170px);
	}
}

@media (orientation: portrait) and (min-width: 360px) {
	.sheet_bottom-fs .bottom__wrapper-btn {
		height: calc(100% - 100px);
	}
}

.sheet_bottom-fs .sheet_bottom_card {
	width: 100%;
	height: auto;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.sheet_bottom-fs .sheet_bottom_card .sheet_bottom_card__container {
	width: 100%;
	height: 48px;
	margin-bottom: 8px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.sheet_bottom-fs .sheet_bottom_card .sheet_bottom_card__container .sheet_bottom_card-suppor_visuals {
	float: left;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	margin-right: 8px;
	background-color: #5e92f3;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.sheet_bottom-fs .sheet_bottom_card .sheet_bottom_card__container .sheet_bottom_card_content {
	float: left;
	width: calc(100% - 172px);
	margin-right: 8px;
	height: auto;
	text-align: left;
	line-height: 16px;
	font-size: 0.75rem;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

@media (max-width: 380px) {
	.sheet_bottom-fs .sheet_bottom_card .sheet_bottom_card__container .sheet_bottom_card_content {
		width: calc(100% - 64px);
		border-bottom: none;
		margin-bottom: 12px;
	}
}

.sheet_bottom-fs .sheet_bottom_card .sheet_bottom_card__container .sheet_bottom_card_content .sheet_bottom_card-date {
	font-weight: 500;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.sheet_bottom-fs .sheet_bottom_card .sheet_bottom_card__container .sheet_bottom_card_content .sheet_bottom_card-text {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.sheet_bottom-btn3 {
	display: none;
	position: fixed;
	width: 100%;
	height: 80%;
	bottom: 0px;
	left: 0px;
	z-index: 2100;
	max-height: 120px;
	-webkit-box-shadow: -2px -2px 5px 0px rgba(0, 0, 0, 0.35);
	box-shadow: -2px -2px 5px 0px rgba(0, 0, 0, 0.35);
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	background-color: #FFF;
}

@media (orientation: portrait) and (min-width: 240px) {
	.sheet_bottom-btn3 {
		height: calc(100% - 118px);
		padding: 0 8px;
	}
}

@media (orientation: landscape) and (min-width: 320px) {
	.sheet_bottom-btn3 {
		height: 70%;
		padding: 0 8px;
	}

	.sheet_bottom-btn3 .button {
		height: 36px;
		min-height: 36px;
	}

	.sheet_bottom-btn3 .button .button__container .button-label {
		min-width: 36px;
		font-size: 1rem;
		line-height: 36px;
	}
}

@media (orientation: portrait) and (min-width: 320px) {
	.sheet_bottom-btn3 {
		max-height: 120px;
	}
}

@media (orientation: landscape) and (min-width: 480px) {
	.sheet_bottom-btn3 {
		height: 70%;
		padding: 0 8px;
	}

	.sheet_bottom-btn3 .button {
		height: 48px;
		min-height: 48px;
	}

	.sheet_bottom-btn3 .button .button__container .button-label {
		min-width: 48px;
		font-size: 1rem;
		line-height: 48px;
	}
}

@media (orientation: landscape) and (min-width: 360px) {
	.sheet_bottom-btn3 {
		max-height: 120px;
	}
}

@media (orientation: landscape) and (min-width: 598px) {
	.sheet_bottom-btn3 {
		max-height: 120px;
	}
}

.sheet_bottom-btn3 .sbtt-btn__header {
	width: 100%;
	height: 34px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

@media (orientation: portrait) and (min-width: 240px) {
	.sheet_bottom-btn3 .sbtt-btn__header {
		height: 34px;
	}
}

@media (orientation: portrait) and (min-width: 320px) {
	.sheet_bottom-btn3 .sbtt-btn__header {
		height: calc(100% - 224px);
	}
}

.sheet_bottom-btn3 .sbtt-btn__header .sbtt-btn__header_title {
	float: left;
	width: 100%;
}

@media (orientation: portrait) and (min-width: 240px) {
	.sheet_bottom-btn3 .sbtt-btn__header .sbtt-btn__header_title {
		line-height: 18px;
		margin-top: 8px;
		font-size: 1rem;
	}
}

@media (orientation: portrait) and (min-width: 320px) {
	.sheet_bottom-btn3 .sbtt-btn__header .sbtt-btn__header_title {
		height: 40px;
		line-height: 36px;
		font-size: 1.25rem;
	}
}

@media (orientation: landscape) and (min-width: 320px) {
	.sheet_bottom-btn3 .sbtt-btn__header .sbtt-btn__header_title {
		line-height: 20px;
		margin-top: 8px;
		font-size: 1.125rem;
	}
}

@media (orientation: landscape) and (min-width: 480px) {
	.sheet_bottom-btn3 .sbtt-btn__header .sbtt-btn__header_title {
		height: 48px;
		line-height: 36px;
		margin-top: 8px;
		font-size: 1.125rem;
	}
}

.sheet_bottom-btn3 .cta_buttons {
	float: left;
	width: 100%;
	padding-bottom: 8px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.sheet_bottom-btn3 .cta_buttons .button {
	float: left;
	width: 100%;
	margin-bottom: 8px;
}

.sheet_preview h4,
.sheet_preview h5 {
	padding-left: 8px;
	font-weight: 500;
}

.sheet_preview .name,
.sheet_preview .value {
	padding: 8px 8px 8px 12px;
	margin: 2px;
	font-size: 14px;
	/* white-space: nowrap; */
	text-align: left;
	/* max-width: 47vw; */
	overflow: overlay;
	line-height: 1.9em;
}

.sheet_preview .name_sub,
.sheet_preview .value_sub {
	padding: 3px 3px 3px 8px;
	margin: 2px;
	font-size: 14px;
	/* white-space: nowrap; */
	text-align: left;
	/* max-width: 47vw; */
	overflow: overlay;
	line-height: 1.9em;
}

.wapper_card {
	min-width: 240px;
	height: 100%;
}

.wapper_card .card {
	width: 100%;
	height: 100%;
	background-color: #FFF;
	padding: 4px 0;
}

.wapper_card .card .card__container {
	display: -ms-grid;
	display: grid;
	width: 100%;
	grid-template-areas: "card__support_visuals card__content card__cta";
	-ms-grid-columns: 56px auto fit-content(130px);
	grid-template-columns: 56px auto fit-content(130px);
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

@media (max-width: 380px) {
	.wapper_card .card .card__container {
		-ms-grid-columns: 56px auto auto;
		grid-template-columns: 56px auto auto;
	}
}

.wapper_card .card .card__container .card__support_visuals {
	-ms-grid-row: 1;
	-ms-grid-column: 1;
	grid-area: card__support_visuals;
}

.wapper_card .card .card__container .card__content {
	-ms-grid-row: 1;
	-ms-grid-column: 2;
	grid-area: card__content;
	font-size: 14px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin-left: 4px;
}

.wapper_card .card .card__container .card__content .card__row {
	float: left;
	width: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.wapper_card .card .card__container .card__cta {
	-ms-grid-row: 1;
	-ms-grid-column: 3;
	grid-area: card__cta;
	text-align: right;
}

@media (max-width: 380px) {
	.wapper_card .card .card__container .card__cta {
		padding: 0px;
	}
}

.wapper_card .card .card__container .card__cta .card__cta_status {
	font-size: 12px;
	text-align: right;
	padding-right: 8px;
}

.wapper_card .card .card__container .card__cta .card__cta_one {
	/*float: left;*/
	width: 40px;
	display: inline-block;
}

@media (max-width: 380px) {
	.wapper_card .card .card__container .card__cta .card__cta_one {
		padding-left: 0px;
	}
}

.wapper_card .card .card__container .card__cta .card__cta_two {
	/*float: right;*/
	width: 36px;
	height: 36px;
	margin-right: 4px;

	display: inline-block;
	vertical-align: text-bottom;
	text-align: center;
}

.wapper_card .tab_fs {
	padding-top: 8px;
	width: 100% !important;
	max-width: 100% !important;
}

.wapper_card .tab_fs__container {
	width: 100% !important;
	max-width: 2100px !important;
}

.wapper_card .tab_fs__container .tab_fs__container-content {
	width: 100% !important;
	max-width: 100% !important;
	padding: 3px;
	padding-bottom: 50px !important;
}

.fab-wrapper {
	position: fixed;
	display: table;
	-webkit-box-align: right;
	-ms-flex-align: right;
	align-items: right;
	right: 16px;
	bottom: 22px;
	width: 240;
	height: auto;
	background-color: transparent;
	z-index: 1500;
}

.fab-wrapper .fab__section {
	display: none;
	display: table-row;
}

.fab-wrapper .fab__section .fab {
	display: table-cell;
	float: right;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	-webkit-box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.35);
	box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.35);
}

.fab-wrapper .fab__child-section {
	display: none;
}

.fab-wrapper .fab__child-section .fab__child {
	display: table-cell;
	float: right;
	width: 40px;
	height: 40px;
	margin: 0 8px 12px 8px;
	border-radius: 50%;
	-webkit-box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.35);
	box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.35);
}

.fab-wrapper .fab__child-section .fab__child-text {
	text-align: right;
	display: table-cell;
	word-wrap: break-word;
	max-width: calc(100% - 40px);
	float: right;
	height: auto;
	margin: 5px 0;
	border-radius: 4px;
	line-height: 30px;
	padding: 0 8px;
	font-size: 0.875rem;
	background-color: #FFFFFF;
	-webkit-box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.35);
	box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.35);
}

/*
'components/_menus.scss',
'components/_nav_rail.scss',
'components/_pickers.scss',
'components/_sheet_side.scss',
'components/_tooltips.scss',
*/
.checkbox {
	float: left;
	width: 100%;
	height: auto;
	min-height: 50px;
	margin: 0px 0px 12px 0px;
	border: 1px solid #B1B1B1;
	border-radius: 4px;
	background-color: rgba(0, 0, 0, 0.009);
	text-align: left;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	/*border: none !important;*/
}

.checkbox .checkbox__label {
	padding: 2px 8px 0 8px;
}

.checkbox .checkbox__label label {
	color: #333;
	font-style: normal;
	font-weight: normal;
	font-size: 0.75rem;
	line-height: auto;
}

.checkbox span {
	color: #FF0000;
	padding-left: 5px;
}

.checkbox .checkbox__wrapper {
	width: auto;
	float: left;
	padding: 0 16px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.checkbox .checkbox__wrapper .checkbox-col {
	float: left;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.checkbox .checkbox__wrapper .horizontal {
	float: left;
}

.checkbox .checkbox__wrapper .checkbox-group {
	padding-left: 24px;
	margin: 24px 8px;
}

.checkbox .checkbox__wrapper .checkbox-group input[type=checkbox] {
	display: none;
}

.checkbox .checkbox__wrapper .checkbox-group input[type=checkbox]:not(:checked)+label::before {
	content: "";
	position: absolute;
	width: 24px;
	height: 24px;
	top: -1px;
	border-radius: 2px;
	border: 1px solid #CCCCCC;
	background-color: #FFF;
	-webkit-transition: .2s;
	transition: .2s;
	left: 0;
}

.checkbox .checkbox__wrapper .checkbox-group input[type=checkbox]:checked+label::before {
	content: "";
	position: absolute;
	width: 24px;
	height: 24px;
	top: -1px;
	border-radius: 2px;
	border: 1px solid #333;
	background-color: #333;
	-webkit-transition: .2s;
	transition: .2s;
	left: 0;
}

.checkbox .checkbox__wrapper .checkbox-group input[type=checkbox]:checked+label::after {
	content: "";
	position: absolute;
	width: 5px;
	height: 9px;
	top: -1px;
	border-radius: 2px;
	-webkit-transition: .2s;
	transition: .2s;
	left: 8px;
	border-top: 8px solid transparent;
	border-left: 2px solid transparent;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	-webkit-transform: rotate(36deg);
	transform: rotate(36deg);
	-webkit-animation: fade-in .5s;
	animation: fade-in .5s;
}

.checkbox .checkbox__wrapper .checkbox-group label {
	cursor: pointer;
	position: relative;
	padding: 4px 0 0 40px;
}

.radiobutton {
	float: left;
	width: 100%;
	height: auto;
	min-height: 50px;
	margin: 0px 0px 12px 0px;
	border: 1px solid #B1B1B1;
	border-radius: 4px;
	background-color: rgba(0, 0, 0, 0.009);
	text-align: left;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	margin-left: 4px;
	width: calc(100% - 8px);
}

.radiobutton .radiobutton__label {
	padding: 2px 8px 0 8px;
}

.radiobutton .radiobutton__label label {
	color: #333;
	font-style: normal;
	font-weight: normal;
	font-size: 0.75rem;
	line-height: auto;
}

.radiobutton span {
	color: #FF0000;
	padding-left: 5px;
}

.radiobutton .radiobutton__wrapper {
	width: auto;
	float: left;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.radiobutton .radiobutton__wrapper .radiobutton-col {
	float: left;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.radiobutton .radiobutton__wrapper .horizontal {
	float: left;
}

.radio-group {
	padding-left: 24px;
	margin: 24px 8px;
}

.radio-group input[type=radio] {
	display: none;
}

.radio-group input[type=radio]:not(:checked)+label::before {
	content: "";
	position: absolute;
	width: 15px;
	height: 15px;
	left: 0;
	top: -1px;
	border-radius: 50%;
	border: 2px solid #CCCCCC;
}

.radio-group input[type=radio]:checked+label::before {
	content: "";
	position: absolute;
	width: 15px;
	height: 15px;
	left: 0;
	top: -1px;
	border-radius: 50%;
	border: 2px solid #333;
}

.radio-group input[type=radio]:checked+label::after {
	content: "";
	position: absolute;
	width: 15px;
	height: 15px;
	left: 0;
	top: -1px;
	border-radius: 50%;
	border: 2px solid #333;
	background-color: #333;
	-webkit-transform: scale(0.4);
	transform: scale(0.4);
	-webkit-animation: fade-in .5s;
	animation: fade-in .5s;
}

.radio-group label {
	cursor: pointer;
	position: relative;
	padding-left: 25px;
}

.radio-group2 {
	padding-left: 24px;
	margin: 12px 2px;
}

.radio-group2 input[type=radio] {
	display: none;
}

.radio-group2 input[type=radio]:not(:checked)+label::before {
	content: "";
	position: absolute;
	width: 15px;
	height: 15px;
	left: 0;
	top: -1px;
	border-radius: 50%;
	border: 2px solid #CCCCCC;
}

.radio-group2 input[type=radio]:checked+label::before {
	content: "";
	position: absolute;
	width: 15px;
	height: 15px;
	left: 0;
	top: -1px;
	border-radius: 50%;
	border: 2px solid #333;
}

.radio-group2 input[type=radio]:checked+label::after {
	content: "";
	position: absolute;
	width: 15px;
	height: 15px;
	left: 0;
	top: -1px;
	border-radius: 50%;
	border: 2px solid #333;
	background-color: #333;
	-webkit-transform: scale(0.4);
	transform: scale(0.4);
	-webkit-animation: fade-in .5s;
	animation: fade-in .5s;
}

.radio-group2 label {
	cursor: pointer;
	position: relative;
	padding-left: 25px;
}

@keyframes fade-in {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.toogle-s {
	float: left;
	width: 100%;
	height: auto;
	min-height: 50px;
	margin: 0px 0px 12px 0px;
	border: 1px solid #B1B1B1;
	border-radius: 4px;
	background-color: rgba(0, 0, 0, 0.009);
	text-align: left;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.toogle-s .toogle-s__label {
	float: left;
	width: 80%;
	padding: 12px 8px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

@media (max-width: 450px) {
	.toogle-s .toogle-s__label {
		width: 60%;
	}
}

.toogle-s .toogle-s__label label {
	color: #333;
	font-style: normal;
	font-weight: normal;
	font-size: 0.875rem;
	line-height: 24px;
}

.toogle-s .toogle-s__label span {
	color: #FF0000;
	padding-left: 5px;
}

.toogle-s .toogle-s-content {
	position: relative;
	float: right;
	top: 24px;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.toogle-s .toggle {
	cursor: pointer;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.toogle-s .toggle .toggle-control {
	-webkit-transition: 0.3s cubic-bezier(0.95, 0.05, 0.795, 0.035);
	transition: 0.3s cubic-bezier(0.95, 0.05, 0.795, 0.035);
	width: 48px;
	height: 24px;
	border: 1px solid #CCCCCC;
	border-radius: 24px;
	background-color: rgba(0, 0, 0, 0.06);
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.toogle-s .toggle .toggle-control:after {
	-webkit-transition: 0.3s cubic-bezier(0.95, 0.05, 0.795, 0.035);
	transition: 0.3s cubic-bezier(0.95, 0.05, 0.795, 0.035);
	content: "";
	width: 24px;
	height: 24px;
	background-color: #FFFFFF;
	border-radius: 50%;
	-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35), 0 3px 2px rgba(0, 0, 0, 0.35);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35), 0 3px 2px rgba(0, 0, 0, 0.35);
	position: absolute;
	top: 0;
	left: 0;
}

.toogle-s .toggle input {
	display: none;
}

.toogle-s .toggle input:checked+.toggle-control {
	border-color: #1565c0;
	background-color: #1565c0;
}

.toogle-s .toggle input:checked+.toggle-control:after {
	left: 24px;
}

/*
@import 'components/progress_indicators/_linear_progress_indicators.scss',
'components/progress_indicators/circular_progress_indicators.scss';
*/
/*
@import 'components/liders/_continuous_slider.scss,
'components/liders/_discrete_slider.scss';
*/
.Nav1 {
	position: sticky;
	position: -webkit-sticky;
	top: 0;
	display: -webkit-box;
	vertical-align: middle;
	width: 100%;
	height: 56px;
	color: #FFFFFF;
	background-color: #4753A3;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.35);
	box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.35);
	z-index: 1500;
}

.Nav1 .Nav__icon {
	display: inline-block;
	width: 24px;
	height: 24px;
	margin: 16px 12px 16px 16px;
	cursor: pointer;
}

.Nav1 .Nav__Title {
	overflow: hidden;
	width: calc(100% - 132px);
	line-height: 56px;
	text-overflow: ellipsis;
}

.Nav1 .Nav__sync {
	width: 24px;
	height: 24px;
	margin: 16px 8px 16px 8px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.Nav1 .Nav__status {
	width: 24px;
	height: 24px;
	margin: 16px 8px 16px 8px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.Nav1 .Nav__status .online_nav {
	display: block;
}

.Nav1 .Nav__status .online_nav .online_nav-i {
	display: block;
}

.Nav1 .Nav__status .online_nav .online_nav-s {
	display: block;
}

.Nav1 .Nav__status .offline_nav {
	display: none;
}

.Nav1 .Nav__status .offline_nav .offline_nav-i {
	display: none;
}

.Nav1 .Nav__status .offline_nav .offline_nav-s {
	display: block;
}

.Nav2 {
	position: sticky;
	position: -webkit-sticky;
	top: 56px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	vertical-align: middle;
	width: 100%;
	min-height: 56px;
	height: auto;
	color: #FFFFFF;
	background-color: #FFFFFF;
	padding: 8px 12px 0px 16px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.35);
	box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.35);
	z-index: 1499;
}

.Nav2 .Nav2__icon {
	display: inline-block;
	width: 24px;
	height: 24px;
	margin: 12px 0 12px 12px;
	cursor: pointer;
}

.Nav2 .Menus_display {
	display: none;
	position: absolute;
	margin: 24px 8px 0 0;
	width: auto;
	min-width: 112px;
	max-width: 240px;
	height: auto;
	z-index: 1999;
	right: 8px;
	background-color: #FFFFFF;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.35);
	box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.35);
}

.Nav2 .Menus_display .menu_item_comtainer {
	display: table-row;
	width: 100%;
	text-align: right;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	cursor: pointer;
}

.Nav2 .Menus_display .menu_item_comtainer .menu_item_text {
	display: table-cell;
	color: #333;
	padding: 0 16px;
	line-height: 48px;
	font-size: 0.875rem;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.Nav2 .Menus_display .menu_item_comtainer:hover {
	background-color: rgba(51, 51, 51, 0.1);
}

.Nav2 .controls {
	width: 100%;
	height: auto;
	text-align: right;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.Nav2 .controls .text_help {
	clear: both;
	text-align: left;
	padding-bottom: 8px;
	color: #222;
	font-size: 0.625rem;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.Nav2 .controls .wraper_custom_range {
	float: left;
	width: 100%;
	height: auto;
	padding-bottom: 4px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.Nav2 .controls .wraper_custom_range .wraper_custom_range__field {
	float: left;
	width: 40%;
	height: auto;
	padding: 0 12px 0 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.Nav2 .controls .wraper_custom_range .wraper_custom_range__button {
	float: left;
	width: 20%;
	height: auto;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.cols-5 {
	width: 5%;
}

.cols-10 {
	width: 10%;
}

.cols-15 {
	width: 15%;
}

.cols-20 {
	width: 20%;
}

.cols-25 {
	width: 25%;
}

.cols-30 {
	width: 30%;
}

.cols-35 {
	width: 35%;
}

.cols-40 {
	width: 40%;
}

.cols-45 {
	width: 45%;
}

.cols-50 {
	width: 50%;
}

.cols-55 {
	width: 55%;
}

.cols-60 {
	width: 60%;
}

.cols-65 {
	width: 65%;
}

.cols-70 {
	width: 70%;
}

.cols-75 {
	width: 75%;
}

.cols-80 {
	width: 80%;
}

.cols-85 {
	width: 85%;
}

.cols-90 {
	width: 90%;
}

.cols-95 {
	width: 95%;
}

.cols-100 {
	width: 100%;
}

@media screen and (min-width: 640px) {
	.cols-m-5 {
		width: 5%;
	}

	.cols-m-10 {
		width: 10%;
	}

	.cols-m-15 {
		width: 15%;
	}

	.cols-m-20 {
		width: 20%;
	}

	.cols-m-25 {
		width: 25%;
	}

	.cols-m-30 {
		width: 30%;
	}

	.cols-m-35 {
		width: 35%;
	}

	.cols-m-40 {
		width: 40%;
	}

	.cols-m-45 {
		width: 45%;
	}

	.cols-m-50 {
		width: 50%;
	}

	.cols-m-55 {
		width: 55%;
	}

	.cols-m-60 {
		width: 60%;
	}

	.cols-m-65 {
		width: 65%;
	}

	.cols-m-70 {
		width: 70%;
	}

	.cols-m-75 {
		width: 75%;
	}

	.cols-m-80 {
		width: 80%;
	}

	.cols-m-85 {
		width: 85%;
	}

	.cols-m-90 {
		width: 90%;
	}

	.cols-m-95 {
		width: 95%;
	}

	.cols-m-100 {
		width: 100%;
	}
}

@media screen and (min-width: 1024px) {
	.cols-l-5 {
		width: 5%;
	}

	.cols-l-10 {
		width: 10%;
	}

	.cols-l-15 {
		width: 15%;
	}

	.cols-l-20 {
		width: 20%;
	}

	.cols-l-25 {
		width: 25%;
	}

	.cols-l-30 {
		width: 30%;
	}

	.cols-l-35 {
		width: 35%;
	}

	.cols-l-40 {
		width: 40%;
	}

	.cols-l-45 {
		width: 45%;
	}

	.cols-l-50 {
		width: 50%;
	}

	.cols-l-55 {
		width: 55%;
	}

	.cols-l-60 {
		width: 60%;
	}

	.cols-l-65 {
		width: 65%;
	}

	.cols-l-70 {
		width: 70%;
	}

	.cols-l-75 {
		width: 75%;
	}

	.cols-l-80 {
		width: 80%;
	}

	.cols-l-85 {
		width: 85%;
	}

	.cols-l-90 {
		width: 90%;
	}

	.cols-l-95 {
		width: 95%;
	}

	.cols-l-100 {
		width: 100%;
	}
}

.section_grid {
	float: left;
	width: 100%;
	height: auto;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.section_grid .section_half {
	float: left;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	padding: 0 25px;
	min-height: 370px;
}

.section_grid .section_half .section_half-title {
	margin: 36px 0 12px 0;
}

.section_grid .section_half .section_half-title label {
	font-family: 'Rubik', sans-serif;
	font-weight: 500;
	font-size: 0.875rem;
}

@media (min-width: 576px) {
	.section_grid .section_half {
		width: 50%;
	}
}

@media (min-width: 768px) {
	.section_grid .section_half {
		width: 50%;
	}
}

@media (min-width: 992px) {
	.section_grid .section_half {
		width: 25%;
	}
}

@media (min-width: 1200px) {
	.section_grid .section_half {
		width: 25%;
	}
}

@media (max-width: 320px) {
	.section_grid .section_half {
		width: 100%;
		padding: 0;
	}
}

.wrapper_login {
	width: 100vw;
	height: 100vh;
	padding: 16px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.wrapper_login .login_header {
	float: left;
	width: 100%;
	height: 10%;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.wrapper_login .login_header .login_logo__image {
	float: left;
	background-image: url(../images/logo.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
	position: relative;
	-webkit-transition: all 1s ease;
	transition: all 1s ease;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.no-svg .wrapper_login .login_header .login_logo__image {
	background-image: url(../images/logo.png);
}

@media only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3 / 2),
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
	.no-svg .wrapper_login .login_header .login_logo__image {
		background-image: url(../images/logo@2x.png);
	}
}

@media (orientation: portrait) and (min-width: 240px) {
	.wrapper_login .login_header .login_logo__image {
		width: 36px;
		height: 36px;
	}
}

@media (orientation: landscape) and (min-width: 320px) {
	.wrapper_login .login_header .login_logo__image {
		width: 24px;
		height: 24px;
	}
}

@media (orientation: portrait) and (min-width: 320px) {
	.wrapper_login .login_header .login_logo__image {
		width: 48px;
		height: 48px;
	}
}

@media (orientation: landscape) and (min-width: 598px) {
	.wrapper_login .login_header .login_logo__image {
		width: 20vw;
		height: 20vw;
		max-width: 82px;
		max-height: 82px;
	}
}

.wrapper_login .login_header .login_title {
	float: left;
	position: relative;
	top: 45%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 70%;
	height: 100%;
	font-weight: 500;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

@media (orientation: portrait) and (min-width: 240px) {
	.wrapper_login .login_header .login_title {
		font-size: 97%;
	}
}

@media (orientation: landscape) and (min-width: 320px) {
	.wrapper_login .login_header .login_title {
		padding: 0 0 0 16px;
		font-size: 90%;
	}
}

@media (orientation: portrait) and (min-width: 320px) {
	.wrapper_login .login_header .login_title {
		padding: 5% 0 0 16px;
		font-size: 120%;
	}
}

@media (orientation: landscape) and (min-width: 598px) {
	.wrapper_login .login_header .login_title {
		padding: 7% 0 8% 16px;
		font-size: 150%;
	}
}

.wrapper_login .login_data {
	width: 100%;
	text-align: center;
	padding-bottom: 40px;
	padding: 0 16px;
	margin-bottom: 32px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

@media (orientation: portrait) and (min-width: 240px) {
	.wrapper_login .login_data {
		padding: 50px 0 0 0;
	}
}

@media (orientation: landscape) and (min-width: 320px) {
	.wrapper_login .login_data {
		padding-top: 10vh;
	}
}

@media (orientation: portrait) and (min-width: 320px) {
	.wrapper_login .login_data {
		padding-top: 30%;
	}
}

@media (orientation: portrait) and (min-width: 598px) {
	.wrapper_login .login_data {
		max-width: 400px;
		position: relative;
		margin: 0 auto;
		padding: 0;
		padding-bottom: 40px;
	}
}

@media (orientation: landscape) and (min-width: 598px) {
	.wrapper_login .login_data {
		max-width: 400px;
		position: relative;
		margin: 0 auto;
		padding: 0;
		padding-bottom: 40px;
	}
}

.wrapper_login .login_data .login_data__fields {
	display: inline-block;
	width: 100%;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

@media (orientation: landscape) and (min-width: 320px) {
	.wrapper_login .login_data .login_data__fields {
		width: 90%;
	}
}

@media (orientation: portrait) and (min-width: 598px) {
	.wrapper_login .login_data .login_data__fields {
		width: 100%;
	}
}

@media (orientation: landscape) and (min-width: 598px) {
	.wrapper_login .login_data .login_data__fields {
		width: 100%;
	}
}

.wrapper_login .login_data .login_data__more {
	display: inline-block;
	width: 100%;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

@media (orientation: landscape) and (min-width: 320px) {
	.wrapper_login .login_data .login_data__more {
		width: 90%;
	}
}

@media (orientation: portrait) and (min-width: 598px) {
	.wrapper_login .login_data .login_data__more {
		width: 100%;
	}
}

@media (orientation: landscape) and (min-width: 598px) {
	.wrapper_login .login_data .login_data__more {
		width: 100%;
	}
}

.wrapper_login .login_data .login_data__more label {
	font-size: 0.875rem;
	color: #333333;
	float: left;
}

.wrapper_login .login_data .login_data__more a {
	float: right;
	text-decoration: none;
	color: #5e92f3;
	font-size: 0.875rem;
}

.wrapper_login .login_cta {
	width: 100%;
	text-align: center;
	padding: 0 16px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.wrapper_login .login_cta .login_buttons__container {
	display: inline-block;
	bottom: 0px;
	width: 50%;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

@media (orientation: portrait) and (min-width: 240px) {
	.wrapper_login .login_cta .login_buttons__container {
		width: 100%;
	}
}

@media (orientation: landscape) and (min-width: 320px) {
	.wrapper_login .login_cta .login_buttons__container {
		width: 100%;
	}
}

@media (orientation: portrait) and (min-width: 240px) {
	.wrapper_login .login_cta .login_buttons__container .button {
		min-height: 36px;
		height: 36px;
		width: 100%;
	}

	.wrapper_login .login_cta .login_buttons__container .button .button-label {
		line-height: 38px;
	}
}

@media (orientation: landscape) and (min-width: 320px) {
	.wrapper_login .login_cta .login_buttons__container .button {
		width: 49%;
		min-height: 36px;
		height: 36px;
	}

	.wrapper_login .login_cta .login_buttons__container .button .button-label {
		line-height: 38px;
	}
}

@media (orientation: portrait) and (min-width: 320px) {
	.wrapper_login .login_cta .login_buttons__container .button {
		min-height: 48px;
		height: 48px;
		width: 100%;
	}

	.wrapper_login .login_cta .login_buttons__container .button .button-label {
		line-height: 48px;
	}
}

@media (orientation: landscape) and (min-width: 480px) {
	.wrapper_login .login_cta .login_buttons__container .button {
		width: 49%;
		min-height: 48px;
		height: 48px;
	}

	.wrapper_login .login_cta .login_buttons__container .button .button-label {
		line-height: 48px;
	}
}

@media (orientation: portrait) and (min-width: 240px) {
	.wrapper_login .login_cta .login_buttons__container .l-emphasis {
		float: left;
	}
}

@media (orientation: portrait) and (min-width: 320px) {
	.wrapper_login .login_cta .login_buttons__container .l-emphasis {
		float: left;
	}
}

@media (orientation: landscape) and (min-width: 240px) {
	.wrapper_login .login_cta .login_buttons__container .h-emphasis {
		float: right;
	}
}

@media (orientation: landscape) and (min-width: 320px) {
	.wrapper_login .login_cta .login_buttons__container .h-emphasis {
		float: right;
	}
}

@media (orientation: portrait) and (min-width: 240px) {
	.wrapper_login .login_cta {
		position: absolute;
		bottom: 0px;
		left: 0px;
	}
}

@media (orientation: landscape) and (min-width: 320px) {
	.wrapper_login .login_cta {
		position: absolute;
		bottom: 0px;
		left: 0px;
	}
}

@media (orientation: portrait) and (min-width: 598px) {
	.wrapper_login .login_cta {
		max-width: 400px;
		position: relative;
		margin: 0 auto;
		padding: 0;
	}
}

@media (orientation: landscape) and (min-width: 598px) {
	.wrapper_login .login_cta {
		max-width: 400px;
		position: relative;
		margin: 0 auto;
		padding: 0;
	}
}

dialog {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	z-index: 2100;
	-webkit-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	border-radius: 4px;
	border: 0;
	width: 90%;
	max-width: 400px;
	max-height: 400px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	padding: 16px 16px 4px 16px;
}

@media (min-width: 800px) {
	dialog {
		left: 25%;
		-webkit-transform: translateX(-55%) translateY(-50%);
		transform: translateX(-55%) translateY(-50%);
	}
}

dialog::-webkit-backdrop {
	background: rgba(0, 0, 0, 0.4);
}

dialog::backdrop {
	background: rgba(0, 0, 0, 0.4);
}

dialog::-webkit-backdrop {
	-webkit-animation: show 500ms ease;
	animation: show 500ms ease;
}

dialog[open],
dialog::-webkit-backdrop {
	-webkit-animation: show 500ms ease;
	animation: show 500ms ease;
}

dialog[open],
dialog::backdrop {
	-webkit-animation: show 500ms ease;
	animation: show 500ms ease;
}

dialog .dialog__title {
	width: 100%;
	height: auto;
	overflow: hidden;
	position: relative;
	line-height: 20px;
	max-height: 40px;
	margin-right: -1em;
	padding-right: 1em;
	margin-bottom: 8px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

dialog .dialog__title:before {
	content: '...';
	position: absolute;
	right: 0;
	bottom: 0;
}

dialog .dialog__title:after {
	content: '';
	position: absolute;
	right: 0;
	width: 1em;
	height: 1em;
	margin-top: 0.2em;
	background: white;
}

dialog .dialog__title label {
	font-size: 1.125rem;
	line-height: 20px;
	font-family: "Rubik", sans-serif;
	font-weight: 500;
	color: #333333;
}

dialog .dialog__text {
	clear: both;
	height: auto;
	line-height: 16px;
	max-height: 300px;
	font-family: "Rubik", sans-serif;
	font-weight: 300;
	color: #333333;
	margin-bottom: 8px;
	overflow-x: auto;
	font-size: 0.875rem;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

dialog .dialog__action {
	float: right;
	height: auto;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

dialog .dialog__action div {
	float: left;
	margin-bottom: 0px;
}

@media (max-width: 488px) {
	dialog .dialog__action {
		max-width: 100%;
	}

	dialog .dialog__action div {
		float: right;
	}
}

@media (orientation: portrait) and (min-width: 240px) {

	.dialog_alert .dialog__text,
	.dialog_confirmation .dialog__text {
		max-height: 150px;
	}
}

@media (orientation: landscape) and (min-width: 320px) {

	.dialog_alert .dialog__text,
	.dialog_confirmation .dialog__text {
		max-height: 120px;
	}
}

.dialog_search-ck .field_leading_icon,
.dialog_search-rb .field_leading_icon {
	margin-bottom: 8px;
}

@media (orientation: portrait) and (min-width: 240px) {

	.dialog_search-ck .dialog__text,
	.dialog_search-rb .dialog__text {
		max-height: 80px;
	}
}

@media (orientation: landscape) and (min-width: 320px) {

	.dialog_search-ck .dialog__text,
	.dialog_search-rb .dialog__text {
		max-height: 50px;
	}
}

@media (orientation: portrait) and (min-width: 320px) {

	.dialog_search-ck .dialog__text,
	.dialog_search-rb .dialog__text {
		max-height: 220px;
	}
}

@media (orientation: landscape) and (min-width: 480px) {

	.dialog_search-ck .dialog__text,
	.dialog_search-rb .dialog__text {
		max-height: 140px;
	}
}

@media (orientation: landscape) and (min-width: 600px) {

	.dialog_search-ck .dialog__text,
	.dialog_search-rb .dialog__text {
		max-height: 180px;
	}
}

.dialog_confirmation_mac {
	width: 90%;
}

.dialog_confirmation_mac .dialog__status {
	width: 100%;
	text-align: center;
}

.dialog_confirmation_mac .dialog__status .dialog__status-img {
	display: inline-block;
	width: 162px;
	height: 162px;
	margin: 0 auto;
	cursor: pointer;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

@media (orientation: portrait) and (min-width: 240px) {
	.dialog_confirmation_mac .dialog__status .dialog__status-img {
		display: none;
	}
}

@media (orientation: landscape) and (min-width: 320px) {
	.dialog_confirmation_mac .dialog__status .dialog__status-img {
		display: none;
	}
}

@media (orientation: portrait) and (min-width: 320px) {
	.dialog_confirmation_mac .dialog__status .dialog__status-img {
		display: inline-block;
	}
}

@media (orientation: landscape) and (min-width: 598px) {
	.dialog_confirmation_mac .dialog__status .dialog__status-img {
		display: inline-block;
	}
}

.dialog_confirmation_mac .dialog__status .offline {
	background-image: url(../images/cloud_offline.svg);
}

.no-svg .dialog_confirmation_mac .dialog__status .offline {
	background-image: url(../images/cloud_offline.png);
}

@media only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3 / 2),
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
	.no-svg .dialog_confirmation_mac .dialog__status .offline {
		background-image: url(../images/cloud_offline@2x.png);
	}
}

.dialog_confirmation_mac .dialog__status .online {
	background-image: url(../images/cloud_online.svg);
}

.no-svg .dialog_confirmation_mac .dialog__status .online {
	background-image: url(../images/cloud_online.png);
}

@media only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3 / 2),
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
	.no-svg .dialog_confirmation_mac .dialog__status .online {
		background-image: url(../images/cloud_online@2x.png);
	}
}

.dialog_confirmation_mac .dialog__status .unavailable {
	background-image: url(../images/cloud_offline_Intenet-up1.svg);
}

.no-svg .dialog_confirmation_mac .dialog__status .unavailable {
	background-image: url(../images/cloud_offline_Intenet-up1.png);
}

@media only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3 / 2),
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
	.no-svg .dialog_confirmation_mac .dialog__status .unavailable {
		background-image: url(../images/cloud_offline_Intenet-up1@2x.png);
	}
}

@media (orientation: portrait) and (min-width: 240px) {
	.dialog_confirmation_mac .dialog__text .dialog__text {
		max-height: 150px;
	}
}

@media (orientation: landscape) and (min-width: 320px) {
	.dialog_confirmation_mac .dialog__text .dialog__text {
		max-height: 120px;
	}
}

/*
'layout/_header.scss',
'layout/_footer.scss',
'layout/_sidebar.scss',
'layout/_forms.scss',
'layout/_dialogs.scss',
'layout/_data_tables.scss',
'layout/_banners.scss',
'layout/_image_list.scss;
*/
/*
@import 'pages/_login.scss',
'pages/_settings.scss;
...
*/
.button {
	background-color: #1565c0;
}

.button:hover {
	background-color: #1565c0;
	cursor: pointer;
}

.button.dis {
	color: #FFFFFF;
	background-color: #CCCCCC;
}

.button.alert {
	color: #FFFFFF;
	background-color: #FF0000;
}

.button.alert:hover {
	background-color: red;
	cursor: pointer;
}

.button.cta {
	color: #FFFFFF;
	background-color: #2aad5c;
}

.button.cta:hover {
	background-color: #2aad5c;
	cursor: pointer;
}

.button.warning {
	color: #FFFFFF;
	background-color: #FA7B74;
}

.button.warning:hover {
	background-color: #fa7b74;
	cursor: pointer;
}

.button.h-emphasis {
	color: #FFFFFF;
	background-color: #1565c0;
}

.button.h-emphasis:hover {
	background-color: #1565c0;
	cursor: pointer;
}

.button.m-emphasis {
	color: #FFFFFF;
	background-color: #5e92f3;
}

.button.m-emphasis:hover {
	background-color: #5e92f3;
	cursor: pointer;
}

.button.l-emphasis {
	color: #FFFFFF;
	background-color: #A7C1F2;
}

.button.l-emphasis:hover {
	background-color: #a7c1f2;
	cursor: pointer;
}

.button-outline {
	border: 1px solid #1565c0;
	background-color: transparent !important;
}

.button-outline .button-label {
	color: #1565c0;
}

.button-outline:hover {
	border: 1px solid #1565c0;
	cursor: pointer;
}

.button-outline.dis {
	color: #FFFFFF;
	border: 1px solid #CCCCCC;
}

.button-outline.dis .button-label {
	color: #CCCCCC;
}

.button-outline.alert {
	color: #FFFFFF;
	border: 1px solid #FF0000;
}

.button-outline.alert .button-label {
	color: #FF0000;
}

.button-outline.alert:hover {
	border: 1px solid red;
	cursor: pointer;
}

.button-outline.cta {
	color: #FFFFFF;
	border: 1px solid #2aad5c;
}

.button-outline.cta .button-label {
	color: #2aad5c;
}

.button-outline.cta:hover {
	border: 1px solid #2aad5c;
	cursor: pointer;
}

.button-outline.warning {
	color: #FFFFFF;
	border: 1px solid #FA7B74;
}

.button-outline.warning .button-label {
	color: #FA7B74;
}

.button-outline.warning:hover {
	border: 1px solid #fa7b74;
	cursor: pointer;
}

.button-outline.h-emphasis {
	color: #FFFFFF;
	border: 1px solid #1565c0;
}

.button-outline.h-emphasis .button-label {
	color: #1565c0;
}

.button-outline.h-emphasis:hover {
	border: 1px solid #1565c0;
	cursor: pointer;
}

.button-outline.m-emphasis {
	color: #FFFFFF;
	border: 1px solid #5e92f3;
}

.button-outline.m-emphasis .button-label {
	color: #5e92f3;
}

.button-outline.m-emphasis:hover {
	border: 1px solid #5e92f3;
	cursor: pointer;
}

.button-outline.l-emphasis {
	color: #FFFFFF;
	border: 1px solid #A7C1F2;
}

.button-outline.l-emphasis .button-label {
	color: #A7C1F2;
}

.button-outline.l-emphasis:hover {
	border: 1px solid #a7c1f2;
	cursor: pointer;
}

.button-text {
	background-color: transparent !important;
}

.button-text .button-label {
	color: #1565c0;
}

.button-text:hover {
	color: #1565c0;
	cursor: pointer;
}

.button-text.dis {
	color: #FFFFFF;
}

.button-text.dis .button-label {
	color: #CCCCCC;
}

.button-text.alert {
	color: #FFFFFF;
}

.button-text.alert .button-label {
	color: #FF0000;
}

.button-text.alert:hover {
	color: red;
	cursor: pointer;
}

.button-text.cta {
	color: #FFFFFF;
}

.button-text.cta .button-label {
	color: #2aad5c;
}

.button-text.cta:hover {
	color: #2aad5c;
	cursor: pointer;
}

.button-text.warning {
	color: #FFFFFF;
}

.button-text.warning .button-label {
	color: #FA7B74;
}

.button-text.warning:hover {
	color: #fa7b74;
	cursor: pointer;
}

.button-text.h-emphasis {
	color: #FFFFFF;
}

.button-text.h-emphasis .button-label {
	color: #1565c0;
}

.button-text.h-emphasis:hover {
	color: #1565c0;
	cursor: pointer;
}

.button-text.m-emphasis {
	color: #FFFFFF;
}

.button-text.m-emphasis .button-label {
	color: #5e92f3;
}

.button-text.m-emphasis:hover {
	color: #5e92f3;
	cursor: pointer;
}

.button-text.l-emphasis {
	color: #FFFFFF;
}

.button-text.l-emphasis .button-label {
	color: #A7C1F2;
}

.button-text.l-emphasis:hover {
	color: #a7c1f2;
	cursor: pointer;
}

.theme-blue .Nav1 {
	color: #FFFFFF;
	background-color: #0D47A1;
}

.theme-blue .Nav1 .Nav__icon .menu-icon {
	fill: #FFFFFF;
}

.theme-blue .Nav1 .Nav__sync .Nav__sync-s {
	fill: #0D47A1;
}

.theme-blue .Nav1 .Nav__sync .Nav__sync-d {
	fill: #E3F2FD;
}

.theme-blue .Nav1 .Nav__status .online_nav .online_nav-cloud {
	fill: #FFFFFF;
}

.theme-blue .Nav1 .Nav__status .online_nav .online_nav-i {
	fill: #FFFFFF;
}

.theme-blue .Nav1 .Nav__status .online_nav .online_nav-s {
	fill: #FFFFFF;
}

.theme-blue .Nav1 .Nav__status .offline_nav .offline_nav-cloud {
	fill: #FFFFFF;
}

.theme-blue .Nav1 .Nav__status .offline_nav .offline_nav-i {
	fill: #FFFFFF;
}

.theme-blue .Nav1 .Nav__status .offline_nav .offline_nav-s {
	fill: #FFFFFF;
}

.theme-blue .icon_field .Nav2__icon svg {
	fill: #FFFFFF;
}

.theme-blue .fab__child {
	color: #000000;
	background-color: #64B5F6;
}

.theme-blue .fab__child svg {
	fill: #000000;
}

.theme-blue .fab {
	color: #FFFFFF;
	background-color: #0D47A1;
}

.theme-blue .fab svg {
	fill: #FFFFFF;
}

.theme-blue .navigation__header {
	background-color: #90CAF9;
}

.theme-blue .primary {
	background-color: #0D47A1;
}

.theme-blue .button-outline.primary {
	border: 1px solid #1976D2;
}

.theme-blue .button-outline.primary .button__container .button-label {
	color: #1976D2;
}

.theme-blue .button-text.primary .button__container .button-label {
	color: #1976D2;
}

.theme-blue .chip {
	background-color: #E3F2FD;
}

.theme-blue .chip-outl {
	border: 1px solid #BBDEFB;
}

.theme-blue .navigation__items ul li:hover {
	background-color: #E3F2FD;
	color: #333;
}

.theme-blue .tab_fs__head li {
	background-color: #FFFFFF;
}

.theme-blue .tab_fs__head li.active {
	background-color: #A7C1F2;
}

.theme-blue .tab_fs__head li.secondary {
	background-color: #F1F6FF;
}

@media (min-width: 558px) {
	.theme-blue .tab_fs {
		border-bottom: 2px solid #0D47A1;
	}
}

@media (min-width: 558px) {
	.theme-blue .tab_fs__container {
		border-left: 1px solid #BBDEFB;
		border-right: 1px solid #BBDEFB;
		border-bottom: 1px solid #BBDEFB;
	}
}

.theme-blue .btm_nav {
	background-color: #FFF;
}

.theme-blue .btm_nav .btm_nav__content .btm_nav__section {
	background-color: #FFF;
}

.theme-blue .btm_nav .btm_nav__content .btm_nav__section:hover {
	background-color: #0D47A1;
}

.theme-blue .btm_nav .btm_nav__content .btm_nav__section:hover .btm_nav__section-icon svg path {
	fill: #FFFFFF;
}

.theme-blue .btm_nav .btm_nav__content .btm_nav__section:hover .btm_nav__section-label {
	color: #FFFFFF;
}

.theme-blue .btm_nav .btm_nav__content .btm_nav__section .btm_nav__section-icon svg path {
	fill: #0D47A1;
}

.theme-blue .btm_nav .btm_nav__content .btm_nav__section .btm_nav__section-label {
	color: #0D47A1;
}

.theme-blue .btm_nav .btm_nav__content .active {
	background-color: #0D47A1;
}

.theme-blue .btm_nav .btm_nav__content .active .btm_nav__section-icon svg path {
	fill: #FFFFFF;
}

.theme-blue .btm_nav .btm_nav__content .active .btm_nav__section-label {
	color: #FFFFFF;
}

.theme-blue .sheet_full-fs .wapper_card .sheet-title {
	color: #FFFFFF;
	background-color: #0D47A1;
}

.theme-blue #page-wrap table {
	background-color: #FFF;
}

.theme-blue #page-wrap table tr:nth-of-type(odd) {
	background: #E3F2FD;
	color: #000000;
}

.theme-blue #page-wrap table th {
	background: #0D47A1;
	color: #FFFFFF;
}

.theme-blue #page-wrap table th {
	border: 1px solid #BBDEFB;
}

.theme-blue #page-wrap table td {
	border: 1px solid #BBDEFB;
}

.theme-blue .from_six_cols {
	background-color: #FFF;
}

.theme-blue .from_six_cols tr {
	border-bottom: 1px solid #BBDEFB;
}

.theme-blue .from_six_cols tr:nth-of-type(odd) {
	background: #E3F2FD;
	color: #000000;
}

@media (max-width: 600px) {
	.theme-blue .from_six_cols tr:nth-of-type(odd) {
		background: #FFF;
		color: #000000;
	}
}

.theme-blue .from_six_cols th {
	background: #0D47A1;
	color: #FFFFFF;
}

@media (max-width: 600px) {
	.theme-blue .from_six_cols td {
		background-color: #FFF;
	}

	.theme-blue .from_six_cols td:first-child {
		background: #0D47A1;
		color: #FFFFFF;
	}
}

.theme-blue .three_cols {
	background-color: #FFF;
}

.theme-blue .three_cols tr {
	border-bottom: 1px solid #BBDEFB;
}

.theme-blue .three_cols tr:nth-of-type(odd) {
	background: #E3F2FD;
	color: #000000;
}

.theme-blue .three_cols th {
	background: #0D47A1;
	color: #FFFFFF;
}

.theme-blue .four_cols {
	background-color: #FFF;
}

.theme-blue .four_cols tr {
	border-bottom: 1px solid #BBDEFB;
}

.theme-blue .four_cols tr:nth-of-type(odd) {
	background: #E3F2FD;
	color: #000000;
}

@media (max-width: 362px) {
	.theme-blue .four_cols tr:nth-of-type(odd) {
		background: #FFF;
		color: #000000;
	}
}

.theme-blue .four_cols th {
	background: #0D47A1;
	color: #FFFFFF;
}

@media (max-width: 362px) {
	.theme-blue .four_cols td {
		background-color: #FFF;
	}

	.theme-blue .four_cols td:first-child {
		background: #0D47A1;
		color: #FFFFFF;
	}
}

.theme-blue .five_cols {
	background-color: #FFF;
}

.theme-blue .five_cols tr {
	border-bottom: 1px solid #BBDEFB;
}

.theme-blue .five_cols tr:nth-of-type(odd) {
	background: #E3F2FD;
	color: #000000;
}

@media (max-width: 428px) {
	.theme-blue .five_cols tr:nth-of-type(odd) {
		background: #FFF;
		color: #000000;
	}
}

.theme-blue .five_cols th {
	background: #0D47A1;
	color: #FFFFFF;
}

@media (max-width: 428px) {
	.theme-blue .five_cols td {
		background-color: #FFF;
	}

	.theme-blue .five_cols td:first-child {
		background: #0D47A1;
		color: #FFFFFF;
	}
}

.color_status_pending {
	color: #B1B1B1;
}

.color_status_pending_msg {
	color: #606060;
}

.color_status_sync {
	color: #27AE60;
}

.color_status_error {
	color: #BA4E4E;
}

.wrapper_palette {
	width: 90%;
	min-width: 600px;
	height: 100%;
	margin: 0 auto;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.wrapper_palette .intro_text {
	width: 100%;
	height: auto;
	padding-bottom: 36px;
	font-weight: 300;
	font-size: 0.875rem;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.palette {
	float: left;
	width: 10%;
	min-width: 320px;
	height: auto;
	padding: 0 8px 36px 0;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.palette .palette__title {
	float: left;
	width: 100%;
	height: auto;
	padding: 8px;
	font-weight: 500;
	font-size: 0.875rem;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.palette .palette__color {
	float: left;
	width: 100%;
	height: auto;
	padding: 8px;
	font-size: 1rem;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.palette .palette__color .palette__color_class {
	float: left;
	width: 50%;
	height: auto;
	padding: 8px;
	font-size: 1rem;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.palette .palette__color .palette__color_hex {
	float: left;
	width: 50%;
	height: auto;
	padding: 8px;
	text-align: right;
	font-size: 1rem;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

/*# sourceMappingURL=style.css.map */