/* Animation */

@-webkit-keyframes bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0.0) }
  40% { -webkit-transform: scale(1.0) }
}
@keyframes bouncedelay {
	0%, 80%, 100% { transform: scale(0.0) }
	40% { transform: scale(1.0) }
}

/* Base css */

html {
	height: 100%;
	font-family: 'Roboto', Tahoma, Sans-Serif;
	font-size: 14px;
	line-height: 20px;
	font-weight: 400;
	color: #000;
	-webkit-text-size-adjust: none;
}
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	height: 100%;
	overflow-x: hidden;
	margin: 0;
	padding: 0;
	background-color: #fff;
	-webkit-font-smoothing: subpixel-antialiased !important;
}
a,
.actionlink,
.tag,
.link {
	color: #1E88E5;
	background: none;
	cursor: pointer;
	text-decoration: none;
}
a:hover,
.link:hover {
	text-decoration: underline;
}
.actionlink {
	border-bottom: 1px dotted;
}
.actionlink:hover {
	text-decoration: none;
}
.tel {
	white-space: nowrap;
}
.tel:hover {
	text-decoration: none;
}
img {
	border:0;
	padding: 0;
	margin: 0;
}
ul {
	list-style: circle outside;
	margin: 10px 0;
	padding: 0 0 0 20px;
}
ol {
	list-style-position: outside;
	margin: 10px 0;
	padding: 0 0 0 20px;
}
li {
	margin: 10px 0;
	letter-spacing: normal;
}
.abclist {
	position: relative;
	list-style: none outside;
	padding: 0 0 0 40px;
}
.abclist__head {
	position: absolute;
	display: block;
	top: -5px;
	left: 0;
	width: 20px;
}
p {
	margin: 10px 0;
	letter-spacing: normal;
}
iframe {
	display: block;
	margin: 0;
	padding: 0;
}
.circlebox {
	border-radius: 50%;
}
.badge {
	display: block;
	min-width: 20px;
	height: 20px;
	border-radius: 10px;
	padding: 0 4px;
	font-size: 12px;
	line-height: 20px;
	color: #fff;
	text-align: center;
	background-image: -webkit-linear-gradient(270deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.15) 100%);
    background-image: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,.15));
}
.badge--text {
	border-radius: 5px;
	padding: 0 6px;
}
.userpic {
	display: block;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	font-size: 24px;
	line-height: 40px;
	font-weight: 300;
	text-align: center;
	background-color: #cdcdcd;
}
.userpic--60 {
	width: 60px;
	height: 60px;
	font-size: 36px;
	line-height: 60px;
}

/* Grid system */

.grid {
	display: block;
	position: relative;
	list-style: none outside;
	font-size: 0;
	line-height: 0;
	letter-spacing : -.36em;
}
.column {
	display: block;
	position: relative;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: normal;
}
.column--inline {
	display: inline-block;
}
.column--x {
	width: 8.33%;
}
.column--x2 {
	width: 16.66%;
}
.column--x3 {
	width: 25%;
}
.column--x4 {
	width: 33.33%;
}
.column--x5 {
	width: 41.66%;
}
.column--x6 {
	width: 50%;
}
.column--x7 {
	width: 58.33%;
}
.column--x8 {
	width: 66.66%;
}
.column--x9 {
	width: 75%;
}
.column--x10 {
	width: 83.33%;
}
.column--x11 {
	width: 91.66%;
}
.column--x12 {
	width: 100%;
}
.mrgn--left-column-x {
	margin-left: 8.33%;
}
.mrgn--left-column-x2 {
	margin-left: 16.66%;
}
.mrgn--left-column-x3 {
	margin-left: 25%;
}
.mrgn--left-column-x4 {
	margin-left: 33.33%;
}
.mrgn--left-column-x5 {
	margin-left: 41.66%;
}
.mrgn--left-column-x6 {
	margin-left: 50%;
}
.mrgn--left-column-x7 {
	margin-left: 58.33%;
}
.mrgn--left-column-x8 {
	margin-left: 66.66%;
}
.mrgn--left-column-x9 {
	margin-left: 75%;
}
.mrgn--left-column-x10 {
	margin-left: 83.33%;
}
.mrgn--left-column-x11 {
	margin-left: 91.66%;
}
.mrgn--right-column-x {
	margin-right: 8.33%;
}
.mrgn--right-column-x2 {
	margin-right: 16.66%;
}
.mrgn--right-column-x3 {
	margin-right: 25%;
}
.mrgn--right-column-x4 {
	margin-right: 33.33%;
}
.mrgn--right-column-x5 {
	margin-right: 41.66%;
}
.mrgn--right-column-x6 {
	margin-right: 50%;
}
.mrgn--right-column-x7 {
	margin-right: 58.33%;
}
.mrgn--right-column-x8 {
	margin-right: 66.66%;
}
.mrgn--right-column-x9 {
	margin-right: 75%;
}
.mrgn--right-column-x10 {
	margin-right: 83.33%;
}
.mrgn--right-column-x11 {
	margin-right: 91.66%;
}

/* Form, input, button */

.form {
	position: relative;
}
.form__section {
	position: relative;
}
.form__row {
	position: relative;
}
.form__resultbox {
	position: absolute;
	top: 0;
	width: 100%;
	visibility: hidden;
	-webkit-transform: translateX(100%);
	-ms-transform: translateX(100%);
	-o-transform: translateX(100%);
	transform: translateX(100%);
}
.form--result .form__section {
	display: none;
}
.form--result .form__resultbox {
	position: relative;
	visibility: visible;
	width: auto;
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
}
form {
	position: relative;
	display: block;
	margin: 0;
	padding: 0;
}
label {
	position: relative;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}
.input {
	display: block;
	width: 100%;
	margin: 0;
	background-color: #F5F5F5;
	border: 1px solid;
	border-color: #cdcdcd;
	border-radius: 5px;
	font-family: 'Roboto', Tahoma, Sans-Serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 30px;
	letter-spacing: normal;
	color: #000;
	padding: 4px 9px;
	-webkit-transition: border-color .15s linear;
	transition: border-color .15s linear;
	-webkit-tap-highlight-color: transparent;
}
input,textarea,button {
	-webkit-appearance: none;
	-webkit-tap-highlight-color: transparent;
}
.input {
    height: 40px;
	text-overflow: ellipsis;
}
select {
	padding-right: 4px;
	-webkit-tap-highlight-color: transparent;
}
option,
optgroup {
	background-color: #fff;
}
optgroup {
	font-family: 'Roboto', Tahoma, Sans-Serif;
	font-weight: 400;
	font-style: normal;
	color: #9E9E9E;
}
select option {
	color: #000;
}
textarea {
    padding-right: 0;
	resize: vertical;
}
.input--fs-12,
.input--fs-14,
.input--fs-16 {
	padding-top: 9px;
	padding-bottom: 9px;
}
input::-ms-clear {
	display: none;
}
input:-moz-ui-invalid:not(output) {
	box-shadow: none;
}
.input::-webkit-clear-button {
	display: none;
}
.input--number::-webkit-inner-spin-button,
.input--number::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.input--number {
	-moz-appearance: textfield;
}
.input::-webkit-inner-spin-button,
.input::-webkit-calendar-picker-indicator {
	display: none;
	-webkit-appearance: none;
}
.input:focus,
select:focus,
button:focus {
	outline: 0 none;
	border-color: #00BFA5;
}
.input__checkbox {
	display: none;
}
.input__checkbox--fake {
	display: block;
	position: relative;
	width: 30px;
	height: 20px;
	background-color: #f5f5f5;
	border: 1px solid #cdcdcd;
	border-radius: 10px;
	-webkit-transition: background-color .15s linear;
	transition: background-color .15s linear;
}
.input__checkbox--fake:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 18px;
	height: 18px;
	margin-top: -9px;
	background-color: #fff;
	border-radius: 50%;
	box-shadow:
		0 0 0 1px rgba(0,0,0,.1),
		0 3px 0 0 rgba(0, 0, 0, 0.05),
		0 5px 5px 0 rgba(0, 0, 0, 0.1);
	-webkit-transition: -webkit-transform .2s ease;
	transition: transform .2s ease;
}
.input__checkbox:checked + .input__checkbox--fake {
	border-color: #00BFA5;
	background-color: #00BFA5;
}
.input__checkbox:checked + .input__checkbox--fake:after {
	-webkit-transform: translateX(10px);
	-ms-transform: translateX(10px);
	-o-transform: translateX(10px);
	transform: translateX(10px);
}
.input--error,
.input--error:focus {
	border: 1px solid #F44336;
}
.input--error.input__checkbox--fake {
	background-color: #F44336;
}
.input__hint {
	display: none;
	position: absolute;
	z-index: 2;
	right: 10px;
	bottom: -15px;
	padding: 0 5px;
	border-radius: 3px;
	font-size: 13px;
	line-height: 20px;
	letter-spacing: normal;
	color: #ffffff;
	background-color: #F44336;
	cursor: default;
}
.input__hint:before {
	content: "";
	position: absolute;
	display: block;
	top: -25px;
	right: 0;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: #F44336;
}
.input__hint:after {
	content: "";
	position: absolute;
	display: block;
	top: -17px;
	right: 4px;
	width: 12px;
	height: 4px;
	border-radius: 1px;
	background-color: #FFF;
}
.input--error + .input__hint {
	display: block;
}
select + .input__hint:before,
select + .input__hint:after {
	display: none;
}
.button {
	position: relative;
	display: block;
	height: 60px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	color: #fff;
	cursor: pointer;
	background-image: -webkit-linear-gradient(270deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.15) 100%);
    background-image: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,.15));
	-webkit-transition: background-color .15s linear;
	transition: background-color .15s linear;
}
.button--small {
	height: 40px;
}
button {
	width: 100%;
	border: 0 none;
	outline: 0 none;
}
.button--ghost {
	border: 2px solid;
	background-image: none;
	-webkit-transition: background-color .15s linear;
	transition: background-color .15s linear;
}
.button--icon-only {
	width: 60px;
	background-image: none;
}
.button--sqare,
.button--square {
	border-radius: 0;
}
.button--icon-left:before,
.button--icon-right:after {
	content: "";
	position: absolute;
	width: 2px;
	height: 2px;
	top: 50%;
	margin-top: -1px;
	background-color: rgba(255,255,255,.5);
	border-radius: 50%;
	box-shadow: 0 -6px 0 0 rgba(255,255,255,.5), 0 6px 0 0 rgba(255,255,255,.5);
}
.button--icon-left:before {
	left: 59px;
}
.button--icon-right:after {
	right: 59px;
}
.button__label {
	position: absolute;
	top: 50%;
	left: 10px;
	right: 10px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}
.button__label--tag {
	display: block;
	padding: 8px;
}
.button__label--icon-left {
	left: 75px;
	right: 15px;
}
.button__label--icon-right {
	right: 75px;
	left: 15px;
}
.button__icon--only {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
.button--icon-only.dtd--left:hover:before,
.button--icon-only.dtd--right:hover:after,
.button--icon-only:hover + .dtd--left:before {
	opacity: 0;
}
.button__icon--left {
	display: block;
	position: absolute;
	top: 50%;
	left: 30px;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
.button__icon--right {
	display: block;
	position: absolute;
	top: 50%;
	right: 30px;
	-webkit-transform: translate(50%,-50%);
	-ms-transform: translate(50%,-50%);
	-o-transform: translate(50%,-50%);
	transform: translate(50%,-50%);
}
.button__badge {
	position: absolute;
	z-index: 1;
	top: 5px;
	right: 5px;
}
.button--blue-600 {
	background-color: #1E88E5;
}
.button--blue-600:hover,
.button--blue-600-selected {
	background-color: #1976D2;
}
.button--red {
	background-color: #F44336;
}
.button--red:hover,
.button--red-selected {
	background-color: #D32F2F;
}
.button--orange{
	background-color: #FF9800;
}
.button--orange:hover,
.button--orange-selected {
	background-color: #F57C00;
}
.button--grey {
	background-color: #9E9E9E;
}
.button--grey:hover,
.button--grey-selected {
	background-color: #757575;
}
.button--teal-a700 {
	background-color: #00BFA5;
}
.button--teal-a700:hover,
.button--teal-a700-selected {
	background-color: #26A69A;
}
.button--darkblue-400 {
	background-color: #6a90b7;
}
.button--darkblue-400:hover,
.button--darkblue-400-selected {
	background-color: #507aa6;
}
.button--indigo-400 {
	background-color: #5c6bc0;
}
.button--indigo-400:hover,
.button--indigo-400-selected {
	background-color: #3F51B5;
}
.button--ghost-blue-600 {
	color: #1E88E5;
	border-color: #1E88E5;
}
.button--ghost-blue-600:hover {
	background-color: rgba(30,136,229,.15);
}
.button--ghost-blue-600.button--icon-left:before,
.button--ghost-blue-600.button--icon-right:after {
	background-color: rgba(30,136,229,.5);
	box-shadow: 0 -6px 0 0 rgba(30,136,229,.5), 0 6px 0 0 rgba(30,136,229,.5);
}
.button--ghost-white {
	color: #fff;
	border-color: #fff;
}
.button--ghost-white:hover {
	background-color: rgba(255,255,255,.2);
}
.button--icon-only-blue-600:hover {
	background-color: rgba(30,136,229,.15);
}
.button--icon-only-white:hover {
	background-color: rgba(255,255,255,.2);
}
.button--disabled,
.button--disabled:hover {
    cursor: default;
	background-image: none;
    background-color: rgba(0,0,0,.4);
	color: rgba(255,255,255,.6);
	pointer-events: none;
}
.button--ghost.button--disabled,
.button--ghost.button--disabled:hover {
	background-color: transparent;
	border-color: rgba(0,0,0,.4);
	color: rgba(0,0,0,.4);
}
.sliderbar {
	position: relative;
	display: block;
	height: 20px;
}
.sliderbar__bar {
	position: absolute;
	display: block;
	top: 9px;
	left: 0;
	right: 0;
	bottom: 9px;
	border-radius: 1px;
}
.sliderbar__value {
	position: absolute;
	display: block;
	top: 9px;
	bottom: 9px;
	border-radius: 1px;
}
.sliderbar__controlbox {
	position: absolute;
	display: block;
	top: 0;
	left: 10px;
	right: 10px;
	bottom: 0;
}
.sliderbar__control {
	position: absolute;
	display: block;
	top: 50%;
	width: 20px;
	height: 20px;
	margin-top: -10px;
	margin-left: -10px;
	border-radius: 50%;
	cursor: pointer;
	box-shadow:
		0 0 0 1px rgba(0,0,0,.1),
		0 3px 0 0 rgba(0, 0, 0, 0.05),
		0 5px 5px 0 rgba(0, 0, 0, 0.1);
}
.reactslider {
	position: relative;
	display: block;
	height: 20px;
}
.reactslider__handle {
	position: absolute;
	display: block;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	cursor: pointer;
	box-shadow:
		0 0 0 1px rgba(0,0,0,.1),
		0 3px 0 0 rgba(0, 0, 0, 0.05),
		0 5px 5px 0 rgba(0, 0, 0, 0.1);
}
.reactslider__bar {
	position: absolute;
	display: block;
	height: 2px;
	top: 50%;
	margin-top: -1px;
	border-radius: 1px;
	background-color: #cdcdcd;
}


/* Border */

.brdr--top,
.brdr--bottom {
	position: relative;
}
.brdr--top:before,
.brdr--bottom:after {
	content: "";
	position: absolute;
	z-index: 2;
	left: 0;
	right: 0;
	height: 1px;
	background-color: #cdcdcd;
}
.brdr--top:before {
	top: 0;
}
.brdr--bottom:after {
	bottom: -1px;
}
.brdr--top-darkblue-400:before,
.brdr--bottom-darkblue-400:after {
	background-color: #6a90b7;
}
.brdr--top-darkblue-800:before,
.brdr--bottom-darkblue-800:after {
	background-color: #324c67;
}
.brdr--top-darkblue-900:before,
.brdr--bottom-darkblue-900:after {
	background-color: #26394d;
}
.brdr--top-indigo-400:before,
.brdr--bottom-indigo-400:after {
	background-color: #5C6BC0;
}
.brdr--top-teal-a700:before,
.brdr--bottom-teal-a700:after {
	background-color: #00BFA5;
}
.brdr--top-orange:before,
.brdr--bottom-orange:after {
	background-color: #FF9800;
}
.brdr--top-grey:before,
.brdr--bottom-grey:after {
	background-color: #9e9e9e;
}
.brdr--top-red:before,
.brdr--bottom-red:after {
	background-color: #F44336;
}
.dtd--left:before,
.dtd--right:after {
	content: "";
	position: absolute;
	width: 2px;
	height: 2px;
	top: 50%;
	margin-top: -1px;
	background-color: #cdcdcd;
	border-radius: 50%;
	box-shadow: 0 -6px 0 0 #cdcdcd, 0 6px 0 0 #cdcdcd;
	opacity: 1;
	-webkit-transition: opacity .15s linear;
	transition: opacity .15s linear;
}
.dtd--left:before {
	left: -1px;
}
.dtd--right:after {
	right: -1px;
}

/* Table, menu */

.table {
	position: relative;
	display: block;
}
.table__body {
	position: relative;
	display: block;
}
.table__tr {
	position: relative;
	display: block;
	/*min-height: 60px;*/
	font-size: 0;
	line-height: 0;
	letter-spacing : -.36em;
}
.table__tr:before,
.table__tr:after {
	content: "";
	position: absolute;
	z-index: 1;
	left: 20px;
	right: 0;
	height: 1px;
	background-color: #cdcdcd;
}
.table__tr:before {
	top: 0;
}
.table__tr:after {
	bottom: -1px;
}
.menu__item {
	background-color: transparent;
	-webkit-transition: background-color .15s linear;
	transition: background-color .15s linear;
}
.menu__item:hover {
	background-color: rgba(30,136,229,.15);
}
.menu__item:hover:before,
.menu__item:hover:after,
.menu__item--selected:before,
.menu__item--selected:after {
	left: 0;
}
.table__tr--actions {
	-webkit-transition:
		background-color .15s linear,
		-webkit-transform .35s ease;
	transition:
		background-color .15s linear,
		transform .35s ease;
}
.table__tr--showactions {
	-webkit-transform: translateX(-120px);
	-ms-transform: translateX(-120px);
	-o-transform: translateX(-120px);
	transform: translateX(-120px);
}
.menu__item.table__tr--showactions {
	background-color: rgba(30,136,229,.15);
}
.table__tr--actions-double.table__tr--showactions {
	-webkit-transform: translateX(-240px);
	-ms-transform: translateX(-240px);
	-o-transform: translateX(-240px);
	transform: translateX(-240px);
}
.table__tr--actions-triple.table__tr--showactions {
	-webkit-transform: translateX(-360px);
	-ms-transform: translateX(-360px);
	-o-transform: translateX(-360px);
	transform: translateX(-360px);
}
.table__body.fill--darkblue-900 .table__tr:before,
.table__body.fill--darkblue-900 .table__tr:after {
	background-color: #324c67;
}
.table__body.fill--darkblue-800 .table__tr:before,
.table__body.fill--darkblue-800 .table__tr:after {
	background-color: #26394d;
}
.menu__item--selected,
.menu__item--selected:hover {
	background-color: #e0e0e0;
}
.table__body.fill--darkblue-900 .menu__item--selected,
.table__body.fill--darkblue-900 .menu__item--selected:hover {
	background-color: transparent;
}
.table__td {
	position: relative;
	display: inline-block;
	letter-spacing: normal;
	font-size: 14px;
	line-height: 20px;
	padding: 20px 10px 20px 20px;
}
.menu__item_delete {
	position: absolute;
	z-index: 1;
	display: block;
	width: 20px;
	height: 20px;
	top: 10px;
	right: 10px;
	cursor: pointer;
	border-radius: 3px;
	background-color: rgba(255,255,255,.6);
	-webkit-transition: background-color .15s linear;
	transition: background-color .15s linear;
}
.menu__item_delete--center {
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}
.menu__item_delete:hover {
	background-color: rgba(255,255,255,8);
}
.menu__item_hoveraction,
.table__tr_hoveraction {
	position: absolute;
	z-index: 1;
	display: block;
	right: 10px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	visibility: hidden;
}
.menu__item:hover > .menu__item_hoveraction,
.table__tr:hover > .table__tr_hoveraction,
.table__tr--showactions > .table__tr_hoveraction {
	visibility: visible;
}
.table__tr_actions {
	display: block;
	position: absolute;
	top: 0;
	left: 100%;
	bottom: 0;
	width: 120px;
}
.table__tr_action {
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	cursor: pointer;
	-webkit-transition: -webkit-transform .35s ease;
	transition: transform .35s ease;
}
.table__tr--showactions .table__tr_action--second {
	-webkit-transform: translateX(100%);
	-ms-transform: translateX(100%);
	-o-transform: translateX(100%);
	transform: translateX(100%);
}
.table__tr--showactions .table__tr_action--third {
	-webkit-transform: translateX(200%);
	-ms-transform: translateX(200%);
	-o-transform: translateX(200%);
	transform: translateX(200%);
}
.table__tr_action_label {
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}
.menu__item_label {
	color: #1E88E5;
	background: none;
	cursor: pointer;
	text-decoration: none;
}
.menu__item_label:hover {
	text-decoration: none;
}
.table__body.fill--darkblue-900 .menu__item_label {
	color: #6a90b7;
}
.menu__item--selected > .menu__item_label {
	color: #616161;
	cursor: default;
}
.table__body.fill--darkblue-900 .menu__item--selected > .menu__item_label {
	color: #00BFA5;
}
.menu__item_label--badge-middle {
	padding-right: 40px;
}
.menu__item_badge {
	float: right;
	margin-left: 10px;
}
.menu__item_badge--middle {
	position: absolute;
	float: none;
	top: 50%;
	right: 10px;
	margin-top: -10px;
	margin-left: 0;
}
.table__td--marked:before {
	content: "";
	position: absolute;
	display: block;
}
.table__td--marked-plus:after,
.table__td--marked-close:after {
	content: "";
	position: absolute;
	display: block;
}
.table__td--marked-circle {
	padding-left: 40px;
}
.table__td--marked-circle:before {
	left: 20px;
	width: 10px;
	height: 10px;
	top: 50%;
	margin-top: -5px;
	border-radius: 50%;
	border: 2px solid #000;
	background-color: transparent;
	-webkit-transition: background-color .15s ease;
	transition: background-color .15s ease;
}
.table__body.fill--darkblue-900 .table__td--marked-circle:before {
	border-color: #fff;
}
.menu__item > .table__td--marked-circle:before {
	border-color: #1E88E5;
}
.menu__item > .table__td--marked-circle:hover:before {
	background-color: #1E88E5;
}
.menu__item--selected > .table__td--marked-circle:before,
.menu__item--selected > .table__td--marked-circle:hover:before{
	border-color: #616161;
	background-color: #616161;
}
.table__body.fill--darkblue-900 .menu__item > .table__td--marked-circle:before {
	border-color: #6a90b7;
}
.table__body.fill--darkblue-900 .menu__item > .table__td--marked-circle:hover:before {
	background-color: #6a90b7;
}
.table__body.fill--darkblue-900 .menu__item--selected > .table__td--marked-circle:before,
.table__body.fill--darkblue-900 .menu__item--selected > .table__td--marked-circle:hover:before {
	border-color: #00BFA5;
	background-color: #00BFA5;
}
.table__td--marked-plus,
.table__td--marked-close {
	padding-left: 40px;
}
.table__td--marked-plus:before,
.table__td--marked-close:before {
	left: 20px;
	top: 50%;
	width: 10px;
	height: 2px;
	margin-top: -1px;
	background-color: #000;
	border-radius: 1px;
	-webkit-transition: -webkit-transform .35s ease;
	transition: transform .35s ease;
}
.table__td--marked-plus:after,
.table__td--marked-close:after {
	left: 24px;
	top: 50%;
	width: 2px;
	height: 10px;
	margin-top: -5px;
	background-color: #000;
	border-radius: 1px;
	-webkit-transition: -webkit-transform .35s ease;
	transition: transform .35s ease;
}
.table__td--marked-close:before,
.table__td--marked-close:after {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}
.menu__item_label.table__td--marked-plus:hover:before,
.menu__item_label.table__td--marked-plus:hover:after {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}
.menu__item_label.table__td--marked-close:hover:before,
.menu__item_label.table__td--marked-close:hover:after {
	-webkit-transform: rotate(225deg);
	transform: rotate(225deg);
}
.table__body.fill--darkblue-900 .table__td--marked-plus:before,
.table__body.fill--darkblue-900 .table__td--marked-plus:after,
.table__body.fill--darkblue-900 .table__td--marked-close:before,
.table__body.fill--darkblue-900 .table__td--marked-close:after {
	background-color: #fff;
}
.menu__item_label.table__td--marked-plus:before,
.menu__item_label.table__td--marked-plus:after,
.menu__item_label.table__td--marked-close:before,
.menu__item_label.table__td--marked-close:after {
	background-color: #1E88E5;
}
.menu__item--selected > .table__td--marked-plus:before,
.menu__item--selected > .table__td--marked-plus:after,
.menu__item--selected > .table__td--marked-close:before,
.menu__item--selected > .table__td--marked-close:after {
	background-color: #616161;
	-webkit-transition: none;
	transition: none;
}
.table__body.fill--darkblue-900 .menu__item_label.table__td--marked-plus:before,
.table__body.fill--darkblue-900 .menu__item_label.table__td--marked-plus:after,
.table__body.fill--darkblue-900 .menu__item_label.table__td--marked-close:before,
.table__body.fill--darkblue-900 .menu__item_label.table__td--marked-close:after {
	background-color: #6a90b7;
}
.table__body.fill--darkblue-900 .menu__item--selected > .table__td--marked-plus:before,
.table__body.fill--darkblue-900 .menu__item--selected > .table__td--marked-plus:after,
.table__body.fill--darkblue-900 .menu__item--selected > .table__td--marked-close:before,
.table__body.fill--darkblue-900 .menu__item--selected > .table__td--marked-close:after {
	background-color: #00BFA5;
}
.table__td--control-left {
	padding-left: 75px;
}
.table__td--control-right {
	padding-right: 75px;
}
.table__td_control {
	position: absolute;
	top: 50%;
}
.table__td_control--left {
	left: 30px;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.table__td_control--right {
	right: 30px;
	-webkit-transform: translate(50%, -50%);
	-ms-transform: translate(50%, -50%);
	-o-transform: translate(50%, -50%);
	transform: translate(50%, -50%);
}
.table__td.text--fs-18,
.table__td.text--fs-24 {
	padding-top: 15px;
	padding-bottom: 15px;
}
.table__td.text--fs-30 {
	padding-top: 10px;
	padding-bottom: 10px;
}

/* Dialog */

.dialog {
	position: relative;
}
.dialog__msg {
	position: relative;
	margin-top: 20px;
	margin-bottom: 20px;
	padding-left: 20px;
	padding-right: 20px;
}
.dialog__msg--userpic-left {
	text-align: left;
	padding-left: 80px;
}
.dialog__msg--userpic-right {
	text-align: right;
	padding-right: 80px;
}
.dialog__userpic {
	position: absolute;
	display: block;
	width: 40px;
	height: 40px;
	bottom: 0;
}
.dialog__userpic--left {
	left: 20px;
}
.dialog__userpic--right {
	right: 20px;
}
.dialog__msg_date {
	display: inline-block;
	vertical-align: top;
	padding: 0 5px;
	text-align: center;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: inset 0 0 0 1px #cdcdcd;
}
.msg_bubble {
	position: relative;
	padding: 14px 19px;
	border-radius: 15px;
	border: 1px solid #cdcdcd;
	background-color: #fff;
	overflow: hidden;
}
.dialog__msg_bubble {
	display: inline-block;
	vertical-align: top;
	max-width: 83.33%;
}
.fill--red-50.msg_bubble {
	border-color: #ef9a9a;
}
.fill--teal-50.msg_bubble {
	border-color: #00BFA5;
}
.msg_bubble--angle-left {
	border-radius: 15px 15px 15px 5px;
}
.msg_bubble--angle-right {
	border-radius: 15px 15px 5px 15px;
}
.msg_bubble__attachments {
	position: relative;
	z-index: 3;
	margin: 15px -20px -15px -20px;
	border: 1px solid transparent;
	border-top-color: #cdcdcd;
	border-radius: 0 0 15px 15px;
	overflow: hidden;
}
.msg_bubble__attachments--angle-left {
	border-radius: 0 0 15px 5px;
}
.msg_bubble__attachments--angle-right {
	border-radius: 0 0 5px 15px;
}
.msg_bubble__file {
	position: relative;
	display: block;
	padding: 19px 19px 19px 49px;
	cursor: pointer;
	color: #1e88e5;
	background-color: transparent;
	-webkit-transition: background-color .15s linear;
	transition: background-color .15s linear;
}
.msg_bubble__file--load {
	padding: 24px;
}
.msg_bubble__file_icon {
	position: absolute;
	top: 9px;
	left: 9px;
}
.msg_bubble__cta_button {
	padding: 14px 10px;
	cursor: pointer;
	color: #1e88e5;
	background-color: transparent;
	-webkit-transition: background-color .15s linear;
	transition: background-color .15s linear;
}
.msg_bubble__file:hover,
.msg_bubble__cta_button:hover {
	background-color: rgba(30,136,229,.15);
	text-decoration: none;
}
.msg_bubble__cta_button + .msg_bubble__cta_button {
	border-left: 1px solid #cdcdcd;
}
.msg_bubble__file + .msg_bubble__file,
.msg_bubble__file + .msg_bubble__cta {
	border-top: 1px solid #cdcdcd;
}

/* Roundedbox */

.roundedbox {
	border-radius: 5px;
}
.roundedbox__head {
	padding: 19px 9px;
	border: 1px solid #cdcdcd;
	border-radius: 5px 5px 0 0;
}
.roundedbox__body {
	border: 1px solid #cdcdcd;
	border-top: 0 none;
	border-bottom: 0 none;
}
.roundedbox__footer {
	padding: 14px 9px;
	border: 1px solid #cdcdcd;
	border-radius: 0 0 5px 5px;
}

/* Scrollbox */

.scrollbox {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	bottom: 0;
	min-width: 100%;
	overflow-x: hidden;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
}
.scrollbox__content {
	position: relative;
	z-index: 2;
}
.scrollbar {
	display: block;
	position: absolute;
	z-index: 3;
	top: 2px;
	right: 2px;
	bottom: 2px;
	width: 4px;
	background-color: rgba(0,0,0,.15);
	opacity: 0;
	-webkit-transition: opacity .15s linear;
	transition: opacity .15s linear;
}
.scrollbox:hover + .scrollbar {
	opacity: .7;
}
.scrollbar:hover,
.scrollbar:active {
	opacity: 1;
}
.scrollbar__thumb {
	display: block;
	position: absolute;
	z-index: 4;
	left: 0;
	right: 0;
	background-color: rgba(0,0,0,.3);
	border-radius: 2px;
}

/* Modal window */

.modal {
	position: fixed;
	z-index: 999;
	overflow-y: scroll;
	overflow-x: hidden;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	font-size: 0;
	line-height: 0;
	letter-spacing: -.36em;
	-webkit-overflow-scrolling: touch;
	background-color: rgba(0,0,0,.6);
	opacity: 0;
	-webkit-transition: opacity .35s ease;
	transition: opacity .35s ease;
}
.modal:before {
	content: "";
	display: inline-block;
	vertical-align: inherit;
	height: 100%;
	width: 0;
}
.modal--show {
	opacity: 1;
	-webkit-transition-duration: .2s;
	transition-duration: .2s;
}
.modal__closelayer {
	position: fixed;
	z-index: 1;
	display: block;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
.modal__window {
	position: relative;
	display: inline-block;
	z-index: 2;
	margin: 0 auto;
	cursor: default;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: normal;
	overflow: hidden;
	-webkit-transition: -webkit-transform .35s ease;
	transition: transform .35s ease;
}
.modal--show > .modal__window {
	-webkit-transform: translate(0, 0);
	transform: translate(0, 0);
}
.modal__window_step {
	position: absolute;
	top: 0;
	width: 100%;
	visibility: hidden;
	-webkit-transform: translateX(100%);
	-ms-transform: translateX(100%);
	-o-transform: translateX(100%);
	transform: translateX(100%);
	-webkit-transition:
		visibility .35s ease,
		-webkit-transform .35s ease;
	transition:
		visibility .35s ease,
		transform .35s ease;
}
.modal__window_step--active {
	position: relative;
	visibility: visible;
	width: auto;
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
}
.modal__window_step--inactive {
	-webkit-transform: translateX(-100%);
	-ms-transform: translateX(-100%);
	-o-transform: translateX(-100%);
	transform: translateX(-100%);
}
.modal__window_head {
	position: relative;
	z-index: 2;
	min-height: 60px;
	padding: 15px 20px;
}
.text--fs-16.modal__window_head,
.text--fs-14.modal__window_head {
	padding-top: 20px;
	padding-bottom: 20px;
}
.text--fs-30.modal__window_head {
	padding-top: 10px;
	padding-bottom: 10px;
}
.modal__window_head--control-left {
	padding-left: 75px;
}
.modal__window_head--control-right {
	padding-right: 75px;
}
.modal__head_control {
	position: absolute;
	top: 50%;
	margin-top: -30px;
}
.modal__head_control--left {
	left: 0;
}
.modal__head_control--right {
	right: 0;
}

/* Carousel */

.carousel {
	display: block;
	position: relative;
	overflow: hidden;
}
.carousel__slidebox {
	display: block;
	position: relative;
	white-space: nowrap;
}
.carousel__markerbox {
	display: block;
	position: relative;
	height: 10px;
	text-align: center;
	font-size: 0;
	line-height: 0;
	letter-spacing: -.36em;
}
.carousel__marker {
	display: inline-block;
	vertical-align: top;
	width: 4px;
	height: 4px;
	margin: 3px 5px;
	border-radius: 50%;
	background-color: #9e9e9e;
}
.carousel__marker--active {
	width: 6px;
	height: 6px;
	margin: 2px 4px;
	background-color:transparent;
	border: 1px solid #1E88E5;
}

/* Spinner */

.spinner {
	display: block;
	height: 20px;
	text-align: center;
	font-size: 0;
	line-height: 0;
	letter-spacing: -.36em;
}
.spinner--small {
	height: 10px;
}
.spinner__bounce {
	display: inline-block;
	vertical-align: top;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	margin: 1px 2px;
	-webkit-animation: bouncedelay 1.4s infinite ease-in-out;
	animation: bouncedelay 1.4s infinite ease-in-out;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
.spinner__bounce--small {
	width: 10px;
	height: 10px;
	margin: 0 1px;
}
.spinner__bounce--1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.spinner__bounce--2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

/* Margin, padding */

.mrgn--reset {
	margin: 0;
}
.pdng--reset {
	padding: 0;
}
.mrgn--top-x {
	margin-top: 10px;
}
.mrgn--top-x2 {
	margin-top: 20px;
}
.mrgn--top-x3 {
	margin-top: 30px;
}
.mrgn--top-x4 {
	margin-top: 40px;
}
.mrgn--top-x5 {
	margin-top: 50px;
}
.mrgn--top-x6 {
	margin-top: 60px;
}
.mrgn--bottom-x {
	margin-bottom: 10px;
}
.mrgn--bottom-x2 {
	margin-bottom: 20px;
}
.mrgn--bottom-x3 {
	margin-bottom: 30px;
}
.mrgn--bottom-x4 {
	margin-bottom: 40px;
}
.mrgn--bottom-x5 {
	margin-bottom: 50px;
}
.mrgn--bottom-x6 {
	margin-bottom: 60px;
}
.mrgn--left-x {
	margin-left: 10px;
}
.mrgn--left-x2 {
	margin-left: 20px;
}
.mrgn--right-x {
	margin-right: 10px;
}
.mrgn--right-x2 {
	margin-right: 20px;
}
.pdng--top-x {
	padding-top: 10px;
}
.pdng--top-x2 {
	padding-top: 20px;
}
.pdng--top-x3 {
	padding-top: 30px;
}
.pdng--top-x4 {
	padding-top: 40px;
}
.pdng--top-x5 {
	padding-top: 50px;
}
.pdng--top-x6 {
	padding-top: 60px;
}
.pdng--bottom-x {
	padding-bottom: 10px;
}
.pdng--bottom-x2 {
	padding-bottom: 20px;
}
.pdng--bottom-x3 {
	padding-bottom: 30px;
}
.pdng--bottom-x4 {
	padding-bottom: 40px;
}
.pdng--bottom-x5 {
	padding-bottom: 50px;
}
.pdng--bottom-x6 {
	padding-bottom: 60px;
}
.pdng--left-x {
	padding-left: 10px;
}
.pdng--left-x2 {
	padding-left: 20px;
}
.pdng--right-x {
	padding-right: 10px;
}
.pdng--right-x2 {
	padding-right: 20px;
}

/* Fill, text-color */

.fill--whiteglass {
	background-image: -webkit-linear-gradient(270deg, rgba(255, 255, 255, .9) 0%, rgba(255, 255, 255, 1) 100%);
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, .9), rgba(255, 255, 255, 1));
}
.fill--whiteglass-rev {
	background-image: -webkit-linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, .9) 100%);
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, 1), rgba(255, 255, 255, .9));
}
.fill--darkblue-900 {
	background-color: #26394d;
}
.fill--darkblue-800 {
	background-color: #324c67;
}
.fill--darkblue-400 {
	background-color: #6a90b7;
}
.fill--darkblue-50 {
	background-color: #eaeff5;
}
.fill--grey {
	background-color: #9e9e9e;
}
.fill--grey-200 {
	background-color: #EEE;
}
.fill--grey-350 {
	background-color: #cdcdcd;
}
.fill--grey-100 {
	background-color: #f5f5f5;
}
.fill--white {
	background-color: #fff;
}
.fill--teal-a700 {
	background-color: #00BFA5;
}
.fill--teal-50 {
	background-color: #e0f2f1;
}
.fill--bluetone {
	background-color: rgba(30, 136, 229, .25);
}
.fill--blue-600 {
	background-color: #1E88E5;
}
.fill--red {
	background-color: #F44336;
}
.fill--red-50 {
	background-color: #ffebee;
}
.fill--red-diag {
	background-image:
        linear-gradient(135deg, transparent 0px, transparent 6px, rgba(244,67,54,.4) 6px, rgba(244,67,54,.4) 7px, transparent 7px, transparent 13px, rgba(244,67,54,.4) 13px, rgba(244,67,54,.4) 15px);
    background-size: 10px 10px;
	background-position: 0 0;
    background-repeat: repeat;
}
.fill--indigo-50 {
	background-color: #E8EAF6;
}
.fill--indigo-400 {
	background-color: #5C6BC0;
}
.fill--orange {
	background-color: #FF9800;
}
.fill--orange-50 {
	background-color: #FFF3E0;
}
.text--red {
	color: #F44336;
}
.text--blue-600 {
	color: #1E88E5;
}
.text--teal {
	color: #009688;
}
.text--teal-a400 {
	color: #1DE9B6;
}
.text--teal-a700 {
	color: #00BFA5;
}
.text--grey {
	color: #9E9E9E;
}
.text--grey-350 {
	color: #cdcdcd;
}
.text--white {
	color: #fff;
}
.text--darkblue-800 {
	color: #324c67;
}
.text--darkblue-400 {
	color: #6a90b7;
}
.text--indigo-400 {
	color: #5C6BC0;
}
.text--orange {
	color: #FF9800;
}

/* Typography */

h1, h2, h3, h4 {
	font-family: 'Roboto', Tahoma, Sans-Serif;
	padding: 0;
	margin: 0;
	letter-spacing: normal;
}
h1 {
	font-size: 36px;
	line-height: 50px;
	font-weight: 300;
}
h2 {
	font-size: 30px;
	line-height: 40px;
	font-weight: 300;
}
h3 {
	font-size: 24px;
	font-weight: 300;
    line-height: 30px;
}
h4 {
	font-size: 18px;
	font-weight: 400;
    line-height: 30px;
}
.text--fs-12 {
	font-size: 12px;
	line-height: 20px;
	font-weight: 400;
	letter-spacing: normal;
}
.text--fs-14 {
	font-size: 14px;
	line-height: 20px;
	font-weight: 400;
	letter-spacing: normal;
}
.text--fs-16 {
	font-size: 16px;
	line-height: 20px;
	font-weight: 400;
	letter-spacing: normal;
}
.text--fs-18 {
	font-size: 18px;
	line-height: 30px;
	font-weight: 400;
	letter-spacing: normal;
}
.text--fs-24 {
	font-size: 24px;
	line-height: 30px;
	font-weight: 300;
	letter-spacing: normal;
}
.text--fs-30 {
	font-size: 30px;
	line-height: 40px;
	font-weight: 300;
	letter-spacing: normal;
}
.text--fs-36 {
	font-size: 36px;
	line-height: 50px;
	font-weight: 300;
	letter-spacing: normal;
}
.text--fs-48 {
	font-size: 48px;
	line-height: 60px;
	font-weight: 300;
	letter-spacing: normal;
}
.text--thin {
	font-weight: 300;
}
.text--nowrap {
	white-space: nowrap;
}
.text--normalwrap {
	white-space: normal;
}
.text--ellipsis {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.text--caps {
	text-transform: uppercase;
}
.text--normalize {
	font-size: 14px;
	line-height: 20px;
	font-weight: 400;
	letter-spacing: normal;
}

/* Align */

.align--left {
	text-align: left;
}
.align--center {
	text-align: center;
}
.align--right {
	text-align: right;
}
.align--justify {
	text-align: justify;
}
.align--top {
	vertical-align: top;
}
.align--middle {
	vertical-align: middle;
}
.align--bottom {
	vertical-align: bottom;
}

/* global hack */

.enabler--userselect {
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
}
.disabler--userselect {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}
.block--block {
	display: block;
}
.block--inline {
	display: inline-block;
}
.block--none {
	display: none;
}

/* Media quaries */
@media screen and (min-width:1583px) {

	/* Grid system */

	.grid--ld {
		display: block;
		position: relative;
		list-style: none outside;
		font-size: 0;
		line-height: 0;
		letter-spacing : -.36em;
	}
	.column--ld {
		display: block;
		position: relative;
		font-size: 14px;
		line-height: 20px;
		letter-spacing: normal;
	}
	.column--inline-ld {
		display: inline-block;
	}
	.column--x-ld {
		width: 8.33%;
	}
	.column--x2-ld {
		width: 16.66%;
	}
	.column--x3-ld {
		width: 25%;
	}
	.column--x4-ld {
		width: 33.33%;
	}
	.column--x5-ld {
		width: 41.66%;
	}
	.column--x6-ld {
		width: 50%;
	}
	.column--x7-ld {
		width: 58.33%;
	}
	.column--x8-ld {
		width: 66.66%;
	}
	.column--x9-ld {
		width: 75%;
	}
	.column--x10-ld {
		width: 83.33%;
	}
	.column--x11-ld {
		width: 91.66%;
	}
	.column--x12-ld {
		width: 100%;
	}
	.mrgn--left-column-x-ld {
		margin-left: 8.33%;
	}
	.mrgn--left-column-x2-ld {
		margin-left: 16.66%;
	}
	.mrgn--left-column-x3-ld {
		margin-left: 25%;
	}
	.mrgn--left-column-x4-ld {
		margin-left: 33.33%;
	}
	.mrgn--left-column-x5-ld {
		margin-left: 41.66%;
	}
	.mrgn--left-column-x6-ld {
		margin-left: 50%;
	}
	.mrgn--left-column-x7-ld {
		margin-left: 58.33%;
	}
	.mrgn--left-column-x8-ld {
		margin-left: 66.66%;
	}
	.mrgn--left-column-x9-ld {
		margin-left: 75%;
	}
	.mrgn--left-column-x10-ld {
		margin-left: 83.33%;
	}
	.mrgn--left-column-x11-ld {
		margin-left: 91.66%;
	}
	.mrgn--right-column-x-ld {
		margin-right: 8.33%;
	}
	.mrgn--right-column-x2-ld {
		margin-right: 16.66%;
	}
	.mrgn--right-column-x3-ld {
		margin-right: 25%;
	}
	.mrgn--right-column-x4-ld {
		margin-right: 33.33%;
	}
	.mrgn--right-column-x5-ld {
		margin-right: 41.66%;
	}
	.mrgn--right-column-x6-ld {
		margin-right: 50%;
	}
	.mrgn--right-column-x7-ld {
		margin-right: 58.33%;
	}
	.mrgn--right-column-x8-ld {
		margin-right: 66.66%;
	}
	.mrgn--right-column-x9-ld {
		margin-right: 75%;
	}
	.mrgn--right-column-x10-ld {
		margin-right: 83.33%;
	}
	.mrgn--right-column-x11-ld {
		margin-right: 91.66%;
	}

	/* Form, input, button */

	.input--fs-12-ld,
	.input--fs-14-ld,
	.input--fs-16-ld {
		padding-top: 9px;
		padding-bottom: 9px;
	}
	.button--sqare-ld,
	.button--square-ld {
		border-radius: 0;
	}

	/* Table, menu */

	.table__td.text--fs-12-ld,
	.table__td.text--fs-14-ld,
	.table__td.text--fs-16-ld {
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.table__td.text--fs-18-ld,
	.table__td.text--fs-24-ld {
		padding-top: 15px;
		padding-bottom: 15px;
	}
	.table__td.text--fs-30-ld {
		padding-top: 10px;
		padding-bottom: 10px;
	}

	/* Dialog */

	.dialog__msg_bubble--ld {
		max-width: 87.5%;
	}

	/* Modal window */

	.text--fs-16-ld.modal__window_head,
	.text--fs-14-ld.modal__window_head {
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.text--fs-30-ld.modal__window_head {
		padding-top: 10px;
		padding-bottom: 10px;
	}

	/* Margin, padding */

	.mrgn--reset-ld {
		margin: 0;
	}
	.pdng--reset-ld {
		padding: 0;
	}
	.mrgn--top-x-ld {
		margin-top: 10px;
	}
	.mrgn--top-x2-ld {
		margin-top: 20px;
	}
	.mrgn--top-x3-ld {
		margin-top: 30px;
	}
	.mrgn--top-x4-ld {
		margin-top: 40px;
	}
	.mrgn--top-x5-ld {
		margin-top: 50px;
	}
	.mrgn--top-x6-ld {
		margin-top: 60px;
	}
	.mrgn--bottom-x-ld {
		margin-bottom: 10px;
	}
	.mrgn--bottom-x2-ld {
		margin-bottom: 20px;
	}
	.mrgn--bottom-x3-ld {
		margin-bottom: 30px;
	}
	.mrgn--bottom-x4-ld {
		margin-bottom: 40px;
	}
	.mrgn--bottom-x5-ld {
		margin-bottom: 50px;
	}
	.mrgn--bottom-x6-ld {
		margin-bottom: 60px;
	}
	.mrgn--left-x-ld {
		margin-left: 10px;
	}
	.mrgn--left-x2-ld {
		margin-left: 20px;
	}
	.mrgn--right-x-ld {
		margin-right: 10px;
	}
	.mrgn--right-x2-ld {
		margin-right: 20px;
	}
	.pdng--top-x-ld {
		padding-top: 10px;
	}
	.pdng--top-x2-ld {
		padding-top: 20px;
	}
	.pdng--top-x3-ld {
		padding-top: 30px;
	}
	.pdng--top-x4-ld {
		padding-top: 40px;
	}
	.pdng--top-x5-ld {
		padding-top: 50px;
	}
	.pdng--top-x6-ld {
		padding-top: 60px;
	}
	.pdng--bottom-x-ld {
		padding-bottom: 10px;
	}
	.pdng--bottom-x2-ld {
		padding-bottom: 20px;
	}
	.pdng--bottom-x3-ld {
		padding-bottom: 30px;
	}
	.pdng--bottom-x4-ld {
		padding-bottom: 40px;
	}
	.pdng--bottom-x5-ld {
		padding-bottom: 50px;
	}
	.pdng--bottom-x6-ld {
		padding-bottom: 60px;
	}
	.pdng--left-x-ld {
		padding-left: 10px;
	}
	.pdng--left-x2-ld {
		padding-left: 20px;
	}
	.pdng--right-x-ld {
		padding-right: 10px;
	}
	.pdng--right-x2-ld {
		padding-right: 20px;
	}

	/* Typography */

	.text--fs-12-ld {
		font-size: 12.5px;
		line-height: 20px;
		font-weight: 400;
		letter-spacing: normal;
	}
	.text--fs-14-ld {
		font-size: 14px;
		line-height: 20px;
		font-weight: 400;
		letter-spacing: normal;
	}
	.text--fs-16-ld {
		font-size: 16px;
		line-height: 20px;
		font-weight: 400;
		letter-spacing: normal;
	}
	.text--fs-18-ld {
		font-size: 18px;
		line-height: 30px;
		font-weight: 400;
		letter-spacing: normal;
	}
	.text--fs-24-ld {
		font-size: 24px;
		line-height: 30px;
		font-weight: 300;
		letter-spacing: normal;
	}
	.text--fs-30-ld {
		font-size: 30px;
		line-height: 40px;
		font-weight: 300;
		letter-spacing: normal;
	}
	.text--fs-36-ld {
		font-size: 36px;
		line-height: 50px;
		font-weight: 300;
		letter-spacing: normal;
	}
	.text--fs-48-ld {
		font-size: 48px;
		line-height: 60px;
		font-weight: 300;
		letter-spacing: normal;
	}
	.text--thin-ld {
		font-weight: 300;
	}
	.text--nowrap-ld {
		white-space: nowrap;
	}
	.text--normalwrap-ld {
		white-space: normal;
	}
	.text--ellipsis-ld {
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	.text--caps-ld {
		text-transform: uppercase;
	}
	.text--normalize-ld {
		font-size: 14px;
		line-height: 20px;
		font-weight: 400;
		letter-spacing: normal;
	}

	/* Align */

	.align--left-ld {
		text-align: left;
	}
	.align--center-ld {
		text-align: center;
	}
	.align--right-ld {
		text-align: right;
	}
	.align--justify-ld {
		text-align: justify;
	}
	.align--top-ld {
		vertical-align: top;
	}
	.align--middle-ld {
		vertical-align: middle;
	}
	.align--bottom-ld {
		vertical-align: bottom;
	}

	/* global hack */

	.block--block-ld {
		display: block;
	}
	.block--inline-ld {
		display: inline-block;
	}
	.block--none-ld {
		display: none;
	}
}
@media screen and (max-width:1342px) {

	/* Grid system */

	.grid--sd {
		display: block;
		position: relative;
		list-style: none outside;
		font-size: 0;
		line-height: 0;
		letter-spacing : -.36em;
	}
	.column--sd {
		display: block;
		position: relative;
		font-size: 14px;
		line-height: 20px;
		letter-spacing: normal;
	}
	.column--inline-sd {
		display: inline-block;
	}
	.column--x-sd {
		width: 8.33%;
	}
	.column--x2-sd {
		width: 16.66%;
	}
	.column--x3-sd {
		width: 25%;
	}
	.column--x4-sd {
		width: 33.33%;
	}
	.column--x5-sd {
		width: 41.66%;
	}
	.column--x6-sd {
		width: 50%;
	}
	.column--x7-sd {
		width: 58.33%;
	}
	.column--x8-sd {
		width: 66.66%;
	}
	.column--x9-sd {
		width: 75%;
	}
	.column--x10-sd {
		width: 83.33%;
	}
	.column--x11-sd {
		width: 91.66%;
	}
	.column--x12-sd {
		width: 100%;
	}
	.mrgn--left-column-x-sd {
		margin-left: 8.33%;
	}
	.mrgn--left-column-x2-sd {
		margin-left: 16.66%;
	}
	.mrgn--left-column-x3-sd {
		margin-left: 25%;
	}
	.mrgn--left-column-x4-sd {
		margin-left: 33.33%;
	}
	.mrgn--left-column-x5-sd {
		margin-left: 41.66%;
	}
	.mrgn--left-column-x6-sd {
		margin-left: 50%;
	}
	.mrgn--left-column-x7-sd {
		margin-left: 58.33%;
	}
	.mrgn--left-column-x8-sd {
		margin-left: 66.66%;
	}
	.mrgn--left-column-x9-sd {
		margin-left: 75%;
	}
	.mrgn--left-column-x10-sd {
		margin-left: 83.33%;
	}
	.mrgn--left-column-x11-sd {
		margin-left: 91.66%;
	}
	.mrgn--right-column-x-sd {
		margin-right: 8.33%;
	}
	.mrgn--right-column-x2-sd {
		margin-right: 16.66%;
	}
	.mrgn--right-column-x3-sd {
		margin-right: 25%;
	}
	.mrgn--right-column-x4-sd {
		margin-right: 33.33%;
	}
	.mrgn--right-column-x5-sd {
		margin-right: 41.66%;
	}
	.mrgn--right-column-x6-sd {
		margin-right: 50%;
	}
	.mrgn--right-column-x7-sd {
		margin-right: 58.33%;
	}
	.mrgn--right-column-x8-sd {
		margin-right: 66.66%;
	}
	.mrgn--right-column-x9-sd {
		margin-right: 75%;
	}
	.mrgn--right-column-x10-sd {
		margin-right: 83.33%;
	}
	.mrgn--right-column-x11-sd {
		margin-right: 91.66%;
	}

	/* Form, input, button */

	.input--fs-12-sd,
	.input--fs-14-sd,
	.input--fs-16-sd {
		padding-top: 9px;
		padding-bottom: 9px;
	}
	.button--sqare-sd,
	.button--square-sd {
		border-radius: 0;
	}

	/* Table, menu */

	.table__td.text--fs-12-sd,
	.table__td.text--fs-14-sd,
	.table__td.text--fs-16-sd {
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.table__td.text--fs-18-sd,
	.table__td.text--fs-24-sd {
		padding-top: 15px;
		padding-bottom: 15px;
	}
	.table__td.text--fs-30-sd {
		padding-top: 10px;
		padding-bottom: 10px;
	}

	/* Dialog */

	.dialog__msg_bubble--sd {
		max-width: 87.5%;
	}

	/* Modal window */

	.text--fs-16-sd.modal__window_head,
	.text--fs-14-sd.modal__window_head {
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.text--fs-30-sd.modal__window_head {
		padding-top: 10px;
		padding-bottom: 10px;
	}

	/* Margin, padding */

	.mrgn--reset-sd {
		margin: 0;
	}
	.pdng--reset-sd {
		padding: 0;
	}
	.mrgn--top-x-sd {
		margin-top: 10px;
	}
	.mrgn--top-x2-sd {
		margin-top: 20px;
	}
	.mrgn--top-x3-sd {
		margin-top: 30px;
	}
	.mrgn--top-x4-sd {
		margin-top: 40px;
	}
	.mrgn--top-x5-sd {
		margin-top: 50px;
	}
	.mrgn--top-x6-sd {
		margin-top: 60px;
	}
	.mrgn--bottom-x-sd {
		margin-bottom: 10px;
	}
	.mrgn--bottom-x2-sd {
		margin-bottom: 20px;
	}
	.mrgn--bottom-x3-sd {
		margin-bottom: 30px;
	}
	.mrgn--bottom-x4-sd {
		margin-bottom: 40px;
	}
	.mrgn--bottom-x5-sd {
		margin-bottom: 50px;
	}
	.mrgn--bottom-x6-sd {
		margin-bottom: 60px;
	}
	.mrgn--left-x-sd {
		margin-left: 10px;
	}
	.mrgn--left-x2-sd {
		margin-left: 20px;
	}
	.mrgn--right-x-sd {
		margin-right: 10px;
	}
	.mrgn--right-x2-sd {
		margin-right: 20px;
	}
	.pdng--top-x-sd {
		padding-top: 10px;
	}
	.pdng--top-x2-sd {
		padding-top: 20px;
	}
	.pdng--top-x3-sd {
		padding-top: 30px;
	}
	.pdng--top-x4-sd {
		padding-top: 40px;
	}
	.pdng--top-x5-sd {
		padding-top: 50px;
	}
	.pdng--top-x6-sd {
		padding-top: 60px;
	}
	.pdng--bottom-x-sd {
		padding-bottom: 10px;
	}
	.pdng--bottom-x2-sd {
		padding-bottom: 20px;
	}
	.pdng--bottom-x3-sd {
		padding-bottom: 30px;
	}
	.pdng--bottom-x4-sd {
		padding-bottom: 40px;
	}
	.pdng--bottom-x5-sd {
		padding-bottom: 50px;
	}
	.pdng--bottom-x6-sd {
		padding-bottom: 60px;
	}
	.pdng--left-x-sd {
		padding-left: 10px;
	}
	.pdng--left-x2-sd {
		padding-left: 20px;
	}
	.pdng--right-x-sd {
		padding-right: 10px;
	}
	.pdng--right-x2-sd {
		padding-right: 20px;
	}

	/* Typography */

	.text--fs-12-sd {
		font-size: 12.5px;
		line-height: 20px;
		font-weight: 400;
		letter-spacing: normal;
	}
	.text--fs-14-sd {
		font-size: 14px;
		line-height: 20px;
		font-weight: 400;
		letter-spacing: normal;
	}
	.text--fs-16-sd {
		font-size: 16px;
		line-height: 20px;
		font-weight: 400;
		letter-spacing: normal;
	}
	.text--fs-18-sd {
		font-size: 18px;
		line-height: 30px;
		font-weight: 400;
		letter-spacing: normal;
	}
	.text--fs-24-sd {
		font-size: 24px;
		line-height: 30px;
		font-weight: 300;
		letter-spacing: normal;
	}
	.text--fs-30-sd {
		font-size: 30px;
		line-height: 40px;
		font-weight: 300;
		letter-spacing: normal;
	}
	.text--fs-36-sd {
		font-size: 36px;
		line-height: 50px;
		font-weight: 300;
		letter-spacing: normal;
	}
	.text--fs-48-sd {
		font-size: 48px;
		line-height: 60px;
		font-weight: 300;
		letter-spacing: normal;
	}
	.text--thin-sd {
		font-weight: 300;
	}
	.text--nowrap-sd {
		white-space: nowrap;
	}
	.text--normalwrap-sd {
		white-space: normal;
	}
	.text--ellipsis-sd {
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	.text--caps-sd {
		text-transform: uppercase;
	}
	.text--normalize-sd {
		font-size: 14px;
		line-height: 20px;
		font-weight: 400;
		letter-spacing: normal;
	}

	/* Align */

	.align--left-sd {
		text-align: left;
	}
	.align--center-sd {
		text-align: center;
	}
	.align--right-sd {
		text-align: right;
	}
	.align--justify-sd {
		text-align: justify;
	}
	.align--top-sd {
		vertical-align: top;
	}
	.align--middle-sd {
		vertical-align: middle;
	}
	.align--bottom-sd {
		vertical-align: bottom;
	}

	/* global hack */

	.block--block-sd {
		display: block;
	}
	.block--inline-sd {
		display: inline-block;
	}
	.block--none-sd {
		display: none;
	}
}
@media screen and (max-width:1024px) {

	/* Form, input, button */

	.input__checkbox--fake {
		width: 45px;
		height: 30px;
		border-radius: 15px;
	}
	.input__checkbox--fake:after {
		width: 28px;
		height: 28px;
		margin-top: -14px;
		box-shadow:
			0 0 0 1px rgba(0,0,0,.1),
			0 4px 0 0 rgba(0, 0, 0, 0.05),
			0 8px 8px 0 rgba(0, 0, 0, 0.1);
	}
	.input__checkbox:checked + .input__checkbox--fake:after {
		-webkit-transform: translateX(15px);
		-ms-transform: translateX(15px);
		-o-transform: translateX(15px);
		transform: translateX(15px);
	}
	.sliderbar {
		height: 30px;
	}
	.sliderbar__bar,
	.sliderbar__value {
		top: 14px;
		bottom: 14px;
	}
	.sliderbar__controlbox {
		left: 15px;
		right: 15px;
	}
	.sliderbar__control {
		width: 30px;
		height: 30px;
		margin-top: -15px;
		margin-left: -15px;
		box-shadow:
			0 0 0 1px rgba(0,0,0,.1),
			0 4px 0 0 rgba(0, 0, 0, 0.05),
			0 8px 8px 0 rgba(0, 0, 0, 0.1);
	}
	.reactslider {
		height: 30px;
	}
	.reactslider__handle {
		width: 30px;
		height: 30px;
		box-shadow:
			0 0 0 1px rgba(0,0,0,.1),
			0 4px 0 0 rgba(0, 0, 0, 0.05),
			0 8px 8px 0 rgba(0, 0, 0, 0.1);
	}
	.menu__item_delete {
		width: 30px;
		height: 30px;
		top: 5px;
		right: 5px;
		padding: 5px;
		border-radius: 5px;
	}
}
@media screen and (max-width:1023px) {

	/* Grid system */

	.grid--mt {
		display: block;
		position: relative;
		list-style: none outside;
		font-size: 0;
		line-height: 0;
		letter-spacing : -.36em;
	}
	.column--mt {
		display: block;
		position: relative;
		font-size: 14px;
		line-height: 20px;
		letter-spacing: normal;
	}
	.column--inline-mt {
		display: inline-block;
	}
	.column--x-mt {
		width: 8.33%;
	}
	.column--x2-mt {
		width: 16.66%;
	}
	.column--x3-mt {
		width: 25%;
	}
	.column--x4-mt {
		width: 33.33%;
	}
	.column--x5-mt {
		width: 41.66%;
	}
	.column--x6-mt {
		width: 50%;
	}
	.column--x7-mt {
		width: 58.33%;
	}
	.column--x8-mt {
		width: 66.66%;
	}
	.column--x9-mt {
		width: 75%;
	}
	.column--x10-mt {
		width: 83.33%;
	}
	.column--x11-mt {
		width: 91.66%;
	}
	.column--x12-mt {
		width: 100%;
	}
	.mrgn--left-column-x-mt {
		margin-left: 8.33%;
	}
	.mrgn--left-column-x2-mt {
		margin-left: 16.66%;
	}
	.mrgn--left-column-x3-mt {
		margin-left: 25%;
	}
	.mrgn--left-column-x4-mt {
		margin-left: 33.33%;
	}
	.mrgn--left-column-x5-mt {
		margin-left: 41.66%;
	}
	.mrgn--left-column-x6-mt {
		margin-left: 50%;
	}
	.mrgn--left-column-x7-mt {
		margin-left: 58.33%;
	}
	.mrgn--left-column-x8-mt {
		margin-left: 66.66%;
	}
	.mrgn--left-column-x9-mt {
		margin-left: 75%;
	}
	.mrgn--left-column-x10-mt {
		margin-left: 83.33%;
	}
	.mrgn--left-column-x11-mt {
		margin-left: 91.66%;
	}
	.mrgn--right-column-x-mt {
		margin-right: 8.33%;
	}
	.mrgn--right-column-x2-mt {
		margin-right: 16.66%;
	}
	.mrgn--right-column-x3-mt {
		margin-right: 25%;
	}
	.mrgn--right-column-x4-mt {
		margin-right: 33.33%;
	}
	.mrgn--right-column-x5-mt {
		margin-right: 41.66%;
	}
	.mrgn--right-column-x6-mt {
		margin-right: 50%;
	}
	.mrgn--right-column-x7-mt {
		margin-right: 58.33%;
	}
	.mrgn--right-column-x8-mt {
		margin-right: 66.66%;
	}
	.mrgn--right-column-x9-mt {
		margin-right: 75%;
	}
	.mrgn--right-column-x10-mt {
		margin-right: 83.33%;
	}
	.mrgn--right-column-x11-mt {
		margin-right: 91.66%;
	}

	/* Form, input, button */

	.input--fs-12-mt,
	.input--fs-14-mt,
	.input--fs-16-mt {
		padding-top: 9px;
		padding-bottom: 9px;
	}
	.button--sqare-mt,
	.button--square-mt {
		border-radius: 0;
	}

	/* Table, menu */

	.table__tr_actions {
		width: 100px;
	}
	.table__tr--showactions {
		-webkit-transform: translateX(-100px);
		-ms-transform: translateX(-100px);
		-o-transform: translateX(-100px);
		transform: translateX(-100px);
	}
	.table__tr--actions-double.table__tr--showactions {
		-webkit-transform: translateX(-200px);
		-ms-transform: translateX(-200px);
		-o-transform: translateX(-200px);
		transform: translateX(-200px);
	}
	.table__tr--actions-triple.table__tr--showactions {
		-webkit-transform: translateX(-300px);
		-ms-transform: translateX(-300px);
		-o-transform: translateX(-300px);
		transform: translateX(-300px);
	}
	.table__td.text--fs-12-mt,
	.table__td.text--fs-14-mt,
	.table__td.text--fs-16-mt {
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.table__td.text--fs-18-mt,
	.table__td.text--fs-24-mt {
		padding-top: 15px;
		padding-bottom: 15px;
	}
	.table__td.text--fs-30-mt {
		padding-top: 10px;
		padding-bottom: 10px;
	}

	/* Dialog */

	.dialog__msg {
		margin-top: 10px;
		margin-bottom: 10px;
		padding-left: 10px;
		padding-right: 10px;
	}
	.dialog__msg--userpic-left {
		padding-left: 60px;
	}
	.dialog__msg--userpic-right {
		padding-right: 60px;
	}
	.dialog__userpic--left {
		left: 10px;
	}
	.dialog__userpic--right {
		right: 10px;
	}
	.msg_bubble {
		padding: 9px 14px;
	}
	.dialog__msg_bubble--mt {
		max-width: 83.33%;
	}
	.msg_bubble__attachments {
		margin: 10px -15px -10px -15px;
	}
	.msg_bubble__file {
		padding: 14px 14px 14px 44px;
	}
	.msg_bubble__file--load {
		padding: 19px;
	}
	.msg_bubble__file_icon {
		top: 4px;
		left: 4px;
	}

	/* Modal window */

	.text--fs-16-mt.modal__window_head,
	.text--fs-14-mt.modal__window_head {
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.text--fs-30-mt.modal__window_head {
		padding-top: 10px;
		padding-bottom: 10px;
	}

	/* Margin, padding */

	.mrgn--reset-mt {
		margin: 0;
	}
	.pdng--reset-mt {
		padding: 0;
	}
	.mrgn--top-x-mt {
		margin-top: 10px;
	}
	.mrgn--top-x2-mt {
		margin-top: 20px;
	}
	.mrgn--top-x3-mt {
		margin-top: 30px;
	}
	.mrgn--top-x4-mt {
		margin-top: 40px;
	}
	.mrgn--top-x5-mt {
		margin-top: 50px;
	}
	.mrgn--top-x6-mt {
		margin-top: 60px;
	}
	.mrgn--bottom-x-mt {
		margin-bottom: 10px;
	}
	.mrgn--bottom-x2-mt {
		margin-bottom: 20px;
	}
	.mrgn--bottom-x3-mt {
		margin-bottom: 30px;
	}
	.mrgn--bottom-x4-mt {
		margin-bottom: 40px;
	}
	.mrgn--bottom-x5-mt {
		margin-bottom: 50px;
	}
	.mrgn--bottom-x6-mt {
		margin-bottom: 60px;
	}
	.mrgn--left-x-mt {
		margin-left: 10px;
	}
	.mrgn--left-x2-mt {
		margin-left: 20px;
	}
	.mrgn--right-x-mt {
		margin-right: 10px;
	}
	.mrgn--right-x2-mt {
		margin-right: 20px;
	}
	.pdng--top-x-mt {
		padding-top: 10px;
	}
	.pdng--top-x2-mt {
		padding-top: 20px;
	}
	.pdng--top-x3-mt {
		padding-top: 30px;
	}
	.pdng--top-x4-mt {
		padding-top: 40px;
	}
	.pdng--top-x5-mt {
		padding-top: 50px;
	}
	.pdng--top-x6-mt {
		padding-top: 60px;
	}
	.pdng--bottom-x-mt {
		padding-bottom: 10px;
	}
	.pdng--bottom-x2-mt {
		padding-bottom: 20px;
	}
	.pdng--bottom-x3-mt {
		padding-bottom: 30px;
	}
	.pdng--bottom-x4-mt {
		padding-bottom: 40px;
	}
	.pdng--bottom-x5-mt {
		padding-bottom: 50px;
	}
	.pdng--bottom-x6-mt {
		padding-bottom: 60px;
	}
	.pdng--left-x-mt {
		padding-left: 10px;
	}
	.pdng--left-x2-mt {
		padding-left: 20px;
	}
	.pdng--right-x-mt {
		padding-right: 10px;
	}
	.pdng--right-x2-mt {
		padding-right: 20px;
	}

	/* Typography */

	.text--fs-12-mt {
		font-size: 12px;
		line-height: 20px;
		font-weight: 400;
		letter-spacing: normal;
	}
	.text--fs-14-mt {
		font-size: 14px;
		line-height: 20px;
		font-weight: 400;
		letter-spacing: normal;
	}
	.text--fs-16-mt {
		font-size: 16px;
		line-height: 20px;
		font-weight: 400;
		letter-spacing: normal;
	}
	.text--fs-18-mt {
		font-size: 18px;
		line-height: 30px;
		font-weight: 400;
		letter-spacing: normal;
	}
	.text--fs-24-mt {
		font-size: 24px;
		line-height: 30px;
		font-weight: 300;
		letter-spacing: normal;
	}
	.text--fs-30-mt {
		font-size: 30px;
		line-height: 40px;
		font-weight: 300;
		letter-spacing: normal;
	}
	.text--fs-36-mt {
		font-size: 36px;
		line-height: 50px;
		font-weight: 300;
		letter-spacing: normal;
	}
	.text--fs-48-mt {
		font-size: 48px;
		line-height: 60px;
		font-weight: 300;
		letter-spacing: normal;
	}
	.text--thin-mt {
		font-weight: 300;
	}
	.text--nowrap-mt {
		white-space: nowrap;
	}
	.text--normalwrap-mt {
		white-space: normal;
	}
	.text--ellipsis-mt {
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	.text--caps-mt {
		text-transform: uppercase;
	}
	.text--normalize-mt {
		font-size: 14px;
		line-height: 20px;
		font-weight: 400;
		letter-spacing: normal;
	}

	/* Align */

	.align--left-mt {
		text-align: left;
	}
	.align--center-mt {
		text-align: center;
	}
	.align--right-mt {
		text-align: right;
	}
	.align--justify-mt {
		text-align: justify;
	}
	.align--top-mt {
		vertical-align: top;
	}
	.align--middle-mt {
		vertical-align: middle;
	}
	.align--bottom-mt {
		vertical-align: bottom;
	}

	/* global hack */

	.block--block-mt {
		display: block;
	}
	.block--inline-mt {
		display: inline-block;
	}
	.block--none-mt {
		display: none;
	}
}
@media screen and (max-width:767px) {

	/* Grid system */

	.grid--st {
		display: block;
		position: relative;
		list-style: none outside;
		font-size: 0;
		line-height: 0;
		letter-spacing : -.36em;
	}
	.column--st {
		display: block;
		position: relative;
		font-size: 14px;
		line-height: 20px;
		letter-spacing: normal;
	}
	.column--inline-st {
		display: inline-block;
	}
	.column--x-st {
		width: 8.33%;
	}
	.column--x2-st {
		width: 16.66%;
	}
	.column--x3-st {
		width: 25%;
	}
	.column--x4-st {
		width: 33.33%;
	}
	.column--x5-st {
		width: 41.66%;
	}
	.column--x6-st {
		width: 50%;
	}
	.column--x7-st {
		width: 58.33%;
	}
	.column--x8-st {
		width: 66.66%;
	}
	.column--x9-st {
		width: 75%;
	}
	.column--x10-st {
		width: 83.33%;
	}
	.column--x11-st {
		width: 91.66%;
	}
	.column--x12-st {
		width: 100%;
	}
	.mrgn--left-column-x-st {
		margin-left: 8.33%;
	}
	.mrgn--left-column-x2-st {
		margin-left: 16.66%;
	}
	.mrgn--left-column-x3-st {
		margin-left: 25%;
	}
	.mrgn--left-column-x4-st {
		margin-left: 33.33%;
	}
	.mrgn--left-column-x5-st {
		margin-left: 41.66%;
	}
	.mrgn--left-column-x6-st {
		margin-left: 50%;
	}
	.mrgn--left-column-x7-st {
		margin-left: 58.33%;
	}
	.mrgn--left-column-x8-st {
		margin-left: 66.66%;
	}
	.mrgn--left-column-x9-st {
		margin-left: 75%;
	}
	.mrgn--left-column-x10-st {
		margin-left: 83.33%;
	}
	.mrgn--left-column-x11-st {
		margin-left: 91.66%;
	}
	.mrgn--right-column-x-st {
		margin-right: 8.33%;
	}
	.mrgn--right-column-x2-st {
		margin-right: 16.66%;
	}
	.mrgn--right-column-x3-st {
		margin-right: 25%;
	}
	.mrgn--right-column-x4-st {
		margin-right: 33.33%;
	}
	.mrgn--right-column-x5-st {
		margin-right: 41.66%;
	}
	.mrgn--right-column-x6-st {
		margin-right: 50%;
	}
	.mrgn--right-column-x7-st {
		margin-right: 58.33%;
	}
	.mrgn--right-column-x8-st {
		margin-right: 66.66%;
	}
	.mrgn--right-column-x9-st {
		margin-right: 75%;
	}
	.mrgn--right-column-x10-st {
		margin-right: 83.33%;
	}
	.mrgn--right-column-x11-st {
		margin-right: 91.66%;
	}

	/* Form, input, button */

	.input--fs-12-st,
	.input--fs-14-st,
	.input--fs-16-st {
		padding-top: 9px;
		padding-bottom: 9px;
	}
	.button--sqare-st,
	.button--square-st {
		border-radius: 0;
	}

	/* Table, menu */

	.table__td.text--fs-12-st,
	.table__td.text--fs-14-st,
	.table__td.text--fs-16-st {
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.table__td.text--fs-18-st,
	.table__td.text--fs-24-st {
		padding-top: 15px;
		padding-bottom: 15px;
	}
	.table__td.text--fs-30-st {
		padding-top: 10px;
		padding-bottom: 10px;
	}

	/* Dialog */

	.dialog__msg_bubble--st {
		max-width: 87.5%;
	}

	/* Modal window */

	.text--fs-16-st.modal__window_head,
	.text--fs-14-st.modal__window_head {
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.text--fs-30-st.modal__window_head {
		padding-top: 10px;
		padding-bottom: 10px;
	}

	/* Margin, padding */

	.mrgn--reset-st {
		margin: 0;
	}
	.pdng--reset-st {
		padding: 0;
	}
	.mrgn--top-x-st {
		margin-top: 10px;
	}
	.mrgn--top-x2-st {
		margin-top: 20px;
	}
	.mrgn--top-x3-st {
		margin-top: 30px;
	}
	.mrgn--top-x4-st {
		margin-top: 40px;
	}
	.mrgn--top-x5-st {
		margin-top: 50px;
	}
	.mrgn--top-x6-st {
		margin-top: 60px;
	}
	.mrgn--bottom-x-st {
		margin-bottom: 10px;
	}
	.mrgn--bottom-x2-st {
		margin-bottom: 20px;
	}
	.mrgn--bottom-x3-st {
		margin-bottom: 30px;
	}
	.mrgn--bottom-x4-st {
		margin-bottom: 40px;
	}
	.mrgn--bottom-x5-st {
		margin-bottom: 50px;
	}
	.mrgn--bottom-x6-st {
		margin-bottom: 60px;
	}
	.mrgn--left-x-st {
		margin-left: 10px;
	}
	.mrgn--left-x2-st {
		margin-left: 20px;
	}
	.mrgn--right-x-st {
		margin-right: 10px;
	}
	.mrgn--right-x2-st {
		margin-right: 20px;
	}
	.pdng--top-x-st {
		padding-top: 10px;
	}
	.pdng--top-x2-st {
		padding-top: 20px;
	}
	.pdng--top-x3-st {
		padding-top: 30px;
	}
	.pdng--top-x4-st {
		padding-top: 40px;
	}
	.pdng--top-x5-st {
		padding-top: 50px;
	}
	.pdng--top-x6-st {
		padding-top: 60px;
	}
	.pdng--bottom-x-st {
		padding-bottom: 10px;
	}
	.pdng--bottom-x2-st {
		padding-bottom: 20px;
	}
	.pdng--bottom-x3-st {
		padding-bottom: 30px;
	}
	.pdng--bottom-x4-st {
		padding-bottom: 40px;
	}
	.pdng--bottom-x5-st {
		padding-bottom: 50px;
	}
	.pdng--bottom-x6-st {
		padding-bottom: 60px;
	}
	.pdng--left-x-st {
		padding-left: 10px;
	}
	.pdng--left-x2-st {
		padding-left: 20px;
	}
	.pdng--right-x-st {
		padding-right: 10px;
	}
	.pdng--right-x2-st {
		padding-right: 20px;
	}

	/* Typography */

	.text--fs-12-st {
		font-size: 12px;
		line-height: 20px;
		font-weight: 400;
		letter-spacing: normal;
	}
	.text--fs-14-st {
		font-size: 14px;
		line-height: 20px;
		font-weight: 400;
		letter-spacing: normal;
	}
	.text--fs-16-st {
		font-size: 16px;
		line-height: 20px;
		font-weight: 400;
		letter-spacing: normal;
	}
	.text--fs-18-st {
		font-size: 18px;
		line-height: 30px;
		font-weight: 400;
		letter-spacing: normal;
	}
	.text--fs-24-st {
		font-size: 24px;
		line-height: 30px;
		font-weight: 300;
		letter-spacing: normal;
	}
	.text--fs-30-st {
		font-size: 30px;
		line-height: 40px;
		font-weight: 300;
		letter-spacing: normal;
	}
	.text--fs-36-st {
		font-size: 36px;
		line-height: 50px;
		font-weight: 300;
		letter-spacing: normal;
	}
	.text--fs-48-st {
		font-size: 48px;
		line-height: 60px;
		font-weight: 300;
		letter-spacing: normal;
	}
	.text--thin-st {
		font-weight: 300;
	}
	.text--nowrap-st {
		white-space: nowrap;
	}
	.text--normalwrap-st {
		white-space: normal;
	}
	.text--ellipsis-st {
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	.text--caps-st {
		text-transform: uppercase;
	}
	.text--normalize-st {
		font-size: 14px;
		line-height: 20px;
		font-weight: 400;
		letter-spacing: normal;
	}

	/* Align */

	.align--left-st {
		text-align: left;
	}
	.align--center-st {
		text-align: center;
	}
	.align--right-st {
		text-align: right;
	}
	.align--justify-st {
		text-align: justify;
	}
	.align--top-st {
		vertical-align: top;
	}
	.align--middle-st {
		vertical-align: middle;
	}
	.align--bottom-st {
		vertical-align: bottom;
	}

	/* global hack */

	.block--block-st {
		display: block;
	}
	.block--inline-st {
		display: inline-block;
	}
	.block--none-st {
		display: none;
	}
}
@media screen and (max-width:599px) {

	/* Grid system */

	.grid--sm {
		display: block;
		position: relative;
		list-style: none outside;
		font-size: 0;
		line-height: 0;
		letter-spacing : -.36em;
	}
	.column--sm {
		display: block;
		position: relative;
		font-size: 14px;
		line-height: 20px;
		letter-spacing: normal;
	}
	.column--inline-sm {
		display: inline-block;
	}
	.column--x-sm {
		width: 8.33%;
	}
	.column--x2-sm {
		width: 16.66%;
	}
	.column--x3-sm {
		width: 25%;
	}
	.column--x4-sm {
		width: 33.33%;
	}
	.column--x5-sm {
		width: 41.66%;
	}
	.column--x6-sm {
		width: 50%;
	}
	.column--x7-sm {
		width: 58.33%;
	}
	.column--x8-sm {
		width: 66.66%;
	}
	.column--x9-sm {
		width: 75%;
	}
	.column--x10-sm {
		width: 83.33%;
	}
	.column--x11-sm {
		width: 91.66%;
	}
	.column--x12-sm {
		width: 100%;
	}
	.mrgn--left-column-x-sm {
		margin-left: 8.33%;
	}
	.mrgn--left-column-x2-sm {
		margin-left: 16.66%;
	}
	.mrgn--left-column-x3-sm {
		margin-left: 25%;
	}
	.mrgn--left-column-x4-sm {
		margin-left: 33.33%;
	}
	.mrgn--left-column-x5-sm {
		margin-left: 41.66%;
	}
	.mrgn--left-column-x6-sm {
		margin-left: 50%;
	}
	.mrgn--left-column-x7-sm {
		margin-left: 58.33%;
	}
	.mrgn--left-column-x8-sm {
		margin-left: 66.66%;
	}
	.mrgn--left-column-x9-sm {
		margin-left: 75%;
	}
	.mrgn--left-column-x10-sm {
		margin-left: 83.33%;
	}
	.mrgn--left-column-x11-sm {
		margin-left: 91.66%;
	}
	.mrgn--right-column-x-sm {
		margin-right: 8.33%;
	}
	.mrgn--right-column-x2-sm {
		margin-right: 16.66%;
	}
	.mrgn--right-column-x3-sm {
		margin-right: 25%;
	}
	.mrgn--right-column-x4-sm {
		margin-right: 33.33%;
	}
	.mrgn--right-column-x5-sm {
		margin-right: 41.66%;
	}
	.mrgn--right-column-x6-sm {
		margin-right: 50%;
	}
	.mrgn--right-column-x7-sm {
		margin-right: 58.33%;
	}
	.mrgn--right-column-x8-sm {
		margin-right: 66.66%;
	}
	.mrgn--right-column-x9-sm {
		margin-right: 75%;
	}
	.mrgn--right-column-x10-sm {
		margin-right: 83.33%;
	}
	.mrgn--right-column-x11-sm {
		margin-right: 91.66%;
	}

	/* Form, input, button */

	.input--fs-12-sm,
	.input--fs-14-sm,
	.input--fs-16-sm {
		padding-top: 9px;
		padding-bottom: 9px;
	}
	.button--sqare-sm,
	.button--square-sm {
		border-radius: 0;
	}

	/* Table, menu */

	.table__tr_actions {
		width: 80px;
	}
	.table__tr--showactions {
		-webkit-transform: translateX(-80px);
		-ms-transform: translateX(-80px);
		-o-transform: translateX(-80px);
		transform: translateX(-80px);
	}
	.table__tr--actions-double.table__tr--showactions {
		-webkit-transform: translateX(-160px);
		-ms-transform: translateX(-160px);
		-o-transform: translateX(-160px);
		transform: translateX(-160px);
	}
	.table__tr--actions-triple.table__tr--showactions {
		-webkit-transform: translateX(-240px);
		-ms-transform: translateX(-240px);
		-o-transform: translateX(-240px);
		transform: translateX(-240px);
	}
	.table__td.text--fs-12-sm,
	.table__td.text--fs-14-sm,
	.table__td.text--fs-16-sm {
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.table__td.text--fs-18-sm,
	.table__td.text--fs-24-sm {
		padding-top: 15px;
		padding-bottom: 15px;
	}
	.table__td.text--fs-30-sm {
		padding-top: 10px;
		padding-bottom: 10px;
	}

	/* Dialog */

	.dialog__msg {
		padding-left: 10px;
		padding-right: 10px;
	}
	.dialog__userpic {
		display: none;
	}
	.dialog__msg_bubble--sm {
		max-width: 95.83%;
	}

	/* Modal window */

	.text--fs-16-sm.modal__window_head,
	.text--fs-14-sm.modal__window_head {
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.text--fs-30-sm.modal__window_head {
		padding-top: 10px;
		padding-bottom: 10px;
	}

	/* Margin, padding */

	.mrgn--reset-sm {
		margin: 0;
	}
	.pdng--reset-sm {
		padding: 0;
	}
	.mrgn--top-x-sm {
		margin-top: 10px;
	}
	.mrgn--top-x2-sm {
		margin-top: 20px;
	}
	.mrgn--top-x3-sm {
		margin-top: 30px;
	}
	.mrgn--top-x4-sm {
		margin-top: 40px;
	}
	.mrgn--top-x5-sm {
		margin-top: 50px;
	}
	.mrgn--top-x6-sm {
		margin-top: 60px;
	}
	.mrgn--bottom-x-sm {
		margin-bottom: 10px;
	}
	.mrgn--bottom-x2-sm {
		margin-bottom: 20px;
	}
	.mrgn--bottom-x3-sm {
		margin-bottom: 30px;
	}
	.mrgn--bottom-x4-sm {
		margin-bottom: 40px;
	}
	.mrgn--bottom-x5-sm {
		margin-bottom: 50px;
	}
	.mrgn--bottom-x6-sm {
		margin-bottom: 60px;
	}
	.mrgn--left-x-sm {
		margin-left: 10px;
	}
	.mrgn--left-x2-sm {
		margin-left: 20px;
	}
	.mrgn--right-x-sm {
		margin-right: 10px;
	}
	.mrgn--right-x2-sm {
		margin-right: 20px;
	}
	.pdng--top-x-sm {
		padding-top: 10px;
	}
	.pdng--top-x2-sm {
		padding-top: 20px;
	}
	.pdng--top-x3-sm {
		padding-top: 30px;
	}
	.pdng--top-x4-sm {
		padding-top: 40px;
	}
	.pdng--top-x5-sm {
		padding-top: 50px;
	}
	.pdng--top-x6-sm {
		padding-top: 60px;
	}
	.pdng--bottom-x-sm {
		padding-bottom: 10px;
	}
	.pdng--bottom-x2-sm {
		padding-bottom: 20px;
	}
	.pdng--bottom-x3-sm {
		padding-bottom: 30px;
	}
	.pdng--bottom-x4-sm {
		padding-bottom: 40px;
	}
	.pdng--bottom-x5-sm {
		padding-bottom: 50px;
	}
	.pdng--bottom-x6-sm {
		padding-bottom: 60px;
	}
	.pdng--left-x-sm {
		padding-left: 10px;
	}
	.pdng--left-x2-sm {
		padding-left: 20px;
	}
	.pdng--right-x-sm {
		padding-right: 10px;
	}
	.pdng--right-x2-sm {
		padding-right: 20px;
	}

	/* Typography */

	.text--fs-12-sm {
		font-size: 12px;
		line-height: 20px;
		font-weight: 400;
		letter-spacing: normal;
	}
	.text--fs-14-sm {
		font-size: 14px;
		line-height: 20px;
		font-weight: 400;
		letter-spacing: normal;
	}
	.text--fs-16-sm {
		font-size: 16px;
		line-height: 20px;
		font-weight: 400;
		letter-spacing: normal;
	}
	.text--fs-18-sm {
		font-size: 18px;
		line-height: 30px;
		font-weight: 400;
		letter-spacing: normal;
	}
	.text--fs-24-sm {
		font-size: 24px;
		line-height: 30px;
		font-weight: 300;
		letter-spacing: normal;
	}
	.text--fs-30-sm {
		font-size: 30px;
		line-height: 40px;
		font-weight: 300;
		letter-spacing: normal;
	}
	.text--fs-36-sm {
		font-size: 36px;
		line-height: 50px;
		font-weight: 300;
		letter-spacing: normal;
	}
	.text--fs-48-sm {
		font-size: 48px;
		line-height: 60px;
		font-weight: 300;
		letter-spacing: normal;
	}
	.text--thin-sm {
		font-weight: 300;
	}
	.text--nowrap-sm {
		white-space: nowrap;
	}
	.text--normalwrap-sm {
		white-space: normal;
	}
	.text--ellipsis-sm {
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	.text--caps-sm {
		text-transform: uppercase;
	}
	.text--normalize-sm {
		font-size: 14px;
		line-height: 20px;
		font-weight: 400;
		letter-spacing: normal;
	}

	/* Align */

	.align--left-sm {
		text-align: left;
	}
	.align--center-sm {
		text-align: center;
	}
	.align--right-sm {
		text-align: right;
	}
	.align--justify-sm {
		text-align: justify;
	}
	.align--top-sm {
		vertical-align: top;
	}
	.align--middle-sm {
		vertical-align: middle;
	}
	.align--bottom-sm {
		vertical-align: bottom;
	}

	/* global hack */

	.block--block-sm {
		display: block;
	}
	.block--inline-sm {
		display: inline-block;
	}
	.block--none-sm {
		display: none;
	}
}
