33722 lines
612 KiB
CSS
33722 lines
612 KiB
CSS
/* */
|
|
/* Copyright 2016,2020 JS Foundation and other contributors, https://js.foundation/ */
|
|
/* Copyright 2016 IBM Corp. */
|
|
/* Copyright 2015 Andrei Tatar */
|
|
/* */
|
|
/* Licensed under the Apache License, Version 2.0 (the "License"); */
|
|
/* you may not use this file except in compliance with the License. */
|
|
/* You may obtain a copy of the License at */
|
|
/* */
|
|
/* http://www.apache.org/licenses/LICENSE-2.0 */
|
|
/* */
|
|
/* Unless required by applicable law or agreed to in writing, software */
|
|
/* distributed under the License is distributed on an "AS IS" BASIS, */
|
|
/* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */
|
|
/* See the License for the specific language governing permissions and */
|
|
/* limitations under the License. */
|
|
/* */
|
|
@charset "UTF-8";
|
|
|
|
/*!
|
|
* AngularJS Material Design
|
|
* https://github.com/angular/material
|
|
* @license MIT
|
|
* v1.2.5
|
|
*/
|
|
|
|
body,
|
|
html {
|
|
height: 100%;
|
|
position: relative;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
[tabindex="-1"]:focus {
|
|
outline: none;
|
|
}
|
|
|
|
.inset {
|
|
padding: 10px;
|
|
}
|
|
|
|
a.md-no-style,
|
|
button.md-no-style {
|
|
background-color: inherit;
|
|
border: none;
|
|
font-weight: 400;
|
|
margin: 0;
|
|
padding: 0;
|
|
text-align: left;
|
|
}
|
|
|
|
button,
|
|
input,
|
|
select,
|
|
textarea {
|
|
vertical-align: baseline;
|
|
}
|
|
|
|
button,
|
|
html input[type=button],
|
|
input[type=reset],
|
|
input[type=submit] {
|
|
-webkit-appearance: button;
|
|
cursor: pointer;
|
|
}
|
|
|
|
button[disabled],
|
|
html input[type=button][disabled],
|
|
input[type=reset][disabled],
|
|
input[type=submit][disabled] {
|
|
cursor: default;
|
|
}
|
|
|
|
textarea {
|
|
overflow: auto;
|
|
vertical-align: top;
|
|
}
|
|
|
|
input[type=search] {
|
|
-webkit-appearance: textfield;
|
|
box-sizing: content-box;
|
|
-webkit-box-sizing: content-box;
|
|
}
|
|
|
|
input[type=search]::-webkit-search-cancel-button,
|
|
input[type=search]::-webkit-search-decoration {
|
|
-webkit-appearance: none;
|
|
}
|
|
|
|
input:-webkit-autofill {
|
|
text-shadow: none;
|
|
}
|
|
|
|
.md-visually-hidden {
|
|
clip: rect(0 0 0 0);
|
|
border: 0;
|
|
height: 1px;
|
|
margin: -1px;
|
|
overflow: hidden;
|
|
padding: 0;
|
|
position: absolute;
|
|
text-transform: none;
|
|
width: 1px;
|
|
}
|
|
|
|
.md-shadow {
|
|
border-radius: inherit;
|
|
bottom: 0;
|
|
left: 0;
|
|
pointer-events: none;
|
|
position: absolute;
|
|
right: 0;
|
|
top: 0;
|
|
}
|
|
|
|
.md-shadow-bottom-z-1 {
|
|
box-shadow: 0 2px 5px 0 rgba(0,0,0,.26);
|
|
}
|
|
|
|
.md-shadow-bottom-z-2 {
|
|
box-shadow: 0 4px 8px 0 rgba(0,0,0,.4);
|
|
}
|
|
|
|
.md-shadow-animated.md-shadow {
|
|
transition: box-shadow .28s cubic-bezier(.4,0,.2,1);
|
|
}
|
|
|
|
.md-ripple-container {
|
|
height: 100%;
|
|
left: 0;
|
|
overflow: hidden;
|
|
pointer-events: none;
|
|
position: absolute;
|
|
top: 0;
|
|
transition: all .55s cubic-bezier(.25,.8,.25,1);
|
|
width: 100%;
|
|
}
|
|
|
|
.md-ripple {
|
|
border-radius: 50%;
|
|
opacity: 0;
|
|
position: absolute;
|
|
transform: translate(-50%,-50%) scale(0);
|
|
transform-origin: 50% 50%;
|
|
}
|
|
|
|
.md-ripple.md-ripple-placed {
|
|
transition: margin .9s cubic-bezier(.25,.8,.25,1),border .9s cubic-bezier(.25,.8,.25,1),width .9s cubic-bezier(.25,.8,.25,1),height .9s cubic-bezier(.25,.8,.25,1),opacity .9s cubic-bezier(.25,.8,.25,1),transform .9s cubic-bezier(.25,.8,.25,1);
|
|
}
|
|
|
|
.md-ripple.md-ripple-scaled {
|
|
transform: translate(-50%,-50%) scale(1);
|
|
}
|
|
|
|
.md-ripple.md-ripple-active,
|
|
.md-ripple.md-ripple-full,
|
|
.md-ripple.md-ripple-visible {
|
|
opacity: .2;
|
|
}
|
|
|
|
.md-ripple.md-ripple-remove {
|
|
-webkit-animation: md-remove-ripple .9s cubic-bezier(.25,.8,.25,1);
|
|
animation: md-remove-ripple .9s cubic-bezier(.25,.8,.25,1);
|
|
}
|
|
|
|
@-webkit-keyframes md-remove-ripple {
|
|
0% {
|
|
opacity: .15;
|
|
}
|
|
|
|
to {
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
@keyframes md-remove-ripple {
|
|
0% {
|
|
opacity: .15;
|
|
}
|
|
|
|
to {
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
.md-padding {
|
|
padding: 8px;
|
|
}
|
|
|
|
.md-margin {
|
|
margin: 8px;
|
|
}
|
|
|
|
.md-scroll-mask {
|
|
background-color: transparent;
|
|
bottom: 0;
|
|
left: 0;
|
|
position: absolute;
|
|
right: 0;
|
|
top: 0;
|
|
z-index: 50;
|
|
}
|
|
|
|
.md-scroll-mask>.md-scroll-mask-bar {
|
|
background-color: #fafafa;
|
|
bottom: 0;
|
|
box-shadow: inset 0 0 1px rgba(0,0,0,.3);
|
|
display: block;
|
|
position: absolute;
|
|
right: 0;
|
|
top: 0;
|
|
z-index: 65;
|
|
}
|
|
|
|
.md-no-momentum {
|
|
-webkit-overflow-scrolling: auto;
|
|
}
|
|
|
|
.md-no-flicker {
|
|
-webkit-filter: blur(0);
|
|
}
|
|
|
|
@media (min-width:960px) {
|
|
.md-padding {
|
|
padding: 16px;
|
|
}
|
|
}
|
|
|
|
body[dir=ltr],
|
|
body[dir=rtl],
|
|
html[dir=ltr],
|
|
html[dir=rtl] {
|
|
unicode-bidi: embed;
|
|
}
|
|
|
|
bdo[dir=rtl] {
|
|
direction: rtl;
|
|
}
|
|
|
|
bdo[dir=ltr],
|
|
bdo[dir=rtl] {
|
|
unicode-bidi: bidi-override;
|
|
}
|
|
|
|
bdo[dir=ltr] {
|
|
direction: ltr;
|
|
}
|
|
|
|
@media (max-width:599px) {
|
|
.layout-row:not(.layout-xs-column)>.md-auto-horizontal-margin:not(:first-child),
|
|
.layout-xs-row>.md-auto-horizontal-margin:not(:first-child) {
|
|
margin-left: 16px;
|
|
}
|
|
|
|
[dir=rtl] .layout-row:not(.layout-xs-column)>.md-auto-horizontal-margin:not(:first-child),
|
|
[dir=rtl] .layout-xs-row>.md-auto-horizontal-margin:not(:first-child) {
|
|
margin-left: 0;
|
|
margin-right: 16px;
|
|
}
|
|
}
|
|
|
|
@media (min-width:600px) and (max-width:959px) {
|
|
.layout-gt-xs-row:not(.layout-sm-column)>.md-auto-horizontal-margin:not(:first-child),
|
|
.layout-row:not(.layout-gt-xs-column):not(.layout-sm-column)>.md-auto-horizontal-margin:not(:first-child),
|
|
.layout-sm-row:not(.layout-sm-column)>.md-auto-horizontal-margin:not(:first-child) {
|
|
margin-left: 16px;
|
|
}
|
|
|
|
[dir=rtl] .layout-gt-xs-row:not(.layout-sm-column)>.md-auto-horizontal-margin:not(:first-child),
|
|
[dir=rtl] .layout-row:not(.layout-gt-xs-column):not(.layout-sm-column)>.md-auto-horizontal-margin:not(:first-child),
|
|
[dir=rtl] .layout-sm-row:not(.layout-sm-column)>.md-auto-horizontal-margin:not(:first-child) {
|
|
margin-left: 0;
|
|
margin-right: 16px;
|
|
}
|
|
}
|
|
|
|
@media (min-width:960px) and (max-width:1279px) {
|
|
.layout-gt-sm-row:not(.layout-md-column)>.md-auto-horizontal-margin:not(:first-child),
|
|
.layout-gt-xs-row:not(.layout-gt-sm-column):not(.layout-md-column)>.md-auto-horizontal-margin:not(:first-child),
|
|
.layout-md-row:not(.layout-md-column)>.md-auto-horizontal-margin:not(:first-child),
|
|
.layout-row:not(.layout-gt-xs-column):not(.layout-gt-sm-column):not(.layout-md-column)>.md-auto-horizontal-margin:not(:first-child) {
|
|
margin-left: 16px;
|
|
}
|
|
|
|
[dir=rtl] .layout-gt-sm-row:not(.layout-md-column)>.md-auto-horizontal-margin:not(:first-child),
|
|
[dir=rtl] .layout-gt-xs-row:not(.layout-gt-sm-column):not(.layout-md-column)>.md-auto-horizontal-margin:not(:first-child),
|
|
[dir=rtl] .layout-md-row:not(.layout-md-column)>.md-auto-horizontal-margin:not(:first-child),
|
|
[dir=rtl] .layout-row:not(.layout-gt-xs-column):not(.layout-gt-sm-column):not(.layout-md-column)>.md-auto-horizontal-margin:not(:first-child) {
|
|
margin-left: 0;
|
|
margin-right: 16px;
|
|
}
|
|
}
|
|
|
|
@media (min-width:1280px) and (max-width:1919px) {
|
|
.layout-gt-md-row:not(.layout-lg-column)>.md-auto-horizontal-margin:not(:first-child),
|
|
.layout-gt-sm-row:not(.layout-gt-md-column):not(.layout-lg-column)>.md-auto-horizontal-margin:not(:first-child),
|
|
.layout-gt-xs-row:not(.layout-gt-sm-column):not(.layout-gt-md-column):not(.layout-lg-column)>.md-auto-horizontal-margin:not(:first-child),
|
|
.layout-lg-row:not(.layout-lg-column)>.md-auto-horizontal-margin:not(:first-child),
|
|
.layout-row:not(.layout-gt-xs-column):not(.layout-gt-sm-column):not(.layout-gt-md-column):not(.layout-lg-column)>.md-auto-horizontal-margin:not(:first-child) {
|
|
margin-left: 16px;
|
|
}
|
|
|
|
[dir=rtl] .layout-gt-md-row:not(.layout-lg-column)>.md-auto-horizontal-margin:not(:first-child),
|
|
[dir=rtl] .layout-gt-sm-row:not(.layout-gt-md-column):not(.layout-lg-column)>.md-auto-horizontal-margin:not(:first-child),
|
|
[dir=rtl] .layout-gt-xs-row:not(.layout-gt-sm-column):not(.layout-gt-md-column):not(.layout-lg-column)>.md-auto-horizontal-margin:not(:first-child),
|
|
[dir=rtl] .layout-lg-row:not(.layout-lg-column)>.md-auto-horizontal-margin:not(:first-child),
|
|
[dir=rtl] .layout-row:not(.layout-gt-xs-column):not(.layout-gt-sm-column):not(.layout-gt-md-column):not(.layout-lg-column)>.md-auto-horizontal-margin:not(:first-child) {
|
|
margin-left: 0;
|
|
margin-right: 16px;
|
|
}
|
|
}
|
|
|
|
@media (min-width:1920px) {
|
|
.layout-gt-lg-row:not(.layout-gt-lg-column):not(.layout-xl-column)>.md-auto-horizontal-margin:not(:first-child),
|
|
.layout-gt-md-row:not(.layout-gt-lg-column):not(.layout-xl-column)>.md-auto-horizontal-margin:not(:first-child),
|
|
.layout-gt-sm-row:not(.layout-gt-md-column):not(.layout-gt-lg-column):not(.layout-xl-column)>.md-auto-horizontal-margin:not(:first-child),
|
|
.layout-gt-xs-row:not(.layout-gt-sm-column):not(.layout-gt-md-column):not(.layout-gt-lg-column):not(.layout-xl-column)>.md-auto-horizontal-margin:not(:first-child),
|
|
.layout-row:not(.layout-gt-xs-column):not(.layout-gt-sm-column):not(.layout-gt-md-column):not(.layout-gt-lg-column):not(.layout-xl-column)>.md-auto-horizontal-margin:not(:first-child),
|
|
.layout-xl-row:not(.layout-gt-lg-column):not(.layout-xl-column)>.md-auto-horizontal-margin:not(:first-child) {
|
|
margin-left: 16px;
|
|
}
|
|
|
|
[dir=rtl] .layout-gt-lg-row:not(.layout-gt-lg-column):not(.layout-xl-column)>.md-auto-horizontal-margin:not(:first-child),
|
|
[dir=rtl] .layout-gt-md-row:not(.layout-gt-lg-column):not(.layout-xl-column)>.md-auto-horizontal-margin:not(:first-child),
|
|
[dir=rtl] .layout-gt-sm-row:not(.layout-gt-md-column):not(.layout-gt-lg-column):not(.layout-xl-column)>.md-auto-horizontal-margin:not(:first-child),
|
|
[dir=rtl] .layout-gt-xs-row:not(.layout-gt-sm-column):not(.layout-gt-md-column):not(.layout-gt-lg-column):not(.layout-xl-column)>.md-auto-horizontal-margin:not(:first-child),
|
|
[dir=rtl] .layout-row:not(.layout-gt-xs-column):not(.layout-gt-sm-column):not(.layout-gt-md-column):not(.layout-gt-lg-column):not(.layout-xl-column)>.md-auto-horizontal-margin:not(:first-child),
|
|
[dir=rtl] .layout-xl-row:not(.layout-gt-lg-column):not(.layout-xl-column)>.md-auto-horizontal-margin:not(:first-child) {
|
|
margin-left: 0;
|
|
margin-right: 16px;
|
|
}
|
|
}
|
|
|
|
body,
|
|
html {
|
|
-webkit-tap-highlight-color: rgba(0,0,0,0);
|
|
-webkit-touch-callout: default;
|
|
-webkit-text-size-adjust: 100%;
|
|
-ms-text-size-adjust: 100%;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
min-height: 100%;
|
|
}
|
|
|
|
.md-display-4 {
|
|
font-size: 112px;
|
|
font-weight: 300;
|
|
letter-spacing: -.01em;
|
|
line-height: 112px;
|
|
}
|
|
|
|
.md-display-3 {
|
|
font-size: 56px;
|
|
font-weight: 400;
|
|
letter-spacing: -.005em;
|
|
line-height: 56px;
|
|
}
|
|
|
|
.md-display-2 {
|
|
font-size: 45px;
|
|
font-weight: 400;
|
|
line-height: 64px;
|
|
}
|
|
|
|
.md-display-1 {
|
|
font-size: 34px;
|
|
font-weight: 400;
|
|
line-height: 40px;
|
|
}
|
|
|
|
.md-headline {
|
|
font-size: 24px;
|
|
font-weight: 400;
|
|
line-height: 32px;
|
|
}
|
|
|
|
.md-title {
|
|
font-size: 20px;
|
|
font-weight: 500;
|
|
letter-spacing: .005em;
|
|
}
|
|
|
|
.md-subhead {
|
|
font-size: 16px;
|
|
line-height: 24px;
|
|
}
|
|
|
|
.md-body-1,
|
|
.md-subhead {
|
|
font-weight: 400;
|
|
letter-spacing: .01em;
|
|
}
|
|
|
|
.md-body-1 {
|
|
font-size: 14px;
|
|
line-height: 20px;
|
|
}
|
|
|
|
.md-body-2 {
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
letter-spacing: .01em;
|
|
line-height: 24px;
|
|
}
|
|
|
|
.md-caption {
|
|
font-size: 12px;
|
|
letter-spacing: .02em;
|
|
}
|
|
|
|
.md-button {
|
|
letter-spacing: .01em;
|
|
}
|
|
|
|
button,
|
|
html,
|
|
input,
|
|
select,
|
|
textarea {
|
|
font-family: Roboto,Helvetica Neue,sans-serif;
|
|
}
|
|
|
|
button,
|
|
input,
|
|
select,
|
|
textarea {
|
|
font-size: 100%;
|
|
}
|
|
|
|
.md-panel-outer-wrapper {
|
|
height: 100%;
|
|
left: 0;
|
|
position: absolute;
|
|
top: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
.md-panel-inner-wrapper {
|
|
position: fixed;
|
|
}
|
|
|
|
._md-panel-offscreen {
|
|
left: -9999px;
|
|
}
|
|
|
|
._md-panel-hidden {
|
|
display: none;
|
|
}
|
|
|
|
._md-panel-shown .md-panel {
|
|
opacity: 1;
|
|
transition: none;
|
|
}
|
|
|
|
.md-panel {
|
|
opacity: 0;
|
|
position: relative;
|
|
}
|
|
|
|
.md-panel._md-panel-shown {
|
|
opacity: 1;
|
|
transition: none;
|
|
}
|
|
|
|
.md-panel._md-panel-animate-enter {
|
|
opacity: 1;
|
|
transition: all .3s cubic-bezier(0,0,.2,1);
|
|
}
|
|
|
|
.md-panel._md-panel-animate-leave {
|
|
opacity: 1;
|
|
transition: all .3s cubic-bezier(.4,0,1,1);
|
|
}
|
|
|
|
.md-panel._md-panel-animate-fade-out,
|
|
.md-panel._md-panel-animate-scale-out {
|
|
opacity: 0;
|
|
}
|
|
|
|
.md-panel._md-panel-backdrop {
|
|
height: 100%;
|
|
position: fixed;
|
|
width: 100%;
|
|
}
|
|
|
|
.md-panel._md-opaque-enter {
|
|
opacity: .48;
|
|
transition: opacity .3s cubic-bezier(0,0,.2,1);
|
|
}
|
|
|
|
.md-panel._md-opaque-leave {
|
|
transition: opacity .3s cubic-bezier(.4,0,1,1);
|
|
}
|
|
|
|
._md-panel-fullscreen {
|
|
border-radius: 0;
|
|
left: 0;
|
|
min-height: 100%;
|
|
min-width: 100%;
|
|
position: fixed;
|
|
top: 0;
|
|
}
|
|
|
|
md-autocomplete {
|
|
border-radius: 2px;
|
|
display: block;
|
|
height: 40px;
|
|
min-width: 190px;
|
|
overflow: visible;
|
|
position: relative;
|
|
}
|
|
|
|
md-autocomplete[disabled] input {
|
|
cursor: default;
|
|
}
|
|
|
|
md-autocomplete[md-floating-label] {
|
|
background: transparent;
|
|
border-radius: 0;
|
|
height: auto;
|
|
}
|
|
|
|
md-autocomplete[md-floating-label] md-input-container {
|
|
padding-bottom: 0;
|
|
}
|
|
|
|
md-autocomplete[md-floating-label] md-autocomplete-wrap {
|
|
height: auto;
|
|
}
|
|
|
|
md-autocomplete[md-floating-label] .md-show-clear-button button {
|
|
display: block;
|
|
height: 30px;
|
|
position: absolute;
|
|
right: 0;
|
|
top: 20px;
|
|
width: 30px;
|
|
}
|
|
|
|
md-autocomplete[md-floating-label] .md-show-clear-button input {
|
|
padding-right: 30px;
|
|
}
|
|
|
|
[dir=rtl] md-autocomplete[md-floating-label] .md-show-clear-button input {
|
|
padding-left: 30px;
|
|
padding-right: 0;
|
|
}
|
|
|
|
md-autocomplete md-autocomplete-wrap {
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
flex-direction: row;
|
|
height: 40px;
|
|
overflow: visible;
|
|
position: relative;
|
|
}
|
|
|
|
md-autocomplete md-autocomplete-wrap.md-menu-showing {
|
|
z-index: 51;
|
|
}
|
|
|
|
md-autocomplete md-autocomplete-wrap input,
|
|
md-autocomplete md-autocomplete-wrap md-input-container {
|
|
box-sizing: border-box;
|
|
flex: 1 1 0;
|
|
min-width: 0;
|
|
}
|
|
|
|
md-autocomplete md-autocomplete-wrap md-progress-linear {
|
|
bottom: -2px;
|
|
left: 0;
|
|
position: absolute;
|
|
}
|
|
|
|
md-autocomplete md-autocomplete-wrap md-progress-linear.md-inline {
|
|
bottom: 40px;
|
|
left: 2px;
|
|
right: 2px;
|
|
width: auto;
|
|
}
|
|
|
|
md-autocomplete md-autocomplete-wrap md-progress-linear .md-mode-indeterminate {
|
|
height: 3px;
|
|
left: 0;
|
|
position: absolute;
|
|
top: 0;
|
|
transition: none;
|
|
width: 100%;
|
|
}
|
|
|
|
md-autocomplete md-autocomplete-wrap md-progress-linear .md-mode-indeterminate .md-container {
|
|
height: 3px;
|
|
transition: none;
|
|
}
|
|
|
|
md-autocomplete md-autocomplete-wrap md-progress-linear .md-mode-indeterminate.ng-enter {
|
|
transition: opacity .15s linear;
|
|
}
|
|
|
|
md-autocomplete md-autocomplete-wrap md-progress-linear .md-mode-indeterminate.ng-enter.ng-enter-active {
|
|
opacity: 1;
|
|
}
|
|
|
|
md-autocomplete md-autocomplete-wrap md-progress-linear .md-mode-indeterminate.ng-leave {
|
|
transition: opacity .15s linear;
|
|
}
|
|
|
|
md-autocomplete md-autocomplete-wrap md-progress-linear .md-mode-indeterminate.ng-leave.ng-leave-active {
|
|
opacity: 0;
|
|
}
|
|
|
|
md-autocomplete input:not(.md-input) {
|
|
background: transparent;
|
|
border: none;
|
|
box-shadow: none;
|
|
box-sizing: border-box;
|
|
font-size: 14px;
|
|
height: 40px;
|
|
line-height: 40px;
|
|
outline: none;
|
|
padding: 0 15px;
|
|
width: 100%;
|
|
}
|
|
|
|
md-autocomplete input:not(.md-input)::-ms-clear {
|
|
display: none;
|
|
}
|
|
|
|
md-autocomplete .md-show-clear-button button {
|
|
background: transparent;
|
|
border: none;
|
|
border-radius: 50%;
|
|
cursor: pointer;
|
|
font-size: 12px;
|
|
height: 30px;
|
|
line-height: 20px;
|
|
margin: auto 5px;
|
|
padding: 0;
|
|
position: relative;
|
|
text-align: center;
|
|
width: 30px;
|
|
}
|
|
|
|
md-autocomplete .md-show-clear-button button:after {
|
|
border-radius: 50%;
|
|
bottom: -6px;
|
|
content: "";
|
|
left: -6px;
|
|
opacity: 0;
|
|
position: absolute;
|
|
right: -6px;
|
|
top: -6px;
|
|
transform: scale(0);
|
|
transition: all .4s cubic-bezier(.25,.8,.25,1);
|
|
}
|
|
|
|
md-autocomplete .md-show-clear-button button:focus {
|
|
outline: none;
|
|
}
|
|
|
|
md-autocomplete .md-show-clear-button button:focus:after {
|
|
opacity: 1;
|
|
transform: scale(1);
|
|
}
|
|
|
|
md-autocomplete .md-show-clear-button button md-icon {
|
|
left: 50%;
|
|
position: absolute;
|
|
top: 50%;
|
|
transform: translate3d(-50%,-50%,0) scale(.9);
|
|
}
|
|
|
|
md-autocomplete .md-show-clear-button button md-icon path {
|
|
stroke-width: 0;
|
|
}
|
|
|
|
md-autocomplete .md-show-clear-button button.ng-enter {
|
|
transform: scale(0);
|
|
transition: transform .15s ease-out;
|
|
}
|
|
|
|
md-autocomplete .md-show-clear-button button.ng-enter.ng-enter-active {
|
|
transform: scale(1);
|
|
}
|
|
|
|
md-autocomplete .md-show-clear-button button.ng-leave {
|
|
transition: transform .15s ease-out;
|
|
}
|
|
|
|
md-autocomplete .md-show-clear-button button.ng-leave.ng-leave-active {
|
|
transform: scale(0);
|
|
}
|
|
|
|
@media screen and (-ms-high-contrast:active) {
|
|
md-autocomplete input {
|
|
border: 1px solid #fff;
|
|
}
|
|
|
|
md-autocomplete .md-autocomplete-suggestion:focus {
|
|
color: #fff;
|
|
}
|
|
}
|
|
|
|
.md-standard-list-container.md-autocomplete-suggestions-container,
|
|
.md-virtual-repeat-container.md-autocomplete-suggestions-container {
|
|
box-shadow: 0 2px 5px rgba(0,0,0,.25);
|
|
height: 100%;
|
|
position: absolute;
|
|
z-index: 100;
|
|
}
|
|
|
|
.md-standard-list-container.md-autocomplete-suggestions-container .highlight,
|
|
.md-virtual-repeat-container.md-autocomplete-suggestions-container .highlight {
|
|
font-weight: 700;
|
|
}
|
|
|
|
.md-standard-list-container {
|
|
box-sizing: border-box;
|
|
display: block;
|
|
margin: 0;
|
|
overflow: hidden;
|
|
overflow-y: auto;
|
|
padding: 0;
|
|
}
|
|
|
|
.md-standard-list-container.md-not-found,
|
|
.md-virtual-repeat-container.md-not-found {
|
|
height: 48px;
|
|
}
|
|
|
|
.md-autocomplete-suggestions {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.md-autocomplete-suggestions .md-autocomplete-suggestion {
|
|
font-size: 14px;
|
|
height: 48px;
|
|
line-height: 48px;
|
|
margin: 0;
|
|
overflow: hidden;
|
|
padding: 0 15px;
|
|
text-overflow: ellipsis;
|
|
transition: background .15s linear;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.md-autocomplete-suggestions .md-autocomplete-suggestion:focus {
|
|
outline: none;
|
|
}
|
|
|
|
.md-autocomplete-suggestions .md-autocomplete-suggestion:not(.md-not-found-wrapper) {
|
|
cursor: pointer;
|
|
}
|
|
|
|
@media screen and (-ms-high-contrast:active) {
|
|
.md-autocomplete-suggestions,
|
|
md-autocomplete {
|
|
border: 1px solid #fff;
|
|
}
|
|
}
|
|
|
|
md-backdrop {
|
|
bottom: 0;
|
|
left: 0;
|
|
position: absolute;
|
|
right: 0;
|
|
top: 0;
|
|
transition: opacity .45s;
|
|
z-index: 50;
|
|
}
|
|
|
|
md-backdrop.md-menu-backdrop {
|
|
position: fixed!important;
|
|
z-index: 99;
|
|
}
|
|
|
|
md-backdrop.md-select-backdrop {
|
|
transition-duration: 0;
|
|
z-index: 81;
|
|
}
|
|
|
|
md-backdrop.md-dialog-backdrop {
|
|
z-index: 79;
|
|
}
|
|
|
|
md-backdrop.md-bottom-sheet-backdrop {
|
|
z-index: 69;
|
|
}
|
|
|
|
md-backdrop.md-sidenav-backdrop {
|
|
z-index: 59;
|
|
}
|
|
|
|
md-backdrop.md-click-catcher {
|
|
position: absolute;
|
|
}
|
|
|
|
md-backdrop.md-opaque {
|
|
opacity: .48;
|
|
}
|
|
|
|
md-backdrop.md-opaque.ng-enter {
|
|
opacity: 0;
|
|
}
|
|
|
|
md-backdrop.md-opaque.ng-enter.md-opaque.ng-enter-active {
|
|
opacity: .48;
|
|
}
|
|
|
|
md-backdrop.md-opaque.ng-leave {
|
|
opacity: .48;
|
|
transition: opacity .4s;
|
|
}
|
|
|
|
md-backdrop.md-opaque.ng-leave.md-opaque.ng-leave-active {
|
|
opacity: 0;
|
|
}
|
|
|
|
md-bottom-sheet {
|
|
border-top-style: solid;
|
|
border-top-width: 1px;
|
|
bottom: 0;
|
|
left: 0;
|
|
padding: 8px 16px 88px;
|
|
position: absolute;
|
|
right: 0;
|
|
transform: translate3d(0,80px,0);
|
|
transition: all .4s cubic-bezier(.25,.8,.25,1);
|
|
transition-property: transform;
|
|
z-index: 70;
|
|
}
|
|
|
|
md-bottom-sheet.md-has-header {
|
|
padding-top: 0;
|
|
}
|
|
|
|
md-bottom-sheet.ng-enter {
|
|
opacity: 0;
|
|
transform: translate3d(0,100%,0);
|
|
}
|
|
|
|
md-bottom-sheet.ng-enter-active {
|
|
display: block;
|
|
opacity: 1;
|
|
transform: translate3d(0,80px,0)!important;
|
|
}
|
|
|
|
md-bottom-sheet.ng-leave-active {
|
|
transform: translate3d(0,100%,0)!important;
|
|
transition: all .3s cubic-bezier(.55,0,.55,.2);
|
|
}
|
|
|
|
md-bottom-sheet .md-subheader {
|
|
background-color: transparent;
|
|
font-family: Roboto,Helvetica Neue,sans-serif;
|
|
line-height: 56px;
|
|
padding: 0;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
md-bottom-sheet md-inline-icon {
|
|
fill: #444;
|
|
display: inline-block;
|
|
height: 24px;
|
|
width: 24px;
|
|
}
|
|
|
|
md-bottom-sheet md-list-item {
|
|
display: flex;
|
|
outline: none;
|
|
}
|
|
|
|
md-bottom-sheet md-list-item:hover {
|
|
cursor: pointer;
|
|
}
|
|
|
|
md-bottom-sheet.md-list md-list-item {
|
|
align-items: center;
|
|
height: 48px;
|
|
padding: 0;
|
|
}
|
|
|
|
md-bottom-sheet.md-grid {
|
|
padding-left: 24px;
|
|
padding-right: 24px;
|
|
padding-top: 0;
|
|
}
|
|
|
|
md-bottom-sheet.md-grid md-list {
|
|
align-items: center;
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
transition: all .5s;
|
|
}
|
|
|
|
md-bottom-sheet.md-grid md-list-item {
|
|
align-items: center;
|
|
flex-direction: column;
|
|
height: 96px;
|
|
margin-bottom: 8px;
|
|
margin-top: 8px;
|
|
transition: all .5s;
|
|
}
|
|
|
|
@media (max-width:960px) {
|
|
md-bottom-sheet.md-grid md-list-item {
|
|
flex: 1 1 33.3333333333%;
|
|
max-width: 33.3333333333%;
|
|
}
|
|
|
|
md-bottom-sheet.md-grid md-list-item:nth-of-type(3n+1) {
|
|
align-items: flex-start;
|
|
}
|
|
|
|
md-bottom-sheet.md-grid md-list-item:nth-of-type(3n) {
|
|
align-items: flex-end;
|
|
}
|
|
}
|
|
|
|
@media (min-width:960px) and (max-width:1279px) {
|
|
md-bottom-sheet.md-grid md-list-item {
|
|
flex: 1 1 25%;
|
|
max-width: 25%;
|
|
}
|
|
}
|
|
|
|
@media (min-width:1280px) and (max-width:1919px) {
|
|
md-bottom-sheet.md-grid md-list-item {
|
|
flex: 1 1 16.6666666667%;
|
|
max-width: 16.6666666667%;
|
|
}
|
|
}
|
|
|
|
@media (min-width:1920px) {
|
|
md-bottom-sheet.md-grid md-list-item {
|
|
flex: 1 1 14.2857142857%;
|
|
max-width: 14.2857142857%;
|
|
}
|
|
}
|
|
|
|
md-bottom-sheet.md-grid md-list-item:before {
|
|
display: none;
|
|
}
|
|
|
|
md-bottom-sheet.md-grid md-list-item .md-list-item-content {
|
|
align-items: center;
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding-bottom: 16px;
|
|
width: 48px;
|
|
}
|
|
|
|
md-bottom-sheet.md-grid md-list-item .md-grid-item-content {
|
|
align-items: center;
|
|
border: 1px solid transparent;
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 80px;
|
|
}
|
|
|
|
md-bottom-sheet.md-grid md-list-item .md-grid-text {
|
|
font-size: 13px;
|
|
font-weight: 400;
|
|
line-height: 16px;
|
|
margin: 0;
|
|
padding-top: 8px;
|
|
text-align: center;
|
|
text-transform: none;
|
|
white-space: nowrap;
|
|
width: 64px;
|
|
}
|
|
|
|
@media screen and (-ms-high-contrast:active) {
|
|
md-bottom-sheet {
|
|
border: 1px solid #fff;
|
|
}
|
|
}
|
|
|
|
button.md-button::-moz-focus-inner {
|
|
border: 0;
|
|
}
|
|
|
|
.md-button {
|
|
align-items: center;
|
|
background: transparent;
|
|
border: 0;
|
|
border-radius: 2px;
|
|
box-sizing: border-box;
|
|
color: currentColor;
|
|
cursor: pointer;
|
|
display: inline-block;
|
|
font-family: inherit;
|
|
font-size: 14px;
|
|
font-style: inherit;
|
|
font-variant: inherit;
|
|
font-weight: 500;
|
|
line-height: 36px;
|
|
margin: 6px 8px;
|
|
min-height: 36px;
|
|
min-width: 88px;
|
|
outline: none;
|
|
overflow: hidden;
|
|
padding: 0 8px;
|
|
position: relative;
|
|
text-align: center;
|
|
text-decoration: none;
|
|
text-transform: uppercase;
|
|
transition: box-shadow .4s cubic-bezier(.25,.8,.25,1),background-color .4s cubic-bezier(.25,.8,.25,1);
|
|
-webkit-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
vertical-align: middle;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.md-dense :not(.md-dense-disabled) .md-button:not(.md-dense-disabled),
|
|
.md-dense>.md-button:not(.md-dense-disabled) {
|
|
font-size: 13px;
|
|
line-height: 32px;
|
|
min-height: 32px;
|
|
}
|
|
|
|
.md-button:focus {
|
|
outline: none;
|
|
}
|
|
|
|
.md-button:focus,
|
|
.md-button:hover {
|
|
text-decoration: none;
|
|
}
|
|
|
|
.md-button.ng-hide,
|
|
.md-button.ng-leave {
|
|
transition: none;
|
|
}
|
|
|
|
.md-button.md-cornered {
|
|
border-radius: 0;
|
|
}
|
|
|
|
.md-button.md-icon {
|
|
background: none;
|
|
padding: 0;
|
|
}
|
|
|
|
.md-button.md-raised:not([disabled]) {
|
|
box-shadow: 0 2px 5px 0 rgba(0,0,0,.26);
|
|
}
|
|
|
|
.md-button.md-icon-button {
|
|
border-radius: 50%;
|
|
height: 40px;
|
|
line-height: 24px;
|
|
margin: 0 6px;
|
|
min-width: 0;
|
|
padding: 8px;
|
|
width: 40px;
|
|
}
|
|
|
|
.md-button.md-fab {
|
|
background-clip: padding-box;
|
|
border-radius: 50%;
|
|
box-shadow: 0 2px 5px 0 rgba(0,0,0,.26);
|
|
height: 56px;
|
|
line-height: 56px;
|
|
min-width: 0;
|
|
overflow: hidden;
|
|
transition: all .3s cubic-bezier(.55,0,.55,.2);
|
|
transition-property: background-color,box-shadow,transform;
|
|
vertical-align: middle;
|
|
width: 56px;
|
|
z-index: 20;
|
|
}
|
|
|
|
.md-button.md-fab.md-fab-bottom-right {
|
|
bottom: 20px;
|
|
left: auto;
|
|
position: absolute;
|
|
right: 20px;
|
|
top: auto;
|
|
}
|
|
|
|
.md-button.md-fab.md-fab-bottom-left {
|
|
bottom: 20px;
|
|
left: 20px;
|
|
position: absolute;
|
|
right: auto;
|
|
top: auto;
|
|
}
|
|
|
|
.md-button.md-fab.md-fab-top-right {
|
|
bottom: auto;
|
|
left: auto;
|
|
position: absolute;
|
|
right: 20px;
|
|
top: 20px;
|
|
}
|
|
|
|
.md-button.md-fab.md-fab-top-left {
|
|
bottom: auto;
|
|
left: 20px;
|
|
position: absolute;
|
|
right: auto;
|
|
top: 20px;
|
|
}
|
|
|
|
.md-button.md-fab.md-mini {
|
|
height: 40px;
|
|
line-height: 40px;
|
|
width: 40px;
|
|
}
|
|
|
|
.md-button.md-fab.ng-hide,
|
|
.md-button.md-fab.ng-leave {
|
|
transition: none;
|
|
}
|
|
|
|
.md-button.md-fab[disabled] {
|
|
box-shadow: none;
|
|
}
|
|
|
|
.md-button:not([disabled]).md-fab.md-focused,
|
|
.md-button:not([disabled]).md-raised.md-focused {
|
|
box-shadow: 0 2px 5px 0 rgba(0,0,0,.26);
|
|
}
|
|
|
|
.md-button:not([disabled]).md-fab:active,
|
|
.md-button:not([disabled]).md-raised:active {
|
|
box-shadow: 0 4px 8px 0 rgba(0,0,0,.4);
|
|
}
|
|
|
|
.md-button .md-ripple-container {
|
|
background-clip: padding-box;
|
|
border-radius: inherit;
|
|
overflow: hidden;
|
|
-webkit-transform: translateZ(0);
|
|
}
|
|
|
|
.md-button.md-icon-button md-icon,
|
|
button.md-button.md-fab md-icon {
|
|
display: block;
|
|
}
|
|
|
|
.md-toast-open-top .md-button.md-fab-top-left,
|
|
.md-toast-open-top .md-button.md-fab-top-right {
|
|
transform: translate3d(0,42px,0);
|
|
transition: all .4s cubic-bezier(.25,.8,.25,1);
|
|
}
|
|
|
|
.md-toast-open-top .md-button.md-fab-top-left:not([disabled]).md-focused,
|
|
.md-toast-open-top .md-button.md-fab-top-left:not([disabled]):hover,
|
|
.md-toast-open-top .md-button.md-fab-top-right:not([disabled]).md-focused,
|
|
.md-toast-open-top .md-button.md-fab-top-right:not([disabled]):hover {
|
|
transform: translate3d(0,41px,0);
|
|
}
|
|
|
|
.md-toast-open-bottom .md-button.md-fab-bottom-left,
|
|
.md-toast-open-bottom .md-button.md-fab-bottom-right {
|
|
transform: translate3d(0,-42px,0);
|
|
transition: all .4s cubic-bezier(.25,.8,.25,1);
|
|
}
|
|
|
|
.md-toast-open-bottom .md-button.md-fab-bottom-left:not([disabled]).md-focused,
|
|
.md-toast-open-bottom .md-button.md-fab-bottom-left:not([disabled]):hover,
|
|
.md-toast-open-bottom .md-button.md-fab-bottom-right:not([disabled]).md-focused,
|
|
.md-toast-open-bottom .md-button.md-fab-bottom-right:not([disabled]):hover {
|
|
transform: translate3d(0,-43px,0);
|
|
}
|
|
|
|
.md-button-group {
|
|
display: flex;
|
|
flex: 1;
|
|
width: 100%;
|
|
}
|
|
|
|
.md-button-group>.md-button {
|
|
border-radius: 0;
|
|
border-width: 1px 0 1px 1px;
|
|
display: block;
|
|
flex: 1;
|
|
overflow: hidden;
|
|
text-align: center;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
width: 0;
|
|
}
|
|
|
|
.md-button-group>.md-button:first-child {
|
|
border-radius: 2px 0 0 2px;
|
|
}
|
|
|
|
.md-button-group>.md-button:last-child {
|
|
border-radius: 0 2px 2px 0;
|
|
border-right-width: 1px;
|
|
}
|
|
|
|
@media screen and (-ms-high-contrast:active) {
|
|
.md-button.md-fab,
|
|
.md-button.md-raised {
|
|
border: 1px solid #fff;
|
|
}
|
|
}
|
|
|
|
md-card {
|
|
box-shadow: 0 1px 3px 0 rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 2px 1px -1px rgba(0,0,0,.12);
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin: 8px;
|
|
}
|
|
|
|
md-card md-card-header {
|
|
display: flex;
|
|
flex-direction: row;
|
|
padding: 16px;
|
|
}
|
|
|
|
md-card md-card-header:first-child md-card-avatar {
|
|
margin-right: 12px;
|
|
}
|
|
|
|
[dir=rtl] md-card md-card-header:first-child md-card-avatar {
|
|
margin-left: 12px;
|
|
margin-right: auto;
|
|
}
|
|
|
|
md-card md-card-header:last-child md-card-avatar {
|
|
margin-left: 12px;
|
|
}
|
|
|
|
[dir=rtl] md-card md-card-header:last-child md-card-avatar {
|
|
margin-left: auto;
|
|
margin-right: 12px;
|
|
}
|
|
|
|
md-card md-card-header md-card-avatar {
|
|
height: 40px;
|
|
width: 40px;
|
|
}
|
|
|
|
md-card md-card-header md-card-avatar .md-user-avatar,
|
|
md-card md-card-header md-card-avatar md-icon {
|
|
border-radius: 50%;
|
|
}
|
|
|
|
md-card md-card-header md-card-avatar md-icon {
|
|
padding: 8px;
|
|
}
|
|
|
|
md-card md-card-header md-card-avatar md-icon>svg {
|
|
height: inherit;
|
|
width: inherit;
|
|
}
|
|
|
|
md-card md-card-header md-card-avatar+md-card-header-text {
|
|
max-height: 40px;
|
|
}
|
|
|
|
md-card md-card-header md-card-avatar+md-card-header-text .md-title {
|
|
font-size: 14px;
|
|
}
|
|
|
|
md-card md-card-header md-card-header-text {
|
|
display: flex;
|
|
flex: 1;
|
|
flex-direction: column;
|
|
}
|
|
|
|
md-card md-card-header md-card-header-text .md-subhead {
|
|
font-size: 14px;
|
|
}
|
|
|
|
md-card>img,
|
|
md-card>md-card-header img,
|
|
md-card md-card-title-media img {
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
flex: 0 0 auto;
|
|
height: auto;
|
|
width: 100%;
|
|
}
|
|
|
|
md-card md-card-title {
|
|
display: flex;
|
|
flex: 1 1 auto;
|
|
flex-direction: row;
|
|
padding: 24px 16px 16px;
|
|
}
|
|
|
|
md-card md-card-title+md-card-content {
|
|
padding-top: 0;
|
|
}
|
|
|
|
md-card md-card-title md-card-title-text {
|
|
display: flex;
|
|
flex: 1;
|
|
flex-direction: column;
|
|
}
|
|
|
|
md-card md-card-title md-card-title-text .md-subhead {
|
|
font-size: 14px;
|
|
padding-top: 0;
|
|
}
|
|
|
|
md-card md-card-title md-card-title-text:only-child .md-subhead {
|
|
padding-top: 12px;
|
|
}
|
|
|
|
md-card md-card-title md-card-title-media {
|
|
margin-top: -8px;
|
|
}
|
|
|
|
md-card md-card-title md-card-title-media .md-media-sm {
|
|
height: 80px;
|
|
width: 80px;
|
|
}
|
|
|
|
md-card md-card-title md-card-title-media .md-media-md {
|
|
height: 112px;
|
|
width: 112px;
|
|
}
|
|
|
|
md-card md-card-title md-card-title-media .md-media-lg {
|
|
height: 152px;
|
|
width: 152px;
|
|
}
|
|
|
|
md-card md-card-content {
|
|
display: block;
|
|
padding: 16px;
|
|
}
|
|
|
|
md-card md-card-content>p:first-child {
|
|
margin-top: 0;
|
|
}
|
|
|
|
md-card md-card-content>p:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
md-card md-card-content .md-media-xl {
|
|
height: 240px;
|
|
width: 240px;
|
|
}
|
|
|
|
md-card md-card-actions {
|
|
margin: 8px;
|
|
}
|
|
|
|
md-card md-card-actions.layout-column .md-button:not(.md-icon-button) {
|
|
margin: 2px 0;
|
|
}
|
|
|
|
md-card md-card-actions.layout-column .md-button:not(.md-icon-button):first-of-type {
|
|
margin-top: 0;
|
|
}
|
|
|
|
md-card md-card-actions.layout-column .md-button:not(.md-icon-button):last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
md-card md-card-actions.layout-column .md-button.md-icon-button {
|
|
margin-bottom: 6px;
|
|
margin-top: 6px;
|
|
}
|
|
|
|
md-card md-card-actions md-card-icon-actions {
|
|
display: flex;
|
|
flex: 1;
|
|
flex-direction: row;
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
md-card md-card-actions:not(.layout-column) .md-button:not(.md-icon-button) {
|
|
margin: 0 4px;
|
|
}
|
|
|
|
md-card md-card-actions:not(.layout-column) .md-button:not(.md-icon-button):first-of-type {
|
|
margin-left: 0;
|
|
}
|
|
|
|
[dir=rtl] md-card md-card-actions:not(.layout-column) .md-button:not(.md-icon-button):first-of-type {
|
|
margin-left: auto;
|
|
margin-right: 0;
|
|
}
|
|
|
|
md-card md-card-actions:not(.layout-column) .md-button:not(.md-icon-button):last-of-type {
|
|
margin-right: 0;
|
|
}
|
|
|
|
[dir=rtl] md-card md-card-actions:not(.layout-column) .md-button:not(.md-icon-button):last-of-type {
|
|
margin-left: 0;
|
|
margin-right: auto;
|
|
}
|
|
|
|
md-card md-card-actions:not(.layout-column) .md-button.md-icon-button {
|
|
margin-left: 6px;
|
|
margin-right: 6px;
|
|
}
|
|
|
|
md-card md-card-actions:not(.layout-column) .md-button.md-icon-button:first-of-type {
|
|
margin-left: 12px;
|
|
}
|
|
|
|
[dir=rtl] md-card md-card-actions:not(.layout-column) .md-button.md-icon-button:first-of-type {
|
|
margin-left: auto;
|
|
margin-right: 12px;
|
|
}
|
|
|
|
md-card md-card-actions:not(.layout-column) .md-button.md-icon-button:last-of-type {
|
|
margin-right: 12px;
|
|
}
|
|
|
|
[dir=rtl] md-card md-card-actions:not(.layout-column) .md-button.md-icon-button:last-of-type {
|
|
margin-left: 12px;
|
|
margin-right: auto;
|
|
}
|
|
|
|
md-card md-card-actions:not(.layout-column) .md-button+md-card-icon-actions {
|
|
display: flex;
|
|
flex: 1;
|
|
flex-direction: row;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
md-card md-card-footer {
|
|
margin-top: auto;
|
|
padding: 16px;
|
|
}
|
|
|
|
@media screen and (-ms-high-contrast:active) {
|
|
md-card {
|
|
border: 1px solid #fff;
|
|
}
|
|
}
|
|
|
|
.md-image-no-fill>img {
|
|
height: auto;
|
|
width: auto;
|
|
}
|
|
|
|
.md-inline-form md-checkbox {
|
|
margin-bottom: auto;
|
|
margin-top: 14px;
|
|
}
|
|
|
|
md-checkbox {
|
|
box-sizing: border-box;
|
|
cursor: pointer;
|
|
display: inline-block;
|
|
min-height: 48px;
|
|
min-width: 18px;
|
|
outline: none;
|
|
position: relative;
|
|
-webkit-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.md-dense :not(.md-dense-disabled) md-checkbox:not(.md-dense-disabled),
|
|
.md-dense>md-checkbox:not(.md-dense-disabled) {
|
|
min-height: 36px;
|
|
}
|
|
|
|
md-checkbox.md-focused:not([disabled]) .md-container:before {
|
|
bottom: -8px;
|
|
left: -8px;
|
|
right: -8px;
|
|
top: -8px;
|
|
}
|
|
|
|
md-checkbox.md-focused:not([disabled]):not(.md-checked) .md-container:before {
|
|
background-color: rgba(0,0,0,.12);
|
|
}
|
|
|
|
md-checkbox .md-container {
|
|
box-sizing: border-box;
|
|
display: inline-block;
|
|
height: 18px;
|
|
left: 0;
|
|
position: absolute;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
width: 18px;
|
|
}
|
|
|
|
[dir=rtl] md-checkbox .md-container {
|
|
left: auto;
|
|
right: 0;
|
|
}
|
|
|
|
md-checkbox .md-container:before {
|
|
background-color: transparent;
|
|
border-radius: 50%;
|
|
bottom: 0;
|
|
box-sizing: border-box;
|
|
content: "";
|
|
display: block;
|
|
height: auto;
|
|
left: 0;
|
|
position: absolute;
|
|
right: 0;
|
|
top: 0;
|
|
transition: all .5s;
|
|
width: auto;
|
|
}
|
|
|
|
md-checkbox .md-container:after {
|
|
bottom: -10px;
|
|
box-sizing: border-box;
|
|
content: "";
|
|
left: -10px;
|
|
position: absolute;
|
|
right: -10px;
|
|
top: -10px;
|
|
}
|
|
|
|
md-checkbox .md-container .md-ripple-container {
|
|
bottom: -15px;
|
|
display: block;
|
|
height: auto;
|
|
left: -15px;
|
|
position: absolute;
|
|
right: -15px;
|
|
top: -15px;
|
|
width: auto;
|
|
}
|
|
|
|
md-checkbox .md-icon {
|
|
border-radius: 2px;
|
|
border-style: solid;
|
|
border-width: 2px;
|
|
box-sizing: border-box;
|
|
height: 18px;
|
|
left: 0;
|
|
position: absolute;
|
|
top: 0;
|
|
transition: .24s;
|
|
width: 18px;
|
|
}
|
|
|
|
md-checkbox.md-checked .md-icon {
|
|
border-color: transparent;
|
|
}
|
|
|
|
md-checkbox.md-checked .md-icon:after {
|
|
border-style: solid;
|
|
border-width: 2px;
|
|
border-left: 0;
|
|
border-top: 0;
|
|
box-sizing: border-box;
|
|
content: "";
|
|
display: table;
|
|
height: 12px;
|
|
left: 4px;
|
|
position: absolute;
|
|
top: 0;
|
|
transform: rotate(45deg);
|
|
width: 6px;
|
|
}
|
|
|
|
md-checkbox[disabled] {
|
|
cursor: default;
|
|
}
|
|
|
|
md-checkbox.md-indeterminate .md-icon:after {
|
|
border-style: solid;
|
|
border-width: 2px;
|
|
border-left: 0;
|
|
border-top: 0;
|
|
box-sizing: border-box;
|
|
content: "";
|
|
display: table;
|
|
height: 2px;
|
|
left: 50%;
|
|
position: absolute;
|
|
top: 50%;
|
|
transform: translate(-50%,-50%);
|
|
width: 10.8px;
|
|
}
|
|
|
|
md-checkbox .md-container {
|
|
left: auto;
|
|
margin: 21px 3px 3px;
|
|
right: auto;
|
|
top: auto;
|
|
}
|
|
|
|
md-checkbox .md-label {
|
|
box-sizing: border-box;
|
|
display: inline-block;
|
|
margin-bottom: auto;
|
|
margin-left: 36px;
|
|
margin-top: 10px;
|
|
position: relative;
|
|
-webkit-user-select: text;
|
|
-moz-user-select: text;
|
|
-ms-user-select: text;
|
|
user-select: text;
|
|
vertical-align: middle;
|
|
white-space: normal;
|
|
}
|
|
|
|
[dir=rtl] md-checkbox .md-label {
|
|
margin-left: 0;
|
|
margin-right: 36px;
|
|
}
|
|
|
|
md-checkbox .md-label:empty {
|
|
margin-left: 24px;
|
|
margin-right: 0;
|
|
}
|
|
|
|
[dir=rtl] md-checkbox .md-label:empty {
|
|
margin-left: 0;
|
|
margin-right: 24px;
|
|
}
|
|
|
|
md-input-container .md-checkbox-link-label {
|
|
box-sizing: border-box;
|
|
cursor: pointer;
|
|
display: inline-block;
|
|
margin-left: 18px;
|
|
margin-right: 0;
|
|
position: relative;
|
|
top: -21px;
|
|
-webkit-user-select: text;
|
|
-moz-user-select: text;
|
|
-ms-user-select: text;
|
|
user-select: text;
|
|
vertical-align: middle;
|
|
white-space: normal;
|
|
}
|
|
|
|
[dir=rtl] md-input-container .md-checkbox-link-label {
|
|
margin-left: 0;
|
|
margin-right: 18px;
|
|
}
|
|
|
|
.md-contact-chips .md-chips md-chip {
|
|
padding: 0 25px 0 0;
|
|
}
|
|
|
|
[dir=rtl] .md-contact-chips .md-chips md-chip {
|
|
padding: 0 0 0 25px;
|
|
}
|
|
|
|
.md-contact-chips .md-chips md-chip .md-contact-avatar {
|
|
float: left;
|
|
}
|
|
|
|
[dir=rtl] .md-contact-chips .md-chips md-chip .md-contact-avatar {
|
|
float: right;
|
|
}
|
|
|
|
.md-contact-chips .md-chips md-chip .md-contact-avatar img {
|
|
border-radius: 16px;
|
|
height: 32px;
|
|
}
|
|
|
|
.md-contact-chips .md-chips md-chip .md-contact-name {
|
|
display: inline-block;
|
|
height: 32px;
|
|
margin-left: 8px;
|
|
}
|
|
|
|
[dir=rtl] .md-contact-chips .md-chips md-chip .md-contact-name {
|
|
margin-left: auto;
|
|
margin-right: 8px;
|
|
}
|
|
|
|
.md-contact-suggestion {
|
|
height: 56px;
|
|
}
|
|
|
|
.md-contact-suggestion img {
|
|
border-radius: 20px;
|
|
height: 40px;
|
|
margin-top: 8px;
|
|
}
|
|
|
|
.md-contact-suggestion .md-contact-name {
|
|
margin-left: 8px;
|
|
width: 120px;
|
|
}
|
|
|
|
[dir=rtl] .md-contact-suggestion .md-contact-name {
|
|
margin-left: auto;
|
|
margin-right: 8px;
|
|
}
|
|
|
|
.md-contact-suggestion .md-contact-email,
|
|
.md-contact-suggestion .md-contact-name {
|
|
display: inline-block;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.md-contact-chips-suggestions li {
|
|
height: 100%;
|
|
}
|
|
|
|
.md-chips,
|
|
md-chips {
|
|
display: flex;
|
|
}
|
|
|
|
.md-chips {
|
|
flex-grow: 1;
|
|
flex-wrap: wrap;
|
|
font-family: Roboto,Helvetica Neue,sans-serif;
|
|
font-size: 13px;
|
|
padding: 0 0 8px 3px;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.md-chips:after {
|
|
clear: both;
|
|
content: "";
|
|
display: table;
|
|
}
|
|
|
|
[dir=rtl] .md-chips {
|
|
padding: 0 3px 8px 0;
|
|
}
|
|
|
|
.md-chips.md-readonly .md-chip-input-container {
|
|
min-height: 32px;
|
|
}
|
|
|
|
.md-chips:not(.md-readonly) {
|
|
cursor: text;
|
|
}
|
|
|
|
.md-chips.md-removable md-chip {
|
|
padding-right: 28px;
|
|
}
|
|
|
|
[dir=rtl] .md-chips.md-removable md-chip {
|
|
padding-left: 28px;
|
|
padding-right: 0;
|
|
}
|
|
|
|
.md-chips.md-removable md-chip .md-chip-content {
|
|
padding-right: 4px;
|
|
}
|
|
|
|
[dir=rtl] .md-chips.md-removable md-chip .md-chip-content {
|
|
padding-left: 4px;
|
|
padding-right: 0;
|
|
}
|
|
|
|
.md-chips md-chip {
|
|
border-radius: 16px;
|
|
box-sizing: border-box;
|
|
cursor: default;
|
|
display: block;
|
|
float: left;
|
|
height: 32px;
|
|
line-height: 32px;
|
|
margin: 8px 8px 0 0;
|
|
max-width: 100%;
|
|
padding: 0 12px;
|
|
position: relative;
|
|
}
|
|
|
|
[dir=rtl] .md-chips md-chip {
|
|
float: right;
|
|
margin: 8px 0 0 8px;
|
|
}
|
|
|
|
.md-chips md-chip .md-chip-content {
|
|
display: block;
|
|
float: left;
|
|
max-width: 100%;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
[dir=rtl] .md-chips md-chip .md-chip-content {
|
|
float: right;
|
|
}
|
|
|
|
.md-chips md-chip .md-chip-content:focus {
|
|
outline: none;
|
|
}
|
|
|
|
.md-chips md-chip._md-chip-content-edit-is-enabled {
|
|
-webkit-user-select: none;
|
|
-moz-user-select: none;
|
|
-khtml-user-select: none;
|
|
-ms-user-select: none;
|
|
}
|
|
|
|
.md-chips md-chip .md-chip-remove-container {
|
|
line-height: 22px;
|
|
position: absolute;
|
|
right: 0;
|
|
}
|
|
|
|
[dir=rtl] .md-chips md-chip .md-chip-remove-container {
|
|
left: 0;
|
|
right: auto;
|
|
}
|
|
|
|
.md-chips md-chip .md-chip-remove {
|
|
background: transparent;
|
|
border: none;
|
|
box-shadow: none;
|
|
height: 32px;
|
|
margin: 0;
|
|
min-width: 0;
|
|
padding: 0;
|
|
position: relative;
|
|
text-align: center;
|
|
width: 32px;
|
|
}
|
|
|
|
.md-chips md-chip .md-chip-remove md-icon {
|
|
height: 18px;
|
|
left: 50%;
|
|
min-height: 18px;
|
|
min-width: 18px;
|
|
position: absolute;
|
|
top: 50%;
|
|
transform: translate3d(-50%,-50%,0);
|
|
width: 18px;
|
|
}
|
|
|
|
.md-chips .md-chip-input-container {
|
|
display: block;
|
|
flex-grow: 1;
|
|
float: left;
|
|
line-height: 32px;
|
|
margin: 8px 8px 0 0;
|
|
padding: 0;
|
|
}
|
|
|
|
[dir=rtl] .md-chips .md-chip-input-container {
|
|
float: right;
|
|
margin: 8px 0 0 8px;
|
|
}
|
|
|
|
.md-chips .md-chip-input-container input {
|
|
width: 100%;
|
|
}
|
|
|
|
.md-chips .md-chip-input-container input:not([type]),
|
|
.md-chips .md-chip-input-container input[type=email],
|
|
.md-chips .md-chip-input-container input[type=number],
|
|
.md-chips .md-chip-input-container input[type=tel],
|
|
.md-chips .md-chip-input-container input[type=text],
|
|
.md-chips .md-chip-input-container input[type=url] {
|
|
border: 0;
|
|
height: 32px;
|
|
line-height: 32px;
|
|
padding: 0;
|
|
}
|
|
|
|
.md-chips .md-chip-input-container input:not([type]):focus,
|
|
.md-chips .md-chip-input-container input[type=email]:focus,
|
|
.md-chips .md-chip-input-container input[type=number]:focus,
|
|
.md-chips .md-chip-input-container input[type=tel]:focus,
|
|
.md-chips .md-chip-input-container input[type=text]:focus,
|
|
.md-chips .md-chip-input-container input[type=url]:focus {
|
|
outline: none;
|
|
}
|
|
|
|
.md-chips .md-chip-input-container md-autocomplete,
|
|
.md-chips .md-chip-input-container md-autocomplete-wrap {
|
|
background: transparent;
|
|
}
|
|
|
|
.md-chips .md-chip-input-container md-autocomplete md-autocomplete-wrap {
|
|
box-shadow: none;
|
|
}
|
|
|
|
.md-chips .md-chip-input-container input {
|
|
border: 0;
|
|
height: 32px;
|
|
line-height: 32px;
|
|
padding: 0;
|
|
}
|
|
|
|
.md-chips .md-chip-input-container input:focus {
|
|
outline: none;
|
|
}
|
|
|
|
.md-chips .md-chip-input-container md-autocomplete,
|
|
.md-chips .md-chip-input-container md-autocomplete-wrap {
|
|
height: 32px;
|
|
}
|
|
|
|
.md-chips .md-chip-input-container md-autocomplete {
|
|
box-shadow: none;
|
|
}
|
|
|
|
.md-chips .md-chip-input-container md-autocomplete input {
|
|
position: relative;
|
|
}
|
|
|
|
.md-chips .md-chip-input-container:not(:first-child) {
|
|
margin: 8px 8px 0 0;
|
|
}
|
|
|
|
[dir=rtl] .md-chips .md-chip-input-container:not(:first-child) {
|
|
margin: 8px 0 0 8px;
|
|
}
|
|
|
|
.md-chips .md-chip-input-container input {
|
|
background: transparent;
|
|
border-width: 0;
|
|
}
|
|
|
|
.md-chips md-autocomplete button {
|
|
display: none;
|
|
}
|
|
|
|
@media screen and (-ms-high-contrast:active) {
|
|
.md-chip-input-container,
|
|
md-chip {
|
|
border: 1px solid #fff;
|
|
}
|
|
|
|
.md-chip-input-container md-autocomplete {
|
|
border: none;
|
|
}
|
|
}
|
|
|
|
md-content {
|
|
-webkit-overflow-scrolling: touch;
|
|
display: block;
|
|
overflow: auto;
|
|
position: relative;
|
|
}
|
|
|
|
md-content[md-scroll-y] {
|
|
overflow-x: hidden;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
md-content[md-scroll-x] {
|
|
overflow-x: auto;
|
|
overflow-y: hidden;
|
|
}
|
|
|
|
@media print {
|
|
md-content {
|
|
overflow: visible!important;
|
|
}
|
|
}
|
|
|
|
md-calendar {
|
|
font-size: 13px;
|
|
-webkit-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
}
|
|
|
|
.md-calendar-scroll-mask {
|
|
display: inline-block;
|
|
height: 308px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.md-calendar-scroll-mask .md-virtual-repeat-scroller {
|
|
-webkit-overflow-scrolling: touch;
|
|
overflow-y: scroll;
|
|
}
|
|
|
|
.md-calendar-scroll-mask .md-virtual-repeat-scroller::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
|
|
.md-calendar-scroll-mask .md-virtual-repeat-offsetter {
|
|
width: 100%;
|
|
}
|
|
|
|
.md-calendar-scroll-container {
|
|
box-shadow: inset -3px 3px 6px rgba(0,0,0,.2);
|
|
display: inline-block;
|
|
height: 308px;
|
|
width: 346px;
|
|
}
|
|
|
|
.md-calendar-date {
|
|
border: none;
|
|
box-sizing: content-box;
|
|
height: 44px;
|
|
padding: 0;
|
|
text-align: center;
|
|
width: 44px;
|
|
}
|
|
|
|
.md-calendar-date:first-child {
|
|
padding-left: 16px;
|
|
}
|
|
|
|
[dir=rtl] .md-calendar-date:first-child {
|
|
padding-left: 0;
|
|
padding-right: 16px;
|
|
}
|
|
|
|
.md-calendar-date:last-child {
|
|
padding-right: 16px;
|
|
}
|
|
|
|
[dir=rtl] .md-calendar-date:last-child {
|
|
padding-left: 16px;
|
|
padding-right: 0;
|
|
}
|
|
|
|
.md-calendar-date.md-calendar-date-disabled {
|
|
cursor: default;
|
|
}
|
|
|
|
.md-calendar-date-selection-indicator {
|
|
border-radius: 50%;
|
|
display: inline-block;
|
|
height: 40px;
|
|
line-height: 40px;
|
|
transition: background-color,color .4s cubic-bezier(.25,.8,.25,1);
|
|
width: 40px;
|
|
}
|
|
|
|
.md-calendar-date:not(.md-disabled) .md-calendar-date-selection-indicator {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.md-calendar-month-label {
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
height: 44px;
|
|
padding: 0 0 0 24px;
|
|
}
|
|
|
|
[dir=rtl] .md-calendar-month-label {
|
|
padding: 0 24px 0 0;
|
|
}
|
|
|
|
.md-calendar-month-label.md-calendar-label-clickable {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.md-calendar-month-label md-icon {
|
|
transform: rotate(180deg);
|
|
}
|
|
|
|
[dir=rtl] .md-calendar-month-label md-icon {
|
|
transform: none;
|
|
}
|
|
|
|
.md-calendar-month-label span {
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.md-calendar-day-header {
|
|
border-collapse: collapse;
|
|
border-spacing: 0;
|
|
table-layout: fixed;
|
|
}
|
|
|
|
.md-calendar-day-header th {
|
|
border: none;
|
|
box-sizing: content-box;
|
|
font-weight: 400;
|
|
height: 40px;
|
|
padding: 0;
|
|
text-align: center;
|
|
width: 44px;
|
|
}
|
|
|
|
.md-calendar-day-header th:first-child {
|
|
padding-left: 16px;
|
|
}
|
|
|
|
[dir=rtl] .md-calendar-day-header th:first-child {
|
|
padding-left: 0;
|
|
padding-right: 16px;
|
|
}
|
|
|
|
.md-calendar-day-header th:last-child {
|
|
padding-right: 16px;
|
|
}
|
|
|
|
[dir=rtl] .md-calendar-day-header th:last-child {
|
|
padding-left: 16px;
|
|
padding-right: 0;
|
|
}
|
|
|
|
.md-calendar {
|
|
border-collapse: collapse;
|
|
border-spacing: 0;
|
|
table-layout: fixed;
|
|
}
|
|
|
|
.md-calendar tr:last-child td {
|
|
border-bottom-style: solid;
|
|
border-bottom-width: 1px;
|
|
}
|
|
|
|
.md-calendar:first-child {
|
|
border-top: 1px solid transparent;
|
|
}
|
|
|
|
.md-calendar tbody,
|
|
.md-calendar td,
|
|
.md-calendar tr {
|
|
box-sizing: content-box;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
md-datepicker {
|
|
overflow: hidden;
|
|
vertical-align: middle;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.md-inline-form md-datepicker {
|
|
margin-top: 12px;
|
|
}
|
|
|
|
.md-datepicker-button {
|
|
background: none;
|
|
box-sizing: border-box;
|
|
display: inline-block;
|
|
position: relative;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.md-datepicker-button:before {
|
|
speak: none;
|
|
bottom: 0;
|
|
content: "";
|
|
left: 0;
|
|
position: absolute;
|
|
right: 0;
|
|
top: 0;
|
|
}
|
|
|
|
.md-datepicker-input {
|
|
background: transparent;
|
|
border: none;
|
|
box-shadow: none;
|
|
box-sizing: border-box;
|
|
font-size: 14px;
|
|
max-width: 328px;
|
|
min-width: 120px;
|
|
outline: none;
|
|
padding: 0 0 5px;
|
|
}
|
|
|
|
.md-datepicker-input::-ms-clear {
|
|
display: none;
|
|
}
|
|
|
|
._md-datepicker-floating-label>md-datepicker {
|
|
overflow: visible;
|
|
}
|
|
|
|
._md-datepicker-floating-label>md-datepicker .md-datepicker-input-container {
|
|
border: none;
|
|
}
|
|
|
|
._md-datepicker-floating-label>md-datepicker .md-datepicker-button {
|
|
float: left;
|
|
margin-top: -16px;
|
|
top: 13.5px;
|
|
}
|
|
|
|
[dir=rtl] ._md-datepicker-floating-label>md-datepicker .md-datepicker-button {
|
|
float: right;
|
|
}
|
|
|
|
._md-datepicker-floating-label .md-input {
|
|
float: none;
|
|
}
|
|
|
|
._md-datepicker-floating-label._md-datepicker-has-calendar-icon>label:not(.md-no-float):not(.md-container-ignore) {
|
|
left: auto;
|
|
right: 18px;
|
|
width: calc(100% - 84px);
|
|
}
|
|
|
|
[dir=rtl] ._md-datepicker-floating-label._md-datepicker-has-calendar-icon>label:not(.md-no-float):not(.md-container-ignore) {
|
|
left: 18px;
|
|
right: auto;
|
|
}
|
|
|
|
._md-datepicker-floating-label._md-datepicker-has-calendar-icon .md-input-message-animation {
|
|
margin-left: 64px;
|
|
}
|
|
|
|
[dir=rtl] ._md-datepicker-floating-label._md-datepicker-has-calendar-icon .md-input-message-animation {
|
|
margin-left: auto;
|
|
margin-right: 64px;
|
|
}
|
|
|
|
._md-datepicker-has-triangle-icon {
|
|
margin-right: -18px;
|
|
padding-right: 18px;
|
|
}
|
|
|
|
[dir=rtl] ._md-datepicker-has-triangle-icon {
|
|
margin-left: -18px;
|
|
margin-right: auto;
|
|
padding-left: 18px;
|
|
padding-right: 0;
|
|
}
|
|
|
|
.md-datepicker-input-container {
|
|
border-bottom-style: solid;
|
|
border-bottom-width: 1px;
|
|
display: inline-block;
|
|
position: relative;
|
|
width: auto;
|
|
}
|
|
|
|
.md-icon-button+.md-datepicker-input-container {
|
|
margin-left: 12px;
|
|
}
|
|
|
|
[dir=rtl] .md-icon-button+.md-datepicker-input-container {
|
|
margin-left: auto;
|
|
margin-right: 12px;
|
|
}
|
|
|
|
.md-datepicker-input-container.md-datepicker-focused {
|
|
border-bottom-width: 2px;
|
|
}
|
|
|
|
.md-datepicker-is-showing .md-scroll-mask {
|
|
z-index: 99;
|
|
}
|
|
|
|
.md-datepicker-calendar-pane {
|
|
background: transparent;
|
|
border-style: solid;
|
|
border-width: 1px;
|
|
left: -100%;
|
|
position: absolute;
|
|
top: 0;
|
|
transform: scale(0);
|
|
transform-origin: 0 0;
|
|
transition: transform .2s cubic-bezier(.25,.8,.25,1);
|
|
z-index: 100;
|
|
}
|
|
|
|
.md-datepicker-calendar-pane.md-pane-open {
|
|
transform: scale(1);
|
|
}
|
|
|
|
.md-datepicker-input-mask {
|
|
background: transparent;
|
|
cursor: text;
|
|
height: 40px;
|
|
overflow: hidden;
|
|
pointer-events: none;
|
|
position: relative;
|
|
width: 340px;
|
|
}
|
|
|
|
.md-datepicker-calendar {
|
|
opacity: 0;
|
|
transition: opacity .2s cubic-bezier(.5,0,.25,1);
|
|
}
|
|
|
|
.md-pane-open .md-datepicker-calendar {
|
|
opacity: 1;
|
|
}
|
|
|
|
.md-datepicker-calendar md-calendar:focus {
|
|
outline: none;
|
|
}
|
|
|
|
.md-datepicker-expand-triangle {
|
|
border-left: 5px solid transparent;
|
|
border-right: 5px solid transparent;
|
|
border-top: 5px solid;
|
|
height: 0;
|
|
left: 50%;
|
|
position: absolute;
|
|
top: 50%;
|
|
transform: translate(-50%,-50%);
|
|
width: 0;
|
|
}
|
|
|
|
.md-datepicker-triangle-button {
|
|
bottom: -2.5px;
|
|
position: absolute;
|
|
right: 0;
|
|
transform: translateX(45%);
|
|
}
|
|
|
|
[dir=rtl] .md-datepicker-triangle-button {
|
|
left: 0;
|
|
right: auto;
|
|
transform: translateX(-45%);
|
|
}
|
|
|
|
.md-datepicker-triangle-button.md-button.md-icon-button {
|
|
height: 36px;
|
|
padding: 8px;
|
|
position: absolute;
|
|
width: 36px;
|
|
}
|
|
|
|
md-datepicker[disabled] .md-datepicker-input-container {
|
|
border-bottom-color: transparent;
|
|
}
|
|
|
|
md-datepicker[disabled] .md-datepicker-triangle-button {
|
|
display: none;
|
|
}
|
|
|
|
.md-datepicker-open {
|
|
overflow: hidden;
|
|
}
|
|
|
|
.md-datepicker-open .md-datepicker-input-container,
|
|
.md-datepicker-open input.md-input {
|
|
border-bottom-color: transparent;
|
|
}
|
|
|
|
.md-datepicker-open .md-datepicker-triangle-button,
|
|
.md-datepicker-open.md-input-has-placeholder>label,
|
|
.md-datepicker-open.md-input-has-value>label,
|
|
.md-datepicker-pos-adjusted .md-datepicker-input-mask {
|
|
display: none;
|
|
}
|
|
|
|
.md-datepicker-calendar-pane .md-calendar {
|
|
transform: translateY(-85px);
|
|
transition: transform .65s cubic-bezier(.25,.8,.25,1);
|
|
transition-delay: .125s;
|
|
}
|
|
|
|
.md-datepicker-calendar-pane.md-pane-open .md-calendar {
|
|
transform: translateY(0);
|
|
}
|
|
|
|
.md-dialog-is-showing {
|
|
max-height: 100%;
|
|
}
|
|
|
|
.md-dialog-container {
|
|
align-items: center;
|
|
display: flex;
|
|
height: 100%;
|
|
justify-content: center;
|
|
left: 0;
|
|
overflow: hidden;
|
|
position: absolute;
|
|
top: 0;
|
|
width: 100%;
|
|
z-index: 80;
|
|
}
|
|
|
|
md-dialog {
|
|
box-shadow: 0 7px 8px -4px rgba(0,0,0,.2),0 13px 19px 2px rgba(0,0,0,.14),0 5px 24px 4px rgba(0,0,0,.12);
|
|
display: flex;
|
|
flex-direction: column;
|
|
max-height: 80%;
|
|
max-width: 80%;
|
|
min-width: 240px;
|
|
opacity: 0;
|
|
overflow: auto;
|
|
position: relative;
|
|
}
|
|
|
|
md-dialog.md-transition-in {
|
|
opacity: 1;
|
|
transform: translate(0,0) scale(1);
|
|
transition: all .4s cubic-bezier(.25,.8,.25,1);
|
|
}
|
|
|
|
md-dialog.md-transition-out {
|
|
opacity: 0;
|
|
transform: translate(0,100%) scale(.2);
|
|
transition: all .4s cubic-bezier(.25,.8,.25,1);
|
|
}
|
|
|
|
md-dialog>form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow: auto;
|
|
}
|
|
|
|
md-dialog .md-dialog-content {
|
|
padding: 24px;
|
|
}
|
|
|
|
md-dialog md-dialog-content {
|
|
-webkit-overflow-scrolling: touch;
|
|
flex-direction: column;
|
|
order: 1;
|
|
overflow: auto;
|
|
}
|
|
|
|
md-dialog md-dialog-content:not([layout=row])>:first-child:not(.md-subheader) {
|
|
margin-top: 0;
|
|
}
|
|
|
|
md-dialog md-dialog-content:focus {
|
|
outline: none;
|
|
}
|
|
|
|
md-dialog md-dialog-content .md-subheader {
|
|
margin: 0;
|
|
}
|
|
|
|
md-dialog md-dialog-content .md-dialog-content-body {
|
|
width: 100%;
|
|
}
|
|
|
|
md-dialog md-dialog-content .md-prompt-input-container {
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
}
|
|
|
|
md-dialog md-dialog-actions {
|
|
align-items: center;
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
margin-bottom: 0;
|
|
min-height: 52px;
|
|
order: 2;
|
|
overflow: hidden;
|
|
padding-left: 16px;
|
|
padding-right: 8px;
|
|
}
|
|
|
|
[dir=rtl] md-dialog md-dialog-actions {
|
|
padding-left: 8px;
|
|
padding-right: 16px;
|
|
}
|
|
|
|
md-dialog md-dialog-actions .md-button {
|
|
margin: 8px 0 8px 8px;
|
|
}
|
|
|
|
[dir=rtl] md-dialog md-dialog-actions .md-button {
|
|
margin-left: 0;
|
|
margin-right: 8px;
|
|
}
|
|
|
|
md-dialog.md-content-overflow md-dialog-actions {
|
|
border-top-style: solid;
|
|
border-top-width: 1px;
|
|
}
|
|
|
|
@media screen and (-ms-high-contrast:active) {
|
|
md-dialog {
|
|
border: 1px solid #fff;
|
|
}
|
|
}
|
|
|
|
@media (max-width:959px) {
|
|
md-dialog.md-dialog-fullscreen {
|
|
border-radius: 0;
|
|
min-height: 100%;
|
|
min-width: 100%;
|
|
}
|
|
}
|
|
|
|
md-divider {
|
|
border-top-style: solid;
|
|
border-top-width: 1px;
|
|
display: block;
|
|
margin: 0;
|
|
}
|
|
|
|
md-divider[md-inset] {
|
|
margin-left: 80px;
|
|
}
|
|
|
|
[dir=rtl] md-divider[md-inset] {
|
|
margin-left: auto;
|
|
margin-right: 80px;
|
|
}
|
|
|
|
@media (max-width:599px) {
|
|
.layout-row:not(.layout-xs-column)>md-divider,
|
|
.layout-xs-row>md-divider {
|
|
border-right-style: solid;
|
|
border-right-width: 1px;
|
|
border-top-width: 0;
|
|
}
|
|
}
|
|
|
|
@media (min-width:600px) and (max-width:959px) {
|
|
.layout-gt-xs-row:not(.layout-sm-column)>md-divider,
|
|
.layout-row:not(.layout-gt-xs-column):not(.layout-sm-column)>md-divider,
|
|
.layout-sm-row:not(.layout-sm-column)>md-divider {
|
|
border-right-style: solid;
|
|
border-right-width: 1px;
|
|
border-top-width: 0;
|
|
}
|
|
}
|
|
|
|
@media (min-width:960px) and (max-width:1279px) {
|
|
.layout-gt-sm-row:not(.layout-md-column)>md-divider,
|
|
.layout-gt-xs-row:not(.layout-gt-sm-column):not(.layout-md-column)>md-divider,
|
|
.layout-md-row:not(.layout-md-column)>md-divider,
|
|
.layout-row:not(.layout-gt-xs-column):not(.layout-gt-sm-column):not(.layout-md-column)>md-divider {
|
|
border-right-style: solid;
|
|
border-right-width: 1px;
|
|
border-top-width: 0;
|
|
}
|
|
}
|
|
|
|
@media (min-width:1280px) and (max-width:1919px) {
|
|
.layout-gt-md-row:not(.layout-lg-column)>md-divider,
|
|
.layout-gt-sm-row:not(.layout-gt-md-column):not(.layout-lg-column)>md-divider,
|
|
.layout-gt-xs-row:not(.layout-gt-sm-column):not(.layout-gt-md-column):not(.layout-lg-column)>md-divider,
|
|
.layout-lg-row:not(.layout-lg-column)>md-divider,
|
|
.layout-row:not(.layout-gt-xs-column):not(.layout-gt-sm-column):not(.layout-gt-md-column):not(.layout-lg-column)>md-divider {
|
|
border-right-style: solid;
|
|
border-right-width: 1px;
|
|
border-top-width: 0;
|
|
}
|
|
}
|
|
|
|
@media (min-width:1920px) {
|
|
.layout-gt-lg-row:not(.layout-gt-lg-column):not(.layout-xl-column)>md-divider,
|
|
.layout-gt-md-row:not(.layout-gt-lg-column):not(.layout-xl-column)>md-divider,
|
|
.layout-gt-sm-row:not(.layout-gt-md-column):not(.layout-gt-lg-column):not(.layout-xl-column)>md-divider,
|
|
.layout-gt-xs-row:not(.layout-gt-sm-column):not(.layout-gt-md-column):not(.layout-gt-lg-column):not(.layout-xl-column)>md-divider,
|
|
.layout-row:not(.layout-gt-xs-column):not(.layout-gt-sm-column):not(.layout-gt-md-column):not(.layout-gt-lg-column):not(.layout-xl-column)>md-divider,
|
|
.layout-xl-row:not(.layout-gt-lg-column):not(.layout-xl-column)>md-divider {
|
|
border-right-style: solid;
|
|
border-right-width: 1px;
|
|
border-top-width: 0;
|
|
}
|
|
}
|
|
|
|
md-fab-speed-dial {
|
|
align-items: center;
|
|
display: flex;
|
|
position: relative;
|
|
z-index: 20;
|
|
}
|
|
|
|
md-fab-speed-dial.md-fab-bottom-right {
|
|
bottom: 20px;
|
|
left: auto;
|
|
position: absolute;
|
|
right: 20px;
|
|
top: auto;
|
|
}
|
|
|
|
md-fab-speed-dial.md-fab-bottom-left {
|
|
bottom: 20px;
|
|
left: 20px;
|
|
position: absolute;
|
|
right: auto;
|
|
top: auto;
|
|
}
|
|
|
|
md-fab-speed-dial.md-fab-top-right {
|
|
bottom: auto;
|
|
left: auto;
|
|
position: absolute;
|
|
right: 20px;
|
|
top: 20px;
|
|
}
|
|
|
|
md-fab-speed-dial.md-fab-top-left {
|
|
bottom: auto;
|
|
left: 20px;
|
|
position: absolute;
|
|
right: auto;
|
|
top: 20px;
|
|
}
|
|
|
|
md-fab-speed-dial:not(.md-hover-full) {
|
|
pointer-events: none;
|
|
}
|
|
|
|
md-fab-speed-dial:not(.md-hover-full) .md-fab-action-item,
|
|
md-fab-speed-dial:not(.md-hover-full).md-is-open,
|
|
md-fab-speed-dial:not(.md-hover-full) md-fab-trigger {
|
|
pointer-events: auto;
|
|
}
|
|
|
|
md-fab-speed-dial ._md-css-variables {
|
|
z-index: 20;
|
|
}
|
|
|
|
md-fab-speed-dial.md-is-open .md-fab-action-item {
|
|
align-items: center;
|
|
}
|
|
|
|
md-fab-speed-dial md-fab-actions {
|
|
display: flex;
|
|
height: auto;
|
|
}
|
|
|
|
md-fab-speed-dial md-fab-actions .md-fab-action-item {
|
|
transition: all .3s cubic-bezier(.55,0,.55,.2);
|
|
}
|
|
|
|
md-fab-speed-dial.md-down {
|
|
flex-direction: column;
|
|
}
|
|
|
|
md-fab-speed-dial.md-down md-fab-trigger {
|
|
order: 1;
|
|
}
|
|
|
|
md-fab-speed-dial.md-down md-fab-actions {
|
|
flex-direction: column;
|
|
order: 2;
|
|
}
|
|
|
|
md-fab-speed-dial.md-up {
|
|
flex-direction: column;
|
|
}
|
|
|
|
md-fab-speed-dial.md-up md-fab-trigger {
|
|
order: 2;
|
|
}
|
|
|
|
md-fab-speed-dial.md-up md-fab-actions {
|
|
flex-direction: column-reverse;
|
|
order: 1;
|
|
}
|
|
|
|
md-fab-speed-dial.md-left {
|
|
flex-direction: row;
|
|
}
|
|
|
|
md-fab-speed-dial.md-left md-fab-trigger {
|
|
order: 2;
|
|
}
|
|
|
|
md-fab-speed-dial.md-left md-fab-actions {
|
|
flex-direction: row-reverse;
|
|
order: 1;
|
|
}
|
|
|
|
md-fab-speed-dial.md-left md-fab-actions .md-fab-action-item {
|
|
transition: all .3s cubic-bezier(.55,0,.55,.2);
|
|
}
|
|
|
|
md-fab-speed-dial.md-right {
|
|
flex-direction: row;
|
|
}
|
|
|
|
md-fab-speed-dial.md-right md-fab-trigger {
|
|
order: 1;
|
|
}
|
|
|
|
md-fab-speed-dial.md-right md-fab-actions {
|
|
flex-direction: row;
|
|
order: 2;
|
|
}
|
|
|
|
md-fab-speed-dial.md-right md-fab-actions .md-fab-action-item {
|
|
transition: all .3s cubic-bezier(.55,0,.55,.2);
|
|
}
|
|
|
|
md-fab-speed-dial.md-fling-remove .md-fab-action-item>*,
|
|
md-fab-speed-dial.md-scale-remove .md-fab-action-item>* {
|
|
visibility: hidden;
|
|
}
|
|
|
|
md-fab-speed-dial.md-fling .md-fab-action-item {
|
|
opacity: 1;
|
|
}
|
|
|
|
md-fab-speed-dial.md-fling.md-animations-waiting .md-fab-action-item {
|
|
opacity: 0;
|
|
transition-duration: 0s;
|
|
}
|
|
|
|
md-fab-speed-dial.md-scale .md-fab-action-item {
|
|
transform: scale(0);
|
|
transition: all .3s cubic-bezier(.55,0,.55,.2);
|
|
transition-duration: .1428571429s;
|
|
}
|
|
|
|
md-fab-toolbar {
|
|
display: block;
|
|
}
|
|
|
|
md-fab-toolbar.md-fab-bottom-right {
|
|
bottom: 20px;
|
|
left: auto;
|
|
position: absolute;
|
|
right: 20px;
|
|
top: auto;
|
|
}
|
|
|
|
md-fab-toolbar.md-fab-bottom-left {
|
|
bottom: 20px;
|
|
left: 20px;
|
|
position: absolute;
|
|
right: auto;
|
|
top: auto;
|
|
}
|
|
|
|
md-fab-toolbar.md-fab-top-right {
|
|
bottom: auto;
|
|
left: auto;
|
|
position: absolute;
|
|
right: 20px;
|
|
top: 20px;
|
|
}
|
|
|
|
md-fab-toolbar.md-fab-top-left {
|
|
bottom: auto;
|
|
left: 20px;
|
|
position: absolute;
|
|
right: auto;
|
|
top: 20px;
|
|
}
|
|
|
|
md-fab-toolbar .md-fab-toolbar-wrapper {
|
|
display: block;
|
|
height: 68px;
|
|
overflow: hidden;
|
|
position: relative;
|
|
}
|
|
|
|
md-fab-toolbar md-fab-trigger {
|
|
position: absolute;
|
|
z-index: 20;
|
|
}
|
|
|
|
md-fab-toolbar md-fab-trigger button {
|
|
overflow: visible!important;
|
|
}
|
|
|
|
md-fab-toolbar md-fab-trigger .md-fab-toolbar-background {
|
|
display: block;
|
|
opacity: 1;
|
|
position: absolute;
|
|
transition: all .3s cubic-bezier(.55,0,.55,.2);
|
|
z-index: 21;
|
|
}
|
|
|
|
md-fab-toolbar md-fab-trigger md-icon {
|
|
opacity: 1;
|
|
position: relative;
|
|
transition: all .2s ease-in;
|
|
z-index: 22;
|
|
}
|
|
|
|
md-fab-toolbar.md-left md-fab-trigger {
|
|
right: 0;
|
|
}
|
|
|
|
[dir=rtl] md-fab-toolbar.md-left md-fab-trigger {
|
|
left: 0;
|
|
right: auto;
|
|
}
|
|
|
|
md-fab-toolbar.md-left .md-toolbar-tools {
|
|
flex-direction: row-reverse;
|
|
}
|
|
|
|
md-fab-toolbar.md-left .md-toolbar-tools>.md-button:first-child {
|
|
margin-right: .6rem;
|
|
}
|
|
|
|
[dir=rtl] md-fab-toolbar.md-left .md-toolbar-tools>.md-button:first-child {
|
|
margin-left: .6rem;
|
|
margin-right: auto;
|
|
}
|
|
|
|
md-fab-toolbar.md-left .md-toolbar-tools>.md-button:first-child {
|
|
margin-left: -.8rem;
|
|
}
|
|
|
|
[dir=rtl] md-fab-toolbar.md-left .md-toolbar-tools>.md-button:first-child {
|
|
margin-left: auto;
|
|
margin-right: -.8rem;
|
|
}
|
|
|
|
md-fab-toolbar.md-left .md-toolbar-tools>.md-button:last-child {
|
|
margin-right: 8px;
|
|
}
|
|
|
|
[dir=rtl] md-fab-toolbar.md-left .md-toolbar-tools>.md-button:last-child {
|
|
margin-left: 8px;
|
|
margin-right: auto;
|
|
}
|
|
|
|
md-fab-toolbar.md-right md-fab-trigger {
|
|
left: 0;
|
|
}
|
|
|
|
[dir=rtl] md-fab-toolbar.md-right md-fab-trigger {
|
|
left: auto;
|
|
right: 0;
|
|
}
|
|
|
|
md-fab-toolbar.md-right .md-toolbar-tools {
|
|
flex-direction: row;
|
|
}
|
|
|
|
md-fab-toolbar md-toolbar {
|
|
background-color: transparent!important;
|
|
pointer-events: none;
|
|
z-index: 23;
|
|
}
|
|
|
|
md-fab-toolbar md-toolbar .md-toolbar-tools {
|
|
margin-top: 3px;
|
|
padding: 0 20px;
|
|
}
|
|
|
|
md-fab-toolbar md-toolbar .md-fab-action-item {
|
|
opacity: 0;
|
|
transform: scale(0);
|
|
transition: all .3s cubic-bezier(.55,0,.55,.2);
|
|
transition-duration: .15s;
|
|
}
|
|
|
|
md-fab-toolbar.md-is-open md-fab-trigger>button {
|
|
box-shadow: none;
|
|
}
|
|
|
|
md-fab-toolbar.md-is-open md-fab-trigger>button md-icon {
|
|
opacity: 0;
|
|
}
|
|
|
|
md-fab-toolbar.md-is-open .md-fab-action-item {
|
|
opacity: 1;
|
|
transform: scale(1);
|
|
}
|
|
|
|
md-grid-list {
|
|
display: block;
|
|
position: relative;
|
|
}
|
|
|
|
md-grid-list,
|
|
md-grid-list md-grid-tile,
|
|
md-grid-list md-grid-tile-footer,
|
|
md-grid-list md-grid-tile-header,
|
|
md-grid-list md-grid-tile>figure {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
md-grid-list md-grid-tile {
|
|
display: block;
|
|
position: absolute;
|
|
}
|
|
|
|
md-grid-list md-grid-tile figure {
|
|
align-items: center;
|
|
bottom: 0;
|
|
display: flex;
|
|
height: 100%;
|
|
justify-content: center;
|
|
left: 0;
|
|
margin: 0;
|
|
padding: 0;
|
|
position: absolute;
|
|
right: 0;
|
|
top: 0;
|
|
}
|
|
|
|
md-grid-list md-grid-tile md-grid-tile-footer,
|
|
md-grid-list md-grid-tile md-grid-tile-header {
|
|
align-items: center;
|
|
background: rgba(0,0,0,.18);
|
|
color: #fff;
|
|
display: flex;
|
|
flex-direction: row;
|
|
height: 48px;
|
|
left: 0;
|
|
overflow: hidden;
|
|
position: absolute;
|
|
right: 0;
|
|
}
|
|
|
|
md-grid-list md-grid-tile md-grid-tile-footer h3,
|
|
md-grid-list md-grid-tile md-grid-tile-footer h4,
|
|
md-grid-list md-grid-tile md-grid-tile-header h3,
|
|
md-grid-list md-grid-tile md-grid-tile-header h4 {
|
|
font-weight: 400;
|
|
margin: 0 0 0 16px;
|
|
}
|
|
|
|
md-grid-list md-grid-tile md-grid-tile-footer h3,
|
|
md-grid-list md-grid-tile md-grid-tile-header h3 {
|
|
font-size: 14px;
|
|
}
|
|
|
|
md-grid-list md-grid-tile md-grid-tile-footer h4,
|
|
md-grid-list md-grid-tile md-grid-tile-header h4 {
|
|
font-size: 12px;
|
|
}
|
|
|
|
md-grid-list md-grid-tile md-grid-tile-header {
|
|
top: 0;
|
|
}
|
|
|
|
md-grid-list md-grid-tile md-grid-tile-footer {
|
|
bottom: 0;
|
|
}
|
|
|
|
@media screen and (-ms-high-contrast:active) {
|
|
md-grid-tile {
|
|
border: 1px solid #fff;
|
|
}
|
|
|
|
md-grid-tile-footer {
|
|
border-top: 1px solid #fff;
|
|
}
|
|
}
|
|
|
|
md-icon {
|
|
fill: currentColor;
|
|
background-repeat: no-repeat;
|
|
display: inline-block;
|
|
height: 24px;
|
|
margin: auto;
|
|
min-height: 24px;
|
|
min-width: 24px;
|
|
vertical-align: middle;
|
|
width: 24px;
|
|
}
|
|
|
|
md-icon svg {
|
|
display: block;
|
|
pointer-events: none;
|
|
}
|
|
|
|
md-icon[md-font-icon] {
|
|
line-height: 24px;
|
|
width: auto;
|
|
}
|
|
|
|
md-input-container {
|
|
display: inline-block;
|
|
margin: 18px 0;
|
|
padding: 2px;
|
|
position: relative;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
md-input-container:after {
|
|
clear: both;
|
|
content: "";
|
|
display: table;
|
|
}
|
|
|
|
md-input-container.md-block {
|
|
display: block;
|
|
}
|
|
|
|
md-input-container .md-errors-spacer {
|
|
float: right;
|
|
min-height: 24px;
|
|
min-width: 1px;
|
|
}
|
|
|
|
[dir=rtl] md-input-container .md-errors-spacer {
|
|
float: left;
|
|
}
|
|
|
|
md-input-container>md-icon {
|
|
left: 2px;
|
|
position: absolute;
|
|
right: auto;
|
|
top: 8px;
|
|
}
|
|
|
|
[dir=rtl] md-input-container>md-icon {
|
|
left: auto;
|
|
right: 2px;
|
|
}
|
|
|
|
md-input-container input[type=color],
|
|
md-input-container input[type=date],
|
|
md-input-container input[type=datetime-local],
|
|
md-input-container input[type=datetime],
|
|
md-input-container input[type=email],
|
|
md-input-container input[type=month],
|
|
md-input-container input[type=number],
|
|
md-input-container input[type=password],
|
|
md-input-container input[type=search],
|
|
md-input-container input[type=tel],
|
|
md-input-container input[type=text],
|
|
md-input-container input[type=time],
|
|
md-input-container input[type=url],
|
|
md-input-container input[type=week],
|
|
md-input-container textarea {
|
|
-moz-appearance: none;
|
|
-webkit-appearance: none;
|
|
}
|
|
|
|
md-input-container input[type=date],
|
|
md-input-container input[type=datetime-local],
|
|
md-input-container input[type=month],
|
|
md-input-container input[type=time],
|
|
md-input-container input[type=week] {
|
|
min-height: 30px;
|
|
}
|
|
|
|
md-input-container textarea {
|
|
overflow: hidden;
|
|
resize: none;
|
|
}
|
|
|
|
md-input-container textarea.md-input {
|
|
-ms-flex-preferred-size: auto;
|
|
min-height: 30px;
|
|
}
|
|
|
|
md-input-container textarea[md-no-autogrow] {
|
|
height: auto;
|
|
overflow: auto;
|
|
}
|
|
|
|
md-input-container label:not(.md-container-ignore) {
|
|
bottom: 100%;
|
|
left: 0;
|
|
position: absolute;
|
|
right: auto;
|
|
}
|
|
|
|
[dir=rtl] md-input-container label:not(.md-container-ignore) {
|
|
left: auto;
|
|
right: 0;
|
|
}
|
|
|
|
md-input-container label:not(.md-container-ignore).md-required:after {
|
|
content: " *";
|
|
font-size: 13px;
|
|
vertical-align: top;
|
|
}
|
|
|
|
md-input-container .md-placeholder,
|
|
md-input-container label:not(.md-no-float):not(.md-container-ignore) {
|
|
-webkit-font-smoothing: antialiased;
|
|
max-width: 100%;
|
|
order: 1;
|
|
overflow: hidden;
|
|
padding-left: 2px;
|
|
padding-right: 0;
|
|
pointer-events: none;
|
|
text-overflow: ellipsis;
|
|
transform: translate3d(0,28px,0) scale(1);
|
|
transform-origin: left top;
|
|
transition: transform .4s cubic-bezier(.25,.8,.25,1);
|
|
white-space: nowrap;
|
|
width: 100%;
|
|
z-index: 1;
|
|
}
|
|
|
|
[dir=rtl] md-input-container .md-placeholder,
|
|
[dir=rtl] md-input-container label:not(.md-no-float):not(.md-container-ignore) {
|
|
padding-left: 0;
|
|
padding-right: 2px;
|
|
transform-origin: right top;
|
|
}
|
|
|
|
md-input-container.md-input-has-value .md-placeholder,
|
|
md-input-container.md-input-has-value label:not(.md-no-float):not(.md-container-ignore) {
|
|
padding-left: 3px;
|
|
padding-right: 0;
|
|
}
|
|
|
|
[dir=rtl] md-input-container.md-input-has-value .md-placeholder,
|
|
[dir=rtl] md-input-container.md-input-has-value label:not(.md-no-float):not(.md-container-ignore) {
|
|
padding-left: 0;
|
|
padding-right: 3px;
|
|
}
|
|
|
|
md-input-container .md-placeholder {
|
|
opacity: 0;
|
|
position: absolute;
|
|
top: 0;
|
|
transform: translate3d(0,30px,0);
|
|
transition-property: opacity,transform;
|
|
}
|
|
|
|
md-input-container.md-input-focused .md-placeholder {
|
|
opacity: 1;
|
|
transform: translate3d(0,24px,0);
|
|
}
|
|
|
|
md-input-container.md-input-has-value .md-placeholder {
|
|
opacity: 0;
|
|
transition: none;
|
|
}
|
|
|
|
md-input-container:not(.md-input-has-value):not(.md-input-has-placeholder) input:not(:focus) {
|
|
color: transparent;
|
|
}
|
|
|
|
md-input-container:not(.md-input-has-value) input:not(:focus)::-webkit-datetime-edit-ampm-field,
|
|
md-input-container:not(.md-input-has-value) input:not(:focus)::-webkit-datetime-edit-day-field,
|
|
md-input-container:not(.md-input-has-value) input:not(:focus)::-webkit-datetime-edit-hour-field,
|
|
md-input-container:not(.md-input-has-value) input:not(:focus)::-webkit-datetime-edit-millisecond-field,
|
|
md-input-container:not(.md-input-has-value) input:not(:focus)::-webkit-datetime-edit-minute-field,
|
|
md-input-container:not(.md-input-has-value) input:not(:focus)::-webkit-datetime-edit-month-field,
|
|
md-input-container:not(.md-input-has-value) input:not(:focus)::-webkit-datetime-edit-second-field,
|
|
md-input-container:not(.md-input-has-value) input:not(:focus)::-webkit-datetime-edit-text,
|
|
md-input-container:not(.md-input-has-value) input:not(:focus)::-webkit-datetime-edit-week-field,
|
|
md-input-container:not(.md-input-has-value) input:not(:focus)::-webkit-datetime-edit-year-field {
|
|
color: transparent;
|
|
}
|
|
|
|
md-input-container .md-input {
|
|
-ms-flex-preferred-size: 26px;
|
|
background: none;
|
|
border-radius: 0;
|
|
border-style: solid;
|
|
border-width: 0 0 1px;
|
|
box-sizing: border-box;
|
|
display: block;
|
|
float: left;
|
|
height: 30px;
|
|
line-height: 26px;
|
|
margin-top: 0;
|
|
order: 2;
|
|
padding: 2px 2px 1px 0;
|
|
transition: border-color .4s cubic-bezier(.25,.8,.25,1);
|
|
width: 100%;
|
|
}
|
|
|
|
[dir=rtl] md-input-container .md-input {
|
|
float: right;
|
|
padding-left: 2px;
|
|
padding-right: 0;
|
|
}
|
|
|
|
md-input-container .md-input:focus {
|
|
outline: none;
|
|
}
|
|
|
|
md-input-container .md-input:invalid {
|
|
box-shadow: none;
|
|
outline: none;
|
|
}
|
|
|
|
md-input-container .md-input.md-no-flex {
|
|
flex: none!important;
|
|
}
|
|
|
|
md-input-container .md-char-counter {
|
|
padding-left: 0;
|
|
padding-right: 2px;
|
|
text-align: right;
|
|
}
|
|
|
|
[dir=rtl] md-input-container .md-char-counter {
|
|
padding-left: 2px;
|
|
padding-right: 0;
|
|
text-align: left;
|
|
}
|
|
|
|
md-input-container .md-input-messages-animation {
|
|
clear: left;
|
|
order: 4;
|
|
overflow: hidden;
|
|
position: relative;
|
|
}
|
|
|
|
[dir=rtl] md-input-container .md-input-messages-animation {
|
|
clear: right;
|
|
}
|
|
|
|
md-input-container .md-char-counter,
|
|
md-input-container .md-input-message-animation {
|
|
font-size: 12px;
|
|
line-height: 14px;
|
|
margin-top: 0;
|
|
opacity: 1;
|
|
overflow: hidden;
|
|
padding-top: 8px;
|
|
transition: all .3s cubic-bezier(.55,0,.55,.2);
|
|
}
|
|
|
|
md-input-container .md-char-counter:not(.md-char-counter),
|
|
md-input-container .md-input-message-animation:not(.md-char-counter) {
|
|
padding-left: 0;
|
|
padding-right: 5px;
|
|
}
|
|
|
|
[dir=rtl] md-input-container .md-char-counter:not(.md-char-counter),
|
|
[dir=rtl] md-input-container .md-input-message-animation:not(.md-char-counter) {
|
|
padding-left: 5px;
|
|
padding-right: 0;
|
|
}
|
|
|
|
md-input-container .md-input-message-animation.ng-enter-prepare,
|
|
md-input-container .md-input-message-animation.ng-enter:not(.ng-enter-active),
|
|
md-input-container:not(.md-input-invalid) .md-auto-hide .md-input-message-animation {
|
|
margin-top: -100px;
|
|
opacity: 0;
|
|
}
|
|
|
|
md-input-container.md-input-focused label:not(.md-no-float),
|
|
md-input-container.md-input-has-placeholder label:not(.md-no-float),
|
|
md-input-container.md-input-has-value label:not(.md-no-float) {
|
|
transform: translate3d(0,6px,0) scale(.75);
|
|
transition: transform .4s cubic-bezier(.25,.8,.25,1),width .4s cubic-bezier(.25,.8,.25,1);
|
|
}
|
|
|
|
md-input-container.md-input-has-value label {
|
|
transition: none;
|
|
}
|
|
|
|
md-input-container.md-input-focused .md-input,
|
|
md-input-container.md-input-resized .md-input,
|
|
md-input-container .md-input.ng-invalid.ng-dirty {
|
|
border-width: 0 0 2px;
|
|
padding-bottom: 0;
|
|
}
|
|
|
|
[disabled] md-input-container .md-input,
|
|
md-input-container .md-input[disabled] {
|
|
background-position: bottom -1px left 0;
|
|
background-repeat: repeat-x;
|
|
background-size: 4px 1px;
|
|
}
|
|
|
|
md-input-container.md-icon-float {
|
|
transition: margin-top .4s cubic-bezier(.25,.8,.25,1);
|
|
}
|
|
|
|
md-input-container.md-icon-float>label {
|
|
pointer-events: none;
|
|
position: absolute;
|
|
}
|
|
|
|
md-input-container.md-icon-float>md-icon {
|
|
left: 2px;
|
|
right: auto;
|
|
top: 8px;
|
|
}
|
|
|
|
[dir=rtl] md-input-container.md-icon-float>md-icon {
|
|
left: auto;
|
|
right: 2px;
|
|
}
|
|
|
|
md-input-container.md-icon-left>label .md-placeholder,
|
|
md-input-container.md-icon-left>label:not(.md-no-float):not(.md-container-ignore),
|
|
md-input-container.md-icon-right>label .md-placeholder,
|
|
md-input-container.md-icon-right>label:not(.md-no-float):not(.md-container-ignore) {
|
|
padding: 0;
|
|
width: calc(100% - 36px);
|
|
}
|
|
|
|
md-input-container.md-icon-left {
|
|
padding-left: 36px;
|
|
padding-right: 0;
|
|
}
|
|
|
|
[dir=rtl] md-input-container.md-icon-left {
|
|
padding-left: 0;
|
|
padding-right: 36px;
|
|
}
|
|
|
|
md-input-container.md-icon-left>label {
|
|
left: 36px;
|
|
right: auto;
|
|
}
|
|
|
|
[dir=rtl] md-input-container.md-icon-left>label {
|
|
left: auto;
|
|
right: 36px;
|
|
}
|
|
|
|
md-input-container.md-icon-right {
|
|
padding-left: 0;
|
|
padding-right: 36px;
|
|
}
|
|
|
|
[dir=rtl] md-input-container.md-icon-right {
|
|
padding-left: 36px;
|
|
padding-right: 0;
|
|
}
|
|
|
|
md-input-container.md-icon-right>md-icon:last-of-type {
|
|
left: auto;
|
|
margin: 0;
|
|
right: 2px;
|
|
}
|
|
|
|
[dir=rtl] md-input-container.md-icon-right>md-icon:last-of-type {
|
|
left: 2px;
|
|
right: auto;
|
|
}
|
|
|
|
md-input-container.md-icon-left.md-icon-right {
|
|
padding-left: 36px;
|
|
padding-right: 36px;
|
|
}
|
|
|
|
md-input-container.md-icon-left.md-icon-right>label .md-placeholder,
|
|
md-input-container.md-icon-left.md-icon-right>label:not(.md-no-float):not(.md-container-ignore) {
|
|
width: calc(100% - 72px);
|
|
}
|
|
|
|
.md-resize-wrapper {
|
|
position: relative;
|
|
}
|
|
|
|
.md-resize-wrapper:after {
|
|
clear: both;
|
|
content: "";
|
|
display: table;
|
|
}
|
|
|
|
.md-resize-handle {
|
|
background: transparent;
|
|
bottom: -5px;
|
|
cursor: ns-resize;
|
|
height: 10px;
|
|
left: 0;
|
|
position: absolute;
|
|
width: 100%;
|
|
}
|
|
|
|
@media screen and (-ms-high-contrast:active) {
|
|
md-input-container.md-default-theme>md-icon {
|
|
fill: #fff;
|
|
}
|
|
}
|
|
|
|
md-list {
|
|
display: block;
|
|
padding: 8px 0;
|
|
}
|
|
|
|
md-list .md-subheader {
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
letter-spacing: .01em;
|
|
line-height: 1.2em;
|
|
}
|
|
|
|
md-list.md-dense:not(.md-dense-disabled) md-list-item,
|
|
md-list.md-dense:not(.md-dense-disabled) md-list-item .md-list-item-inner {
|
|
min-height: 40px;
|
|
}
|
|
|
|
md-list.md-dense:not(.md-dense-disabled) md-list-item .md-list-item-inner:before,
|
|
md-list.md-dense:not(.md-dense-disabled) md-list-item:before {
|
|
content: "";
|
|
display: inline-block;
|
|
min-height: 40px;
|
|
visibility: hidden;
|
|
}
|
|
|
|
md-list.md-dense:not(.md-dense-disabled) md-list-item .md-list-item-inner md-icon:first-child,
|
|
md-list.md-dense:not(.md-dense-disabled) md-list-item md-icon:first-child {
|
|
height: 20px;
|
|
width: 20px;
|
|
}
|
|
|
|
md-list.md-dense:not(.md-dense-disabled) md-list-item .md-list-item-inner>md-icon:first-child:not(.md-avatar-icon),
|
|
md-list.md-dense:not(.md-dense-disabled) md-list-item>md-icon:first-child:not(.md-avatar-icon) {
|
|
margin-bottom: 4px;
|
|
margin-right: 36px;
|
|
margin-top: 4px;
|
|
}
|
|
|
|
[dir=rtl] md-list.md-dense:not(.md-dense-disabled) md-list-item .md-list-item-inner>md-icon:first-child:not(.md-avatar-icon),
|
|
[dir=rtl] md-list.md-dense:not(.md-dense-disabled) md-list-item>md-icon:first-child:not(.md-avatar-icon) {
|
|
margin-left: 36px;
|
|
margin-right: auto;
|
|
}
|
|
|
|
md-list.md-dense:not(.md-dense-disabled) md-list-item .md-avatar,
|
|
md-list.md-dense:not(.md-dense-disabled) md-list-item .md-avatar-icon,
|
|
md-list.md-dense:not(.md-dense-disabled) md-list-item .md-list-item-inner .md-avatar,
|
|
md-list.md-dense:not(.md-dense-disabled) md-list-item .md-list-item-inner .md-avatar-icon {
|
|
margin-bottom: 6px;
|
|
margin-right: 20px;
|
|
margin-top: 6px;
|
|
}
|
|
|
|
[dir=rtl] md-list.md-dense:not(.md-dense-disabled) md-list-item .md-avatar,
|
|
[dir=rtl] md-list.md-dense:not(.md-dense-disabled) md-list-item .md-avatar-icon,
|
|
[dir=rtl] md-list.md-dense:not(.md-dense-disabled) md-list-item .md-list-item-inner .md-avatar,
|
|
[dir=rtl] md-list.md-dense:not(.md-dense-disabled) md-list-item .md-list-item-inner .md-avatar-icon {
|
|
margin-left: 20px;
|
|
margin-right: auto;
|
|
}
|
|
|
|
md-list.md-dense:not(.md-dense-disabled) md-list-item .md-avatar,
|
|
md-list.md-dense:not(.md-dense-disabled) md-list-item .md-list-item-inner .md-avatar {
|
|
flex: none;
|
|
height: 36px;
|
|
width: 36px;
|
|
}
|
|
|
|
md-list.md-dense:not(.md-dense-disabled) md-list-item .md-list-item-inner .md-secondary-container .md-secondary.md-button,
|
|
md-list.md-dense:not(.md-dense-disabled) md-list-item .md-secondary-container .md-secondary.md-button {
|
|
margin-bottom: 4px;
|
|
margin-top: 4px;
|
|
}
|
|
|
|
md-list.md-dense:not(.md-dense-disabled) md-list-item .md-list-item-inner .md-secondary-container md-checkbox:not(.md-dense-disabled),
|
|
md-list.md-dense:not(.md-dense-disabled) md-list-item .md-secondary-container md-checkbox:not(.md-dense-disabled) {
|
|
min-height: 40px;
|
|
}
|
|
|
|
md-list.md-dense:not(.md-dense-disabled) md-list-item.md-2-line .md-list-item-text.md-offset,
|
|
md-list.md-dense:not(.md-dense-disabled) md-list-item.md-2-line>.md-no-style .md-list-item-text.md-offset,
|
|
md-list.md-dense:not(.md-dense-disabled) md-list-item.md-3-line .md-list-item-text.md-offset,
|
|
md-list.md-dense:not(.md-dense-disabled) md-list-item.md-3-line>.md-no-style .md-list-item-text.md-offset {
|
|
margin-left: 56px;
|
|
}
|
|
|
|
[dir=rtl] md-list.md-dense:not(.md-dense-disabled) md-list-item.md-2-line .md-list-item-text.md-offset,
|
|
[dir=rtl] md-list.md-dense:not(.md-dense-disabled) md-list-item.md-2-line>.md-no-style .md-list-item-text.md-offset,
|
|
[dir=rtl] md-list.md-dense:not(.md-dense-disabled) md-list-item.md-3-line .md-list-item-text.md-offset,
|
|
[dir=rtl] md-list.md-dense:not(.md-dense-disabled) md-list-item.md-3-line>.md-no-style .md-list-item-text.md-offset {
|
|
margin-left: auto;
|
|
margin-right: 56px;
|
|
}
|
|
|
|
md-list.md-dense:not(.md-dense-disabled) md-list-item.md-2-line .md-list-item-text h3,
|
|
md-list.md-dense:not(.md-dense-disabled) md-list-item.md-2-line .md-list-item-text h4,
|
|
md-list.md-dense:not(.md-dense-disabled) md-list-item.md-2-line .md-list-item-text p,
|
|
md-list.md-dense:not(.md-dense-disabled) md-list-item.md-2-line>.md-no-style .md-list-item-text h3,
|
|
md-list.md-dense:not(.md-dense-disabled) md-list-item.md-2-line>.md-no-style .md-list-item-text h4,
|
|
md-list.md-dense:not(.md-dense-disabled) md-list-item.md-2-line>.md-no-style .md-list-item-text p,
|
|
md-list.md-dense:not(.md-dense-disabled) md-list-item.md-3-line .md-list-item-text h3,
|
|
md-list.md-dense:not(.md-dense-disabled) md-list-item.md-3-line .md-list-item-text h4,
|
|
md-list.md-dense:not(.md-dense-disabled) md-list-item.md-3-line .md-list-item-text p,
|
|
md-list.md-dense:not(.md-dense-disabled) md-list-item.md-3-line>.md-no-style .md-list-item-text h3,
|
|
md-list.md-dense:not(.md-dense-disabled) md-list-item.md-3-line>.md-no-style .md-list-item-text h4,
|
|
md-list.md-dense:not(.md-dense-disabled) md-list-item.md-3-line>.md-no-style .md-list-item-text p {
|
|
font-size: 12px;
|
|
line-height: 1.05;
|
|
padding-bottom: 4px;
|
|
}
|
|
|
|
md-list.md-dense:not(.md-dense-disabled) md-list-item.md-2-line .md-list-item-text h3,
|
|
md-list.md-dense:not(.md-dense-disabled) md-list-item.md-2-line>.md-no-style .md-list-item-text h3,
|
|
md-list.md-dense:not(.md-dense-disabled) md-list-item.md-3-line .md-list-item-text h3,
|
|
md-list.md-dense:not(.md-dense-disabled) md-list-item.md-3-line>.md-no-style .md-list-item-text h3 {
|
|
font-size: 13px;
|
|
}
|
|
|
|
md-list.md-dense:not(.md-dense-disabled) md-list-item.md-2-line,
|
|
md-list.md-dense:not(.md-dense-disabled) md-list-item.md-2-line>.md-no-style {
|
|
min-height: 60px;
|
|
}
|
|
|
|
md-list.md-dense:not(.md-dense-disabled) md-list-item.md-2-line:before,
|
|
md-list.md-dense:not(.md-dense-disabled) md-list-item.md-2-line>.md-no-style:before {
|
|
content: "";
|
|
display: inline-block;
|
|
min-height: 60px;
|
|
visibility: hidden;
|
|
}
|
|
|
|
md-list.md-dense:not(.md-dense-disabled) md-list-item.md-2-line .md-avatar-icon,
|
|
md-list.md-dense:not(.md-dense-disabled) md-list-item.md-2-line>.md-avatar,
|
|
md-list.md-dense:not(.md-dense-disabled) md-list-item.md-2-line>.md-no-style .md-avatar-icon,
|
|
md-list.md-dense:not(.md-dense-disabled) md-list-item.md-2-line>.md-no-style>.md-avatar {
|
|
margin-top: 12px;
|
|
}
|
|
|
|
md-list.md-dense:not(.md-dense-disabled) md-list-item.md-3-line,
|
|
md-list.md-dense:not(.md-dense-disabled) md-list-item.md-3-line>.md-no-style {
|
|
min-height: 76px;
|
|
}
|
|
|
|
md-list.md-dense:not(.md-dense-disabled) md-list-item.md-3-line:before,
|
|
md-list.md-dense:not(.md-dense-disabled) md-list-item.md-3-line>.md-no-style:before {
|
|
content: "";
|
|
display: inline-block;
|
|
min-height: 76px;
|
|
visibility: hidden;
|
|
}
|
|
|
|
md-list.md-dense:not(.md-dense-disabled) md-list-item.md-3-line>.md-avatar,
|
|
md-list.md-dense:not(.md-dense-disabled) md-list-item.md-3-line>.md-no-style>.md-avatar,
|
|
md-list.md-dense:not(.md-dense-disabled) md-list-item.md-3-line>.md-no-style>md-icon:first-child,
|
|
md-list.md-dense:not(.md-dense-disabled) md-list-item.md-3-line>md-icon:first-child {
|
|
margin-top: 16px;
|
|
}
|
|
|
|
md-list.md-dense:not(.md-dense-disabled) .md-subheader-inner {
|
|
padding-bottom: 12px;
|
|
padding-top: 12px;
|
|
}
|
|
|
|
md-list-item {
|
|
position: relative;
|
|
}
|
|
|
|
md-list-item.md-proxy-focus.md-focused .md-no-style {
|
|
transition: background-color .15s linear;
|
|
}
|
|
|
|
md-list-item._md-button-wrap {
|
|
position: relative;
|
|
}
|
|
|
|
md-list-item._md-button-wrap>div.md-button:first-child {
|
|
align-items: center;
|
|
border: none;
|
|
display: flex;
|
|
font-weight: 400;
|
|
justify-content: flex-start;
|
|
margin: 0;
|
|
padding: 0 16px;
|
|
text-align: left;
|
|
}
|
|
|
|
[dir=rtl] md-list-item._md-button-wrap>div.md-button:first-child {
|
|
text-align: right;
|
|
}
|
|
|
|
md-list-item._md-button-wrap>div.md-button:first-child>.md-button:first-child {
|
|
height: 100%;
|
|
left: 0;
|
|
margin: 0;
|
|
padding: 0;
|
|
position: absolute;
|
|
top: 0;
|
|
}
|
|
|
|
md-list-item._md-button-wrap>div.md-button:first-child .md-list-item-inner {
|
|
width: 100%;
|
|
}
|
|
|
|
md-list-item._md-button-wrap>div.md-button:first-child .md-list-item-inner:before {
|
|
content: "";
|
|
display: inline-block;
|
|
min-height: inherit;
|
|
visibility: hidden;
|
|
}
|
|
|
|
md-list-item.md-no-proxy,
|
|
md-list-item .md-no-style {
|
|
flex: 1 1 auto;
|
|
padding: 0 16px;
|
|
position: relative;
|
|
}
|
|
|
|
md-list-item.md-no-proxy.md-button,
|
|
md-list-item .md-no-style.md-button {
|
|
align-items: inherit;
|
|
border-radius: 0;
|
|
flex-direction: inherit;
|
|
font-size: inherit;
|
|
height: inherit;
|
|
margin: 0;
|
|
text-align: left;
|
|
text-transform: none;
|
|
white-space: normal;
|
|
width: 100%;
|
|
}
|
|
|
|
[dir=rtl] md-list-item.md-no-proxy.md-button,
|
|
[dir=rtl] md-list-item .md-no-style.md-button {
|
|
text-align: right;
|
|
}
|
|
|
|
md-list-item.md-no-proxy.md-button>.md-ripple-container,
|
|
md-list-item .md-no-style.md-button>.md-ripple-container {
|
|
border-radius: 0;
|
|
}
|
|
|
|
md-list-item.md-no-proxy:focus,
|
|
md-list-item .md-no-style:focus {
|
|
outline: none;
|
|
}
|
|
|
|
md-list-item.md-clickable:hover {
|
|
cursor: pointer;
|
|
}
|
|
|
|
md-list-item md-divider {
|
|
bottom: 0;
|
|
left: 0;
|
|
position: absolute;
|
|
width: 100%;
|
|
}
|
|
|
|
[dir=rtl] md-list-item md-divider {
|
|
left: auto;
|
|
right: 0;
|
|
}
|
|
|
|
md-list-item md-divider[md-inset] {
|
|
left: 72px;
|
|
margin: 0!important;
|
|
width: calc(100% - 72px);
|
|
}
|
|
|
|
[dir=rtl] md-list-item md-divider[md-inset] {
|
|
left: auto;
|
|
right: 72px;
|
|
}
|
|
|
|
md-list-item,
|
|
md-list-item .md-list-item-inner {
|
|
align-items: center;
|
|
display: flex;
|
|
height: auto;
|
|
justify-content: flex-start;
|
|
min-height: 48px;
|
|
}
|
|
|
|
md-list-item .md-list-item-inner:before,
|
|
md-list-item:before {
|
|
content: "";
|
|
display: inline-block;
|
|
min-height: 48px;
|
|
visibility: hidden;
|
|
}
|
|
|
|
md-list-item .md-list-item-inner>div.md-primary>md-icon:not(.md-avatar-icon),
|
|
md-list-item .md-list-item-inner>div.md-secondary>md-icon:not(.md-avatar-icon),
|
|
md-list-item .md-list-item-inner>md-icon.md-secondary:not(.md-avatar-icon),
|
|
md-list-item .md-list-item-inner>md-icon:first-child:not(.md-avatar-icon),
|
|
md-list-item>div.md-primary>md-icon:not(.md-avatar-icon),
|
|
md-list-item>div.md-secondary>md-icon:not(.md-avatar-icon),
|
|
md-list-item>md-icon.md-secondary:not(.md-avatar-icon),
|
|
md-list-item>md-icon:first-child:not(.md-avatar-icon) {
|
|
box-sizing: content-box;
|
|
margin-bottom: 12px;
|
|
margin-top: 16px;
|
|
width: 24px;
|
|
}
|
|
|
|
md-list-item .md-list-item-inner>div.md-primary>md-checkbox,
|
|
md-list-item .md-list-item-inner>div.md-secondary>md-checkbox,
|
|
md-list-item .md-list-item-inner>md-checkbox,
|
|
md-list-item .md-list-item-inner md-checkbox.md-secondary,
|
|
md-list-item>div.md-primary>md-checkbox,
|
|
md-list-item>div.md-secondary>md-checkbox,
|
|
md-list-item>md-checkbox,
|
|
md-list-item md-checkbox.md-secondary {
|
|
align-self: center;
|
|
}
|
|
|
|
md-list-item .md-list-item-inner>div.md-primary>md-checkbox .md-label,
|
|
md-list-item .md-list-item-inner>div.md-secondary>md-checkbox .md-label,
|
|
md-list-item .md-list-item-inner>md-checkbox .md-label,
|
|
md-list-item .md-list-item-inner md-checkbox.md-secondary .md-label,
|
|
md-list-item>div.md-primary>md-checkbox .md-label,
|
|
md-list-item>div.md-secondary>md-checkbox .md-label,
|
|
md-list-item>md-checkbox .md-label,
|
|
md-list-item md-checkbox.md-secondary .md-label {
|
|
display: none;
|
|
}
|
|
|
|
md-list-item .md-list-item-inner>md-icon:first-child:not(.md-avatar-icon),
|
|
md-list-item>md-icon:first-child:not(.md-avatar-icon) {
|
|
margin-right: 32px;
|
|
}
|
|
|
|
[dir=rtl] md-list-item .md-list-item-inner>md-icon:first-child:not(.md-avatar-icon),
|
|
[dir=rtl] md-list-item>md-icon:first-child:not(.md-avatar-icon) {
|
|
margin-left: 32px;
|
|
margin-right: auto;
|
|
}
|
|
|
|
md-list-item .md-avatar,
|
|
md-list-item .md-avatar-icon,
|
|
md-list-item .md-list-item-inner .md-avatar,
|
|
md-list-item .md-list-item-inner .md-avatar-icon {
|
|
border-radius: 50%;
|
|
box-sizing: content-box;
|
|
margin-bottom: 8px;
|
|
margin-right: 16px;
|
|
margin-top: 8px;
|
|
}
|
|
|
|
[dir=rtl] md-list-item .md-avatar,
|
|
[dir=rtl] md-list-item .md-avatar-icon,
|
|
[dir=rtl] md-list-item .md-list-item-inner .md-avatar,
|
|
[dir=rtl] md-list-item .md-list-item-inner .md-avatar-icon {
|
|
margin-left: 16px;
|
|
margin-right: auto;
|
|
}
|
|
|
|
md-list-item .md-avatar,
|
|
md-list-item .md-list-item-inner .md-avatar {
|
|
flex: none;
|
|
height: 40px;
|
|
width: 40px;
|
|
}
|
|
|
|
md-list-item .md-avatar-icon,
|
|
md-list-item .md-list-item-inner .md-avatar-icon {
|
|
padding: 8px;
|
|
}
|
|
|
|
md-list-item .md-avatar-icon svg,
|
|
md-list-item .md-list-item-inner .md-avatar-icon svg {
|
|
height: 24px;
|
|
width: 24px;
|
|
}
|
|
|
|
md-list-item .md-list-item-inner>md-checkbox,
|
|
md-list-item>md-checkbox {
|
|
margin-left: 0;
|
|
margin-right: 29px;
|
|
min-height: 40px;
|
|
width: 24px;
|
|
}
|
|
|
|
[dir=rtl] md-list-item .md-list-item-inner>md-checkbox,
|
|
[dir=rtl] md-list-item>md-checkbox {
|
|
margin-left: 29px;
|
|
margin-right: 0;
|
|
}
|
|
|
|
md-list-item .md-list-item-inner .md-secondary-container,
|
|
md-list-item .md-secondary-container {
|
|
align-items: center;
|
|
display: flex;
|
|
flex-shrink: 0;
|
|
margin: auto 0 auto auto;
|
|
position: relative;
|
|
}
|
|
|
|
[dir=rtl] md-list-item .md-list-item-inner .md-secondary-container,
|
|
[dir=rtl] md-list-item .md-secondary-container {
|
|
margin-left: 0;
|
|
margin-right: auto;
|
|
}
|
|
|
|
md-list-item .md-list-item-inner .md-secondary-container .md-button:last-of-type,
|
|
md-list-item .md-list-item-inner .md-secondary-container .md-icon-button:last-of-type,
|
|
md-list-item .md-secondary-container .md-button:last-of-type,
|
|
md-list-item .md-secondary-container .md-icon-button:last-of-type {
|
|
margin-right: 0;
|
|
}
|
|
|
|
[dir=rtl] md-list-item .md-list-item-inner .md-secondary-container .md-button:last-of-type,
|
|
[dir=rtl] md-list-item .md-list-item-inner .md-secondary-container .md-icon-button:last-of-type,
|
|
[dir=rtl] md-list-item .md-secondary-container .md-button:last-of-type,
|
|
[dir=rtl] md-list-item .md-secondary-container .md-icon-button:last-of-type {
|
|
margin-left: 0;
|
|
margin-right: auto;
|
|
}
|
|
|
|
md-list-item .md-list-item-inner .md-secondary-container md-checkbox,
|
|
md-list-item .md-secondary-container md-checkbox {
|
|
margin: 0 6px;
|
|
min-height: 40px;
|
|
padding: 0 8px;
|
|
}
|
|
|
|
md-list-item .md-list-item-inner .md-secondary-container md-checkbox:last-child,
|
|
md-list-item .md-secondary-container md-checkbox:last-child {
|
|
margin-right: 0;
|
|
width: 40px;
|
|
}
|
|
|
|
[dir=rtl] md-list-item .md-list-item-inner .md-secondary-container md-checkbox:last-child,
|
|
[dir=rtl] md-list-item .md-secondary-container md-checkbox:last-child {
|
|
margin-left: 0;
|
|
margin-right: auto;
|
|
}
|
|
|
|
md-list-item .md-list-item-inner .md-secondary-container md-switch,
|
|
md-list-item .md-secondary-container md-switch {
|
|
margin-bottom: 0;
|
|
margin-right: -6px;
|
|
margin-top: 0;
|
|
}
|
|
|
|
[dir=rtl] md-list-item .md-list-item-inner .md-secondary-container md-switch,
|
|
[dir=rtl] md-list-item .md-secondary-container md-switch {
|
|
margin-left: -6px;
|
|
margin-right: auto;
|
|
}
|
|
|
|
md-list-item .md-list-item-inner>.md-list-item-inner>p,
|
|
md-list-item .md-list-item-inner>p,
|
|
md-list-item>.md-list-item-inner>p,
|
|
md-list-item>p {
|
|
flex: 1 1 auto;
|
|
margin: 0;
|
|
}
|
|
|
|
md-list-item.md-2-line,
|
|
md-list-item.md-2-line>.md-no-style,
|
|
md-list-item.md-3-line,
|
|
md-list-item.md-3-line>.md-no-style {
|
|
align-items: flex-start;
|
|
justify-content: center;
|
|
}
|
|
|
|
md-list-item.md-2-line.md-long-text,
|
|
md-list-item.md-2-line>.md-no-style.md-long-text,
|
|
md-list-item.md-3-line.md-long-text,
|
|
md-list-item.md-3-line>.md-no-style.md-long-text {
|
|
margin-bottom: 8px;
|
|
margin-top: 8px;
|
|
}
|
|
|
|
md-list-item.md-2-line .md-list-item-text,
|
|
md-list-item.md-2-line>.md-no-style .md-list-item-text,
|
|
md-list-item.md-3-line .md-list-item-text,
|
|
md-list-item.md-3-line>.md-no-style .md-list-item-text {
|
|
flex: 1 1 auto;
|
|
margin: auto;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
md-list-item.md-2-line .md-list-item-text.md-offset,
|
|
md-list-item.md-2-line>.md-no-style .md-list-item-text.md-offset,
|
|
md-list-item.md-3-line .md-list-item-text.md-offset,
|
|
md-list-item.md-3-line>.md-no-style .md-list-item-text.md-offset {
|
|
margin-left: 56px;
|
|
}
|
|
|
|
[dir=rtl] md-list-item.md-2-line .md-list-item-text.md-offset,
|
|
[dir=rtl] md-list-item.md-2-line>.md-no-style .md-list-item-text.md-offset,
|
|
[dir=rtl] md-list-item.md-3-line .md-list-item-text.md-offset,
|
|
[dir=rtl] md-list-item.md-3-line>.md-no-style .md-list-item-text.md-offset {
|
|
margin-left: auto;
|
|
margin-right: 56px;
|
|
}
|
|
|
|
md-list-item.md-2-line .md-list-item-text h3,
|
|
md-list-item.md-2-line>.md-no-style .md-list-item-text h3,
|
|
md-list-item.md-3-line .md-list-item-text h3,
|
|
md-list-item.md-3-line>.md-no-style .md-list-item-text h3 {
|
|
font-size: 16px;
|
|
font-weight: 400;
|
|
letter-spacing: .01em;
|
|
line-height: 1.2em;
|
|
margin: 0;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
md-list-item.md-2-line .md-list-item-text h4,
|
|
md-list-item.md-2-line>.md-no-style .md-list-item-text h4,
|
|
md-list-item.md-3-line .md-list-item-text h4,
|
|
md-list-item.md-3-line>.md-no-style .md-list-item-text h4 {
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
letter-spacing: .01em;
|
|
line-height: 1.2em;
|
|
margin: 3px 0 1px;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
md-list-item.md-2-line .md-list-item-text p,
|
|
md-list-item.md-2-line>.md-no-style .md-list-item-text p,
|
|
md-list-item.md-3-line .md-list-item-text p,
|
|
md-list-item.md-3-line>.md-no-style .md-list-item-text p {
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
letter-spacing: .01em;
|
|
line-height: 1.6em;
|
|
margin: 0;
|
|
}
|
|
|
|
md-list-item.md-2-line,
|
|
md-list-item.md-2-line>.md-no-style {
|
|
height: auto;
|
|
min-height: 72px;
|
|
}
|
|
|
|
md-list-item.md-2-line:before,
|
|
md-list-item.md-2-line>.md-no-style:before {
|
|
content: "";
|
|
display: inline-block;
|
|
min-height: 72px;
|
|
visibility: hidden;
|
|
}
|
|
|
|
md-list-item.md-2-line .md-avatar-icon,
|
|
md-list-item.md-2-line>.md-avatar,
|
|
md-list-item.md-2-line>.md-no-style .md-avatar-icon,
|
|
md-list-item.md-2-line>.md-no-style>.md-avatar {
|
|
margin-top: 12px;
|
|
}
|
|
|
|
md-list-item.md-2-line>.md-no-style>md-icon:first-child,
|
|
md-list-item.md-2-line>md-icon:first-child {
|
|
align-self: flex-start;
|
|
}
|
|
|
|
md-list-item.md-2-line .md-list-item-text,
|
|
md-list-item.md-2-line>.md-no-style .md-list-item-text {
|
|
flex: 1 1 auto;
|
|
}
|
|
|
|
md-list-item.md-3-line,
|
|
md-list-item.md-3-line>.md-no-style {
|
|
height: auto;
|
|
min-height: 88px;
|
|
}
|
|
|
|
md-list-item.md-3-line:before,
|
|
md-list-item.md-3-line>.md-no-style:before {
|
|
content: "";
|
|
display: inline-block;
|
|
min-height: 88px;
|
|
visibility: hidden;
|
|
}
|
|
|
|
md-list-item.md-3-line>.md-avatar,
|
|
md-list-item.md-3-line>.md-no-style>.md-avatar,
|
|
md-list-item.md-3-line>.md-no-style>md-icon:first-child,
|
|
md-list-item.md-3-line>md-icon:first-child {
|
|
margin-top: 16px;
|
|
}
|
|
|
|
.md-open-menu-container {
|
|
border-radius: 2px;
|
|
left: 0;
|
|
max-height: calc(100vh - 10px);
|
|
opacity: 0;
|
|
overflow: auto;
|
|
position: fixed;
|
|
top: 0;
|
|
z-index: 100;
|
|
}
|
|
|
|
.md-open-menu-container md-menu-divider {
|
|
height: 1px;
|
|
margin-bottom: 4px;
|
|
margin-top: 4px;
|
|
max-height: 1px;
|
|
min-height: 1px;
|
|
width: 100%;
|
|
}
|
|
|
|
.md-open-menu-container md-menu-content>* {
|
|
opacity: 0;
|
|
}
|
|
|
|
.md-open-menu-container:not(.md-clickable) {
|
|
pointer-events: none;
|
|
}
|
|
|
|
.md-open-menu-container.md-active {
|
|
opacity: 1;
|
|
transition: all .4s cubic-bezier(.25,.8,.25,1);
|
|
transition-duration: .2s;
|
|
}
|
|
|
|
.md-open-menu-container.md-active>md-menu-content>* {
|
|
opacity: 1;
|
|
transition: all .3s cubic-bezier(.55,0,.55,.2);
|
|
transition-delay: .1s;
|
|
transition-duration: .2s;
|
|
}
|
|
|
|
.md-open-menu-container.md-leave {
|
|
opacity: 0;
|
|
transition: all .3s cubic-bezier(.55,0,.55,.2);
|
|
transition-duration: .25s;
|
|
}
|
|
|
|
md-menu-content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
max-height: 304px;
|
|
overflow-y: auto;
|
|
padding: 8px 0;
|
|
}
|
|
|
|
md-menu-content.md-dense {
|
|
max-height: 208px;
|
|
}
|
|
|
|
md-menu-content.md-dense md-menu-item {
|
|
height: 32px;
|
|
min-height: 32px;
|
|
}
|
|
|
|
md-menu-item {
|
|
align-content: center;
|
|
display: flex;
|
|
flex-direction: row;
|
|
height: 48px;
|
|
justify-content: flex-start;
|
|
min-height: 48px;
|
|
}
|
|
|
|
md-menu-item>* {
|
|
margin: auto 0;
|
|
padding-left: 16px;
|
|
padding-right: 16px;
|
|
width: 100%;
|
|
}
|
|
|
|
md-menu-item>a.md-button {
|
|
padding-top: 5px;
|
|
}
|
|
|
|
md-menu-item>.md-button {
|
|
border-radius: 0;
|
|
display: inline-block;
|
|
font-size: 15px;
|
|
font-weight: 400;
|
|
height: 100%;
|
|
margin: auto 0;
|
|
padding-left: 16px;
|
|
padding-right: 16px;
|
|
text-align: left;
|
|
text-transform: none;
|
|
width: 100%;
|
|
}
|
|
|
|
md-menu-item>.md-button::-moz-focus-inner {
|
|
border: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
[dir=rtl] md-menu-item>.md-button {
|
|
text-align: right;
|
|
}
|
|
|
|
md-menu-item>.md-button md-icon {
|
|
margin: auto 16px auto 0;
|
|
}
|
|
|
|
[dir=rtl] md-menu-item>.md-button md-icon {
|
|
margin: auto 0 auto 16px;
|
|
}
|
|
|
|
md-menu-item>.md-button p {
|
|
display: inline-block;
|
|
margin: auto;
|
|
}
|
|
|
|
md-menu-item>.md-button span {
|
|
margin-bottom: auto;
|
|
margin-top: auto;
|
|
}
|
|
|
|
md-menu-item>.md-button .md-ripple-container {
|
|
border-radius: inherit;
|
|
}
|
|
|
|
md-toolbar .md-menu {
|
|
height: auto;
|
|
margin: auto;
|
|
padding: 0;
|
|
}
|
|
|
|
@media (max-width:959px) {
|
|
md-menu-content {
|
|
min-width: 112px;
|
|
}
|
|
|
|
md-menu-content[width="3"] {
|
|
min-width: 168px;
|
|
}
|
|
|
|
md-menu-content[width="4"] {
|
|
min-width: 224px;
|
|
}
|
|
|
|
md-menu-content[width="5"] {
|
|
min-width: 280px;
|
|
}
|
|
|
|
md-menu-content[width="6"] {
|
|
min-width: 336px;
|
|
}
|
|
|
|
md-menu-content[width="7"] {
|
|
min-width: 392px;
|
|
}
|
|
}
|
|
|
|
@media (min-width:960px) {
|
|
md-menu-content {
|
|
min-width: 96px;
|
|
}
|
|
|
|
md-menu-content[width="3"] {
|
|
min-width: 192px;
|
|
}
|
|
|
|
md-menu-content[width="4"] {
|
|
min-width: 256px;
|
|
}
|
|
|
|
md-menu-content[width="5"] {
|
|
min-width: 320px;
|
|
}
|
|
|
|
md-menu-content[width="6"] {
|
|
min-width: 384px;
|
|
}
|
|
|
|
md-menu-content[width="7"] {
|
|
min-width: 448px;
|
|
}
|
|
}
|
|
|
|
md-toolbar.md-menu-toolbar h2.md-toolbar-tools {
|
|
height: auto;
|
|
line-height: 1rem;
|
|
padding: 28px 28px 12px;
|
|
}
|
|
|
|
md-toolbar.md-has-open-menu {
|
|
position: relative;
|
|
z-index: 100;
|
|
}
|
|
|
|
md-menu-bar {
|
|
display: block;
|
|
padding: 0 20px;
|
|
position: relative;
|
|
z-index: 2;
|
|
}
|
|
|
|
md-menu-bar .md-menu {
|
|
display: inline-block;
|
|
padding: 0;
|
|
position: relative;
|
|
}
|
|
|
|
md-menu-bar button {
|
|
background-color: transparent;
|
|
border: 0;
|
|
font-size: 14px;
|
|
height: 40px;
|
|
margin: 0;
|
|
padding: 0 10px;
|
|
}
|
|
|
|
md-menu-bar md-backdrop.md-menu-backdrop {
|
|
z-index: -2;
|
|
}
|
|
|
|
md-menu-content.md-menu-bar-menu.md-dense {
|
|
max-height: none;
|
|
padding: 16px 0;
|
|
}
|
|
|
|
md-menu-content.md-menu-bar-menu.md-dense md-menu-item.md-indent {
|
|
position: relative;
|
|
}
|
|
|
|
md-menu-content.md-menu-bar-menu.md-dense md-menu-item.md-indent>md-icon {
|
|
left: 24px;
|
|
padding: 0;
|
|
position: absolute;
|
|
top: 6px;
|
|
width: 24px;
|
|
}
|
|
|
|
[dir=rtl] md-menu-content.md-menu-bar-menu.md-dense md-menu-item.md-indent>md-icon {
|
|
left: auto;
|
|
right: 24px;
|
|
}
|
|
|
|
md-menu-content.md-menu-bar-menu.md-dense md-menu-item.md-indent .md-menu>.md-button,
|
|
md-menu-content.md-menu-bar-menu.md-dense md-menu-item.md-indent>.md-button {
|
|
padding: 0 32px 0 64px;
|
|
}
|
|
|
|
[dir=rtl] md-menu-content.md-menu-bar-menu.md-dense md-menu-item.md-indent .md-menu>.md-button,
|
|
[dir=rtl] md-menu-content.md-menu-bar-menu.md-dense md-menu-item.md-indent>.md-button {
|
|
padding: 0 64px 0 32px;
|
|
}
|
|
|
|
md-menu-content.md-menu-bar-menu.md-dense .md-button {
|
|
height: 32px;
|
|
min-height: 0;
|
|
}
|
|
|
|
md-menu-content.md-menu-bar-menu.md-dense .md-button span {
|
|
float: left;
|
|
}
|
|
|
|
[dir=rtl] md-menu-content.md-menu-bar-menu.md-dense .md-button span {
|
|
float: right;
|
|
}
|
|
|
|
md-menu-content.md-menu-bar-menu.md-dense .md-button span.md-alt-text {
|
|
float: right;
|
|
margin: 0 8px;
|
|
}
|
|
|
|
[dir=rtl] md-menu-content.md-menu-bar-menu.md-dense .md-button span.md-alt-text {
|
|
float: left;
|
|
}
|
|
|
|
md-menu-content.md-menu-bar-menu.md-dense md-menu-divider {
|
|
margin: 8px 0;
|
|
}
|
|
|
|
md-menu-content.md-menu-bar-menu.md-dense .md-menu>.md-button,
|
|
md-menu-content.md-menu-bar-menu.md-dense md-menu-item>.md-button {
|
|
text-align: left;
|
|
}
|
|
|
|
[dir=rtl] md-menu-content.md-menu-bar-menu.md-dense .md-menu>.md-button,
|
|
[dir=rtl] md-menu-content.md-menu-bar-menu.md-dense md-menu-item>.md-button {
|
|
text-align: right;
|
|
}
|
|
|
|
md-menu-content.md-menu-bar-menu.md-dense .md-menu {
|
|
padding: 0;
|
|
}
|
|
|
|
md-menu-content.md-menu-bar-menu.md-dense .md-menu>.md-button {
|
|
border-radius: 0;
|
|
font-weight: 400;
|
|
margin: 0;
|
|
padding-left: 16px;
|
|
position: relative;
|
|
text-transform: none;
|
|
width: 100%;
|
|
}
|
|
|
|
[dir=rtl] md-menu-content.md-menu-bar-menu.md-dense .md-menu>.md-button {
|
|
padding-left: 0;
|
|
padding-right: 16px;
|
|
}
|
|
|
|
md-menu-content.md-menu-bar-menu.md-dense .md-menu>.md-button:after {
|
|
speak: none;
|
|
content: "▼";
|
|
display: block;
|
|
position: absolute;
|
|
right: 28px;
|
|
top: 0;
|
|
transform: rotate(270deg) scaleY(.45) scaleX(.9);
|
|
}
|
|
|
|
[dir=rtl] md-menu-content.md-menu-bar-menu.md-dense .md-menu>.md-button:after {
|
|
left: 28px;
|
|
right: auto;
|
|
transform: rotate(90deg) scaleY(.45) scaleX(.9);
|
|
}
|
|
|
|
.md-nav-bar {
|
|
border-style: solid;
|
|
border-width: 0 0 1px;
|
|
height: 48px;
|
|
position: relative;
|
|
}
|
|
|
|
._md-nav-bar-list {
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
flex-direction: row;
|
|
list-style: none;
|
|
margin: 0;
|
|
outline: none;
|
|
padding: 0;
|
|
}
|
|
|
|
.md-nav-item:first-of-type {
|
|
margin-left: 8px;
|
|
}
|
|
|
|
.md-button._md-nav-button {
|
|
line-height: 24px;
|
|
margin: 0 4px;
|
|
padding: 12px 16px;
|
|
transition: background-color .35s cubic-bezier(.35,0,.25,1);
|
|
}
|
|
|
|
.md-button._md-nav-button:focus {
|
|
outline: none;
|
|
}
|
|
|
|
md-nav-ink-bar {
|
|
background-color: #000;
|
|
bottom: 0;
|
|
height: 2px;
|
|
left: 0;
|
|
position: absolute;
|
|
transform-origin: left top;
|
|
transition: transform .125s cubic-bezier(.35,0,.25,1);
|
|
width: 100%;
|
|
will-change: transform;
|
|
}
|
|
|
|
md-nav-ink-bar.ng-animate {
|
|
transition: none;
|
|
}
|
|
|
|
md-nav-extra-content {
|
|
min-height: 48px;
|
|
padding-right: 12px;
|
|
}
|
|
|
|
@-webkit-keyframes indeterminate-rotate {
|
|
0% {
|
|
transform: rotate(0deg);
|
|
}
|
|
|
|
to {
|
|
transform: rotate(1turn);
|
|
}
|
|
}
|
|
|
|
@keyframes indeterminate-rotate {
|
|
0% {
|
|
transform: rotate(0deg);
|
|
}
|
|
|
|
to {
|
|
transform: rotate(1turn);
|
|
}
|
|
}
|
|
|
|
md-progress-circular {
|
|
display: block;
|
|
position: relative;
|
|
transform: scale(1,1);
|
|
}
|
|
|
|
[dir=rtl] md-progress-circular {
|
|
transform: scale(-1,1);
|
|
}
|
|
|
|
md-progress-circular._md-progress-circular-disabled {
|
|
visibility: hidden;
|
|
}
|
|
|
|
md-progress-circular.md-mode-indeterminate svg {
|
|
-webkit-animation: indeterminate-rotate 1568.63ms linear infinite;
|
|
animation: indeterminate-rotate 1568.63ms linear infinite;
|
|
}
|
|
|
|
md-progress-circular svg {
|
|
left: 0;
|
|
overflow: visible;
|
|
position: absolute;
|
|
top: 0;
|
|
}
|
|
|
|
md-progress-linear {
|
|
display: block;
|
|
height: 5px;
|
|
margin-bottom: 0!important;
|
|
padding-top: 0!important;
|
|
position: relative;
|
|
transform: scale(1,1);
|
|
width: 100%;
|
|
}
|
|
|
|
[dir=rtl] md-progress-linear {
|
|
transform: scale(-1,1);
|
|
}
|
|
|
|
md-progress-linear._md-progress-linear-disabled {
|
|
visibility: hidden;
|
|
}
|
|
|
|
md-progress-linear .md-container {
|
|
display: block;
|
|
height: 5px;
|
|
overflow: hidden;
|
|
position: relative;
|
|
transform: translate(0,0) scale(1,1);
|
|
width: 100%;
|
|
}
|
|
|
|
md-progress-linear .md-container .md-bar {
|
|
bottom: 0;
|
|
height: 5px;
|
|
left: 0;
|
|
position: absolute;
|
|
top: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
md-progress-linear .md-container .md-dashed:before {
|
|
background-color: transparent;
|
|
background-position: 0 -23px;
|
|
background-size: 10px 10px!important;
|
|
content: "";
|
|
display: none;
|
|
height: 5px;
|
|
margin-top: 0;
|
|
position: absolute;
|
|
width: 100%;
|
|
}
|
|
|
|
md-progress-linear .md-container .md-bar1,
|
|
md-progress-linear .md-container .md-bar2 {
|
|
transition: transform .2s linear;
|
|
}
|
|
|
|
md-progress-linear .md-container.md-mode-query .md-bar1 {
|
|
display: none;
|
|
}
|
|
|
|
md-progress-linear .md-container.md-mode-query .md-bar2 {
|
|
-webkit-animation: query .8s cubic-bezier(.39,.575,.565,1) infinite;
|
|
animation: query .8s cubic-bezier(.39,.575,.565,1) infinite;
|
|
transition: all .2s linear;
|
|
}
|
|
|
|
md-progress-linear .md-container.md-mode-determinate .md-bar1 {
|
|
display: none;
|
|
}
|
|
|
|
md-progress-linear .md-container.md-mode-indeterminate .md-bar1 {
|
|
-webkit-animation: md-progress-linear-indeterminate-scale-1 4s infinite,md-progress-linear-indeterminate-1 4s infinite;
|
|
animation: md-progress-linear-indeterminate-scale-1 4s infinite,md-progress-linear-indeterminate-1 4s infinite;
|
|
}
|
|
|
|
md-progress-linear .md-container.md-mode-indeterminate .md-bar2 {
|
|
-webkit-animation: md-progress-linear-indeterminate-scale-2 4s infinite,md-progress-linear-indeterminate-2 4s infinite;
|
|
animation: md-progress-linear-indeterminate-scale-2 4s infinite,md-progress-linear-indeterminate-2 4s infinite;
|
|
}
|
|
|
|
md-progress-linear .md-container.ng-hide ._md-progress-linear-disabled md-progress-linear .md-container {
|
|
-webkit-animation: none;
|
|
animation: none;
|
|
}
|
|
|
|
md-progress-linear .md-container.ng-hide ._md-progress-linear-disabled md-progress-linear .md-container .md-bar1,
|
|
md-progress-linear .md-container.ng-hide ._md-progress-linear-disabled md-progress-linear .md-container .md-bar2 {
|
|
-webkit-animation-name: none;
|
|
animation-name: none;
|
|
}
|
|
|
|
md-progress-linear .md-container.md-mode-buffer {
|
|
background-color: transparent!important;
|
|
transition: all .2s linear;
|
|
}
|
|
|
|
md-progress-linear .md-container.md-mode-buffer .md-dashed:before {
|
|
-webkit-animation: buffer 3s linear infinite;
|
|
animation: buffer 3s linear infinite;
|
|
display: block;
|
|
}
|
|
|
|
@-webkit-keyframes query {
|
|
0% {
|
|
opacity: 1;
|
|
transform: translateX(35%) scale(.3,1);
|
|
}
|
|
|
|
to {
|
|
opacity: 0;
|
|
transform: translateX(-50%) scale(0,1);
|
|
}
|
|
}
|
|
|
|
@keyframes query {
|
|
0% {
|
|
opacity: 1;
|
|
transform: translateX(35%) scale(.3,1);
|
|
}
|
|
|
|
to {
|
|
opacity: 0;
|
|
transform: translateX(-50%) scale(0,1);
|
|
}
|
|
}
|
|
|
|
@-webkit-keyframes buffer {
|
|
0% {
|
|
background-position: 0 -23px;
|
|
opacity: 1;
|
|
}
|
|
|
|
50% {
|
|
opacity: 0;
|
|
}
|
|
|
|
to {
|
|
background-position: -200px -23px;
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
@keyframes buffer {
|
|
0% {
|
|
background-position: 0 -23px;
|
|
opacity: 1;
|
|
}
|
|
|
|
50% {
|
|
opacity: 0;
|
|
}
|
|
|
|
to {
|
|
background-position: -200px -23px;
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
@-webkit-keyframes md-progress-linear-indeterminate-scale-1 {
|
|
0% {
|
|
-webkit-animation-timing-function: linear;
|
|
animation-timing-function: linear;
|
|
transform: scaleX(.1);
|
|
}
|
|
|
|
36.6% {
|
|
-webkit-animation-timing-function: cubic-bezier(.334731432,.124819821,.785843996,1);
|
|
animation-timing-function: cubic-bezier(.334731432,.124819821,.785843996,1);
|
|
transform: scaleX(.1);
|
|
}
|
|
|
|
69.15% {
|
|
-webkit-animation-timing-function: cubic-bezier(.225732004,0,.233648906,1.3709798);
|
|
animation-timing-function: cubic-bezier(.225732004,0,.233648906,1.3709798);
|
|
transform: scaleX(.83);
|
|
}
|
|
|
|
to {
|
|
transform: scaleX(.1);
|
|
}
|
|
}
|
|
|
|
@keyframes md-progress-linear-indeterminate-scale-1 {
|
|
0% {
|
|
-webkit-animation-timing-function: linear;
|
|
animation-timing-function: linear;
|
|
transform: scaleX(.1);
|
|
}
|
|
|
|
36.6% {
|
|
-webkit-animation-timing-function: cubic-bezier(.334731432,.124819821,.785843996,1);
|
|
animation-timing-function: cubic-bezier(.334731432,.124819821,.785843996,1);
|
|
transform: scaleX(.1);
|
|
}
|
|
|
|
69.15% {
|
|
-webkit-animation-timing-function: cubic-bezier(.225732004,0,.233648906,1.3709798);
|
|
animation-timing-function: cubic-bezier(.225732004,0,.233648906,1.3709798);
|
|
transform: scaleX(.83);
|
|
}
|
|
|
|
to {
|
|
transform: scaleX(.1);
|
|
}
|
|
}
|
|
|
|
@-webkit-keyframes md-progress-linear-indeterminate-1 {
|
|
0% {
|
|
-webkit-animation-timing-function: linear;
|
|
animation-timing-function: linear;
|
|
left: -105.1666666667%;
|
|
}
|
|
|
|
20% {
|
|
-webkit-animation-timing-function: cubic-bezier(.5,0,.701732,.495818703);
|
|
animation-timing-function: cubic-bezier(.5,0,.701732,.495818703);
|
|
left: -105.1666666667%;
|
|
}
|
|
|
|
69.15% {
|
|
-webkit-animation-timing-function: cubic-bezier(.302435,.38135197,.55,.956352125);
|
|
animation-timing-function: cubic-bezier(.302435,.38135197,.55,.956352125);
|
|
left: 21.5%;
|
|
}
|
|
|
|
to {
|
|
left: 95.4444444444%;
|
|
}
|
|
}
|
|
|
|
@keyframes md-progress-linear-indeterminate-1 {
|
|
0% {
|
|
-webkit-animation-timing-function: linear;
|
|
animation-timing-function: linear;
|
|
left: -105.1666666667%;
|
|
}
|
|
|
|
20% {
|
|
-webkit-animation-timing-function: cubic-bezier(.5,0,.701732,.495818703);
|
|
animation-timing-function: cubic-bezier(.5,0,.701732,.495818703);
|
|
left: -105.1666666667%;
|
|
}
|
|
|
|
69.15% {
|
|
-webkit-animation-timing-function: cubic-bezier(.302435,.38135197,.55,.956352125);
|
|
animation-timing-function: cubic-bezier(.302435,.38135197,.55,.956352125);
|
|
left: 21.5%;
|
|
}
|
|
|
|
to {
|
|
left: 95.4444444444%;
|
|
}
|
|
}
|
|
|
|
@-webkit-keyframes md-progress-linear-indeterminate-scale-2 {
|
|
0% {
|
|
-webkit-animation-timing-function: cubic-bezier(.205028172,.057050836,.57660995,.453970841);
|
|
animation-timing-function: cubic-bezier(.205028172,.057050836,.57660995,.453970841);
|
|
transform: scaleX(.1);
|
|
}
|
|
|
|
19.15% {
|
|
-webkit-animation-timing-function: cubic-bezier(.152312994,.196431957,.648373778,1.00431535);
|
|
animation-timing-function: cubic-bezier(.152312994,.196431957,.648373778,1.00431535);
|
|
transform: scaleX(.57);
|
|
}
|
|
|
|
44.15% {
|
|
-webkit-animation-timing-function: cubic-bezier(.25775882,-.003163357,.211761916,1.38178961);
|
|
animation-timing-function: cubic-bezier(.25775882,-.003163357,.211761916,1.38178961);
|
|
transform: scaleX(.91);
|
|
}
|
|
|
|
to {
|
|
transform: scaleX(.1);
|
|
}
|
|
}
|
|
|
|
@keyframes md-progress-linear-indeterminate-scale-2 {
|
|
0% {
|
|
-webkit-animation-timing-function: cubic-bezier(.205028172,.057050836,.57660995,.453970841);
|
|
animation-timing-function: cubic-bezier(.205028172,.057050836,.57660995,.453970841);
|
|
transform: scaleX(.1);
|
|
}
|
|
|
|
19.15% {
|
|
-webkit-animation-timing-function: cubic-bezier(.152312994,.196431957,.648373778,1.00431535);
|
|
animation-timing-function: cubic-bezier(.152312994,.196431957,.648373778,1.00431535);
|
|
transform: scaleX(.57);
|
|
}
|
|
|
|
44.15% {
|
|
-webkit-animation-timing-function: cubic-bezier(.25775882,-.003163357,.211761916,1.38178961);
|
|
animation-timing-function: cubic-bezier(.25775882,-.003163357,.211761916,1.38178961);
|
|
transform: scaleX(.91);
|
|
}
|
|
|
|
to {
|
|
transform: scaleX(.1);
|
|
}
|
|
}
|
|
|
|
@-webkit-keyframes md-progress-linear-indeterminate-2 {
|
|
0% {
|
|
-webkit-animation-timing-function: cubic-bezier(.15,0,.5150584,.409684966);
|
|
animation-timing-function: cubic-bezier(.15,0,.5150584,.409684966);
|
|
left: -54.8888888889%;
|
|
}
|
|
|
|
25% {
|
|
-webkit-animation-timing-function: cubic-bezier(.3103299,.284057684,.8,.733718979);
|
|
animation-timing-function: cubic-bezier(.3103299,.284057684,.8,.733718979);
|
|
left: -17.25%;
|
|
}
|
|
|
|
48.35% {
|
|
-webkit-animation-timing-function: cubic-bezier(.4,.627034903,.6,.902025796);
|
|
animation-timing-function: cubic-bezier(.4,.627034903,.6,.902025796);
|
|
left: 29.5%;
|
|
}
|
|
|
|
to {
|
|
left: 117.3888888889%;
|
|
}
|
|
}
|
|
|
|
@keyframes md-progress-linear-indeterminate-2 {
|
|
0% {
|
|
-webkit-animation-timing-function: cubic-bezier(.15,0,.5150584,.409684966);
|
|
animation-timing-function: cubic-bezier(.15,0,.5150584,.409684966);
|
|
left: -54.8888888889%;
|
|
}
|
|
|
|
25% {
|
|
-webkit-animation-timing-function: cubic-bezier(.3103299,.284057684,.8,.733718979);
|
|
animation-timing-function: cubic-bezier(.3103299,.284057684,.8,.733718979);
|
|
left: -17.25%;
|
|
}
|
|
|
|
48.35% {
|
|
-webkit-animation-timing-function: cubic-bezier(.4,.627034903,.6,.902025796);
|
|
animation-timing-function: cubic-bezier(.4,.627034903,.6,.902025796);
|
|
left: 29.5%;
|
|
}
|
|
|
|
to {
|
|
left: 117.3888888889%;
|
|
}
|
|
}
|
|
|
|
md-radio-button {
|
|
box-sizing: border-box;
|
|
cursor: pointer;
|
|
display: block;
|
|
margin-bottom: 16px;
|
|
position: relative;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
md-radio-button[disabled],
|
|
md-radio-button[disabled] .md-container {
|
|
cursor: default;
|
|
}
|
|
|
|
md-radio-button .md-container {
|
|
box-sizing: border-box;
|
|
cursor: pointer;
|
|
display: inline-block;
|
|
height: 20px;
|
|
left: 0;
|
|
position: absolute;
|
|
right: auto;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
width: 20px;
|
|
}
|
|
|
|
[dir=rtl] md-radio-button .md-container {
|
|
left: auto;
|
|
right: 0;
|
|
}
|
|
|
|
md-radio-button .md-container .md-ripple-container {
|
|
bottom: -15px;
|
|
display: block;
|
|
height: auto;
|
|
left: -15px;
|
|
position: absolute;
|
|
right: -15px;
|
|
top: -15px;
|
|
width: auto;
|
|
}
|
|
|
|
md-radio-button .md-container:before {
|
|
background-color: transparent;
|
|
border-radius: 50%;
|
|
bottom: 0;
|
|
box-sizing: border-box;
|
|
content: "";
|
|
display: block;
|
|
height: auto;
|
|
left: 0;
|
|
position: absolute;
|
|
right: 0;
|
|
top: 0;
|
|
transition: all .5s;
|
|
width: auto;
|
|
}
|
|
|
|
md-radio-button.md-align-top-left>div.md-container {
|
|
top: 12px;
|
|
}
|
|
|
|
md-radio-button .md-off {
|
|
border-style: solid;
|
|
border-width: 2px;
|
|
transition: border-color .28s ease;
|
|
}
|
|
|
|
md-radio-button .md-off,
|
|
md-radio-button .md-on {
|
|
border-radius: 50%;
|
|
box-sizing: border-box;
|
|
height: 20px;
|
|
left: 0;
|
|
position: absolute;
|
|
top: 0;
|
|
width: 20px;
|
|
}
|
|
|
|
md-radio-button .md-on {
|
|
transform: scale(0);
|
|
transition: transform .28s ease;
|
|
}
|
|
|
|
md-radio-button.md-checked .md-on {
|
|
transform: scale(.5);
|
|
}
|
|
|
|
md-radio-button .md-label {
|
|
box-sizing: border-box;
|
|
display: inline-block;
|
|
margin-left: 30px;
|
|
margin-right: 0;
|
|
pointer-events: none;
|
|
position: relative;
|
|
vertical-align: middle;
|
|
white-space: normal;
|
|
width: auto;
|
|
}
|
|
|
|
[dir=rtl] md-radio-button .md-label {
|
|
margin-left: 0;
|
|
margin-right: 30px;
|
|
}
|
|
|
|
md-radio-group:focus {
|
|
outline: none;
|
|
}
|
|
|
|
md-radio-group.md-focused.ng-empty>md-radio-button:first-child .md-container:before,
|
|
md-radio-group.md-focused.ng-not-empty .md-checked .md-container:before {
|
|
bottom: -8px;
|
|
left: -8px;
|
|
right: -8px;
|
|
top: -8px;
|
|
}
|
|
|
|
md-radio-group[disabled] md-radio-button,
|
|
md-radio-group[disabled] md-radio-button .md-container {
|
|
cursor: default;
|
|
}
|
|
|
|
@media (max-width:599px) {
|
|
.layout-row:not(.layout-xs-column)>md-radio-button,
|
|
.layout-xs-row>md-radio-button {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
|
|
@media (min-width:600px) and (max-width:959px) {
|
|
.layout-gt-xs-row:not(.layout-sm-column)>md-radio-button,
|
|
.layout-row:not(.layout-gt-xs-column):not(.layout-sm-column)>md-radio-button,
|
|
.layout-sm-row:not(.layout-sm-column)>md-radio-button {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
|
|
@media (min-width:960px) and (max-width:1279px) {
|
|
.layout-gt-sm-row:not(.layout-md-column)>md-radio-button,
|
|
.layout-gt-xs-row:not(.layout-gt-sm-column):not(.layout-md-column)>md-radio-button,
|
|
.layout-md-row:not(.layout-md-column)>md-radio-button,
|
|
.layout-row:not(.layout-gt-xs-column):not(.layout-gt-sm-column):not(.layout-md-column)>md-radio-button {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
|
|
@media (min-width:1280px) and (max-width:1919px) {
|
|
.layout-gt-md-row:not(.layout-lg-column)>md-radio-button,
|
|
.layout-gt-sm-row:not(.layout-gt-md-column):not(.layout-lg-column)>md-radio-button,
|
|
.layout-gt-xs-row:not(.layout-gt-sm-column):not(.layout-gt-md-column):not(.layout-lg-column)>md-radio-button,
|
|
.layout-lg-row:not(.layout-lg-column)>md-radio-button,
|
|
.layout-row:not(.layout-gt-xs-column):not(.layout-gt-sm-column):not(.layout-gt-md-column):not(.layout-lg-column)>md-radio-button {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
|
|
@media (min-width:1920px) {
|
|
.layout-gt-lg-row:not(.layout-gt-lg-column):not(.layout-xl-column)>md-radio-button,
|
|
.layout-gt-md-row:not(.layout-gt-lg-column):not(.layout-xl-column)>md-radio-button,
|
|
.layout-gt-sm-row:not(.layout-gt-md-column):not(.layout-gt-lg-column):not(.layout-xl-column)>md-radio-button,
|
|
.layout-gt-xs-row:not(.layout-gt-sm-column):not(.layout-gt-md-column):not(.layout-gt-lg-column):not(.layout-xl-column)>md-radio-button,
|
|
.layout-row:not(.layout-gt-xs-column):not(.layout-gt-sm-column):not(.layout-gt-md-column):not(.layout-gt-lg-column):not(.layout-xl-column)>md-radio-button,
|
|
.layout-xl-row:not(.layout-gt-lg-column):not(.layout-xl-column)>md-radio-button {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
|
|
.md-inline-form md-radio-group {
|
|
margin: 18px 0 19px;
|
|
}
|
|
|
|
.md-inline-form md-radio-group md-radio-button {
|
|
box-sizing: border-box;
|
|
display: inline-block;
|
|
height: 30px;
|
|
margin-bottom: 0;
|
|
margin-top: 0;
|
|
padding: 2px 10px 2px 6px;
|
|
}
|
|
|
|
.md-inline-form md-radio-group md-radio-button .md-label {
|
|
top: 4px;
|
|
}
|
|
|
|
.md-inline-form md-radio-group md-radio-button .md-container {
|
|
margin-top: 2px;
|
|
}
|
|
|
|
@media screen and (-ms-high-contrast:active) {
|
|
md-radio-button.md-default-theme .md-on {
|
|
background-color: #fff;
|
|
}
|
|
}
|
|
|
|
md-input-container:not([md-no-float]) .md-select-placeholder span:first-child {
|
|
transform-origin: left top;
|
|
transition: transform .4s cubic-bezier(.25,.8,.25,1);
|
|
}
|
|
|
|
[dir=rtl] md-input-container:not([md-no-float]) .md-select-placeholder span:first-child {
|
|
transform-origin: right top;
|
|
}
|
|
|
|
md-input-container.md-input-focused:not([md-no-float]) md-select:not([placeholder]) .md-select-placeholder span:first-child {
|
|
transform: translate(-2px,-22px) scale(.75);
|
|
}
|
|
|
|
.md-select-menu-container {
|
|
display: none;
|
|
left: 0;
|
|
opacity: 0;
|
|
position: fixed;
|
|
top: 0;
|
|
transform: translateY(-1px);
|
|
z-index: 90;
|
|
}
|
|
|
|
.md-select-menu-container:not(.md-clickable) {
|
|
pointer-events: none;
|
|
}
|
|
|
|
.md-select-menu-container md-progress-circular {
|
|
display: table;
|
|
margin: 24px auto!important;
|
|
}
|
|
|
|
.md-select-menu-container.md-active {
|
|
display: block;
|
|
opacity: 1;
|
|
}
|
|
|
|
.md-select-menu-container.md-active md-select-menu {
|
|
transition: all .4s cubic-bezier(.25,.8,.25,1);
|
|
transition-duration: .15s;
|
|
}
|
|
|
|
.md-select-menu-container.md-active md-select-menu>* {
|
|
opacity: 1;
|
|
transition: all .3s cubic-bezier(.55,0,.55,.2);
|
|
transition-delay: .1s;
|
|
transition-duration: .15s;
|
|
}
|
|
|
|
.md-select-menu-container.md-leave {
|
|
opacity: 0;
|
|
transition: all .3s cubic-bezier(.55,0,.55,.2);
|
|
transition-duration: .25s;
|
|
}
|
|
|
|
.md-inline-form md-select {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.md-inline-form md-input-container>md-select,
|
|
md-input-container>md-select {
|
|
margin-top: 0;
|
|
}
|
|
|
|
md-input-container>md-select {
|
|
order: 2;
|
|
}
|
|
|
|
md-input-container:not(.md-input-has-value) md-select.ng-required:not(.md-no-asterisk) .md-select-value span:first-child:after,
|
|
md-input-container:not(.md-input-has-value) md-select[required]:not(.md-no-asterisk) .md-select-value span:first-child:after {
|
|
content: " *";
|
|
font-size: 13px;
|
|
vertical-align: top;
|
|
}
|
|
|
|
md-input-container.md-input-invalid md-select .md-select-value {
|
|
border-bottom-style: solid;
|
|
padding-bottom: 1px;
|
|
}
|
|
|
|
md-select {
|
|
display: flex;
|
|
}
|
|
|
|
md-select.ng-required.ng-empty.ng-invalid:not(.md-no-asterisk) .md-select-value span:first-child:after,
|
|
md-select[required].ng-empty.ng-invalid:not(.md-no-asterisk) .md-select-value span:first-child:after {
|
|
content: " *";
|
|
font-size: 13px;
|
|
vertical-align: top;
|
|
}
|
|
|
|
md-select[disabled] .md-select-value {
|
|
background-position: bottom -1px left 0;
|
|
background-repeat: repeat-x;
|
|
background-size: 4px 1px;
|
|
padding-bottom: 2px;
|
|
padding-top: 1px;
|
|
transform: translateY(1px);
|
|
}
|
|
|
|
md-select:focus {
|
|
outline: none;
|
|
}
|
|
|
|
md-select[disabled]:hover {
|
|
cursor: default;
|
|
}
|
|
|
|
md-select:not([disabled]):hover {
|
|
cursor: pointer;
|
|
}
|
|
|
|
md-select:not([disabled]):focus .md-select-value {
|
|
border-bottom-style: solid;
|
|
border-bottom-width: 2px;
|
|
padding-bottom: 0;
|
|
}
|
|
|
|
md-input-container md-select:not([disabled]):focus .md-select-value {
|
|
border-bottom-width: 2px;
|
|
}
|
|
|
|
md-input-container md-select[disabled] .md-select-value {
|
|
background-position: bottom -1px left 0;
|
|
}
|
|
|
|
md-input-container md-select .md-select-value {
|
|
border-bottom-width: 1px;
|
|
min-height: 26px;
|
|
padding-bottom: 1px;
|
|
}
|
|
|
|
md-input-container md-select .md-select-value.md-select-placeholder {
|
|
padding-left: 0;
|
|
padding-right: 2px;
|
|
}
|
|
|
|
[dir=rtl] md-input-container md-select .md-select-value.md-select-placeholder {
|
|
padding-left: 2px;
|
|
padding-right: 0;
|
|
}
|
|
|
|
.md-select-value {
|
|
-ms-flex-item-align: start;
|
|
align-items: center;
|
|
background-color: transparent;
|
|
border-bottom-style: solid;
|
|
border-bottom-width: 1px;
|
|
box-sizing: content-box;
|
|
display: flex;
|
|
flex-grow: 1;
|
|
margin-bottom: auto;
|
|
min-height: 26px;
|
|
min-width: 88px;
|
|
padding: 2px 2px 1px 0;
|
|
position: relative;
|
|
}
|
|
|
|
[dir=rtl] .md-select-value {
|
|
padding-left: 2px;
|
|
padding-right: 0;
|
|
}
|
|
|
|
.md-select-value>span:not(.md-select-icon) {
|
|
flex: 1 1 auto;
|
|
max-width: 100%;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.md-select-value>span:not(.md-select-icon) .md-text {
|
|
display: inline;
|
|
}
|
|
|
|
.md-select-value .md-select-icon {
|
|
align-items: flex-end;
|
|
display: block;
|
|
font-size: 1.2rem;
|
|
text-align: right;
|
|
transform: translateY(-2px);
|
|
width: 24px;
|
|
}
|
|
|
|
[dir=rtl] .md-select-value .md-select-icon {
|
|
align-items: flex-start;
|
|
text-align: left;
|
|
}
|
|
|
|
.md-select-value .md-select-icon:after {
|
|
speak: none;
|
|
content: "▼";
|
|
display: block;
|
|
font-size: 13px;
|
|
left: auto;
|
|
position: relative;
|
|
right: -4px;
|
|
top: 2px;
|
|
transform: scaleY(.5);
|
|
}
|
|
|
|
[dir=rtl] .md-select-value .md-select-icon:after {
|
|
left: -4px;
|
|
right: auto;
|
|
}
|
|
|
|
.md-select-value.md-select-placeholder {
|
|
-webkit-font-smoothing: antialiased;
|
|
display: flex;
|
|
order: 1;
|
|
pointer-events: none;
|
|
z-index: 1;
|
|
}
|
|
|
|
md-select-menu {
|
|
box-shadow: 0 1px 3px 0 rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 2px 1px -1px rgba(0,0,0,.12);
|
|
display: flex;
|
|
flex-direction: column;
|
|
max-height: 256px;
|
|
min-height: 48px;
|
|
overflow-y: hidden;
|
|
transform: scale(1);
|
|
transform-origin: left top;
|
|
}
|
|
|
|
md-select-menu.md-reverse {
|
|
flex-direction: column-reverse;
|
|
}
|
|
|
|
md-select-menu:not(.md-overflow) md-content {
|
|
padding-bottom: 8px;
|
|
padding-top: 8px;
|
|
}
|
|
|
|
[dir=rtl] md-select-menu {
|
|
transform-origin: right top;
|
|
}
|
|
|
|
md-select-menu md-content {
|
|
max-height: 256px;
|
|
min-height: 48px;
|
|
min-width: 136px;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
md-select-menu>* {
|
|
opacity: 0;
|
|
}
|
|
|
|
md-option {
|
|
align-items: center;
|
|
cursor: pointer;
|
|
display: flex;
|
|
height: 48px;
|
|
padding: 0 16px;
|
|
position: relative;
|
|
transition: background .15s linear;
|
|
width: auto;
|
|
}
|
|
|
|
md-option[disabled] {
|
|
cursor: default;
|
|
}
|
|
|
|
md-option:focus {
|
|
outline: none;
|
|
}
|
|
|
|
md-option .md-text {
|
|
-webkit-touch-callout: none;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
-webkit-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
white-space: nowrap;
|
|
width: auto;
|
|
}
|
|
|
|
md-optgroup {
|
|
display: block;
|
|
}
|
|
|
|
md-optgroup label {
|
|
display: block;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
padding: 16px;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
md-optgroup md-option {
|
|
padding-left: 32px;
|
|
padding-right: 32px;
|
|
}
|
|
|
|
@media screen and (-ms-high-contrast:active) {
|
|
.md-select-backdrop {
|
|
background-color: transparent;
|
|
}
|
|
|
|
md-select-menu {
|
|
border: 1px solid #fff;
|
|
}
|
|
}
|
|
|
|
md-select-menu[multiple] md-option.md-checkbox-enabled {
|
|
padding-left: 40px;
|
|
padding-right: 16px;
|
|
}
|
|
|
|
[dir=rtl] md-select-menu[multiple] md-option.md-checkbox-enabled {
|
|
padding-left: 16px;
|
|
padding-right: 40px;
|
|
}
|
|
|
|
md-select-menu[multiple] md-option.md-checkbox-enabled .md-container {
|
|
box-sizing: border-box;
|
|
display: inline-block;
|
|
height: 18px;
|
|
left: 0;
|
|
position: absolute;
|
|
right: auto;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
width: 18px;
|
|
}
|
|
|
|
[dir=rtl] md-select-menu[multiple] md-option.md-checkbox-enabled .md-container {
|
|
left: auto;
|
|
right: 0;
|
|
}
|
|
|
|
md-select-menu[multiple] md-option.md-checkbox-enabled .md-container:before {
|
|
background-color: transparent;
|
|
border-radius: 50%;
|
|
bottom: 0;
|
|
box-sizing: border-box;
|
|
content: "";
|
|
display: block;
|
|
height: auto;
|
|
left: 0;
|
|
position: absolute;
|
|
right: 0;
|
|
top: 0;
|
|
transition: all .5s;
|
|
width: auto;
|
|
}
|
|
|
|
md-select-menu[multiple] md-option.md-checkbox-enabled .md-container:after {
|
|
bottom: -10px;
|
|
box-sizing: border-box;
|
|
content: "";
|
|
left: -10px;
|
|
position: absolute;
|
|
right: -10px;
|
|
top: -10px;
|
|
}
|
|
|
|
md-select-menu[multiple] md-option.md-checkbox-enabled .md-container .md-ripple-container {
|
|
bottom: -15px;
|
|
display: block;
|
|
height: auto;
|
|
left: -15px;
|
|
position: absolute;
|
|
right: -15px;
|
|
top: -15px;
|
|
width: auto;
|
|
}
|
|
|
|
md-select-menu[multiple] md-option.md-checkbox-enabled .md-icon {
|
|
border-radius: 2px;
|
|
border-style: solid;
|
|
border-width: 2px;
|
|
box-sizing: border-box;
|
|
height: 18px;
|
|
left: 0;
|
|
position: absolute;
|
|
top: 0;
|
|
transition: .24s;
|
|
width: 18px;
|
|
}
|
|
|
|
md-select-menu[multiple] md-option.md-checkbox-enabled[selected] .md-icon {
|
|
border-color: transparent;
|
|
}
|
|
|
|
md-select-menu[multiple] md-option.md-checkbox-enabled[selected] .md-icon:after {
|
|
border-style: solid;
|
|
border-width: 2px;
|
|
border-left: 0;
|
|
border-top: 0;
|
|
box-sizing: border-box;
|
|
content: "";
|
|
display: table;
|
|
height: 12px;
|
|
left: 4px;
|
|
position: absolute;
|
|
top: 0;
|
|
transform: rotate(45deg);
|
|
width: 6px;
|
|
}
|
|
|
|
md-select-menu[multiple] md-option.md-checkbox-enabled[disabled] {
|
|
cursor: default;
|
|
}
|
|
|
|
md-select-menu[multiple] md-option.md-checkbox-enabled.md-indeterminate .md-icon:after {
|
|
border-style: solid;
|
|
border-width: 2px;
|
|
border-left: 0;
|
|
border-top: 0;
|
|
box-sizing: border-box;
|
|
content: "";
|
|
display: table;
|
|
height: 2px;
|
|
left: 50%;
|
|
position: absolute;
|
|
top: 50%;
|
|
transform: translate(-50%,-50%);
|
|
width: 10.8px;
|
|
}
|
|
|
|
md-select-menu[multiple] md-option.md-checkbox-enabled .md-container {
|
|
margin-left: 10.6666666667px;
|
|
margin-right: auto;
|
|
}
|
|
|
|
[dir=rtl] md-select-menu[multiple] md-option.md-checkbox-enabled .md-container {
|
|
margin-left: auto;
|
|
margin-right: 10.6666666667px;
|
|
}
|
|
|
|
md-sidenav {
|
|
-webkit-overflow-scrolling: touch;
|
|
bottom: 0;
|
|
box-sizing: border-box;
|
|
flex-direction: column;
|
|
max-width: 320px;
|
|
overflow: auto;
|
|
position: absolute;
|
|
width: 320px;
|
|
z-index: 60;
|
|
}
|
|
|
|
md-sidenav ul {
|
|
list-style: none;
|
|
}
|
|
|
|
md-sidenav.md-closed {
|
|
display: none;
|
|
}
|
|
|
|
md-sidenav.md-closed-add,
|
|
md-sidenav.md-closed-remove {
|
|
display: flex;
|
|
transition: all .2s ease-in;
|
|
}
|
|
|
|
md-sidenav.md-closed-add.md-closed-add-active,
|
|
md-sidenav.md-closed-remove.md-closed-remove-active {
|
|
transition: all .4s cubic-bezier(.25,.8,.25,1);
|
|
}
|
|
|
|
md-sidenav.md-closed.md-locked-open-add,
|
|
md-sidenav.md-locked-open,
|
|
md-sidenav.md-locked-open-add,
|
|
md-sidenav.md-locked-open-remove,
|
|
md-sidenav.md-locked-open-remove.md-closed,
|
|
md-sidenav.md-locked-open.md-closed,
|
|
md-sidenav.md-locked-open.md-closed.md-sidenav-left,
|
|
md-sidenav.md-locked-open.md-closed.md-sidenav-right {
|
|
display: flex;
|
|
position: static;
|
|
transform: translate3d(0,0,0);
|
|
}
|
|
|
|
md-sidenav.md-closed.md-locked-open-add:not(.md-locked-open-add-active) {
|
|
min-width: 0!important;
|
|
width: 0!important;
|
|
}
|
|
|
|
md-sidenav.md-closed.md-locked-open-add-active,
|
|
md-sidenav.md-closed.md-locked-open-add:not(.md-locked-open-add-active),
|
|
md-sidenav.md-locked-open-remove-active {
|
|
transition: width .3s cubic-bezier(.55,0,.55,.2),min-width .3s cubic-bezier(.55,0,.55,.2);
|
|
}
|
|
|
|
md-sidenav.md-locked-open-remove-active {
|
|
min-width: 0!important;
|
|
width: 0!important;
|
|
}
|
|
|
|
.md-sidenav-backdrop.md-locked-open {
|
|
display: none;
|
|
}
|
|
|
|
.md-sidenav-left,
|
|
md-sidenav {
|
|
left: 0;
|
|
top: 0;
|
|
transform: translate3d(0,0,0);
|
|
}
|
|
|
|
.md-sidenav-left.md-closed,
|
|
md-sidenav.md-closed {
|
|
transform: translate3d(-100%,0,0);
|
|
}
|
|
|
|
.md-sidenav-right {
|
|
left: 100%;
|
|
top: 0;
|
|
transform: translate(-100%,0);
|
|
}
|
|
|
|
.md-sidenav-right.md-closed {
|
|
transform: translate(0,0);
|
|
}
|
|
|
|
@media (min-width:600px) {
|
|
md-sidenav {
|
|
max-width: 400px;
|
|
}
|
|
}
|
|
|
|
@media (max-width:456px) {
|
|
md-sidenav {
|
|
max-width: calc(100% - 56px);
|
|
min-width: calc(100% - 56px);
|
|
width: calc(100% - 56px);
|
|
}
|
|
}
|
|
|
|
@media screen and (-ms-high-contrast:active) {
|
|
.md-sidenav-left,
|
|
md-sidenav {
|
|
border-right: 1px solid #fff;
|
|
}
|
|
|
|
.md-sidenav-right {
|
|
border-left: 1px solid #fff;
|
|
}
|
|
}
|
|
|
|
@-webkit-keyframes sliderFocusThumb {
|
|
0% {
|
|
transform: scale(.7);
|
|
}
|
|
|
|
30% {
|
|
transform: scale(1);
|
|
}
|
|
|
|
to {
|
|
transform: scale(.7);
|
|
}
|
|
}
|
|
|
|
@keyframes sliderFocusThumb {
|
|
0% {
|
|
transform: scale(.7);
|
|
}
|
|
|
|
30% {
|
|
transform: scale(1);
|
|
}
|
|
|
|
to {
|
|
transform: scale(.7);
|
|
}
|
|
}
|
|
|
|
@-webkit-keyframes sliderDiscreteFocusThumb {
|
|
0% {
|
|
transform: scale(.7);
|
|
}
|
|
|
|
50% {
|
|
transform: scale(.8);
|
|
}
|
|
|
|
to {
|
|
transform: scale(0);
|
|
}
|
|
}
|
|
|
|
@keyframes sliderDiscreteFocusThumb {
|
|
0% {
|
|
transform: scale(.7);
|
|
}
|
|
|
|
50% {
|
|
transform: scale(.8);
|
|
}
|
|
|
|
to {
|
|
transform: scale(0);
|
|
}
|
|
}
|
|
|
|
@-webkit-keyframes sliderDiscreteFocusRing {
|
|
0% {
|
|
opacity: 0;
|
|
transform: scale(.7);
|
|
}
|
|
|
|
50% {
|
|
opacity: 1;
|
|
transform: scale(1);
|
|
}
|
|
|
|
to {
|
|
transform: scale(0);
|
|
}
|
|
}
|
|
|
|
@keyframes sliderDiscreteFocusRing {
|
|
0% {
|
|
opacity: 0;
|
|
transform: scale(.7);
|
|
}
|
|
|
|
50% {
|
|
opacity: 1;
|
|
transform: scale(1);
|
|
}
|
|
|
|
to {
|
|
transform: scale(0);
|
|
}
|
|
}
|
|
|
|
md-slider {
|
|
display: block;
|
|
flex-direction: row;
|
|
height: 48px;
|
|
margin-left: 4px;
|
|
margin-right: 4px;
|
|
min-width: 128px;
|
|
padding: 0;
|
|
position: relative;
|
|
}
|
|
|
|
md-slider *,
|
|
md-slider :after {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
md-slider .md-slider-wrapper {
|
|
height: 100%;
|
|
outline: none;
|
|
width: 100%;
|
|
}
|
|
|
|
md-slider .md-slider-content {
|
|
position: relative;
|
|
}
|
|
|
|
md-slider .md-track-container {
|
|
height: 2px;
|
|
position: absolute;
|
|
top: 23px;
|
|
width: 100%;
|
|
}
|
|
|
|
md-slider .md-track {
|
|
height: 100%;
|
|
left: 0;
|
|
position: absolute;
|
|
right: 0;
|
|
}
|
|
|
|
md-slider .md-track-fill {
|
|
transition: all .4s cubic-bezier(.25,.8,.25,1);
|
|
transition-property: width,height;
|
|
}
|
|
|
|
md-slider .md-track-ticks {
|
|
height: 100%;
|
|
left: 0;
|
|
position: absolute;
|
|
right: 0;
|
|
}
|
|
|
|
md-slider .md-track-ticks canvas {
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
md-slider .md-thumb-container {
|
|
left: 0;
|
|
position: absolute;
|
|
top: 50%;
|
|
transform: translate3d(-50%,-50%,0);
|
|
transition: all .4s cubic-bezier(.25,.8,.25,1);
|
|
transition-property: left,right,bottom;
|
|
}
|
|
|
|
[dir=rtl] md-slider .md-thumb-container {
|
|
left: auto;
|
|
right: 0;
|
|
}
|
|
|
|
md-slider .md-thumb {
|
|
border-radius: 20px;
|
|
height: 20px;
|
|
left: -10px;
|
|
position: absolute;
|
|
top: 14px;
|
|
transform: scale(.7);
|
|
transition: all .4s cubic-bezier(.25,.8,.25,1);
|
|
width: 20px;
|
|
z-index: 1;
|
|
}
|
|
|
|
[dir=rtl] md-slider .md-thumb {
|
|
left: auto;
|
|
right: -10px;
|
|
}
|
|
|
|
md-slider .md-thumb:after {
|
|
border-radius: 20px;
|
|
border-style: solid;
|
|
border-width: 3px;
|
|
content: "";
|
|
height: 20px;
|
|
position: absolute;
|
|
transition: inherit;
|
|
width: 20px;
|
|
}
|
|
|
|
md-slider .md-sign {
|
|
align-items: center;
|
|
border-radius: 28px;
|
|
display: flex;
|
|
height: 28px;
|
|
justify-content: center;
|
|
left: -14px;
|
|
position: absolute;
|
|
top: -17px;
|
|
transform: scale(.4) translate3d(0,67.5px,0);
|
|
transition: all .3s cubic-bezier(.35,0,.25,1);
|
|
width: 28px;
|
|
}
|
|
|
|
md-slider .md-sign:after {
|
|
border-left: 14px solid transparent;
|
|
border-radius: 16px;
|
|
border-right: 14px solid transparent;
|
|
border-top-style: solid;
|
|
border-top-width: 16px;
|
|
content: "";
|
|
left: 0;
|
|
opacity: 0;
|
|
position: absolute;
|
|
top: 19px;
|
|
transform: translate3d(0,-8px,0);
|
|
transition: all .2s cubic-bezier(.35,0,.25,1);
|
|
}
|
|
|
|
[dir=rtl] md-slider .md-sign:after {
|
|
left: auto;
|
|
right: 0;
|
|
}
|
|
|
|
md-slider .md-sign .md-thumb-text {
|
|
font-size: 12px;
|
|
font-weight: 700;
|
|
z-index: 1;
|
|
}
|
|
|
|
md-slider .md-focus-ring {
|
|
border-radius: 34px;
|
|
height: 34px;
|
|
left: -17px;
|
|
opacity: 0;
|
|
position: absolute;
|
|
top: 7px;
|
|
transform: scale(.7);
|
|
transition: all .35s cubic-bezier(.35,0,.25,1);
|
|
width: 34px;
|
|
}
|
|
|
|
[dir=rtl] md-slider .md-focus-ring {
|
|
left: auto;
|
|
right: -17px;
|
|
}
|
|
|
|
md-slider .md-disabled-thumb {
|
|
border-radius: 28px;
|
|
border-style: solid;
|
|
border-width: 4px;
|
|
display: none;
|
|
height: 28px;
|
|
left: -14px;
|
|
position: absolute;
|
|
top: 10px;
|
|
transform: scale(.5);
|
|
width: 28px;
|
|
}
|
|
|
|
[dir=rtl] md-slider .md-disabled-thumb {
|
|
left: auto;
|
|
right: -14px;
|
|
}
|
|
|
|
md-slider.md-min .md-sign {
|
|
opacity: 0;
|
|
}
|
|
|
|
md-slider:focus {
|
|
outline: none;
|
|
}
|
|
|
|
md-slider.md-dragging .md-thumb-container,
|
|
md-slider.md-dragging .md-track-fill {
|
|
transition: none;
|
|
}
|
|
|
|
md-slider:not([md-discrete]) .md-sign,
|
|
md-slider:not([md-discrete]) .md-track-ticks {
|
|
display: none;
|
|
}
|
|
|
|
md-slider:not([md-discrete]):not([disabled]) .md-slider-wrapper .md-thumb:hover {
|
|
transform: scale(.8);
|
|
}
|
|
|
|
md-slider:not([md-discrete]):not([disabled]) .md-slider-wrapper.md-focused .md-focus-ring {
|
|
opacity: 1;
|
|
transform: scale(1);
|
|
}
|
|
|
|
md-slider:not([md-discrete]):not([disabled]) .md-slider-wrapper.md-focused .md-thumb {
|
|
-webkit-animation: sliderFocusThumb .7s cubic-bezier(.35,0,.25,1);
|
|
animation: sliderFocusThumb .7s cubic-bezier(.35,0,.25,1);
|
|
}
|
|
|
|
md-slider:not([md-discrete]):not([disabled]).md-active .md-slider-wrapper .md-thumb {
|
|
transform: scale(1);
|
|
}
|
|
|
|
md-slider[md-discrete]:not([disabled]) .md-slider-wrapper.md-focused .md-focus-ring {
|
|
-webkit-animation: sliderDiscreteFocusRing .5s cubic-bezier(.35,0,.25,1);
|
|
animation: sliderDiscreteFocusRing .5s cubic-bezier(.35,0,.25,1);
|
|
transform: scale(0);
|
|
}
|
|
|
|
md-slider[md-discrete]:not([disabled]) .md-slider-wrapper.md-focused .md-thumb {
|
|
-webkit-animation: sliderDiscreteFocusThumb .5s cubic-bezier(.35,0,.25,1);
|
|
animation: sliderDiscreteFocusThumb .5s cubic-bezier(.35,0,.25,1);
|
|
}
|
|
|
|
md-slider[md-discrete]:not([disabled]).md-active .md-thumb,
|
|
md-slider[md-discrete]:not([disabled]) .md-slider-wrapper.md-focused .md-thumb {
|
|
transform: scale(0);
|
|
}
|
|
|
|
md-slider[md-discrete]:not([disabled]).md-active .md-sign,
|
|
md-slider[md-discrete]:not([disabled]).md-active .md-sign:after,
|
|
md-slider[md-discrete]:not([disabled]) .md-slider-wrapper.md-focused .md-sign,
|
|
md-slider[md-discrete]:not([disabled]) .md-slider-wrapper.md-focused .md-sign:after {
|
|
opacity: 1;
|
|
transform: translate3d(0,0,0) scale(1);
|
|
}
|
|
|
|
md-slider[md-discrete][disabled][readonly] .md-thumb {
|
|
transform: scale(0);
|
|
}
|
|
|
|
md-slider[md-discrete][disabled][readonly] .md-sign,
|
|
md-slider[md-discrete][disabled][readonly] .md-sign:after {
|
|
opacity: 1;
|
|
transform: translate3d(0,0,0) scale(1);
|
|
}
|
|
|
|
md-slider[disabled] .md-track-fill {
|
|
display: none;
|
|
}
|
|
|
|
md-slider[disabled] .md-track-ticks,
|
|
md-slider[disabled]:not([readonly]) .md-sign {
|
|
opacity: 0;
|
|
}
|
|
|
|
md-slider[disabled] .md-thumb {
|
|
transform: scale(.5);
|
|
}
|
|
|
|
md-slider[disabled] .md-disabled-thumb {
|
|
display: block;
|
|
}
|
|
|
|
md-slider[md-vertical] {
|
|
flex-direction: column;
|
|
min-height: 128px;
|
|
min-width: 0;
|
|
}
|
|
|
|
md-slider[md-vertical] .md-slider-wrapper {
|
|
align-self: center;
|
|
display: flex;
|
|
flex: 1;
|
|
justify-content: center;
|
|
padding-bottom: 12px;
|
|
padding-top: 12px;
|
|
width: 48px;
|
|
}
|
|
|
|
md-slider[md-vertical] .md-track-container {
|
|
height: 100%;
|
|
left: calc(50% - 1px);
|
|
top: 0;
|
|
width: 2px;
|
|
}
|
|
|
|
md-slider[md-vertical] .md-thumb-container {
|
|
bottom: 0;
|
|
left: calc(50% - 1px);
|
|
margin-bottom: 23px;
|
|
top: auto;
|
|
}
|
|
|
|
md-slider[md-vertical] .md-thumb-container .md-thumb:after {
|
|
left: 1px;
|
|
}
|
|
|
|
md-slider[md-vertical] .md-thumb-container .md-focus-ring {
|
|
left: -16px;
|
|
}
|
|
|
|
md-slider[md-vertical] .md-track-fill {
|
|
bottom: 0;
|
|
}
|
|
|
|
md-slider[md-vertical][md-discrete] .md-sign {
|
|
left: -40px;
|
|
top: 9.5px;
|
|
transform: scale(.4) translate3d(67.5px,0,0);
|
|
}
|
|
|
|
md-slider[md-vertical][md-discrete] .md-sign:after {
|
|
border-bottom: 14px solid transparent;
|
|
border-left-style: solid;
|
|
border-left-width: 16px;
|
|
border-right: 0;
|
|
border-top: 14px solid transparent;
|
|
left: 19px;
|
|
opacity: 0;
|
|
top: 9.5px;
|
|
transform: translate3d(0,-8px,0);
|
|
transition: all .2s ease-in-out;
|
|
}
|
|
|
|
md-slider[md-vertical][md-discrete] .md-sign .md-thumb-text {
|
|
font-size: 12px;
|
|
font-weight: 700;
|
|
z-index: 1;
|
|
}
|
|
|
|
md-slider[md-vertical][md-discrete].md-active .md-sign:after,
|
|
md-slider[md-vertical][md-discrete] .md-focused .md-sign:after,
|
|
md-slider[md-vertical][md-discrete][disabled][readonly] .md-sign:after {
|
|
top: 0;
|
|
}
|
|
|
|
md-slider[md-vertical][disabled][readonly] .md-thumb {
|
|
transform: scale(0);
|
|
}
|
|
|
|
md-slider[md-vertical][disabled][readonly] .md-sign,
|
|
md-slider[md-vertical][disabled][readonly] .md-sign:after {
|
|
opacity: 1;
|
|
transform: translate3d(0,0,0) scale(1);
|
|
}
|
|
|
|
md-slider[md-invert]:not([md-vertical]) .md-track-fill {
|
|
left: auto;
|
|
right: 0;
|
|
}
|
|
|
|
[dir=rtl] md-slider[md-invert]:not([md-vertical]) .md-track-fill {
|
|
left: 0;
|
|
right: auto;
|
|
}
|
|
|
|
md-slider[md-invert][md-vertical] .md-track-fill {
|
|
bottom: auto;
|
|
top: 0;
|
|
}
|
|
|
|
md-slider-container {
|
|
align-items: center;
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
md-slider-container>:first-child:not(md-slider),
|
|
md-slider-container>:last-child:not(md-slider) {
|
|
height: 25px;
|
|
max-width: 42px;
|
|
min-width: 25px;
|
|
transition: all .4s cubic-bezier(.25,.8,.25,1);
|
|
transition-property: color,max-width;
|
|
}
|
|
|
|
md-slider-container>:first-child:not(md-slider) {
|
|
margin-right: 16px;
|
|
}
|
|
|
|
[dir=rtl] md-slider-container>:first-child:not(md-slider) {
|
|
margin-left: 16px;
|
|
margin-right: auto;
|
|
}
|
|
|
|
md-slider-container>:last-child:not(md-slider) {
|
|
margin-left: 16px;
|
|
}
|
|
|
|
[dir=rtl] md-slider-container>:last-child:not(md-slider) {
|
|
margin-left: auto;
|
|
margin-right: 16px;
|
|
}
|
|
|
|
md-slider-container[md-vertical] {
|
|
flex-direction: column;
|
|
}
|
|
|
|
md-slider-container[md-vertical]>:first-child:not(md-slider),
|
|
md-slider-container[md-vertical]>:last-child:not(md-slider) {
|
|
margin-left: 0;
|
|
margin-right: 0;
|
|
text-align: center;
|
|
}
|
|
|
|
md-slider-container md-input-container input[type=number] {
|
|
height: 50px;
|
|
margin-top: -25px;
|
|
padding-left: 15px;
|
|
text-align: center;
|
|
}
|
|
|
|
[dir=rtl] md-slider-container md-input-container input[type=number] {
|
|
padding-left: 0;
|
|
padding-right: 15px;
|
|
}
|
|
|
|
@media screen and (-ms-high-contrast:active) {
|
|
md-slider.md-default-theme .md-track {
|
|
border-bottom: 1px solid #fff;
|
|
}
|
|
}
|
|
|
|
.md-sticky-clone {
|
|
left: 0;
|
|
position: absolute!important;
|
|
right: 0;
|
|
top: 0;
|
|
transform: translate3d(-9999px,-9999px,0);
|
|
z-index: 2;
|
|
}
|
|
|
|
.md-sticky-clone[sticky-state=active] {
|
|
transform: translate3d(0,0,0);
|
|
}
|
|
|
|
.md-sticky-clone[sticky-state=active]:not(.md-sticky-no-effect) .md-subheader-inner {
|
|
-webkit-animation: subheaderStickyHoverIn .3s ease-out both;
|
|
animation: subheaderStickyHoverIn .3s ease-out both;
|
|
}
|
|
|
|
@-webkit-keyframes subheaderStickyHoverIn {
|
|
0% {
|
|
box-shadow: 0 0 0 0 transparent;
|
|
}
|
|
|
|
to {
|
|
box-shadow: 0 2px 4px 0 rgba(0,0,0,.16);
|
|
}
|
|
}
|
|
|
|
@keyframes subheaderStickyHoverIn {
|
|
0% {
|
|
box-shadow: 0 0 0 0 transparent;
|
|
}
|
|
|
|
to {
|
|
box-shadow: 0 2px 4px 0 rgba(0,0,0,.16);
|
|
}
|
|
}
|
|
|
|
@-webkit-keyframes subheaderStickyHoverOut {
|
|
0% {
|
|
box-shadow: 0 2px 4px 0 rgba(0,0,0,.16);
|
|
}
|
|
|
|
to {
|
|
box-shadow: 0 0 0 0 transparent;
|
|
}
|
|
}
|
|
|
|
@keyframes subheaderStickyHoverOut {
|
|
0% {
|
|
box-shadow: 0 2px 4px 0 rgba(0,0,0,.16);
|
|
}
|
|
|
|
to {
|
|
box-shadow: 0 0 0 0 transparent;
|
|
}
|
|
}
|
|
|
|
.md-subheader-wrapper:not(.md-sticky-no-effect) {
|
|
transition: margin .2s ease-out;
|
|
}
|
|
|
|
.md-subheader-wrapper:not(.md-sticky-no-effect) .md-subheader {
|
|
margin: 0;
|
|
}
|
|
|
|
.md-subheader-wrapper:not(.md-sticky-no-effect).md-sticky-clone {
|
|
z-index: 2;
|
|
}
|
|
|
|
.md-subheader-wrapper:not(.md-sticky-no-effect)[sticky-state=active] {
|
|
margin-top: -2px;
|
|
}
|
|
|
|
.md-subheader-wrapper:not(.md-sticky-no-effect):not(.md-sticky-clone)[sticky-prev-state=active] .md-subheader-inner:after {
|
|
-webkit-animation: subheaderStickyHoverOut .3s ease-out both;
|
|
animation: subheaderStickyHoverOut .3s ease-out both;
|
|
}
|
|
|
|
.md-subheader {
|
|
display: block;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
line-height: 1em;
|
|
margin: 0;
|
|
position: relative;
|
|
}
|
|
|
|
.md-subheader .md-subheader-inner {
|
|
display: block;
|
|
padding: 16px;
|
|
}
|
|
|
|
.md-subheader .md-subheader-content {
|
|
display: block;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
[md-swipe-left],
|
|
[md-swipe-right] {
|
|
touch-action: pan-y;
|
|
}
|
|
|
|
[md-swipe-down],
|
|
[md-swipe-up] {
|
|
touch-action: pan-x;
|
|
}
|
|
|
|
.md-inline-form md-switch {
|
|
margin-bottom: 19px;
|
|
margin-top: 18px;
|
|
}
|
|
|
|
md-switch {
|
|
align-items: center;
|
|
cursor: pointer;
|
|
display: flex;
|
|
height: 30px;
|
|
line-height: 28px;
|
|
margin: 16px 0;
|
|
margin-left: inherit;
|
|
margin-right: 16px;
|
|
outline: none;
|
|
-webkit-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
[dir=rtl] md-switch {
|
|
margin-left: 16px;
|
|
margin-right: inherit;
|
|
}
|
|
|
|
md-switch:last-of-type {
|
|
margin-left: inherit;
|
|
margin-right: 0;
|
|
}
|
|
|
|
[dir=rtl] md-switch:last-of-type {
|
|
margin-left: 0;
|
|
margin-right: inherit;
|
|
}
|
|
|
|
md-switch[disabled],
|
|
md-switch[disabled] .md-container {
|
|
cursor: default;
|
|
}
|
|
|
|
md-switch .md-container {
|
|
cursor: -webkit-grab;
|
|
cursor: grab;
|
|
float: left;
|
|
height: 24px;
|
|
margin-right: 8px;
|
|
position: relative;
|
|
-webkit-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
width: 36px;
|
|
}
|
|
|
|
[dir=rtl] md-switch .md-container,
|
|
md-switch.md-inverted .md-container {
|
|
margin-left: 8px;
|
|
margin-right: 0;
|
|
}
|
|
|
|
[dir=rtl] md-switch.md-inverted .md-container {
|
|
margin-left: 0;
|
|
margin-right: 8px;
|
|
}
|
|
|
|
md-switch:not([disabled]) .md-dragging,
|
|
md-switch:not([disabled]).md-dragging .md-container {
|
|
cursor: -webkit-grabbing;
|
|
cursor: grabbing;
|
|
}
|
|
|
|
md-switch.md-focused .md-thumb:before {
|
|
bottom: -8px;
|
|
left: -8px;
|
|
right: -8px;
|
|
top: -8px;
|
|
}
|
|
|
|
md-switch .md-label {
|
|
border-color: transparent;
|
|
border-width: 0;
|
|
float: left;
|
|
}
|
|
|
|
md-switch .md-bar {
|
|
border-radius: 8px;
|
|
height: 14px;
|
|
left: 1px;
|
|
position: absolute;
|
|
top: 5px;
|
|
width: 34px;
|
|
}
|
|
|
|
md-switch .md-thumb-container {
|
|
left: 0;
|
|
position: absolute;
|
|
top: 2px;
|
|
transform: translate3d(0,0,0);
|
|
width: 16px;
|
|
z-index: 1;
|
|
}
|
|
|
|
md-switch.md-checked .md-thumb-container {
|
|
transform: translate3d(100%,0,0);
|
|
}
|
|
|
|
md-switch .md-thumb {
|
|
box-shadow: 0 1px 3px 0 rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 2px 1px -1px rgba(0,0,0,.12);
|
|
height: 20px;
|
|
margin: 0;
|
|
outline: none;
|
|
width: 20px;
|
|
}
|
|
|
|
md-switch .md-thumb,
|
|
md-switch .md-thumb:before {
|
|
border-radius: 50%;
|
|
left: 0;
|
|
position: absolute;
|
|
top: 0;
|
|
}
|
|
|
|
md-switch .md-thumb:before {
|
|
background-color: transparent;
|
|
bottom: 0;
|
|
content: "";
|
|
display: block;
|
|
height: auto;
|
|
right: 0;
|
|
transition: all .5s;
|
|
width: auto;
|
|
}
|
|
|
|
md-switch .md-thumb .md-ripple-container {
|
|
bottom: -20px;
|
|
display: block;
|
|
height: auto;
|
|
left: -20px;
|
|
position: absolute;
|
|
right: -20px;
|
|
top: -20px;
|
|
width: auto;
|
|
}
|
|
|
|
md-switch:not(.md-dragging) .md-bar,
|
|
md-switch:not(.md-dragging) .md-thumb,
|
|
md-switch:not(.md-dragging) .md-thumb-container {
|
|
transition: all .08s linear;
|
|
transition-property: transform,background-color;
|
|
}
|
|
|
|
md-switch:not(.md-dragging) .md-bar,
|
|
md-switch:not(.md-dragging) .md-thumb {
|
|
transition-delay: .05s;
|
|
}
|
|
|
|
@media screen and (-ms-high-contrast:active) {
|
|
md-switch.md-default-theme .md-bar {
|
|
background-color: #666;
|
|
}
|
|
|
|
md-switch.md-default-theme.md-checked .md-bar {
|
|
background-color: #9e9e9e;
|
|
}
|
|
|
|
md-switch.md-default-theme .md-thumb {
|
|
background-color: #fff;
|
|
}
|
|
}
|
|
|
|
@-webkit-keyframes md-tab-content-hide {
|
|
0% {
|
|
opacity: 1;
|
|
}
|
|
|
|
50% {
|
|
opacity: 1;
|
|
}
|
|
|
|
to {
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
@keyframes md-tab-content-hide {
|
|
0% {
|
|
opacity: 1;
|
|
}
|
|
|
|
50% {
|
|
opacity: 1;
|
|
}
|
|
|
|
to {
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
md-tab-data {
|
|
bottom: 0;
|
|
left: 0;
|
|
opacity: 0;
|
|
position: absolute;
|
|
right: 0;
|
|
top: 0;
|
|
z-index: -1;
|
|
}
|
|
|
|
md-tabs {
|
|
border-radius: 2px;
|
|
display: block;
|
|
flex-shrink: 0;
|
|
margin: 0;
|
|
overflow: hidden;
|
|
position: relative;
|
|
}
|
|
|
|
md-tabs:not(.md-no-tab-content):not(.md-dynamic-height) {
|
|
min-height: 248px;
|
|
}
|
|
|
|
md-tabs[md-align-tabs=bottom] {
|
|
padding-bottom: 48px;
|
|
}
|
|
|
|
md-tabs[md-align-tabs=bottom]>md-tabs-wrapper {
|
|
bottom: 0;
|
|
height: 48px;
|
|
left: 0;
|
|
position: absolute;
|
|
right: 0;
|
|
z-index: 2;
|
|
}
|
|
|
|
md-tabs[md-align-tabs=bottom]>md-tabs-content-wrapper {
|
|
bottom: 48px;
|
|
top: 0;
|
|
}
|
|
|
|
md-tabs.md-dynamic-height md-tabs-content-wrapper {
|
|
bottom: auto;
|
|
left: auto;
|
|
min-height: 0;
|
|
overflow: visible;
|
|
position: relative;
|
|
right: auto;
|
|
top: auto;
|
|
}
|
|
|
|
md-tabs.md-dynamic-height md-tab-content.md-active {
|
|
position: relative;
|
|
}
|
|
|
|
md-tabs[md-border-bottom] md-tabs-wrapper {
|
|
border-style: solid;
|
|
border-width: 0 0 1px;
|
|
}
|
|
|
|
md-tabs[md-border-bottom]:not(.md-dynamic-height) md-tabs-content-wrapper {
|
|
top: 49px;
|
|
}
|
|
|
|
md-tabs-wrapper {
|
|
display: block;
|
|
position: relative;
|
|
transform: translate(0,0);
|
|
}
|
|
|
|
md-tabs-wrapper md-next-button,
|
|
md-tabs-wrapper md-prev-button {
|
|
background: transparent no-repeat 50%;
|
|
cursor: pointer;
|
|
font-size: 16px;
|
|
height: 100%;
|
|
line-height: 1em;
|
|
position: absolute;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
transition: all .5s cubic-bezier(.35,0,.25,1);
|
|
width: 32px;
|
|
z-index: 2;
|
|
}
|
|
|
|
md-tabs-wrapper md-next-button:focus,
|
|
md-tabs-wrapper md-prev-button:focus {
|
|
outline: none;
|
|
}
|
|
|
|
md-tabs-wrapper md-next-button.md-disabled,
|
|
md-tabs-wrapper md-prev-button.md-disabled {
|
|
cursor: default;
|
|
opacity: .25;
|
|
}
|
|
|
|
md-tabs-wrapper md-next-button.ng-leave,
|
|
md-tabs-wrapper md-prev-button.ng-leave {
|
|
transition: none;
|
|
}
|
|
|
|
md-tabs-wrapper md-next-button md-icon,
|
|
md-tabs-wrapper md-prev-button md-icon {
|
|
left: 50%;
|
|
position: absolute;
|
|
top: 50%;
|
|
transform: translate(-50%,-50%);
|
|
}
|
|
|
|
[dir=rtl] md-tabs-wrapper md-next-button,
|
|
[dir=rtl] md-tabs-wrapper md-prev-button {
|
|
transform: rotateY(180deg) translateY(-50%);
|
|
}
|
|
|
|
md-tabs-wrapper md-prev-button {
|
|
background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE3LjEuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPiA8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPiA8c3ZnIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMjQgMjQiIHhtbDpzcGFjZT0icHJlc2VydmUiPiA8ZyBpZD0iSGVhZGVyIj4gPGc+IDxyZWN0IHg9Ii02MTgiIHk9Ii0xMjA4IiBmaWxsPSJub25lIiB3aWR0aD0iMTQwMCIgaGVpZ2h0PSIzNjAwIi8+IDwvZz4gPC9nPiA8ZyBpZD0iTGFiZWwiPiA8L2c+IDxnIGlkPSJJY29uIj4gPGc+IDxwb2x5Z29uIHBvaW50cz0iMTUuNCw3LjQgMTQsNiA4LDEyIDE0LDE4IDE1LjQsMTYuNiAxMC44LDEyIAkJIiBzdHlsZT0iZmlsbDp3aGl0ZTsiLz4gPHJlY3QgZmlsbD0ibm9uZSIgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0Ii8+IDwvZz4gPC9nPiA8ZyBpZD0iR3JpZCIgZGlzcGxheT0ibm9uZSI+IDxnIGRpc3BsYXk9ImlubGluZSI+IDwvZz4gPC9nPiA8L3N2Zz4NCg==");
|
|
left: 0;
|
|
}
|
|
|
|
[dir=rtl] md-tabs-wrapper md-prev-button {
|
|
left: auto;
|
|
right: 0;
|
|
}
|
|
|
|
md-tabs-wrapper md-next-button {
|
|
background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE3LjEuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPiA8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPiA8c3ZnIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMjQgMjQiIHhtbDpzcGFjZT0icHJlc2VydmUiPiA8ZyBpZD0iSGVhZGVyIj4gPGc+IDxyZWN0IHg9Ii02MTgiIHk9Ii0xMzM2IiBmaWxsPSJub25lIiB3aWR0aD0iMTQwMCIgaGVpZ2h0PSIzNjAwIi8+IDwvZz4gPC9nPiA8ZyBpZD0iTGFiZWwiPiA8L2c+IDxnIGlkPSJJY29uIj4gPGc+IDxwb2x5Z29uIHBvaW50cz0iMTAsNiA4LjYsNy40IDEzLjIsMTIgOC42LDE2LjYgMTAsMTggMTYsMTIgCQkiIHN0eWxlPSJmaWxsOndoaXRlOyIvPiA8cmVjdCBmaWxsPSJub25lIiB3aWR0aD0iMjQiIGhlaWdodD0iMjQiLz4gPC9nPiA8L2c+IDxnIGlkPSJHcmlkIiBkaXNwbGF5PSJub25lIj4gPGcgZGlzcGxheT0iaW5saW5lIj4gPC9nPiA8L2c+IDwvc3ZnPg0K");
|
|
right: 0;
|
|
}
|
|
|
|
[dir=rtl] md-tabs-wrapper md-next-button {
|
|
left: 0;
|
|
right: auto;
|
|
}
|
|
|
|
md-tabs-wrapper md-next-button md-icon {
|
|
transform: translate(-50%,-50%) rotate(180deg);
|
|
}
|
|
|
|
md-tabs-wrapper.md-stretch-tabs md-pagination-wrapper {
|
|
flex-direction: row;
|
|
width: 100%;
|
|
}
|
|
|
|
md-tabs-wrapper.md-stretch-tabs md-pagination-wrapper md-tab-item {
|
|
flex-grow: 1;
|
|
}
|
|
|
|
md-tabs-canvas {
|
|
display: block;
|
|
height: 48px;
|
|
overflow: hidden;
|
|
position: relative;
|
|
}
|
|
|
|
md-tabs-canvas:after {
|
|
clear: both;
|
|
content: "";
|
|
display: table;
|
|
}
|
|
|
|
md-tabs-canvas .md-dummy-wrapper {
|
|
left: 0;
|
|
position: absolute;
|
|
top: 0;
|
|
}
|
|
|
|
[dir=rtl] md-tabs-canvas .md-dummy-wrapper {
|
|
left: auto;
|
|
right: 0;
|
|
}
|
|
|
|
md-tabs-canvas.md-paginated {
|
|
margin: 0 32px;
|
|
}
|
|
|
|
md-tabs-canvas.md-center-tabs {
|
|
display: flex;
|
|
flex-direction: column;
|
|
text-align: center;
|
|
}
|
|
|
|
md-tabs-canvas.md-center-tabs .md-tab {
|
|
display: inline-block;
|
|
float: none;
|
|
}
|
|
|
|
md-pagination-wrapper {
|
|
display: flex;
|
|
height: 48px;
|
|
left: 0;
|
|
position: absolute;
|
|
transform: translate(0,0);
|
|
transition: transform .5s cubic-bezier(.35,0,.25,1);
|
|
}
|
|
|
|
md-pagination-wrapper:after {
|
|
clear: both;
|
|
content: "";
|
|
display: table;
|
|
}
|
|
|
|
[dir=rtl] md-pagination-wrapper {
|
|
left: auto;
|
|
right: 0;
|
|
}
|
|
|
|
md-pagination-wrapper.md-center-tabs {
|
|
justify-content: center;
|
|
position: relative;
|
|
}
|
|
|
|
md-pagination-wrapper md-tab-item {
|
|
min-width: 72px;
|
|
}
|
|
|
|
@media (min-width:600px) {
|
|
md-pagination-wrapper md-tab-item {
|
|
min-width: 160px;
|
|
}
|
|
}
|
|
|
|
md-tabs-content-wrapper {
|
|
display: block;
|
|
overflow: hidden;
|
|
top: 48px;
|
|
}
|
|
|
|
md-tab-content,
|
|
md-tabs-content-wrapper {
|
|
bottom: 0;
|
|
left: 0;
|
|
position: absolute;
|
|
right: 0;
|
|
}
|
|
|
|
md-tab-content {
|
|
display: flex;
|
|
overflow: auto;
|
|
top: 0;
|
|
transform: translate(0,0);
|
|
transition: transform .5s cubic-bezier(.35,0,.25,1);
|
|
}
|
|
|
|
md-tab-content.md-no-scroll {
|
|
bottom: auto;
|
|
overflow: hidden;
|
|
}
|
|
|
|
md-tab-content.md-no-transition,
|
|
md-tab-content.ng-leave {
|
|
transition: none;
|
|
}
|
|
|
|
md-tab-content.md-left:not(.md-active) {
|
|
-webkit-animation: md-tab-content-hide 1s;
|
|
animation: md-tab-content-hide 1s;
|
|
transform: translateX(-100%);
|
|
visibility: hidden;
|
|
}
|
|
|
|
[dir=rtl] md-tab-content.md-left:not(.md-active) {
|
|
transform: translateX(100%);
|
|
}
|
|
|
|
md-tab-content.md-left:not(.md-active) * {
|
|
transition: visibility 0s linear;
|
|
transition-delay: .5s;
|
|
visibility: hidden;
|
|
}
|
|
|
|
md-tab-content.md-right:not(.md-active) {
|
|
-webkit-animation: md-tab-content-hide 1s;
|
|
animation: md-tab-content-hide 1s;
|
|
transform: translateX(100%);
|
|
visibility: hidden;
|
|
}
|
|
|
|
[dir=rtl] md-tab-content.md-right:not(.md-active) {
|
|
transform: translateX(-100%);
|
|
}
|
|
|
|
md-tab-content.md-right:not(.md-active) * {
|
|
transition: visibility 0s linear;
|
|
transition-delay: .5s;
|
|
visibility: hidden;
|
|
}
|
|
|
|
md-tab-content>div {
|
|
flex: 1 0 100%;
|
|
min-width: 0;
|
|
}
|
|
|
|
md-tab-content>div.ng-leave {
|
|
-webkit-animation: md-tab-content-hide 1s;
|
|
animation: md-tab-content-hide 1s;
|
|
}
|
|
|
|
md-ink-bar {
|
|
bottom: 0;
|
|
height: 2px;
|
|
left: auto;
|
|
position: absolute;
|
|
right: auto;
|
|
}
|
|
|
|
md-ink-bar.md-left {
|
|
transition: left .125s cubic-bezier(.35,0,.25,1),right .25s cubic-bezier(.35,0,.25,1);
|
|
}
|
|
|
|
md-ink-bar.md-right {
|
|
transition: left .25s cubic-bezier(.35,0,.25,1),right .125s cubic-bezier(.35,0,.25,1);
|
|
}
|
|
|
|
md-tab {
|
|
left: -9999px;
|
|
position: absolute;
|
|
z-index: -1;
|
|
}
|
|
|
|
.md-tab {
|
|
box-sizing: border-box;
|
|
cursor: pointer;
|
|
float: left;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
line-height: 24px;
|
|
overflow: hidden;
|
|
padding: 12px;
|
|
position: relative;
|
|
text-align: center;
|
|
text-overflow: ellipsis;
|
|
text-transform: uppercase;
|
|
transition: background-color .35s cubic-bezier(.35,0,.25,1);
|
|
white-space: nowrap;
|
|
}
|
|
|
|
[dir=rtl] .md-tab {
|
|
float: right;
|
|
}
|
|
|
|
.md-tab.md-focused,
|
|
.md-tab:focus {
|
|
box-shadow: none;
|
|
outline: none;
|
|
}
|
|
|
|
.md-tab.md-active {
|
|
cursor: default;
|
|
}
|
|
|
|
.md-tab.md-disabled {
|
|
-webkit-user-drag: none;
|
|
cursor: default;
|
|
opacity: .5;
|
|
pointer-events: none;
|
|
touch-action: pan-y;
|
|
-webkit-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
}
|
|
|
|
.md-tab.ng-leave {
|
|
transition: none;
|
|
}
|
|
|
|
md-toolbar+md-dialog-content md-tabs,
|
|
md-toolbar+md-tabs {
|
|
border-top-left-radius: 0;
|
|
border-top-right-radius: 0;
|
|
}
|
|
|
|
.md-toast-text {
|
|
padding: 0 8px;
|
|
}
|
|
|
|
md-toast {
|
|
box-sizing: border-box;
|
|
cursor: default;
|
|
opacity: 1;
|
|
padding: 8px;
|
|
position: absolute;
|
|
z-index: 105;
|
|
}
|
|
|
|
md-toast,
|
|
md-toast .md-toast-content {
|
|
overflow: hidden;
|
|
transition: all .4s cubic-bezier(.25,.8,.25,1);
|
|
}
|
|
|
|
md-toast .md-toast-content {
|
|
align-items: center;
|
|
border-radius: 2px;
|
|
box-shadow: 0 2px 5px 0 rgba(0,0,0,.26);
|
|
display: flex;
|
|
flex-direction: row;
|
|
font-size: 14px;
|
|
justify-content: flex-start;
|
|
max-height: 168px;
|
|
max-width: 100%;
|
|
min-height: 48px;
|
|
padding: 0 16px;
|
|
transform: translate3d(0,0,0) rotateZ(0deg);
|
|
}
|
|
|
|
md-toast .md-toast-content:before {
|
|
content: "";
|
|
display: inline-block;
|
|
min-height: 48px;
|
|
visibility: hidden;
|
|
}
|
|
|
|
[dir=rtl] md-toast .md-toast-content {
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
md-toast .md-toast-content span {
|
|
box-sizing: border-box;
|
|
flex: 1 1 0%;
|
|
min-width: 0;
|
|
}
|
|
|
|
md-toast.md-capsule,
|
|
md-toast.md-capsule .md-toast-content {
|
|
border-radius: 24px;
|
|
}
|
|
|
|
md-toast.ng-leave-active .md-toast-content {
|
|
transition: all .3s cubic-bezier(.55,0,.55,.2);
|
|
}
|
|
|
|
md-toast.md-swipedown .md-toast-content,
|
|
md-toast.md-swipeleft .md-toast-content,
|
|
md-toast.md-swiperight .md-toast-content,
|
|
md-toast.md-swipeup .md-toast-content {
|
|
transition: all .4s cubic-bezier(.25,.8,.25,1);
|
|
}
|
|
|
|
md-toast.ng-enter {
|
|
opacity: 0;
|
|
}
|
|
|
|
md-toast.ng-enter .md-toast-content {
|
|
transform: translate3d(0,100%,0);
|
|
}
|
|
|
|
md-toast.ng-enter.md-top .md-toast-content {
|
|
transform: translate3d(0,-100%,0);
|
|
}
|
|
|
|
md-toast.ng-enter.ng-enter-active {
|
|
opacity: 1;
|
|
}
|
|
|
|
md-toast.ng-enter.ng-enter-active .md-toast-content {
|
|
transform: translate3d(0,0,0);
|
|
}
|
|
|
|
md-toast.ng-leave.ng-leave-active .md-toast-content {
|
|
opacity: 0;
|
|
transform: translate3d(0,100%,0);
|
|
}
|
|
|
|
md-toast.ng-leave.ng-leave-active.md-swipeup .md-toast-content {
|
|
transform: translate3d(0,-50%,0);
|
|
}
|
|
|
|
md-toast.ng-leave.ng-leave-active.md-swipedown .md-toast-content {
|
|
transform: translate3d(0,50%,0);
|
|
}
|
|
|
|
md-toast.ng-leave.ng-leave-active.md-top .md-toast-content {
|
|
transform: translate3d(0,-100%,0);
|
|
}
|
|
|
|
md-toast .md-action {
|
|
cursor: pointer;
|
|
float: right;
|
|
line-height: 19px;
|
|
margin-left: 24px;
|
|
margin-right: 0;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
md-toast .md-button {
|
|
margin-left: 8px;
|
|
margin-right: 0;
|
|
min-width: 0;
|
|
}
|
|
|
|
[dir=rtl] md-toast .md-button {
|
|
margin-left: 0;
|
|
margin-right: 8px;
|
|
}
|
|
|
|
@media (max-width:959px) {
|
|
md-toast {
|
|
border-radius: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
max-width: 100%;
|
|
min-width: 0;
|
|
padding: 0;
|
|
right: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
md-toast.ng-leave.ng-leave-active.md-swipeup .md-toast-content {
|
|
transform: translate3d(0,-50%,0);
|
|
}
|
|
|
|
md-toast.ng-leave.ng-leave-active.md-swipedown .md-toast-content {
|
|
transform: translate3d(0,50%,0);
|
|
}
|
|
}
|
|
|
|
@media (min-width:960px) {
|
|
md-toast {
|
|
min-width: 304px;
|
|
}
|
|
|
|
md-toast.md-bottom {
|
|
bottom: 0;
|
|
}
|
|
|
|
md-toast.md-left {
|
|
left: 0;
|
|
}
|
|
|
|
md-toast.md-right {
|
|
right: 0;
|
|
}
|
|
|
|
md-toast.md-top {
|
|
top: 0;
|
|
}
|
|
|
|
md-toast._md-start {
|
|
left: 0;
|
|
}
|
|
|
|
[dir=rtl] md-toast._md-start {
|
|
left: auto;
|
|
right: 0;
|
|
}
|
|
|
|
md-toast._md-end {
|
|
right: 0;
|
|
}
|
|
|
|
[dir=rtl] md-toast._md-end {
|
|
left: 0;
|
|
right: auto;
|
|
}
|
|
|
|
md-toast.ng-leave.ng-leave-active.md-swipeleft .md-toast-content {
|
|
transform: translate3d(-50%,0,0);
|
|
}
|
|
|
|
md-toast.ng-leave.ng-leave-active.md-swiperight .md-toast-content {
|
|
transform: translate3d(50%,0,0);
|
|
}
|
|
}
|
|
|
|
@media (min-width:1920px) {
|
|
md-toast .md-toast-content {
|
|
max-width: 568px;
|
|
}
|
|
}
|
|
|
|
@media screen and (-ms-high-contrast:active) {
|
|
md-toast {
|
|
border: 1px solid #fff;
|
|
}
|
|
}
|
|
|
|
.md-toast-animating {
|
|
overflow: hidden!important;
|
|
}
|
|
|
|
md-toolbar {
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
flex-direction: column;
|
|
font-size: 20px;
|
|
min-height: 64px;
|
|
position: relative;
|
|
width: 100%;
|
|
z-index: 2;
|
|
}
|
|
|
|
md-toolbar._md-toolbar-transitions {
|
|
transition-duration: .5s;
|
|
transition-property: background-color,fill,color;
|
|
transition-timing-function: cubic-bezier(.35,0,.25,1);
|
|
}
|
|
|
|
md-toolbar.md-whiteframe-z1-add,
|
|
md-toolbar.md-whiteframe-z1-remove {
|
|
transition: box-shadow .5s linear;
|
|
}
|
|
|
|
md-toolbar md-toolbar-filler {
|
|
width: 72px;
|
|
}
|
|
|
|
md-toolbar *,
|
|
md-toolbar :after,
|
|
md-toolbar :before {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
md-toolbar.ng-animate {
|
|
transition: none;
|
|
}
|
|
|
|
md-toolbar.md-tall {
|
|
height: 128px;
|
|
max-height: 128px;
|
|
min-height: 128px;
|
|
}
|
|
|
|
md-toolbar.md-medium-tall {
|
|
height: 88px;
|
|
max-height: 88px;
|
|
min-height: 88px;
|
|
}
|
|
|
|
md-toolbar.md-medium-tall .md-toolbar-tools {
|
|
height: 48px;
|
|
max-height: 48px;
|
|
min-height: 48px;
|
|
}
|
|
|
|
md-toolbar>.md-indent {
|
|
margin-left: 64px;
|
|
}
|
|
|
|
[dir=rtl] md-toolbar>.md-indent {
|
|
margin-left: auto;
|
|
margin-right: 64px;
|
|
}
|
|
|
|
md-toolbar~md-content>md-list {
|
|
padding: 0;
|
|
}
|
|
|
|
md-toolbar~md-content>md-list md-list-item:last-child md-divider {
|
|
display: none;
|
|
}
|
|
|
|
.md-toolbar-tools {
|
|
align-items: center;
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
flex-direction: row;
|
|
font-size: 20px;
|
|
font-weight: 400;
|
|
height: 64px;
|
|
letter-spacing: .005em;
|
|
margin: 0;
|
|
max-height: 64px;
|
|
padding: 0 16px;
|
|
width: 100%;
|
|
}
|
|
|
|
.md-toolbar-tools h1,
|
|
.md-toolbar-tools h2,
|
|
.md-toolbar-tools h3 {
|
|
font-size: inherit;
|
|
font-weight: inherit;
|
|
margin: inherit;
|
|
}
|
|
|
|
.md-toolbar-tools a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.md-toolbar-tools .fill-height {
|
|
align-items: center;
|
|
display: flex;
|
|
}
|
|
|
|
.md-toolbar-tools md-checkbox {
|
|
margin: inherit;
|
|
}
|
|
|
|
.md-toolbar-tools .md-button {
|
|
margin-bottom: 0;
|
|
margin-top: 0;
|
|
}
|
|
|
|
.md-toolbar-tools .md-button,
|
|
.md-toolbar-tools .md-button.md-icon-button md-icon {
|
|
transition-duration: .5s;
|
|
transition-property: background-color,fill,color;
|
|
transition-timing-function: cubic-bezier(.35,0,.25,1);
|
|
}
|
|
|
|
.md-toolbar-tools .md-button.md-icon-button md-icon.ng-animate,
|
|
.md-toolbar-tools .md-button.ng-animate {
|
|
transition: none;
|
|
}
|
|
|
|
.md-toolbar-tools>.md-button:first-child {
|
|
margin-left: -8px;
|
|
}
|
|
|
|
[dir=rtl] .md-toolbar-tools>.md-button:first-child {
|
|
margin-left: auto;
|
|
margin-right: -8px;
|
|
}
|
|
|
|
.md-toolbar-tools>.md-button:last-child {
|
|
margin-right: -8px;
|
|
}
|
|
|
|
[dir=rtl] .md-toolbar-tools>.md-button:last-child {
|
|
margin-left: -8px;
|
|
margin-right: auto;
|
|
}
|
|
|
|
.md-toolbar-tools>md-menu:last-child {
|
|
margin-right: -8px;
|
|
}
|
|
|
|
[dir=rtl] .md-toolbar-tools>md-menu:last-child {
|
|
margin-left: -8px;
|
|
margin-right: auto;
|
|
}
|
|
|
|
.md-toolbar-tools>md-menu:last-child>.md-button {
|
|
margin-right: 0;
|
|
}
|
|
|
|
[dir=rtl] .md-toolbar-tools>md-menu:last-child>.md-button {
|
|
margin-left: 0;
|
|
margin-right: auto;
|
|
}
|
|
|
|
@media screen and (-ms-high-contrast:active) {
|
|
.md-toolbar-tools {
|
|
border-bottom: 1px solid #fff;
|
|
}
|
|
}
|
|
|
|
@media (min-width:0) and (max-width:959px) and (orientation:portrait) {
|
|
md-toolbar {
|
|
min-height: 56px;
|
|
}
|
|
|
|
.md-toolbar-tools {
|
|
height: 56px;
|
|
max-height: 56px;
|
|
}
|
|
}
|
|
|
|
@media (min-width:0) and (max-width:959px) and (orientation:landscape) {
|
|
md-toolbar {
|
|
min-height: 48px;
|
|
}
|
|
|
|
.md-toolbar-tools {
|
|
height: 48px;
|
|
max-height: 48px;
|
|
}
|
|
}
|
|
|
|
.md-tooltip {
|
|
border-radius: 4px;
|
|
display: inline-block;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
height: 32px;
|
|
line-height: 32px;
|
|
opacity: 0;
|
|
overflow: hidden;
|
|
padding-left: 16px;
|
|
padding-right: 16px;
|
|
pointer-events: none;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.md-tooltip.md-origin-top {
|
|
margin-top: -24px;
|
|
transform-origin: center bottom;
|
|
}
|
|
|
|
.md-tooltip.md-origin-right {
|
|
margin-left: 24px;
|
|
transform-origin: left center;
|
|
}
|
|
|
|
.md-tooltip.md-origin-bottom {
|
|
margin-top: 24px;
|
|
transform-origin: center top;
|
|
}
|
|
|
|
.md-tooltip.md-origin-left {
|
|
margin-left: -24px;
|
|
transform-origin: right center;
|
|
}
|
|
|
|
@media (min-width:960px) {
|
|
.md-tooltip {
|
|
font-size: 10px;
|
|
height: 22px;
|
|
line-height: 22px;
|
|
padding-left: 8px;
|
|
padding-right: 8px;
|
|
}
|
|
|
|
.md-tooltip.md-origin-top {
|
|
margin-top: -14px;
|
|
}
|
|
|
|
.md-tooltip.md-origin-right {
|
|
margin-left: 14px;
|
|
}
|
|
|
|
.md-tooltip.md-origin-bottom {
|
|
margin-top: 14px;
|
|
}
|
|
|
|
.md-tooltip.md-origin-left {
|
|
margin-left: -14px;
|
|
}
|
|
}
|
|
|
|
.md-tooltip.md-show-add {
|
|
transform: scale(0);
|
|
}
|
|
|
|
.md-tooltip.md-show {
|
|
opacity: .9;
|
|
transform: scale(1);
|
|
transition: all .4s cubic-bezier(.25,.8,.25,1);
|
|
transition-duration: .15s;
|
|
}
|
|
|
|
.md-tooltip.md-hide {
|
|
opacity: 0;
|
|
transform: scale(0);
|
|
transition: all .3s cubic-bezier(.55,0,.55,.2);
|
|
transition-duration: .15s;
|
|
}
|
|
|
|
.md-truncate {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.md-truncate.md-clip {
|
|
text-overflow: clip;
|
|
}
|
|
|
|
.md-truncate.flex {
|
|
width: 0;
|
|
}
|
|
|
|
.md-virtual-repeat-container {
|
|
box-sizing: border-box;
|
|
display: block;
|
|
margin: 0;
|
|
overflow: hidden;
|
|
padding: 0;
|
|
position: relative;
|
|
}
|
|
|
|
.md-virtual-repeat-container .md-virtual-repeat-scroller {
|
|
-webkit-overflow-scrolling: touch;
|
|
bottom: 0;
|
|
box-sizing: border-box;
|
|
left: 0;
|
|
margin: 0;
|
|
overflow-x: hidden;
|
|
padding: 0;
|
|
position: absolute;
|
|
right: 0;
|
|
top: 0;
|
|
}
|
|
|
|
.md-virtual-repeat-container .md-virtual-repeat-sizer {
|
|
box-sizing: border-box;
|
|
display: block;
|
|
height: 1px;
|
|
margin: 0;
|
|
padding: 0;
|
|
width: 1px;
|
|
}
|
|
|
|
.md-virtual-repeat-container .md-virtual-repeat-offsetter {
|
|
box-sizing: border-box;
|
|
left: 0;
|
|
margin: 0;
|
|
padding: 0;
|
|
position: absolute;
|
|
right: 0;
|
|
top: 0;
|
|
}
|
|
|
|
.md-virtual-repeat-container.md-orient-horizontal .md-virtual-repeat-scroller {
|
|
overflow-x: auto;
|
|
overflow-y: hidden;
|
|
}
|
|
|
|
.md-virtual-repeat-container.md-orient-horizontal .md-virtual-repeat-offsetter {
|
|
bottom: 16px;
|
|
right: auto;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
[dir=rtl] .md-virtual-repeat-container.md-orient-horizontal .md-virtual-repeat-offsetter {
|
|
left: auto;
|
|
right: auto;
|
|
}
|
|
|
|
.md-whiteframe-1dp,
|
|
.md-whiteframe-z1 {
|
|
box-shadow: 0 1px 3px 0 rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 2px 1px -1px rgba(0,0,0,.12);
|
|
}
|
|
|
|
.md-whiteframe-2dp {
|
|
box-shadow: 0 1px 5px 0 rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.12);
|
|
}
|
|
|
|
.md-whiteframe-3dp {
|
|
box-shadow: 0 1px 8px 0 rgba(0,0,0,.2),0 3px 4px 0 rgba(0,0,0,.14),0 3px 3px -2px rgba(0,0,0,.12);
|
|
}
|
|
|
|
.md-whiteframe-4dp,
|
|
.md-whiteframe-z2 {
|
|
box-shadow: 0 2px 4px -1px rgba(0,0,0,.2),0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12);
|
|
}
|
|
|
|
.md-whiteframe-5dp {
|
|
box-shadow: 0 3px 5px -1px rgba(0,0,0,.2),0 5px 8px 0 rgba(0,0,0,.14),0 1px 14px 0 rgba(0,0,0,.12);
|
|
}
|
|
|
|
.md-whiteframe-6dp {
|
|
box-shadow: 0 3px 5px -1px rgba(0,0,0,.2),0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12);
|
|
}
|
|
|
|
.md-whiteframe-7dp,
|
|
.md-whiteframe-z3 {
|
|
box-shadow: 0 4px 5px -2px rgba(0,0,0,.2),0 7px 10px 1px rgba(0,0,0,.14),0 2px 16px 1px rgba(0,0,0,.12);
|
|
}
|
|
|
|
.md-whiteframe-8dp {
|
|
box-shadow: 0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12);
|
|
}
|
|
|
|
.md-whiteframe-9dp {
|
|
box-shadow: 0 5px 6px -3px rgba(0,0,0,.2),0 9px 12px 1px rgba(0,0,0,.14),0 3px 16px 2px rgba(0,0,0,.12);
|
|
}
|
|
|
|
.md-whiteframe-10dp,
|
|
.md-whiteframe-z4 {
|
|
box-shadow: 0 6px 6px -3px rgba(0,0,0,.2),0 10px 14px 1px rgba(0,0,0,.14),0 4px 18px 3px rgba(0,0,0,.12);
|
|
}
|
|
|
|
.md-whiteframe-11dp {
|
|
box-shadow: 0 6px 7px -4px rgba(0,0,0,.2),0 11px 15px 1px rgba(0,0,0,.14),0 4px 20px 3px rgba(0,0,0,.12);
|
|
}
|
|
|
|
.md-whiteframe-12dp {
|
|
box-shadow: 0 7px 8px -4px rgba(0,0,0,.2),0 12px 17px 2px rgba(0,0,0,.14),0 5px 22px 4px rgba(0,0,0,.12);
|
|
}
|
|
|
|
.md-whiteframe-13dp,
|
|
.md-whiteframe-z5 {
|
|
box-shadow: 0 7px 8px -4px rgba(0,0,0,.2),0 13px 19px 2px rgba(0,0,0,.14),0 5px 24px 4px rgba(0,0,0,.12);
|
|
}
|
|
|
|
.md-whiteframe-14dp {
|
|
box-shadow: 0 7px 9px -4px rgba(0,0,0,.2),0 14px 21px 2px rgba(0,0,0,.14),0 5px 26px 4px rgba(0,0,0,.12);
|
|
}
|
|
|
|
.md-whiteframe-15dp {
|
|
box-shadow: 0 8px 9px -5px rgba(0,0,0,.2),0 15px 22px 2px rgba(0,0,0,.14),0 6px 28px 5px rgba(0,0,0,.12);
|
|
}
|
|
|
|
.md-whiteframe-16dp {
|
|
box-shadow: 0 8px 10px -5px rgba(0,0,0,.2),0 16px 24px 2px rgba(0,0,0,.14),0 6px 30px 5px rgba(0,0,0,.12);
|
|
}
|
|
|
|
.md-whiteframe-17dp {
|
|
box-shadow: 0 8px 11px -5px rgba(0,0,0,.2),0 17px 26px 2px rgba(0,0,0,.14),0 6px 32px 5px rgba(0,0,0,.12);
|
|
}
|
|
|
|
.md-whiteframe-18dp {
|
|
box-shadow: 0 9px 11px -5px rgba(0,0,0,.2),0 18px 28px 2px rgba(0,0,0,.14),0 7px 34px 6px rgba(0,0,0,.12);
|
|
}
|
|
|
|
.md-whiteframe-19dp {
|
|
box-shadow: 0 9px 12px -6px rgba(0,0,0,.2),0 19px 29px 2px rgba(0,0,0,.14),0 7px 36px 6px rgba(0,0,0,.12);
|
|
}
|
|
|
|
.md-whiteframe-20dp {
|
|
box-shadow: 0 10px 13px -6px rgba(0,0,0,.2),0 20px 31px 3px rgba(0,0,0,.14),0 8px 38px 7px rgba(0,0,0,.12);
|
|
}
|
|
|
|
.md-whiteframe-21dp {
|
|
box-shadow: 0 10px 13px -6px rgba(0,0,0,.2),0 21px 33px 3px rgba(0,0,0,.14),0 8px 40px 7px rgba(0,0,0,.12);
|
|
}
|
|
|
|
.md-whiteframe-22dp {
|
|
box-shadow: 0 10px 14px -6px rgba(0,0,0,.2),0 22px 35px 3px rgba(0,0,0,.14),0 8px 42px 7px rgba(0,0,0,.12);
|
|
}
|
|
|
|
.md-whiteframe-23dp {
|
|
box-shadow: 0 11px 14px -7px rgba(0,0,0,.2),0 23px 36px 3px rgba(0,0,0,.14),0 9px 44px 8px rgba(0,0,0,.12);
|
|
}
|
|
|
|
.md-whiteframe-24dp {
|
|
box-shadow: 0 11px 15px -7px rgba(0,0,0,.2),0 24px 38px 3px rgba(0,0,0,.14),0 9px 46px 8px rgba(0,0,0,.12);
|
|
}
|
|
|
|
@media screen and (-ms-high-contrast:active) {
|
|
md-whiteframe {
|
|
border: 1px solid #fff;
|
|
}
|
|
}
|
|
|
|
@media print {
|
|
[md-whiteframe],
|
|
md-whiteframe {
|
|
background-color: #fff;
|
|
}
|
|
}
|
|
|
|
.ng-cloak,
|
|
.x-ng-cloak,
|
|
[data-ng-cloak],
|
|
[ng-cloak],
|
|
[ng\:cloak],
|
|
[x-ng-cloak] {
|
|
display: none!important;
|
|
}
|
|
|
|
@-moz-document url-prefix() {
|
|
.layout-fill {
|
|
height: 100%;
|
|
margin: 0;
|
|
min-height: 100%;
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
.flex-order {
|
|
order: 0;
|
|
}
|
|
|
|
.flex-order--20 {
|
|
order: -20;
|
|
}
|
|
|
|
.flex-order--19 {
|
|
order: -19;
|
|
}
|
|
|
|
.flex-order--18 {
|
|
order: -18;
|
|
}
|
|
|
|
.flex-order--17 {
|
|
order: -17;
|
|
}
|
|
|
|
.flex-order--16 {
|
|
order: -16;
|
|
}
|
|
|
|
.flex-order--15 {
|
|
order: -15;
|
|
}
|
|
|
|
.flex-order--14 {
|
|
order: -14;
|
|
}
|
|
|
|
.flex-order--13 {
|
|
order: -13;
|
|
}
|
|
|
|
.flex-order--12 {
|
|
order: -12;
|
|
}
|
|
|
|
.flex-order--11 {
|
|
order: -11;
|
|
}
|
|
|
|
.flex-order--10 {
|
|
order: -10;
|
|
}
|
|
|
|
.flex-order--9 {
|
|
order: -9;
|
|
}
|
|
|
|
.flex-order--8 {
|
|
order: -8;
|
|
}
|
|
|
|
.flex-order--7 {
|
|
order: -7;
|
|
}
|
|
|
|
.flex-order--6 {
|
|
order: -6;
|
|
}
|
|
|
|
.flex-order--5 {
|
|
order: -5;
|
|
}
|
|
|
|
.flex-order--4 {
|
|
order: -4;
|
|
}
|
|
|
|
.flex-order--3 {
|
|
order: -3;
|
|
}
|
|
|
|
.flex-order--2 {
|
|
order: -2;
|
|
}
|
|
|
|
.flex-order--1 {
|
|
order: -1;
|
|
}
|
|
|
|
.flex-order-0 {
|
|
order: 0;
|
|
}
|
|
|
|
.flex-order-1 {
|
|
order: 1;
|
|
}
|
|
|
|
.flex-order-2 {
|
|
order: 2;
|
|
}
|
|
|
|
.flex-order-3 {
|
|
order: 3;
|
|
}
|
|
|
|
.flex-order-4 {
|
|
order: 4;
|
|
}
|
|
|
|
.flex-order-5 {
|
|
order: 5;
|
|
}
|
|
|
|
.flex-order-6 {
|
|
order: 6;
|
|
}
|
|
|
|
.flex-order-7 {
|
|
order: 7;
|
|
}
|
|
|
|
.flex-order-8 {
|
|
order: 8;
|
|
}
|
|
|
|
.flex-order-9 {
|
|
order: 9;
|
|
}
|
|
|
|
.flex-order-10 {
|
|
order: 10;
|
|
}
|
|
|
|
.flex-order-11 {
|
|
order: 11;
|
|
}
|
|
|
|
.flex-order-12 {
|
|
order: 12;
|
|
}
|
|
|
|
.flex-order-13 {
|
|
order: 13;
|
|
}
|
|
|
|
.flex-order-14 {
|
|
order: 14;
|
|
}
|
|
|
|
.flex-order-15 {
|
|
order: 15;
|
|
}
|
|
|
|
.flex-order-16 {
|
|
order: 16;
|
|
}
|
|
|
|
.flex-order-17 {
|
|
order: 17;
|
|
}
|
|
|
|
.flex-order-18 {
|
|
order: 18;
|
|
}
|
|
|
|
.flex-order-19 {
|
|
order: 19;
|
|
}
|
|
|
|
.flex-order-20 {
|
|
order: 20;
|
|
}
|
|
|
|
.flex-offset-0,
|
|
.layout-margin .flex-offset-0,
|
|
.layout-margin .offset-0,
|
|
.offset-0 {
|
|
margin-left: 0;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-0,
|
|
[dir=rtl] .layout-margin .flex-offset-0,
|
|
[dir=rtl] .layout-margin .offset-0,
|
|
[dir=rtl] .offset-0 {
|
|
margin-left: auto;
|
|
margin-right: 0;
|
|
}
|
|
|
|
.flex-offset-5,
|
|
.layout-margin .flex-offset-5,
|
|
.layout-margin .offset-5,
|
|
.offset-5 {
|
|
margin-left: 5%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-5,
|
|
[dir=rtl] .layout-margin .flex-offset-5,
|
|
[dir=rtl] .layout-margin .offset-5,
|
|
[dir=rtl] .offset-5 {
|
|
margin-left: auto;
|
|
margin-right: 5%;
|
|
}
|
|
|
|
.flex-offset-10,
|
|
.layout-margin .flex-offset-10,
|
|
.layout-margin .offset-10,
|
|
.offset-10 {
|
|
margin-left: 10%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-10,
|
|
[dir=rtl] .layout-margin .flex-offset-10,
|
|
[dir=rtl] .layout-margin .offset-10,
|
|
[dir=rtl] .offset-10 {
|
|
margin-left: auto;
|
|
margin-right: 10%;
|
|
}
|
|
|
|
.flex-offset-15,
|
|
.layout-margin .flex-offset-15,
|
|
.layout-margin .offset-15,
|
|
.offset-15 {
|
|
margin-left: 15%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-15,
|
|
[dir=rtl] .layout-margin .flex-offset-15,
|
|
[dir=rtl] .layout-margin .offset-15,
|
|
[dir=rtl] .offset-15 {
|
|
margin-left: auto;
|
|
margin-right: 15%;
|
|
}
|
|
|
|
.flex-offset-20,
|
|
.layout-margin .flex-offset-20,
|
|
.layout-margin .offset-20,
|
|
.offset-20 {
|
|
margin-left: 20%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-20,
|
|
[dir=rtl] .layout-margin .flex-offset-20,
|
|
[dir=rtl] .layout-margin .offset-20,
|
|
[dir=rtl] .offset-20 {
|
|
margin-left: auto;
|
|
margin-right: 20%;
|
|
}
|
|
|
|
.flex-offset-25,
|
|
.layout-margin .flex-offset-25,
|
|
.layout-margin .offset-25,
|
|
.offset-25 {
|
|
margin-left: 25%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-25,
|
|
[dir=rtl] .layout-margin .flex-offset-25,
|
|
[dir=rtl] .layout-margin .offset-25,
|
|
[dir=rtl] .offset-25 {
|
|
margin-left: auto;
|
|
margin-right: 25%;
|
|
}
|
|
|
|
.flex-offset-30,
|
|
.layout-margin .flex-offset-30,
|
|
.layout-margin .offset-30,
|
|
.offset-30 {
|
|
margin-left: 30%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-30,
|
|
[dir=rtl] .layout-margin .flex-offset-30,
|
|
[dir=rtl] .layout-margin .offset-30,
|
|
[dir=rtl] .offset-30 {
|
|
margin-left: auto;
|
|
margin-right: 30%;
|
|
}
|
|
|
|
.flex-offset-35,
|
|
.layout-margin .flex-offset-35,
|
|
.layout-margin .offset-35,
|
|
.offset-35 {
|
|
margin-left: 35%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-35,
|
|
[dir=rtl] .layout-margin .flex-offset-35,
|
|
[dir=rtl] .layout-margin .offset-35,
|
|
[dir=rtl] .offset-35 {
|
|
margin-left: auto;
|
|
margin-right: 35%;
|
|
}
|
|
|
|
.flex-offset-40,
|
|
.layout-margin .flex-offset-40,
|
|
.layout-margin .offset-40,
|
|
.offset-40 {
|
|
margin-left: 40%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-40,
|
|
[dir=rtl] .layout-margin .flex-offset-40,
|
|
[dir=rtl] .layout-margin .offset-40,
|
|
[dir=rtl] .offset-40 {
|
|
margin-left: auto;
|
|
margin-right: 40%;
|
|
}
|
|
|
|
.flex-offset-45,
|
|
.layout-margin .flex-offset-45,
|
|
.layout-margin .offset-45,
|
|
.offset-45 {
|
|
margin-left: 45%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-45,
|
|
[dir=rtl] .layout-margin .flex-offset-45,
|
|
[dir=rtl] .layout-margin .offset-45,
|
|
[dir=rtl] .offset-45 {
|
|
margin-left: auto;
|
|
margin-right: 45%;
|
|
}
|
|
|
|
.flex-offset-50,
|
|
.layout-margin .flex-offset-50,
|
|
.layout-margin .offset-50,
|
|
.offset-50 {
|
|
margin-left: 50%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-50,
|
|
[dir=rtl] .layout-margin .flex-offset-50,
|
|
[dir=rtl] .layout-margin .offset-50,
|
|
[dir=rtl] .offset-50 {
|
|
margin-left: auto;
|
|
margin-right: 50%;
|
|
}
|
|
|
|
.flex-offset-55,
|
|
.layout-margin .flex-offset-55,
|
|
.layout-margin .offset-55,
|
|
.offset-55 {
|
|
margin-left: 55%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-55,
|
|
[dir=rtl] .layout-margin .flex-offset-55,
|
|
[dir=rtl] .layout-margin .offset-55,
|
|
[dir=rtl] .offset-55 {
|
|
margin-left: auto;
|
|
margin-right: 55%;
|
|
}
|
|
|
|
.flex-offset-60,
|
|
.layout-margin .flex-offset-60,
|
|
.layout-margin .offset-60,
|
|
.offset-60 {
|
|
margin-left: 60%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-60,
|
|
[dir=rtl] .layout-margin .flex-offset-60,
|
|
[dir=rtl] .layout-margin .offset-60,
|
|
[dir=rtl] .offset-60 {
|
|
margin-left: auto;
|
|
margin-right: 60%;
|
|
}
|
|
|
|
.flex-offset-65,
|
|
.layout-margin .flex-offset-65,
|
|
.layout-margin .offset-65,
|
|
.offset-65 {
|
|
margin-left: 65%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-65,
|
|
[dir=rtl] .layout-margin .flex-offset-65,
|
|
[dir=rtl] .layout-margin .offset-65,
|
|
[dir=rtl] .offset-65 {
|
|
margin-left: auto;
|
|
margin-right: 65%;
|
|
}
|
|
|
|
.flex-offset-70,
|
|
.layout-margin .flex-offset-70,
|
|
.layout-margin .offset-70,
|
|
.offset-70 {
|
|
margin-left: 70%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-70,
|
|
[dir=rtl] .layout-margin .flex-offset-70,
|
|
[dir=rtl] .layout-margin .offset-70,
|
|
[dir=rtl] .offset-70 {
|
|
margin-left: auto;
|
|
margin-right: 70%;
|
|
}
|
|
|
|
.flex-offset-75,
|
|
.layout-margin .flex-offset-75,
|
|
.layout-margin .offset-75,
|
|
.offset-75 {
|
|
margin-left: 75%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-75,
|
|
[dir=rtl] .layout-margin .flex-offset-75,
|
|
[dir=rtl] .layout-margin .offset-75,
|
|
[dir=rtl] .offset-75 {
|
|
margin-left: auto;
|
|
margin-right: 75%;
|
|
}
|
|
|
|
.flex-offset-80,
|
|
.layout-margin .flex-offset-80,
|
|
.layout-margin .offset-80,
|
|
.offset-80 {
|
|
margin-left: 80%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-80,
|
|
[dir=rtl] .layout-margin .flex-offset-80,
|
|
[dir=rtl] .layout-margin .offset-80,
|
|
[dir=rtl] .offset-80 {
|
|
margin-left: auto;
|
|
margin-right: 80%;
|
|
}
|
|
|
|
.flex-offset-85,
|
|
.layout-margin .flex-offset-85,
|
|
.layout-margin .offset-85,
|
|
.offset-85 {
|
|
margin-left: 85%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-85,
|
|
[dir=rtl] .layout-margin .flex-offset-85,
|
|
[dir=rtl] .layout-margin .offset-85,
|
|
[dir=rtl] .offset-85 {
|
|
margin-left: auto;
|
|
margin-right: 85%;
|
|
}
|
|
|
|
.flex-offset-90,
|
|
.layout-margin .flex-offset-90,
|
|
.layout-margin .offset-90,
|
|
.offset-90 {
|
|
margin-left: 90%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-90,
|
|
[dir=rtl] .layout-margin .flex-offset-90,
|
|
[dir=rtl] .layout-margin .offset-90,
|
|
[dir=rtl] .offset-90 {
|
|
margin-left: auto;
|
|
margin-right: 90%;
|
|
}
|
|
|
|
.flex-offset-95,
|
|
.layout-margin .flex-offset-95,
|
|
.layout-margin .offset-95,
|
|
.offset-95 {
|
|
margin-left: 95%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-95,
|
|
[dir=rtl] .layout-margin .flex-offset-95,
|
|
[dir=rtl] .layout-margin .offset-95,
|
|
[dir=rtl] .offset-95 {
|
|
margin-left: auto;
|
|
margin-right: 95%;
|
|
}
|
|
|
|
.flex-offset-33,
|
|
.layout-margin .flex-offset-33,
|
|
.layout-margin .offset-33,
|
|
.offset-33 {
|
|
margin-left: 33.3333333333%;
|
|
}
|
|
|
|
.flex-offset-66,
|
|
.layout-margin .flex-offset-66,
|
|
.layout-margin .offset-66,
|
|
.offset-66 {
|
|
margin-left: 66.6666666667%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-66,
|
|
[dir=rtl] .layout-margin .flex-offset-66,
|
|
[dir=rtl] .layout-margin .offset-66,
|
|
[dir=rtl] .offset-66 {
|
|
margin-left: auto;
|
|
margin-right: 66.6666666667%;
|
|
}
|
|
|
|
.layout-align,
|
|
.layout-align-start-stretch {
|
|
align-content: stretch;
|
|
align-items: stretch;
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.layout-align-start,
|
|
.layout-align-start-center,
|
|
.layout-align-start-end,
|
|
.layout-align-start-start,
|
|
.layout-align-start-stretch {
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.layout-align-center,
|
|
.layout-align-center-center,
|
|
.layout-align-center-end,
|
|
.layout-align-center-start,
|
|
.layout-align-center-stretch {
|
|
justify-content: center;
|
|
}
|
|
|
|
.layout-align-end,
|
|
.layout-align-end-center,
|
|
.layout-align-end-end,
|
|
.layout-align-end-start,
|
|
.layout-align-end-stretch {
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.layout-align-space-around,
|
|
.layout-align-space-around-center,
|
|
.layout-align-space-around-end,
|
|
.layout-align-space-around-start,
|
|
.layout-align-space-around-stretch {
|
|
justify-content: space-around;
|
|
}
|
|
|
|
.layout-align-space-between,
|
|
.layout-align-space-between-center,
|
|
.layout-align-space-between-end,
|
|
.layout-align-space-between-start,
|
|
.layout-align-space-between-stretch {
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.layout-align-center-start,
|
|
.layout-align-end-start,
|
|
.layout-align-space-around-start,
|
|
.layout-align-space-between-start,
|
|
.layout-align-start-start {
|
|
align-content: flex-start;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.layout-align-center-center,
|
|
.layout-align-end-center,
|
|
.layout-align-space-around-center,
|
|
.layout-align-space-between-center,
|
|
.layout-align-start-center {
|
|
align-content: center;
|
|
align-items: center;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-align-center-center>*,
|
|
.layout-align-end-center>*,
|
|
.layout-align-space-around-center>*,
|
|
.layout-align-space-between-center>*,
|
|
.layout-align-start-center>* {
|
|
box-sizing: border-box;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-align-center-end,
|
|
.layout-align-end-end,
|
|
.layout-align-space-around-end,
|
|
.layout-align-space-between-end,
|
|
.layout-align-start-end {
|
|
align-content: flex-end;
|
|
align-items: flex-end;
|
|
}
|
|
|
|
.layout-align-center-stretch,
|
|
.layout-align-end-stretch,
|
|
.layout-align-space-around-stretch,
|
|
.layout-align-space-between-stretch,
|
|
.layout-align-start-stretch {
|
|
align-content: stretch;
|
|
align-items: stretch;
|
|
}
|
|
|
|
.flex {
|
|
flex: 1;
|
|
}
|
|
|
|
.flex,
|
|
.flex-grow {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.flex-grow {
|
|
flex: 1 1 100%;
|
|
}
|
|
|
|
.flex-initial {
|
|
box-sizing: border-box;
|
|
flex: 0 1 auto;
|
|
}
|
|
|
|
.flex-auto {
|
|
box-sizing: border-box;
|
|
flex: 1 1 auto;
|
|
}
|
|
|
|
.flex-none {
|
|
box-sizing: border-box;
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
.flex-noshrink {
|
|
box-sizing: border-box;
|
|
flex: 1 0 auto;
|
|
}
|
|
|
|
.flex-nogrow {
|
|
box-sizing: border-box;
|
|
flex: 0 1 auto;
|
|
}
|
|
|
|
.flex-0,
|
|
.layout-row>.flex-0 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 0;
|
|
}
|
|
|
|
.layout-row>.flex-0 {
|
|
min-width: 0;
|
|
}
|
|
|
|
.layout-column>.flex-0 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 0%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-5,
|
|
.layout-row>.flex-5 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 5%;
|
|
}
|
|
|
|
.layout-column>.flex-5 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 5%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-10,
|
|
.layout-row>.flex-10 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 10%;
|
|
}
|
|
|
|
.layout-column>.flex-10 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 10%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-15,
|
|
.layout-row>.flex-15 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 15%;
|
|
}
|
|
|
|
.layout-column>.flex-15 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 15%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-20,
|
|
.layout-row>.flex-20 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 20%;
|
|
}
|
|
|
|
.layout-column>.flex-20 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 20%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-25,
|
|
.layout-row>.flex-25 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 25%;
|
|
}
|
|
|
|
.layout-column>.flex-25 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 25%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-30,
|
|
.layout-row>.flex-30 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 30%;
|
|
}
|
|
|
|
.layout-column>.flex-30 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 30%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-35,
|
|
.layout-row>.flex-35 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 35%;
|
|
}
|
|
|
|
.layout-column>.flex-35 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 35%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-40,
|
|
.layout-row>.flex-40 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 40%;
|
|
}
|
|
|
|
.layout-column>.flex-40 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 40%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-45,
|
|
.layout-row>.flex-45 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 45%;
|
|
}
|
|
|
|
.layout-column>.flex-45 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 45%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-50,
|
|
.layout-row>.flex-50 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 50%;
|
|
}
|
|
|
|
.layout-column>.flex-50 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 50%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-55,
|
|
.layout-row>.flex-55 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 55%;
|
|
}
|
|
|
|
.layout-column>.flex-55 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 55%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-60,
|
|
.layout-row>.flex-60 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 60%;
|
|
}
|
|
|
|
.layout-column>.flex-60 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 60%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-65,
|
|
.layout-row>.flex-65 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 65%;
|
|
}
|
|
|
|
.layout-column>.flex-65 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 65%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-70,
|
|
.layout-row>.flex-70 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 70%;
|
|
}
|
|
|
|
.layout-column>.flex-70 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 70%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-75,
|
|
.layout-row>.flex-75 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 75%;
|
|
}
|
|
|
|
.layout-column>.flex-75 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 75%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-80,
|
|
.layout-row>.flex-80 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 80%;
|
|
}
|
|
|
|
.layout-column>.flex-80 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 80%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-85,
|
|
.layout-row>.flex-85 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 85%;
|
|
}
|
|
|
|
.layout-column>.flex-85 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 85%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-90,
|
|
.layout-row>.flex-90 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 90%;
|
|
}
|
|
|
|
.layout-column>.flex-90 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 90%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-95,
|
|
.layout-row>.flex-95 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 95%;
|
|
}
|
|
|
|
.layout-column>.flex-95 {
|
|
max-height: 95%;
|
|
}
|
|
|
|
.flex-100,
|
|
.layout-column>.flex-95 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-100 {
|
|
max-height: 100%;
|
|
}
|
|
|
|
.layout-column>.flex-100,
|
|
.layout-row>.flex-100 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-33 {
|
|
max-width: 33.33%;
|
|
}
|
|
|
|
.flex-33,
|
|
.flex-66 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
}
|
|
|
|
.flex-66 {
|
|
max-width: 66.66%;
|
|
}
|
|
|
|
.layout-row>.flex-33 {
|
|
flex: 1 1 33.33%;
|
|
}
|
|
|
|
.layout-row>.flex-66 {
|
|
flex: 1 1 66.66%;
|
|
}
|
|
|
|
.layout-column>.flex-33 {
|
|
flex: 1 1 33.33%;
|
|
}
|
|
|
|
.layout-column>.flex-66 {
|
|
flex: 1 1 66.66%;
|
|
}
|
|
|
|
.layout-row>.flex-33 {
|
|
max-width: 33.33%;
|
|
}
|
|
|
|
.layout-row>.flex-33,
|
|
.layout-row>.flex-66 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
}
|
|
|
|
.layout-row>.flex-66 {
|
|
max-width: 66.66%;
|
|
}
|
|
|
|
.layout-row>.flex {
|
|
min-width: 0;
|
|
}
|
|
|
|
.layout-column>.flex-33 {
|
|
max-height: 33.33%;
|
|
}
|
|
|
|
.layout-column>.flex-33,
|
|
.layout-column>.flex-66 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-column>.flex-66 {
|
|
max-height: 66.66%;
|
|
}
|
|
|
|
.layout-column>.flex {
|
|
min-height: 0;
|
|
}
|
|
|
|
.layout,
|
|
.layout-column,
|
|
.layout-row {
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
}
|
|
|
|
.layout-column {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.layout-row {
|
|
flex-direction: row;
|
|
}
|
|
|
|
.layout-padding-sm>*,
|
|
.layout-padding>.flex-sm {
|
|
padding: 4px;
|
|
}
|
|
|
|
.layout-padding,
|
|
.layout-padding-gt-sm,
|
|
.layout-padding-gt-sm>*,
|
|
.layout-padding-md,
|
|
.layout-padding-md>*,
|
|
.layout-padding>*,
|
|
.layout-padding>.flex,
|
|
.layout-padding>.flex-gt-sm,
|
|
.layout-padding>.flex-md {
|
|
padding: 8px;
|
|
}
|
|
|
|
.layout-padding-gt-lg>*,
|
|
.layout-padding-gt-md>*,
|
|
.layout-padding-lg>*,
|
|
.layout-padding>.flex-gt-lg,
|
|
.layout-padding>.flex-gt-md,
|
|
.layout-padding>.flex-lg {
|
|
padding: 16px;
|
|
}
|
|
|
|
.layout-margin-sm>*,
|
|
.layout-margin>.flex-sm {
|
|
margin: 4px;
|
|
}
|
|
|
|
.layout-margin,
|
|
.layout-margin-gt-sm,
|
|
.layout-margin-gt-sm>*,
|
|
.layout-margin-md,
|
|
.layout-margin-md>*,
|
|
.layout-margin>*,
|
|
.layout-margin>.flex,
|
|
.layout-margin>.flex-gt-sm,
|
|
.layout-margin>.flex-md {
|
|
margin: 8px;
|
|
}
|
|
|
|
.layout-margin-gt-lg>*,
|
|
.layout-margin-gt-md>*,
|
|
.layout-margin-lg>*,
|
|
.layout-margin>.flex-gt-lg,
|
|
.layout-margin>.flex-gt-md,
|
|
.layout-margin>.flex-lg {
|
|
margin: 16px;
|
|
}
|
|
|
|
.layout-wrap {
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.layout-nowrap {
|
|
flex-wrap: nowrap;
|
|
}
|
|
|
|
.layout-fill {
|
|
height: 100%;
|
|
margin: 0;
|
|
min-height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
@media (max-width:599px) {
|
|
.hide-xs:not(.show-xs):not(.show),
|
|
.hide:not(.show-xs):not(.show) {
|
|
display: none;
|
|
}
|
|
|
|
.flex-order-xs--20 {
|
|
order: -20;
|
|
}
|
|
|
|
.flex-order-xs--19 {
|
|
order: -19;
|
|
}
|
|
|
|
.flex-order-xs--18 {
|
|
order: -18;
|
|
}
|
|
|
|
.flex-order-xs--17 {
|
|
order: -17;
|
|
}
|
|
|
|
.flex-order-xs--16 {
|
|
order: -16;
|
|
}
|
|
|
|
.flex-order-xs--15 {
|
|
order: -15;
|
|
}
|
|
|
|
.flex-order-xs--14 {
|
|
order: -14;
|
|
}
|
|
|
|
.flex-order-xs--13 {
|
|
order: -13;
|
|
}
|
|
|
|
.flex-order-xs--12 {
|
|
order: -12;
|
|
}
|
|
|
|
.flex-order-xs--11 {
|
|
order: -11;
|
|
}
|
|
|
|
.flex-order-xs--10 {
|
|
order: -10;
|
|
}
|
|
|
|
.flex-order-xs--9 {
|
|
order: -9;
|
|
}
|
|
|
|
.flex-order-xs--8 {
|
|
order: -8;
|
|
}
|
|
|
|
.flex-order-xs--7 {
|
|
order: -7;
|
|
}
|
|
|
|
.flex-order-xs--6 {
|
|
order: -6;
|
|
}
|
|
|
|
.flex-order-xs--5 {
|
|
order: -5;
|
|
}
|
|
|
|
.flex-order-xs--4 {
|
|
order: -4;
|
|
}
|
|
|
|
.flex-order-xs--3 {
|
|
order: -3;
|
|
}
|
|
|
|
.flex-order-xs--2 {
|
|
order: -2;
|
|
}
|
|
|
|
.flex-order-xs--1 {
|
|
order: -1;
|
|
}
|
|
|
|
.flex-order-xs-0 {
|
|
order: 0;
|
|
}
|
|
|
|
.flex-order-xs-1 {
|
|
order: 1;
|
|
}
|
|
|
|
.flex-order-xs-2 {
|
|
order: 2;
|
|
}
|
|
|
|
.flex-order-xs-3 {
|
|
order: 3;
|
|
}
|
|
|
|
.flex-order-xs-4 {
|
|
order: 4;
|
|
}
|
|
|
|
.flex-order-xs-5 {
|
|
order: 5;
|
|
}
|
|
|
|
.flex-order-xs-6 {
|
|
order: 6;
|
|
}
|
|
|
|
.flex-order-xs-7 {
|
|
order: 7;
|
|
}
|
|
|
|
.flex-order-xs-8 {
|
|
order: 8;
|
|
}
|
|
|
|
.flex-order-xs-9 {
|
|
order: 9;
|
|
}
|
|
|
|
.flex-order-xs-10 {
|
|
order: 10;
|
|
}
|
|
|
|
.flex-order-xs-11 {
|
|
order: 11;
|
|
}
|
|
|
|
.flex-order-xs-12 {
|
|
order: 12;
|
|
}
|
|
|
|
.flex-order-xs-13 {
|
|
order: 13;
|
|
}
|
|
|
|
.flex-order-xs-14 {
|
|
order: 14;
|
|
}
|
|
|
|
.flex-order-xs-15 {
|
|
order: 15;
|
|
}
|
|
|
|
.flex-order-xs-16 {
|
|
order: 16;
|
|
}
|
|
|
|
.flex-order-xs-17 {
|
|
order: 17;
|
|
}
|
|
|
|
.flex-order-xs-18 {
|
|
order: 18;
|
|
}
|
|
|
|
.flex-order-xs-19 {
|
|
order: 19;
|
|
}
|
|
|
|
.flex-order-xs-20 {
|
|
order: 20;
|
|
}
|
|
|
|
.flex-offset-xs-0,
|
|
.layout-margin .flex-offset-xs-0,
|
|
.layout-margin .offset-xs-0,
|
|
.offset-xs-0 {
|
|
margin-left: 0;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-xs-0,
|
|
[dir=rtl] .layout-margin .flex-offset-xs-0,
|
|
[dir=rtl] .layout-margin .offset-xs-0,
|
|
[dir=rtl] .offset-xs-0 {
|
|
margin-left: auto;
|
|
margin-right: 0;
|
|
}
|
|
|
|
.flex-offset-xs-5,
|
|
.layout-margin .flex-offset-xs-5,
|
|
.layout-margin .offset-xs-5,
|
|
.offset-xs-5 {
|
|
margin-left: 5%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-xs-5,
|
|
[dir=rtl] .layout-margin .flex-offset-xs-5,
|
|
[dir=rtl] .layout-margin .offset-xs-5,
|
|
[dir=rtl] .offset-xs-5 {
|
|
margin-left: auto;
|
|
margin-right: 5%;
|
|
}
|
|
|
|
.flex-offset-xs-10,
|
|
.layout-margin .flex-offset-xs-10,
|
|
.layout-margin .offset-xs-10,
|
|
.offset-xs-10 {
|
|
margin-left: 10%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-xs-10,
|
|
[dir=rtl] .layout-margin .flex-offset-xs-10,
|
|
[dir=rtl] .layout-margin .offset-xs-10,
|
|
[dir=rtl] .offset-xs-10 {
|
|
margin-left: auto;
|
|
margin-right: 10%;
|
|
}
|
|
|
|
.flex-offset-xs-15,
|
|
.layout-margin .flex-offset-xs-15,
|
|
.layout-margin .offset-xs-15,
|
|
.offset-xs-15 {
|
|
margin-left: 15%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-xs-15,
|
|
[dir=rtl] .layout-margin .flex-offset-xs-15,
|
|
[dir=rtl] .layout-margin .offset-xs-15,
|
|
[dir=rtl] .offset-xs-15 {
|
|
margin-left: auto;
|
|
margin-right: 15%;
|
|
}
|
|
|
|
.flex-offset-xs-20,
|
|
.layout-margin .flex-offset-xs-20,
|
|
.layout-margin .offset-xs-20,
|
|
.offset-xs-20 {
|
|
margin-left: 20%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-xs-20,
|
|
[dir=rtl] .layout-margin .flex-offset-xs-20,
|
|
[dir=rtl] .layout-margin .offset-xs-20,
|
|
[dir=rtl] .offset-xs-20 {
|
|
margin-left: auto;
|
|
margin-right: 20%;
|
|
}
|
|
|
|
.flex-offset-xs-25,
|
|
.layout-margin .flex-offset-xs-25,
|
|
.layout-margin .offset-xs-25,
|
|
.offset-xs-25 {
|
|
margin-left: 25%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-xs-25,
|
|
[dir=rtl] .layout-margin .flex-offset-xs-25,
|
|
[dir=rtl] .layout-margin .offset-xs-25,
|
|
[dir=rtl] .offset-xs-25 {
|
|
margin-left: auto;
|
|
margin-right: 25%;
|
|
}
|
|
|
|
.flex-offset-xs-30,
|
|
.layout-margin .flex-offset-xs-30,
|
|
.layout-margin .offset-xs-30,
|
|
.offset-xs-30 {
|
|
margin-left: 30%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-xs-30,
|
|
[dir=rtl] .layout-margin .flex-offset-xs-30,
|
|
[dir=rtl] .layout-margin .offset-xs-30,
|
|
[dir=rtl] .offset-xs-30 {
|
|
margin-left: auto;
|
|
margin-right: 30%;
|
|
}
|
|
|
|
.flex-offset-xs-35,
|
|
.layout-margin .flex-offset-xs-35,
|
|
.layout-margin .offset-xs-35,
|
|
.offset-xs-35 {
|
|
margin-left: 35%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-xs-35,
|
|
[dir=rtl] .layout-margin .flex-offset-xs-35,
|
|
[dir=rtl] .layout-margin .offset-xs-35,
|
|
[dir=rtl] .offset-xs-35 {
|
|
margin-left: auto;
|
|
margin-right: 35%;
|
|
}
|
|
|
|
.flex-offset-xs-40,
|
|
.layout-margin .flex-offset-xs-40,
|
|
.layout-margin .offset-xs-40,
|
|
.offset-xs-40 {
|
|
margin-left: 40%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-xs-40,
|
|
[dir=rtl] .layout-margin .flex-offset-xs-40,
|
|
[dir=rtl] .layout-margin .offset-xs-40,
|
|
[dir=rtl] .offset-xs-40 {
|
|
margin-left: auto;
|
|
margin-right: 40%;
|
|
}
|
|
|
|
.flex-offset-xs-45,
|
|
.layout-margin .flex-offset-xs-45,
|
|
.layout-margin .offset-xs-45,
|
|
.offset-xs-45 {
|
|
margin-left: 45%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-xs-45,
|
|
[dir=rtl] .layout-margin .flex-offset-xs-45,
|
|
[dir=rtl] .layout-margin .offset-xs-45,
|
|
[dir=rtl] .offset-xs-45 {
|
|
margin-left: auto;
|
|
margin-right: 45%;
|
|
}
|
|
|
|
.flex-offset-xs-50,
|
|
.layout-margin .flex-offset-xs-50,
|
|
.layout-margin .offset-xs-50,
|
|
.offset-xs-50 {
|
|
margin-left: 50%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-xs-50,
|
|
[dir=rtl] .layout-margin .flex-offset-xs-50,
|
|
[dir=rtl] .layout-margin .offset-xs-50,
|
|
[dir=rtl] .offset-xs-50 {
|
|
margin-left: auto;
|
|
margin-right: 50%;
|
|
}
|
|
|
|
.flex-offset-xs-55,
|
|
.layout-margin .flex-offset-xs-55,
|
|
.layout-margin .offset-xs-55,
|
|
.offset-xs-55 {
|
|
margin-left: 55%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-xs-55,
|
|
[dir=rtl] .layout-margin .flex-offset-xs-55,
|
|
[dir=rtl] .layout-margin .offset-xs-55,
|
|
[dir=rtl] .offset-xs-55 {
|
|
margin-left: auto;
|
|
margin-right: 55%;
|
|
}
|
|
|
|
.flex-offset-xs-60,
|
|
.layout-margin .flex-offset-xs-60,
|
|
.layout-margin .offset-xs-60,
|
|
.offset-xs-60 {
|
|
margin-left: 60%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-xs-60,
|
|
[dir=rtl] .layout-margin .flex-offset-xs-60,
|
|
[dir=rtl] .layout-margin .offset-xs-60,
|
|
[dir=rtl] .offset-xs-60 {
|
|
margin-left: auto;
|
|
margin-right: 60%;
|
|
}
|
|
|
|
.flex-offset-xs-65,
|
|
.layout-margin .flex-offset-xs-65,
|
|
.layout-margin .offset-xs-65,
|
|
.offset-xs-65 {
|
|
margin-left: 65%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-xs-65,
|
|
[dir=rtl] .layout-margin .flex-offset-xs-65,
|
|
[dir=rtl] .layout-margin .offset-xs-65,
|
|
[dir=rtl] .offset-xs-65 {
|
|
margin-left: auto;
|
|
margin-right: 65%;
|
|
}
|
|
|
|
.flex-offset-xs-70,
|
|
.layout-margin .flex-offset-xs-70,
|
|
.layout-margin .offset-xs-70,
|
|
.offset-xs-70 {
|
|
margin-left: 70%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-xs-70,
|
|
[dir=rtl] .layout-margin .flex-offset-xs-70,
|
|
[dir=rtl] .layout-margin .offset-xs-70,
|
|
[dir=rtl] .offset-xs-70 {
|
|
margin-left: auto;
|
|
margin-right: 70%;
|
|
}
|
|
|
|
.flex-offset-xs-75,
|
|
.layout-margin .flex-offset-xs-75,
|
|
.layout-margin .offset-xs-75,
|
|
.offset-xs-75 {
|
|
margin-left: 75%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-xs-75,
|
|
[dir=rtl] .layout-margin .flex-offset-xs-75,
|
|
[dir=rtl] .layout-margin .offset-xs-75,
|
|
[dir=rtl] .offset-xs-75 {
|
|
margin-left: auto;
|
|
margin-right: 75%;
|
|
}
|
|
|
|
.flex-offset-xs-80,
|
|
.layout-margin .flex-offset-xs-80,
|
|
.layout-margin .offset-xs-80,
|
|
.offset-xs-80 {
|
|
margin-left: 80%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-xs-80,
|
|
[dir=rtl] .layout-margin .flex-offset-xs-80,
|
|
[dir=rtl] .layout-margin .offset-xs-80,
|
|
[dir=rtl] .offset-xs-80 {
|
|
margin-left: auto;
|
|
margin-right: 80%;
|
|
}
|
|
|
|
.flex-offset-xs-85,
|
|
.layout-margin .flex-offset-xs-85,
|
|
.layout-margin .offset-xs-85,
|
|
.offset-xs-85 {
|
|
margin-left: 85%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-xs-85,
|
|
[dir=rtl] .layout-margin .flex-offset-xs-85,
|
|
[dir=rtl] .layout-margin .offset-xs-85,
|
|
[dir=rtl] .offset-xs-85 {
|
|
margin-left: auto;
|
|
margin-right: 85%;
|
|
}
|
|
|
|
.flex-offset-xs-90,
|
|
.layout-margin .flex-offset-xs-90,
|
|
.layout-margin .offset-xs-90,
|
|
.offset-xs-90 {
|
|
margin-left: 90%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-xs-90,
|
|
[dir=rtl] .layout-margin .flex-offset-xs-90,
|
|
[dir=rtl] .layout-margin .offset-xs-90,
|
|
[dir=rtl] .offset-xs-90 {
|
|
margin-left: auto;
|
|
margin-right: 90%;
|
|
}
|
|
|
|
.flex-offset-xs-95,
|
|
.layout-margin .flex-offset-xs-95,
|
|
.layout-margin .offset-xs-95,
|
|
.offset-xs-95 {
|
|
margin-left: 95%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-xs-95,
|
|
[dir=rtl] .layout-margin .flex-offset-xs-95,
|
|
[dir=rtl] .layout-margin .offset-xs-95,
|
|
[dir=rtl] .offset-xs-95 {
|
|
margin-left: auto;
|
|
margin-right: 95%;
|
|
}
|
|
|
|
.flex-offset-xs-33,
|
|
.layout-margin .flex-offset-xs-33,
|
|
.layout-margin .offset-xs-33,
|
|
.offset-xs-33 {
|
|
margin-left: 33.3333333333%;
|
|
}
|
|
|
|
.flex-offset-xs-66,
|
|
.layout-margin .flex-offset-xs-66,
|
|
.layout-margin .offset-xs-66,
|
|
.offset-xs-66 {
|
|
margin-left: 66.6666666667%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-xs-66,
|
|
[dir=rtl] .layout-margin .flex-offset-xs-66,
|
|
[dir=rtl] .layout-margin .offset-xs-66,
|
|
[dir=rtl] .offset-xs-66 {
|
|
margin-left: auto;
|
|
margin-right: 66.6666666667%;
|
|
}
|
|
|
|
.layout-align-xs,
|
|
.layout-align-xs-start-stretch {
|
|
align-content: stretch;
|
|
align-items: stretch;
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.layout-align-xs-start,
|
|
.layout-align-xs-start-center,
|
|
.layout-align-xs-start-end,
|
|
.layout-align-xs-start-start,
|
|
.layout-align-xs-start-stretch {
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.layout-align-xs-center,
|
|
.layout-align-xs-center-center,
|
|
.layout-align-xs-center-end,
|
|
.layout-align-xs-center-start,
|
|
.layout-align-xs-center-stretch {
|
|
justify-content: center;
|
|
}
|
|
|
|
.layout-align-xs-end,
|
|
.layout-align-xs-end-center,
|
|
.layout-align-xs-end-end,
|
|
.layout-align-xs-end-start,
|
|
.layout-align-xs-end-stretch {
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.layout-align-xs-space-around,
|
|
.layout-align-xs-space-around-center,
|
|
.layout-align-xs-space-around-end,
|
|
.layout-align-xs-space-around-start,
|
|
.layout-align-xs-space-around-stretch {
|
|
justify-content: space-around;
|
|
}
|
|
|
|
.layout-align-xs-space-between,
|
|
.layout-align-xs-space-between-center,
|
|
.layout-align-xs-space-between-end,
|
|
.layout-align-xs-space-between-start,
|
|
.layout-align-xs-space-between-stretch {
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.layout-align-xs-center-start,
|
|
.layout-align-xs-end-start,
|
|
.layout-align-xs-space-around-start,
|
|
.layout-align-xs-space-between-start,
|
|
.layout-align-xs-start-start {
|
|
align-content: flex-start;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.layout-align-xs-center-center,
|
|
.layout-align-xs-end-center,
|
|
.layout-align-xs-space-around-center,
|
|
.layout-align-xs-space-between-center,
|
|
.layout-align-xs-start-center {
|
|
align-content: center;
|
|
align-items: center;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-align-xs-center-center>*,
|
|
.layout-align-xs-end-center>*,
|
|
.layout-align-xs-space-around-center>*,
|
|
.layout-align-xs-space-between-center>*,
|
|
.layout-align-xs-start-center>* {
|
|
box-sizing: border-box;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-align-xs-center-end,
|
|
.layout-align-xs-end-end,
|
|
.layout-align-xs-space-around-end,
|
|
.layout-align-xs-space-between-end,
|
|
.layout-align-xs-start-end {
|
|
align-content: flex-end;
|
|
align-items: flex-end;
|
|
}
|
|
|
|
.layout-align-xs-center-stretch,
|
|
.layout-align-xs-end-stretch,
|
|
.layout-align-xs-space-around-stretch,
|
|
.layout-align-xs-space-between-stretch,
|
|
.layout-align-xs-start-stretch {
|
|
align-content: stretch;
|
|
align-items: stretch;
|
|
}
|
|
|
|
.flex-xs {
|
|
box-sizing: border-box;
|
|
flex: 1;
|
|
}
|
|
|
|
.flex-xs-grow {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
}
|
|
|
|
.flex-xs-initial {
|
|
box-sizing: border-box;
|
|
flex: 0 1 auto;
|
|
}
|
|
|
|
.flex-xs-auto {
|
|
box-sizing: border-box;
|
|
flex: 1 1 auto;
|
|
}
|
|
|
|
.flex-xs-none {
|
|
box-sizing: border-box;
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
.flex-xs-noshrink {
|
|
box-sizing: border-box;
|
|
flex: 1 0 auto;
|
|
}
|
|
|
|
.flex-xs-nogrow {
|
|
box-sizing: border-box;
|
|
flex: 0 1 auto;
|
|
}
|
|
|
|
.flex-xs-0,
|
|
.layout-row>.flex-xs-0 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 0;
|
|
}
|
|
|
|
.layout-row>.flex-xs-0 {
|
|
min-width: 0;
|
|
}
|
|
|
|
.layout-column>.flex-xs-0 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 0%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-xs-row>.flex-xs-0 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 0;
|
|
min-width: 0;
|
|
}
|
|
|
|
.layout-xs-column>.flex-xs-0 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 0%;
|
|
max-width: 100%;
|
|
min-height: 0;
|
|
}
|
|
|
|
.flex-xs-5,
|
|
.layout-row>.flex-xs-5 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 5%;
|
|
}
|
|
|
|
.layout-column>.flex-xs-5 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 5%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-xs-row>.flex-xs-5 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 5%;
|
|
}
|
|
|
|
.layout-xs-column>.flex-xs-5 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 5%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-xs-10,
|
|
.layout-row>.flex-xs-10 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 10%;
|
|
}
|
|
|
|
.layout-column>.flex-xs-10 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 10%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-xs-row>.flex-xs-10 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 10%;
|
|
}
|
|
|
|
.layout-xs-column>.flex-xs-10 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 10%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-xs-15,
|
|
.layout-row>.flex-xs-15 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 15%;
|
|
}
|
|
|
|
.layout-column>.flex-xs-15 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 15%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-xs-row>.flex-xs-15 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 15%;
|
|
}
|
|
|
|
.layout-xs-column>.flex-xs-15 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 15%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-xs-20,
|
|
.layout-row>.flex-xs-20 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 20%;
|
|
}
|
|
|
|
.layout-column>.flex-xs-20 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 20%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-xs-row>.flex-xs-20 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 20%;
|
|
}
|
|
|
|
.layout-xs-column>.flex-xs-20 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 20%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-xs-25,
|
|
.layout-row>.flex-xs-25 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 25%;
|
|
}
|
|
|
|
.layout-column>.flex-xs-25 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 25%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-xs-row>.flex-xs-25 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 25%;
|
|
}
|
|
|
|
.layout-xs-column>.flex-xs-25 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 25%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-xs-30,
|
|
.layout-row>.flex-xs-30 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 30%;
|
|
}
|
|
|
|
.layout-column>.flex-xs-30 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 30%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-xs-row>.flex-xs-30 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 30%;
|
|
}
|
|
|
|
.layout-xs-column>.flex-xs-30 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 30%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-xs-35,
|
|
.layout-row>.flex-xs-35 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 35%;
|
|
}
|
|
|
|
.layout-column>.flex-xs-35 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 35%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-xs-row>.flex-xs-35 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 35%;
|
|
}
|
|
|
|
.layout-xs-column>.flex-xs-35 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 35%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-xs-40,
|
|
.layout-row>.flex-xs-40 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 40%;
|
|
}
|
|
|
|
.layout-column>.flex-xs-40 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 40%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-xs-row>.flex-xs-40 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 40%;
|
|
}
|
|
|
|
.layout-xs-column>.flex-xs-40 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 40%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-xs-45,
|
|
.layout-row>.flex-xs-45 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 45%;
|
|
}
|
|
|
|
.layout-column>.flex-xs-45 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 45%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-xs-row>.flex-xs-45 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 45%;
|
|
}
|
|
|
|
.layout-xs-column>.flex-xs-45 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 45%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-xs-50,
|
|
.layout-row>.flex-xs-50 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 50%;
|
|
}
|
|
|
|
.layout-column>.flex-xs-50 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 50%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-xs-row>.flex-xs-50 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 50%;
|
|
}
|
|
|
|
.layout-xs-column>.flex-xs-50 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 50%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-xs-55,
|
|
.layout-row>.flex-xs-55 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 55%;
|
|
}
|
|
|
|
.layout-column>.flex-xs-55 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 55%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-xs-row>.flex-xs-55 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 55%;
|
|
}
|
|
|
|
.layout-xs-column>.flex-xs-55 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 55%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-xs-60,
|
|
.layout-row>.flex-xs-60 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 60%;
|
|
}
|
|
|
|
.layout-column>.flex-xs-60 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 60%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-xs-row>.flex-xs-60 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 60%;
|
|
}
|
|
|
|
.layout-xs-column>.flex-xs-60 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 60%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-xs-65,
|
|
.layout-row>.flex-xs-65 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 65%;
|
|
}
|
|
|
|
.layout-column>.flex-xs-65 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 65%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-xs-row>.flex-xs-65 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 65%;
|
|
}
|
|
|
|
.layout-xs-column>.flex-xs-65 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 65%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-xs-70,
|
|
.layout-row>.flex-xs-70 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 70%;
|
|
}
|
|
|
|
.layout-column>.flex-xs-70 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 70%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-xs-row>.flex-xs-70 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 70%;
|
|
}
|
|
|
|
.layout-xs-column>.flex-xs-70 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 70%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-xs-75,
|
|
.layout-row>.flex-xs-75 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 75%;
|
|
}
|
|
|
|
.layout-column>.flex-xs-75 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 75%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-xs-row>.flex-xs-75 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 75%;
|
|
}
|
|
|
|
.layout-xs-column>.flex-xs-75 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 75%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-xs-80,
|
|
.layout-row>.flex-xs-80 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 80%;
|
|
}
|
|
|
|
.layout-column>.flex-xs-80 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 80%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-xs-row>.flex-xs-80 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 80%;
|
|
}
|
|
|
|
.layout-xs-column>.flex-xs-80 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 80%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-xs-85,
|
|
.layout-row>.flex-xs-85 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 85%;
|
|
}
|
|
|
|
.layout-column>.flex-xs-85 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 85%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-xs-row>.flex-xs-85 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 85%;
|
|
}
|
|
|
|
.layout-xs-column>.flex-xs-85 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 85%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-xs-90,
|
|
.layout-row>.flex-xs-90 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 90%;
|
|
}
|
|
|
|
.layout-column>.flex-xs-90 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 90%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-xs-row>.flex-xs-90 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 90%;
|
|
}
|
|
|
|
.layout-xs-column>.flex-xs-90 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 90%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-xs-95,
|
|
.layout-row>.flex-xs-95 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 95%;
|
|
}
|
|
|
|
.layout-column>.flex-xs-95 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 95%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-xs-row>.flex-xs-95 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 95%;
|
|
}
|
|
|
|
.layout-xs-column>.flex-xs-95 {
|
|
max-height: 95%;
|
|
}
|
|
|
|
.flex-xs-100,
|
|
.layout-xs-column>.flex-xs-95 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-xs-100 {
|
|
max-height: 100%;
|
|
}
|
|
|
|
.layout-column>.flex-xs-100,
|
|
.layout-row>.flex-xs-100,
|
|
.layout-xs-column>.flex-xs-100,
|
|
.layout-xs-row>.flex-xs-100 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-row>.flex-xs-33 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 33.33%;
|
|
max-height: 100%;
|
|
max-width: 33.33%;
|
|
}
|
|
|
|
.layout-row>.flex-xs-66 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 66.66%;
|
|
max-height: 100%;
|
|
max-width: 66.66%;
|
|
}
|
|
|
|
.layout-column>.flex-xs-33 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 33.33%;
|
|
max-height: 33.33%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-column>.flex-xs-66 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 66.66%;
|
|
max-height: 66.66%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-xs-row>.flex-xs-33 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 33.33%;
|
|
}
|
|
|
|
.layout-xs-row>.flex-xs-66 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 66.66%;
|
|
}
|
|
|
|
.layout-xs-row>.flex {
|
|
min-width: 0;
|
|
}
|
|
|
|
.layout-xs-column>.flex-xs-33 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 33.33%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-xs-column>.flex-xs-66 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 66.66%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-xs-column>.flex {
|
|
min-height: 0;
|
|
}
|
|
|
|
.layout-xs,
|
|
.layout-xs-column,
|
|
.layout-xs-row {
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
}
|
|
|
|
.layout-xs-column {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.layout-xs-row {
|
|
flex-direction: row;
|
|
}
|
|
}
|
|
|
|
@media (min-width:600px) {
|
|
.flex-order-gt-xs--20 {
|
|
order: -20;
|
|
}
|
|
|
|
.flex-order-gt-xs--19 {
|
|
order: -19;
|
|
}
|
|
|
|
.flex-order-gt-xs--18 {
|
|
order: -18;
|
|
}
|
|
|
|
.flex-order-gt-xs--17 {
|
|
order: -17;
|
|
}
|
|
|
|
.flex-order-gt-xs--16 {
|
|
order: -16;
|
|
}
|
|
|
|
.flex-order-gt-xs--15 {
|
|
order: -15;
|
|
}
|
|
|
|
.flex-order-gt-xs--14 {
|
|
order: -14;
|
|
}
|
|
|
|
.flex-order-gt-xs--13 {
|
|
order: -13;
|
|
}
|
|
|
|
.flex-order-gt-xs--12 {
|
|
order: -12;
|
|
}
|
|
|
|
.flex-order-gt-xs--11 {
|
|
order: -11;
|
|
}
|
|
|
|
.flex-order-gt-xs--10 {
|
|
order: -10;
|
|
}
|
|
|
|
.flex-order-gt-xs--9 {
|
|
order: -9;
|
|
}
|
|
|
|
.flex-order-gt-xs--8 {
|
|
order: -8;
|
|
}
|
|
|
|
.flex-order-gt-xs--7 {
|
|
order: -7;
|
|
}
|
|
|
|
.flex-order-gt-xs--6 {
|
|
order: -6;
|
|
}
|
|
|
|
.flex-order-gt-xs--5 {
|
|
order: -5;
|
|
}
|
|
|
|
.flex-order-gt-xs--4 {
|
|
order: -4;
|
|
}
|
|
|
|
.flex-order-gt-xs--3 {
|
|
order: -3;
|
|
}
|
|
|
|
.flex-order-gt-xs--2 {
|
|
order: -2;
|
|
}
|
|
|
|
.flex-order-gt-xs--1 {
|
|
order: -1;
|
|
}
|
|
|
|
.flex-order-gt-xs-0 {
|
|
order: 0;
|
|
}
|
|
|
|
.flex-order-gt-xs-1 {
|
|
order: 1;
|
|
}
|
|
|
|
.flex-order-gt-xs-2 {
|
|
order: 2;
|
|
}
|
|
|
|
.flex-order-gt-xs-3 {
|
|
order: 3;
|
|
}
|
|
|
|
.flex-order-gt-xs-4 {
|
|
order: 4;
|
|
}
|
|
|
|
.flex-order-gt-xs-5 {
|
|
order: 5;
|
|
}
|
|
|
|
.flex-order-gt-xs-6 {
|
|
order: 6;
|
|
}
|
|
|
|
.flex-order-gt-xs-7 {
|
|
order: 7;
|
|
}
|
|
|
|
.flex-order-gt-xs-8 {
|
|
order: 8;
|
|
}
|
|
|
|
.flex-order-gt-xs-9 {
|
|
order: 9;
|
|
}
|
|
|
|
.flex-order-gt-xs-10 {
|
|
order: 10;
|
|
}
|
|
|
|
.flex-order-gt-xs-11 {
|
|
order: 11;
|
|
}
|
|
|
|
.flex-order-gt-xs-12 {
|
|
order: 12;
|
|
}
|
|
|
|
.flex-order-gt-xs-13 {
|
|
order: 13;
|
|
}
|
|
|
|
.flex-order-gt-xs-14 {
|
|
order: 14;
|
|
}
|
|
|
|
.flex-order-gt-xs-15 {
|
|
order: 15;
|
|
}
|
|
|
|
.flex-order-gt-xs-16 {
|
|
order: 16;
|
|
}
|
|
|
|
.flex-order-gt-xs-17 {
|
|
order: 17;
|
|
}
|
|
|
|
.flex-order-gt-xs-18 {
|
|
order: 18;
|
|
}
|
|
|
|
.flex-order-gt-xs-19 {
|
|
order: 19;
|
|
}
|
|
|
|
.flex-order-gt-xs-20 {
|
|
order: 20;
|
|
}
|
|
|
|
.flex-offset-gt-xs-0,
|
|
.layout-margin .flex-offset-gt-xs-0,
|
|
.layout-margin .offset-gt-xs-0,
|
|
.offset-gt-xs-0 {
|
|
margin-left: 0;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-xs-0,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-xs-0,
|
|
[dir=rtl] .layout-margin .offset-gt-xs-0,
|
|
[dir=rtl] .offset-gt-xs-0 {
|
|
margin-left: auto;
|
|
margin-right: 0;
|
|
}
|
|
|
|
.flex-offset-gt-xs-5,
|
|
.layout-margin .flex-offset-gt-xs-5,
|
|
.layout-margin .offset-gt-xs-5,
|
|
.offset-gt-xs-5 {
|
|
margin-left: 5%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-xs-5,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-xs-5,
|
|
[dir=rtl] .layout-margin .offset-gt-xs-5,
|
|
[dir=rtl] .offset-gt-xs-5 {
|
|
margin-left: auto;
|
|
margin-right: 5%;
|
|
}
|
|
|
|
.flex-offset-gt-xs-10,
|
|
.layout-margin .flex-offset-gt-xs-10,
|
|
.layout-margin .offset-gt-xs-10,
|
|
.offset-gt-xs-10 {
|
|
margin-left: 10%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-xs-10,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-xs-10,
|
|
[dir=rtl] .layout-margin .offset-gt-xs-10,
|
|
[dir=rtl] .offset-gt-xs-10 {
|
|
margin-left: auto;
|
|
margin-right: 10%;
|
|
}
|
|
|
|
.flex-offset-gt-xs-15,
|
|
.layout-margin .flex-offset-gt-xs-15,
|
|
.layout-margin .offset-gt-xs-15,
|
|
.offset-gt-xs-15 {
|
|
margin-left: 15%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-xs-15,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-xs-15,
|
|
[dir=rtl] .layout-margin .offset-gt-xs-15,
|
|
[dir=rtl] .offset-gt-xs-15 {
|
|
margin-left: auto;
|
|
margin-right: 15%;
|
|
}
|
|
|
|
.flex-offset-gt-xs-20,
|
|
.layout-margin .flex-offset-gt-xs-20,
|
|
.layout-margin .offset-gt-xs-20,
|
|
.offset-gt-xs-20 {
|
|
margin-left: 20%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-xs-20,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-xs-20,
|
|
[dir=rtl] .layout-margin .offset-gt-xs-20,
|
|
[dir=rtl] .offset-gt-xs-20 {
|
|
margin-left: auto;
|
|
margin-right: 20%;
|
|
}
|
|
|
|
.flex-offset-gt-xs-25,
|
|
.layout-margin .flex-offset-gt-xs-25,
|
|
.layout-margin .offset-gt-xs-25,
|
|
.offset-gt-xs-25 {
|
|
margin-left: 25%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-xs-25,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-xs-25,
|
|
[dir=rtl] .layout-margin .offset-gt-xs-25,
|
|
[dir=rtl] .offset-gt-xs-25 {
|
|
margin-left: auto;
|
|
margin-right: 25%;
|
|
}
|
|
|
|
.flex-offset-gt-xs-30,
|
|
.layout-margin .flex-offset-gt-xs-30,
|
|
.layout-margin .offset-gt-xs-30,
|
|
.offset-gt-xs-30 {
|
|
margin-left: 30%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-xs-30,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-xs-30,
|
|
[dir=rtl] .layout-margin .offset-gt-xs-30,
|
|
[dir=rtl] .offset-gt-xs-30 {
|
|
margin-left: auto;
|
|
margin-right: 30%;
|
|
}
|
|
|
|
.flex-offset-gt-xs-35,
|
|
.layout-margin .flex-offset-gt-xs-35,
|
|
.layout-margin .offset-gt-xs-35,
|
|
.offset-gt-xs-35 {
|
|
margin-left: 35%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-xs-35,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-xs-35,
|
|
[dir=rtl] .layout-margin .offset-gt-xs-35,
|
|
[dir=rtl] .offset-gt-xs-35 {
|
|
margin-left: auto;
|
|
margin-right: 35%;
|
|
}
|
|
|
|
.flex-offset-gt-xs-40,
|
|
.layout-margin .flex-offset-gt-xs-40,
|
|
.layout-margin .offset-gt-xs-40,
|
|
.offset-gt-xs-40 {
|
|
margin-left: 40%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-xs-40,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-xs-40,
|
|
[dir=rtl] .layout-margin .offset-gt-xs-40,
|
|
[dir=rtl] .offset-gt-xs-40 {
|
|
margin-left: auto;
|
|
margin-right: 40%;
|
|
}
|
|
|
|
.flex-offset-gt-xs-45,
|
|
.layout-margin .flex-offset-gt-xs-45,
|
|
.layout-margin .offset-gt-xs-45,
|
|
.offset-gt-xs-45 {
|
|
margin-left: 45%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-xs-45,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-xs-45,
|
|
[dir=rtl] .layout-margin .offset-gt-xs-45,
|
|
[dir=rtl] .offset-gt-xs-45 {
|
|
margin-left: auto;
|
|
margin-right: 45%;
|
|
}
|
|
|
|
.flex-offset-gt-xs-50,
|
|
.layout-margin .flex-offset-gt-xs-50,
|
|
.layout-margin .offset-gt-xs-50,
|
|
.offset-gt-xs-50 {
|
|
margin-left: 50%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-xs-50,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-xs-50,
|
|
[dir=rtl] .layout-margin .offset-gt-xs-50,
|
|
[dir=rtl] .offset-gt-xs-50 {
|
|
margin-left: auto;
|
|
margin-right: 50%;
|
|
}
|
|
|
|
.flex-offset-gt-xs-55,
|
|
.layout-margin .flex-offset-gt-xs-55,
|
|
.layout-margin .offset-gt-xs-55,
|
|
.offset-gt-xs-55 {
|
|
margin-left: 55%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-xs-55,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-xs-55,
|
|
[dir=rtl] .layout-margin .offset-gt-xs-55,
|
|
[dir=rtl] .offset-gt-xs-55 {
|
|
margin-left: auto;
|
|
margin-right: 55%;
|
|
}
|
|
|
|
.flex-offset-gt-xs-60,
|
|
.layout-margin .flex-offset-gt-xs-60,
|
|
.layout-margin .offset-gt-xs-60,
|
|
.offset-gt-xs-60 {
|
|
margin-left: 60%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-xs-60,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-xs-60,
|
|
[dir=rtl] .layout-margin .offset-gt-xs-60,
|
|
[dir=rtl] .offset-gt-xs-60 {
|
|
margin-left: auto;
|
|
margin-right: 60%;
|
|
}
|
|
|
|
.flex-offset-gt-xs-65,
|
|
.layout-margin .flex-offset-gt-xs-65,
|
|
.layout-margin .offset-gt-xs-65,
|
|
.offset-gt-xs-65 {
|
|
margin-left: 65%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-xs-65,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-xs-65,
|
|
[dir=rtl] .layout-margin .offset-gt-xs-65,
|
|
[dir=rtl] .offset-gt-xs-65 {
|
|
margin-left: auto;
|
|
margin-right: 65%;
|
|
}
|
|
|
|
.flex-offset-gt-xs-70,
|
|
.layout-margin .flex-offset-gt-xs-70,
|
|
.layout-margin .offset-gt-xs-70,
|
|
.offset-gt-xs-70 {
|
|
margin-left: 70%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-xs-70,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-xs-70,
|
|
[dir=rtl] .layout-margin .offset-gt-xs-70,
|
|
[dir=rtl] .offset-gt-xs-70 {
|
|
margin-left: auto;
|
|
margin-right: 70%;
|
|
}
|
|
|
|
.flex-offset-gt-xs-75,
|
|
.layout-margin .flex-offset-gt-xs-75,
|
|
.layout-margin .offset-gt-xs-75,
|
|
.offset-gt-xs-75 {
|
|
margin-left: 75%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-xs-75,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-xs-75,
|
|
[dir=rtl] .layout-margin .offset-gt-xs-75,
|
|
[dir=rtl] .offset-gt-xs-75 {
|
|
margin-left: auto;
|
|
margin-right: 75%;
|
|
}
|
|
|
|
.flex-offset-gt-xs-80,
|
|
.layout-margin .flex-offset-gt-xs-80,
|
|
.layout-margin .offset-gt-xs-80,
|
|
.offset-gt-xs-80 {
|
|
margin-left: 80%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-xs-80,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-xs-80,
|
|
[dir=rtl] .layout-margin .offset-gt-xs-80,
|
|
[dir=rtl] .offset-gt-xs-80 {
|
|
margin-left: auto;
|
|
margin-right: 80%;
|
|
}
|
|
|
|
.flex-offset-gt-xs-85,
|
|
.layout-margin .flex-offset-gt-xs-85,
|
|
.layout-margin .offset-gt-xs-85,
|
|
.offset-gt-xs-85 {
|
|
margin-left: 85%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-xs-85,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-xs-85,
|
|
[dir=rtl] .layout-margin .offset-gt-xs-85,
|
|
[dir=rtl] .offset-gt-xs-85 {
|
|
margin-left: auto;
|
|
margin-right: 85%;
|
|
}
|
|
|
|
.flex-offset-gt-xs-90,
|
|
.layout-margin .flex-offset-gt-xs-90,
|
|
.layout-margin .offset-gt-xs-90,
|
|
.offset-gt-xs-90 {
|
|
margin-left: 90%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-xs-90,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-xs-90,
|
|
[dir=rtl] .layout-margin .offset-gt-xs-90,
|
|
[dir=rtl] .offset-gt-xs-90 {
|
|
margin-left: auto;
|
|
margin-right: 90%;
|
|
}
|
|
|
|
.flex-offset-gt-xs-95,
|
|
.layout-margin .flex-offset-gt-xs-95,
|
|
.layout-margin .offset-gt-xs-95,
|
|
.offset-gt-xs-95 {
|
|
margin-left: 95%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-xs-95,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-xs-95,
|
|
[dir=rtl] .layout-margin .offset-gt-xs-95,
|
|
[dir=rtl] .offset-gt-xs-95 {
|
|
margin-left: auto;
|
|
margin-right: 95%;
|
|
}
|
|
|
|
.flex-offset-gt-xs-33,
|
|
.layout-margin .flex-offset-gt-xs-33,
|
|
.layout-margin .offset-gt-xs-33,
|
|
.offset-gt-xs-33 {
|
|
margin-left: 33.3333333333%;
|
|
}
|
|
|
|
.flex-offset-gt-xs-66,
|
|
.layout-margin .flex-offset-gt-xs-66,
|
|
.layout-margin .offset-gt-xs-66,
|
|
.offset-gt-xs-66 {
|
|
margin-left: 66.6666666667%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-xs-66,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-xs-66,
|
|
[dir=rtl] .layout-margin .offset-gt-xs-66,
|
|
[dir=rtl] .offset-gt-xs-66 {
|
|
margin-left: auto;
|
|
margin-right: 66.6666666667%;
|
|
}
|
|
|
|
.layout-align-gt-xs,
|
|
.layout-align-gt-xs-start-stretch {
|
|
align-content: stretch;
|
|
align-items: stretch;
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.layout-align-gt-xs-start,
|
|
.layout-align-gt-xs-start-center,
|
|
.layout-align-gt-xs-start-end,
|
|
.layout-align-gt-xs-start-start,
|
|
.layout-align-gt-xs-start-stretch {
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.layout-align-gt-xs-center,
|
|
.layout-align-gt-xs-center-center,
|
|
.layout-align-gt-xs-center-end,
|
|
.layout-align-gt-xs-center-start,
|
|
.layout-align-gt-xs-center-stretch {
|
|
justify-content: center;
|
|
}
|
|
|
|
.layout-align-gt-xs-end,
|
|
.layout-align-gt-xs-end-center,
|
|
.layout-align-gt-xs-end-end,
|
|
.layout-align-gt-xs-end-start,
|
|
.layout-align-gt-xs-end-stretch {
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.layout-align-gt-xs-space-around,
|
|
.layout-align-gt-xs-space-around-center,
|
|
.layout-align-gt-xs-space-around-end,
|
|
.layout-align-gt-xs-space-around-start,
|
|
.layout-align-gt-xs-space-around-stretch {
|
|
justify-content: space-around;
|
|
}
|
|
|
|
.layout-align-gt-xs-space-between,
|
|
.layout-align-gt-xs-space-between-center,
|
|
.layout-align-gt-xs-space-between-end,
|
|
.layout-align-gt-xs-space-between-start,
|
|
.layout-align-gt-xs-space-between-stretch {
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.layout-align-gt-xs-center-start,
|
|
.layout-align-gt-xs-end-start,
|
|
.layout-align-gt-xs-space-around-start,
|
|
.layout-align-gt-xs-space-between-start,
|
|
.layout-align-gt-xs-start-start {
|
|
align-content: flex-start;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.layout-align-gt-xs-center-center,
|
|
.layout-align-gt-xs-end-center,
|
|
.layout-align-gt-xs-space-around-center,
|
|
.layout-align-gt-xs-space-between-center,
|
|
.layout-align-gt-xs-start-center {
|
|
align-content: center;
|
|
align-items: center;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-align-gt-xs-center-center>*,
|
|
.layout-align-gt-xs-end-center>*,
|
|
.layout-align-gt-xs-space-around-center>*,
|
|
.layout-align-gt-xs-space-between-center>*,
|
|
.layout-align-gt-xs-start-center>* {
|
|
box-sizing: border-box;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-align-gt-xs-center-end,
|
|
.layout-align-gt-xs-end-end,
|
|
.layout-align-gt-xs-space-around-end,
|
|
.layout-align-gt-xs-space-between-end,
|
|
.layout-align-gt-xs-start-end {
|
|
align-content: flex-end;
|
|
align-items: flex-end;
|
|
}
|
|
|
|
.layout-align-gt-xs-center-stretch,
|
|
.layout-align-gt-xs-end-stretch,
|
|
.layout-align-gt-xs-space-around-stretch,
|
|
.layout-align-gt-xs-space-between-stretch,
|
|
.layout-align-gt-xs-start-stretch {
|
|
align-content: stretch;
|
|
align-items: stretch;
|
|
}
|
|
|
|
.flex-gt-xs {
|
|
box-sizing: border-box;
|
|
flex: 1;
|
|
}
|
|
|
|
.flex-gt-xs-grow {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
}
|
|
|
|
.flex-gt-xs-initial {
|
|
box-sizing: border-box;
|
|
flex: 0 1 auto;
|
|
}
|
|
|
|
.flex-gt-xs-auto {
|
|
box-sizing: border-box;
|
|
flex: 1 1 auto;
|
|
}
|
|
|
|
.flex-gt-xs-none {
|
|
box-sizing: border-box;
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
.flex-gt-xs-noshrink {
|
|
box-sizing: border-box;
|
|
flex: 1 0 auto;
|
|
}
|
|
|
|
.flex-gt-xs-nogrow {
|
|
box-sizing: border-box;
|
|
flex: 0 1 auto;
|
|
}
|
|
|
|
.flex-gt-xs-0,
|
|
.layout-row>.flex-gt-xs-0 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 0;
|
|
}
|
|
|
|
.layout-row>.flex-gt-xs-0 {
|
|
min-width: 0;
|
|
}
|
|
|
|
.layout-column>.flex-gt-xs-0 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 0%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-xs-row>.flex-gt-xs-0 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 0;
|
|
min-width: 0;
|
|
}
|
|
|
|
.layout-gt-xs-column>.flex-gt-xs-0 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 0%;
|
|
max-width: 100%;
|
|
min-height: 0;
|
|
}
|
|
|
|
.flex-gt-xs-5,
|
|
.layout-row>.flex-gt-xs-5 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 5%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-xs-5 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 5%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-xs-row>.flex-gt-xs-5 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 5%;
|
|
}
|
|
|
|
.layout-gt-xs-column>.flex-gt-xs-5 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 5%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-xs-10,
|
|
.layout-row>.flex-gt-xs-10 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 10%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-xs-10 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 10%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-xs-row>.flex-gt-xs-10 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 10%;
|
|
}
|
|
|
|
.layout-gt-xs-column>.flex-gt-xs-10 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 10%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-xs-15,
|
|
.layout-row>.flex-gt-xs-15 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 15%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-xs-15 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 15%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-xs-row>.flex-gt-xs-15 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 15%;
|
|
}
|
|
|
|
.layout-gt-xs-column>.flex-gt-xs-15 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 15%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-xs-20,
|
|
.layout-row>.flex-gt-xs-20 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 20%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-xs-20 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 20%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-xs-row>.flex-gt-xs-20 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 20%;
|
|
}
|
|
|
|
.layout-gt-xs-column>.flex-gt-xs-20 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 20%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-xs-25,
|
|
.layout-row>.flex-gt-xs-25 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 25%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-xs-25 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 25%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-xs-row>.flex-gt-xs-25 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 25%;
|
|
}
|
|
|
|
.layout-gt-xs-column>.flex-gt-xs-25 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 25%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-xs-30,
|
|
.layout-row>.flex-gt-xs-30 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 30%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-xs-30 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 30%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-xs-row>.flex-gt-xs-30 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 30%;
|
|
}
|
|
|
|
.layout-gt-xs-column>.flex-gt-xs-30 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 30%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-xs-35,
|
|
.layout-row>.flex-gt-xs-35 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 35%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-xs-35 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 35%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-xs-row>.flex-gt-xs-35 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 35%;
|
|
}
|
|
|
|
.layout-gt-xs-column>.flex-gt-xs-35 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 35%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-xs-40,
|
|
.layout-row>.flex-gt-xs-40 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 40%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-xs-40 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 40%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-xs-row>.flex-gt-xs-40 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 40%;
|
|
}
|
|
|
|
.layout-gt-xs-column>.flex-gt-xs-40 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 40%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-xs-45,
|
|
.layout-row>.flex-gt-xs-45 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 45%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-xs-45 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 45%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-xs-row>.flex-gt-xs-45 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 45%;
|
|
}
|
|
|
|
.layout-gt-xs-column>.flex-gt-xs-45 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 45%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-xs-50,
|
|
.layout-row>.flex-gt-xs-50 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 50%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-xs-50 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 50%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-xs-row>.flex-gt-xs-50 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 50%;
|
|
}
|
|
|
|
.layout-gt-xs-column>.flex-gt-xs-50 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 50%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-xs-55,
|
|
.layout-row>.flex-gt-xs-55 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 55%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-xs-55 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 55%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-xs-row>.flex-gt-xs-55 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 55%;
|
|
}
|
|
|
|
.layout-gt-xs-column>.flex-gt-xs-55 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 55%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-xs-60,
|
|
.layout-row>.flex-gt-xs-60 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 60%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-xs-60 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 60%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-xs-row>.flex-gt-xs-60 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 60%;
|
|
}
|
|
|
|
.layout-gt-xs-column>.flex-gt-xs-60 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 60%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-xs-65,
|
|
.layout-row>.flex-gt-xs-65 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 65%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-xs-65 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 65%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-xs-row>.flex-gt-xs-65 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 65%;
|
|
}
|
|
|
|
.layout-gt-xs-column>.flex-gt-xs-65 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 65%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-xs-70,
|
|
.layout-row>.flex-gt-xs-70 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 70%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-xs-70 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 70%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-xs-row>.flex-gt-xs-70 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 70%;
|
|
}
|
|
|
|
.layout-gt-xs-column>.flex-gt-xs-70 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 70%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-xs-75,
|
|
.layout-row>.flex-gt-xs-75 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 75%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-xs-75 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 75%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-xs-row>.flex-gt-xs-75 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 75%;
|
|
}
|
|
|
|
.layout-gt-xs-column>.flex-gt-xs-75 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 75%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-xs-80,
|
|
.layout-row>.flex-gt-xs-80 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 80%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-xs-80 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 80%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-xs-row>.flex-gt-xs-80 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 80%;
|
|
}
|
|
|
|
.layout-gt-xs-column>.flex-gt-xs-80 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 80%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-xs-85,
|
|
.layout-row>.flex-gt-xs-85 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 85%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-xs-85 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 85%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-xs-row>.flex-gt-xs-85 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 85%;
|
|
}
|
|
|
|
.layout-gt-xs-column>.flex-gt-xs-85 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 85%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-xs-90,
|
|
.layout-row>.flex-gt-xs-90 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 90%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-xs-90 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 90%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-xs-row>.flex-gt-xs-90 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 90%;
|
|
}
|
|
|
|
.layout-gt-xs-column>.flex-gt-xs-90 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 90%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-xs-95,
|
|
.layout-row>.flex-gt-xs-95 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 95%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-xs-95 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 95%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-xs-row>.flex-gt-xs-95 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 95%;
|
|
}
|
|
|
|
.layout-gt-xs-column>.flex-gt-xs-95 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 95%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-xs-100,
|
|
.layout-column>.flex-gt-xs-100,
|
|
.layout-gt-xs-column>.flex-gt-xs-100,
|
|
.layout-gt-xs-row>.flex-gt-xs-100,
|
|
.layout-row>.flex-gt-xs-100 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-row>.flex-gt-xs-33 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 33.33%;
|
|
max-height: 100%;
|
|
max-width: 33.33%;
|
|
}
|
|
|
|
.layout-row>.flex-gt-xs-66 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 66.66%;
|
|
max-height: 100%;
|
|
max-width: 66.66%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-xs-33 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 33.33%;
|
|
max-height: 33.33%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-xs-66 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 66.66%;
|
|
max-height: 66.66%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-xs-row>.flex-gt-xs-33 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 33.33%;
|
|
}
|
|
|
|
.layout-gt-xs-row>.flex-gt-xs-66 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 66.66%;
|
|
}
|
|
|
|
.layout-gt-xs-row>.flex {
|
|
min-width: 0;
|
|
}
|
|
|
|
.layout-gt-xs-column>.flex-gt-xs-33 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 33.33%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-xs-column>.flex-gt-xs-66 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 66.66%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-xs-column>.flex {
|
|
min-height: 0;
|
|
}
|
|
|
|
.layout-gt-xs,
|
|
.layout-gt-xs-column,
|
|
.layout-gt-xs-row {
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
}
|
|
|
|
.layout-gt-xs-column {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.layout-gt-xs-row {
|
|
flex-direction: row;
|
|
}
|
|
}
|
|
|
|
@media (min-width:600px) and (max-width:959px) {
|
|
.hide-gt-xs:not(.show-gt-xs):not(.show-sm):not(.show),
|
|
.hide-sm:not(.show-gt-xs):not(.show-sm):not(.show),
|
|
.hide:not(.show-gt-xs):not(.show-sm):not(.show) {
|
|
display: none;
|
|
}
|
|
|
|
.flex-order-sm--20 {
|
|
order: -20;
|
|
}
|
|
|
|
.flex-order-sm--19 {
|
|
order: -19;
|
|
}
|
|
|
|
.flex-order-sm--18 {
|
|
order: -18;
|
|
}
|
|
|
|
.flex-order-sm--17 {
|
|
order: -17;
|
|
}
|
|
|
|
.flex-order-sm--16 {
|
|
order: -16;
|
|
}
|
|
|
|
.flex-order-sm--15 {
|
|
order: -15;
|
|
}
|
|
|
|
.flex-order-sm--14 {
|
|
order: -14;
|
|
}
|
|
|
|
.flex-order-sm--13 {
|
|
order: -13;
|
|
}
|
|
|
|
.flex-order-sm--12 {
|
|
order: -12;
|
|
}
|
|
|
|
.flex-order-sm--11 {
|
|
order: -11;
|
|
}
|
|
|
|
.flex-order-sm--10 {
|
|
order: -10;
|
|
}
|
|
|
|
.flex-order-sm--9 {
|
|
order: -9;
|
|
}
|
|
|
|
.flex-order-sm--8 {
|
|
order: -8;
|
|
}
|
|
|
|
.flex-order-sm--7 {
|
|
order: -7;
|
|
}
|
|
|
|
.flex-order-sm--6 {
|
|
order: -6;
|
|
}
|
|
|
|
.flex-order-sm--5 {
|
|
order: -5;
|
|
}
|
|
|
|
.flex-order-sm--4 {
|
|
order: -4;
|
|
}
|
|
|
|
.flex-order-sm--3 {
|
|
order: -3;
|
|
}
|
|
|
|
.flex-order-sm--2 {
|
|
order: -2;
|
|
}
|
|
|
|
.flex-order-sm--1 {
|
|
order: -1;
|
|
}
|
|
|
|
.flex-order-sm-0 {
|
|
order: 0;
|
|
}
|
|
|
|
.flex-order-sm-1 {
|
|
order: 1;
|
|
}
|
|
|
|
.flex-order-sm-2 {
|
|
order: 2;
|
|
}
|
|
|
|
.flex-order-sm-3 {
|
|
order: 3;
|
|
}
|
|
|
|
.flex-order-sm-4 {
|
|
order: 4;
|
|
}
|
|
|
|
.flex-order-sm-5 {
|
|
order: 5;
|
|
}
|
|
|
|
.flex-order-sm-6 {
|
|
order: 6;
|
|
}
|
|
|
|
.flex-order-sm-7 {
|
|
order: 7;
|
|
}
|
|
|
|
.flex-order-sm-8 {
|
|
order: 8;
|
|
}
|
|
|
|
.flex-order-sm-9 {
|
|
order: 9;
|
|
}
|
|
|
|
.flex-order-sm-10 {
|
|
order: 10;
|
|
}
|
|
|
|
.flex-order-sm-11 {
|
|
order: 11;
|
|
}
|
|
|
|
.flex-order-sm-12 {
|
|
order: 12;
|
|
}
|
|
|
|
.flex-order-sm-13 {
|
|
order: 13;
|
|
}
|
|
|
|
.flex-order-sm-14 {
|
|
order: 14;
|
|
}
|
|
|
|
.flex-order-sm-15 {
|
|
order: 15;
|
|
}
|
|
|
|
.flex-order-sm-16 {
|
|
order: 16;
|
|
}
|
|
|
|
.flex-order-sm-17 {
|
|
order: 17;
|
|
}
|
|
|
|
.flex-order-sm-18 {
|
|
order: 18;
|
|
}
|
|
|
|
.flex-order-sm-19 {
|
|
order: 19;
|
|
}
|
|
|
|
.flex-order-sm-20 {
|
|
order: 20;
|
|
}
|
|
|
|
.flex-offset-sm-0,
|
|
.layout-margin .flex-offset-sm-0,
|
|
.layout-margin .offset-sm-0,
|
|
.offset-sm-0 {
|
|
margin-left: 0;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-sm-0,
|
|
[dir=rtl] .layout-margin .flex-offset-sm-0,
|
|
[dir=rtl] .layout-margin .offset-sm-0,
|
|
[dir=rtl] .offset-sm-0 {
|
|
margin-left: auto;
|
|
margin-right: 0;
|
|
}
|
|
|
|
.flex-offset-sm-5,
|
|
.layout-margin .flex-offset-sm-5,
|
|
.layout-margin .offset-sm-5,
|
|
.offset-sm-5 {
|
|
margin-left: 5%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-sm-5,
|
|
[dir=rtl] .layout-margin .flex-offset-sm-5,
|
|
[dir=rtl] .layout-margin .offset-sm-5,
|
|
[dir=rtl] .offset-sm-5 {
|
|
margin-left: auto;
|
|
margin-right: 5%;
|
|
}
|
|
|
|
.flex-offset-sm-10,
|
|
.layout-margin .flex-offset-sm-10,
|
|
.layout-margin .offset-sm-10,
|
|
.offset-sm-10 {
|
|
margin-left: 10%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-sm-10,
|
|
[dir=rtl] .layout-margin .flex-offset-sm-10,
|
|
[dir=rtl] .layout-margin .offset-sm-10,
|
|
[dir=rtl] .offset-sm-10 {
|
|
margin-left: auto;
|
|
margin-right: 10%;
|
|
}
|
|
|
|
.flex-offset-sm-15,
|
|
.layout-margin .flex-offset-sm-15,
|
|
.layout-margin .offset-sm-15,
|
|
.offset-sm-15 {
|
|
margin-left: 15%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-sm-15,
|
|
[dir=rtl] .layout-margin .flex-offset-sm-15,
|
|
[dir=rtl] .layout-margin .offset-sm-15,
|
|
[dir=rtl] .offset-sm-15 {
|
|
margin-left: auto;
|
|
margin-right: 15%;
|
|
}
|
|
|
|
.flex-offset-sm-20,
|
|
.layout-margin .flex-offset-sm-20,
|
|
.layout-margin .offset-sm-20,
|
|
.offset-sm-20 {
|
|
margin-left: 20%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-sm-20,
|
|
[dir=rtl] .layout-margin .flex-offset-sm-20,
|
|
[dir=rtl] .layout-margin .offset-sm-20,
|
|
[dir=rtl] .offset-sm-20 {
|
|
margin-left: auto;
|
|
margin-right: 20%;
|
|
}
|
|
|
|
.flex-offset-sm-25,
|
|
.layout-margin .flex-offset-sm-25,
|
|
.layout-margin .offset-sm-25,
|
|
.offset-sm-25 {
|
|
margin-left: 25%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-sm-25,
|
|
[dir=rtl] .layout-margin .flex-offset-sm-25,
|
|
[dir=rtl] .layout-margin .offset-sm-25,
|
|
[dir=rtl] .offset-sm-25 {
|
|
margin-left: auto;
|
|
margin-right: 25%;
|
|
}
|
|
|
|
.flex-offset-sm-30,
|
|
.layout-margin .flex-offset-sm-30,
|
|
.layout-margin .offset-sm-30,
|
|
.offset-sm-30 {
|
|
margin-left: 30%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-sm-30,
|
|
[dir=rtl] .layout-margin .flex-offset-sm-30,
|
|
[dir=rtl] .layout-margin .offset-sm-30,
|
|
[dir=rtl] .offset-sm-30 {
|
|
margin-left: auto;
|
|
margin-right: 30%;
|
|
}
|
|
|
|
.flex-offset-sm-35,
|
|
.layout-margin .flex-offset-sm-35,
|
|
.layout-margin .offset-sm-35,
|
|
.offset-sm-35 {
|
|
margin-left: 35%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-sm-35,
|
|
[dir=rtl] .layout-margin .flex-offset-sm-35,
|
|
[dir=rtl] .layout-margin .offset-sm-35,
|
|
[dir=rtl] .offset-sm-35 {
|
|
margin-left: auto;
|
|
margin-right: 35%;
|
|
}
|
|
|
|
.flex-offset-sm-40,
|
|
.layout-margin .flex-offset-sm-40,
|
|
.layout-margin .offset-sm-40,
|
|
.offset-sm-40 {
|
|
margin-left: 40%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-sm-40,
|
|
[dir=rtl] .layout-margin .flex-offset-sm-40,
|
|
[dir=rtl] .layout-margin .offset-sm-40,
|
|
[dir=rtl] .offset-sm-40 {
|
|
margin-left: auto;
|
|
margin-right: 40%;
|
|
}
|
|
|
|
.flex-offset-sm-45,
|
|
.layout-margin .flex-offset-sm-45,
|
|
.layout-margin .offset-sm-45,
|
|
.offset-sm-45 {
|
|
margin-left: 45%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-sm-45,
|
|
[dir=rtl] .layout-margin .flex-offset-sm-45,
|
|
[dir=rtl] .layout-margin .offset-sm-45,
|
|
[dir=rtl] .offset-sm-45 {
|
|
margin-left: auto;
|
|
margin-right: 45%;
|
|
}
|
|
|
|
.flex-offset-sm-50,
|
|
.layout-margin .flex-offset-sm-50,
|
|
.layout-margin .offset-sm-50,
|
|
.offset-sm-50 {
|
|
margin-left: 50%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-sm-50,
|
|
[dir=rtl] .layout-margin .flex-offset-sm-50,
|
|
[dir=rtl] .layout-margin .offset-sm-50,
|
|
[dir=rtl] .offset-sm-50 {
|
|
margin-left: auto;
|
|
margin-right: 50%;
|
|
}
|
|
|
|
.flex-offset-sm-55,
|
|
.layout-margin .flex-offset-sm-55,
|
|
.layout-margin .offset-sm-55,
|
|
.offset-sm-55 {
|
|
margin-left: 55%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-sm-55,
|
|
[dir=rtl] .layout-margin .flex-offset-sm-55,
|
|
[dir=rtl] .layout-margin .offset-sm-55,
|
|
[dir=rtl] .offset-sm-55 {
|
|
margin-left: auto;
|
|
margin-right: 55%;
|
|
}
|
|
|
|
.flex-offset-sm-60,
|
|
.layout-margin .flex-offset-sm-60,
|
|
.layout-margin .offset-sm-60,
|
|
.offset-sm-60 {
|
|
margin-left: 60%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-sm-60,
|
|
[dir=rtl] .layout-margin .flex-offset-sm-60,
|
|
[dir=rtl] .layout-margin .offset-sm-60,
|
|
[dir=rtl] .offset-sm-60 {
|
|
margin-left: auto;
|
|
margin-right: 60%;
|
|
}
|
|
|
|
.flex-offset-sm-65,
|
|
.layout-margin .flex-offset-sm-65,
|
|
.layout-margin .offset-sm-65,
|
|
.offset-sm-65 {
|
|
margin-left: 65%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-sm-65,
|
|
[dir=rtl] .layout-margin .flex-offset-sm-65,
|
|
[dir=rtl] .layout-margin .offset-sm-65,
|
|
[dir=rtl] .offset-sm-65 {
|
|
margin-left: auto;
|
|
margin-right: 65%;
|
|
}
|
|
|
|
.flex-offset-sm-70,
|
|
.layout-margin .flex-offset-sm-70,
|
|
.layout-margin .offset-sm-70,
|
|
.offset-sm-70 {
|
|
margin-left: 70%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-sm-70,
|
|
[dir=rtl] .layout-margin .flex-offset-sm-70,
|
|
[dir=rtl] .layout-margin .offset-sm-70,
|
|
[dir=rtl] .offset-sm-70 {
|
|
margin-left: auto;
|
|
margin-right: 70%;
|
|
}
|
|
|
|
.flex-offset-sm-75,
|
|
.layout-margin .flex-offset-sm-75,
|
|
.layout-margin .offset-sm-75,
|
|
.offset-sm-75 {
|
|
margin-left: 75%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-sm-75,
|
|
[dir=rtl] .layout-margin .flex-offset-sm-75,
|
|
[dir=rtl] .layout-margin .offset-sm-75,
|
|
[dir=rtl] .offset-sm-75 {
|
|
margin-left: auto;
|
|
margin-right: 75%;
|
|
}
|
|
|
|
.flex-offset-sm-80,
|
|
.layout-margin .flex-offset-sm-80,
|
|
.layout-margin .offset-sm-80,
|
|
.offset-sm-80 {
|
|
margin-left: 80%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-sm-80,
|
|
[dir=rtl] .layout-margin .flex-offset-sm-80,
|
|
[dir=rtl] .layout-margin .offset-sm-80,
|
|
[dir=rtl] .offset-sm-80 {
|
|
margin-left: auto;
|
|
margin-right: 80%;
|
|
}
|
|
|
|
.flex-offset-sm-85,
|
|
.layout-margin .flex-offset-sm-85,
|
|
.layout-margin .offset-sm-85,
|
|
.offset-sm-85 {
|
|
margin-left: 85%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-sm-85,
|
|
[dir=rtl] .layout-margin .flex-offset-sm-85,
|
|
[dir=rtl] .layout-margin .offset-sm-85,
|
|
[dir=rtl] .offset-sm-85 {
|
|
margin-left: auto;
|
|
margin-right: 85%;
|
|
}
|
|
|
|
.flex-offset-sm-90,
|
|
.layout-margin .flex-offset-sm-90,
|
|
.layout-margin .offset-sm-90,
|
|
.offset-sm-90 {
|
|
margin-left: 90%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-sm-90,
|
|
[dir=rtl] .layout-margin .flex-offset-sm-90,
|
|
[dir=rtl] .layout-margin .offset-sm-90,
|
|
[dir=rtl] .offset-sm-90 {
|
|
margin-left: auto;
|
|
margin-right: 90%;
|
|
}
|
|
|
|
.flex-offset-sm-95,
|
|
.layout-margin .flex-offset-sm-95,
|
|
.layout-margin .offset-sm-95,
|
|
.offset-sm-95 {
|
|
margin-left: 95%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-sm-95,
|
|
[dir=rtl] .layout-margin .flex-offset-sm-95,
|
|
[dir=rtl] .layout-margin .offset-sm-95,
|
|
[dir=rtl] .offset-sm-95 {
|
|
margin-left: auto;
|
|
margin-right: 95%;
|
|
}
|
|
|
|
.flex-offset-sm-33,
|
|
.layout-margin .flex-offset-sm-33,
|
|
.layout-margin .offset-sm-33,
|
|
.offset-sm-33 {
|
|
margin-left: 33.3333333333%;
|
|
}
|
|
|
|
.flex-offset-sm-66,
|
|
.layout-margin .flex-offset-sm-66,
|
|
.layout-margin .offset-sm-66,
|
|
.offset-sm-66 {
|
|
margin-left: 66.6666666667%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-sm-66,
|
|
[dir=rtl] .layout-margin .flex-offset-sm-66,
|
|
[dir=rtl] .layout-margin .offset-sm-66,
|
|
[dir=rtl] .offset-sm-66 {
|
|
margin-left: auto;
|
|
margin-right: 66.6666666667%;
|
|
}
|
|
|
|
.layout-align-sm,
|
|
.layout-align-sm-start-stretch {
|
|
align-content: stretch;
|
|
align-items: stretch;
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.layout-align-sm-start,
|
|
.layout-align-sm-start-center,
|
|
.layout-align-sm-start-end,
|
|
.layout-align-sm-start-start,
|
|
.layout-align-sm-start-stretch {
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.layout-align-sm-center,
|
|
.layout-align-sm-center-center,
|
|
.layout-align-sm-center-end,
|
|
.layout-align-sm-center-start,
|
|
.layout-align-sm-center-stretch {
|
|
justify-content: center;
|
|
}
|
|
|
|
.layout-align-sm-end,
|
|
.layout-align-sm-end-center,
|
|
.layout-align-sm-end-end,
|
|
.layout-align-sm-end-start,
|
|
.layout-align-sm-end-stretch {
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.layout-align-sm-space-around,
|
|
.layout-align-sm-space-around-center,
|
|
.layout-align-sm-space-around-end,
|
|
.layout-align-sm-space-around-start,
|
|
.layout-align-sm-space-around-stretch {
|
|
justify-content: space-around;
|
|
}
|
|
|
|
.layout-align-sm-space-between,
|
|
.layout-align-sm-space-between-center,
|
|
.layout-align-sm-space-between-end,
|
|
.layout-align-sm-space-between-start,
|
|
.layout-align-sm-space-between-stretch {
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.layout-align-sm-center-start,
|
|
.layout-align-sm-end-start,
|
|
.layout-align-sm-space-around-start,
|
|
.layout-align-sm-space-between-start,
|
|
.layout-align-sm-start-start {
|
|
align-content: flex-start;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.layout-align-sm-center-center,
|
|
.layout-align-sm-end-center,
|
|
.layout-align-sm-space-around-center,
|
|
.layout-align-sm-space-between-center,
|
|
.layout-align-sm-start-center {
|
|
align-content: center;
|
|
align-items: center;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-align-sm-center-center>*,
|
|
.layout-align-sm-end-center>*,
|
|
.layout-align-sm-space-around-center>*,
|
|
.layout-align-sm-space-between-center>*,
|
|
.layout-align-sm-start-center>* {
|
|
box-sizing: border-box;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-align-sm-center-end,
|
|
.layout-align-sm-end-end,
|
|
.layout-align-sm-space-around-end,
|
|
.layout-align-sm-space-between-end,
|
|
.layout-align-sm-start-end {
|
|
align-content: flex-end;
|
|
align-items: flex-end;
|
|
}
|
|
|
|
.layout-align-sm-center-stretch,
|
|
.layout-align-sm-end-stretch,
|
|
.layout-align-sm-space-around-stretch,
|
|
.layout-align-sm-space-between-stretch,
|
|
.layout-align-sm-start-stretch {
|
|
align-content: stretch;
|
|
align-items: stretch;
|
|
}
|
|
|
|
.flex-sm {
|
|
box-sizing: border-box;
|
|
flex: 1;
|
|
}
|
|
|
|
.flex-sm-grow {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
}
|
|
|
|
.flex-sm-initial {
|
|
box-sizing: border-box;
|
|
flex: 0 1 auto;
|
|
}
|
|
|
|
.flex-sm-auto {
|
|
box-sizing: border-box;
|
|
flex: 1 1 auto;
|
|
}
|
|
|
|
.flex-sm-none {
|
|
box-sizing: border-box;
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
.flex-sm-noshrink {
|
|
box-sizing: border-box;
|
|
flex: 1 0 auto;
|
|
}
|
|
|
|
.flex-sm-nogrow {
|
|
box-sizing: border-box;
|
|
flex: 0 1 auto;
|
|
}
|
|
|
|
.flex-sm-0,
|
|
.layout-row>.flex-sm-0 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 0;
|
|
}
|
|
|
|
.layout-row>.flex-sm-0 {
|
|
min-width: 0;
|
|
}
|
|
|
|
.layout-column>.flex-sm-0 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 0%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-sm-row>.flex-sm-0 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 0;
|
|
min-width: 0;
|
|
}
|
|
|
|
.layout-sm-column>.flex-sm-0 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 0%;
|
|
max-width: 100%;
|
|
min-height: 0;
|
|
}
|
|
|
|
.flex-sm-5,
|
|
.layout-row>.flex-sm-5 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 5%;
|
|
}
|
|
|
|
.layout-column>.flex-sm-5 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 5%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-sm-row>.flex-sm-5 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 5%;
|
|
}
|
|
|
|
.layout-sm-column>.flex-sm-5 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 5%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-sm-10,
|
|
.layout-row>.flex-sm-10 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 10%;
|
|
}
|
|
|
|
.layout-column>.flex-sm-10 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 10%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-sm-row>.flex-sm-10 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 10%;
|
|
}
|
|
|
|
.layout-sm-column>.flex-sm-10 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 10%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-sm-15,
|
|
.layout-row>.flex-sm-15 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 15%;
|
|
}
|
|
|
|
.layout-column>.flex-sm-15 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 15%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-sm-row>.flex-sm-15 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 15%;
|
|
}
|
|
|
|
.layout-sm-column>.flex-sm-15 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 15%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-sm-20,
|
|
.layout-row>.flex-sm-20 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 20%;
|
|
}
|
|
|
|
.layout-column>.flex-sm-20 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 20%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-sm-row>.flex-sm-20 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 20%;
|
|
}
|
|
|
|
.layout-sm-column>.flex-sm-20 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 20%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-sm-25,
|
|
.layout-row>.flex-sm-25 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 25%;
|
|
}
|
|
|
|
.layout-column>.flex-sm-25 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 25%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-sm-row>.flex-sm-25 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 25%;
|
|
}
|
|
|
|
.layout-sm-column>.flex-sm-25 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 25%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-sm-30,
|
|
.layout-row>.flex-sm-30 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 30%;
|
|
}
|
|
|
|
.layout-column>.flex-sm-30 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 30%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-sm-row>.flex-sm-30 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 30%;
|
|
}
|
|
|
|
.layout-sm-column>.flex-sm-30 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 30%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-sm-35,
|
|
.layout-row>.flex-sm-35 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 35%;
|
|
}
|
|
|
|
.layout-column>.flex-sm-35 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 35%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-sm-row>.flex-sm-35 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 35%;
|
|
}
|
|
|
|
.layout-sm-column>.flex-sm-35 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 35%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-sm-40,
|
|
.layout-row>.flex-sm-40 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 40%;
|
|
}
|
|
|
|
.layout-column>.flex-sm-40 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 40%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-sm-row>.flex-sm-40 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 40%;
|
|
}
|
|
|
|
.layout-sm-column>.flex-sm-40 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 40%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-sm-45,
|
|
.layout-row>.flex-sm-45 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 45%;
|
|
}
|
|
|
|
.layout-column>.flex-sm-45 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 45%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-sm-row>.flex-sm-45 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 45%;
|
|
}
|
|
|
|
.layout-sm-column>.flex-sm-45 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 45%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-sm-50,
|
|
.layout-row>.flex-sm-50 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 50%;
|
|
}
|
|
|
|
.layout-column>.flex-sm-50 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 50%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-sm-row>.flex-sm-50 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 50%;
|
|
}
|
|
|
|
.layout-sm-column>.flex-sm-50 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 50%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-sm-55,
|
|
.layout-row>.flex-sm-55 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 55%;
|
|
}
|
|
|
|
.layout-column>.flex-sm-55 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 55%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-sm-row>.flex-sm-55 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 55%;
|
|
}
|
|
|
|
.layout-sm-column>.flex-sm-55 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 55%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-sm-60,
|
|
.layout-row>.flex-sm-60 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 60%;
|
|
}
|
|
|
|
.layout-column>.flex-sm-60 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 60%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-sm-row>.flex-sm-60 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 60%;
|
|
}
|
|
|
|
.layout-sm-column>.flex-sm-60 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 60%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-sm-65,
|
|
.layout-row>.flex-sm-65 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 65%;
|
|
}
|
|
|
|
.layout-column>.flex-sm-65 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 65%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-sm-row>.flex-sm-65 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 65%;
|
|
}
|
|
|
|
.layout-sm-column>.flex-sm-65 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 65%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-sm-70,
|
|
.layout-row>.flex-sm-70 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 70%;
|
|
}
|
|
|
|
.layout-column>.flex-sm-70 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 70%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-sm-row>.flex-sm-70 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 70%;
|
|
}
|
|
|
|
.layout-sm-column>.flex-sm-70 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 70%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-sm-75,
|
|
.layout-row>.flex-sm-75 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 75%;
|
|
}
|
|
|
|
.layout-column>.flex-sm-75 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 75%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-sm-row>.flex-sm-75 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 75%;
|
|
}
|
|
|
|
.layout-sm-column>.flex-sm-75 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 75%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-sm-80,
|
|
.layout-row>.flex-sm-80 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 80%;
|
|
}
|
|
|
|
.layout-column>.flex-sm-80 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 80%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-sm-row>.flex-sm-80 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 80%;
|
|
}
|
|
|
|
.layout-sm-column>.flex-sm-80 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 80%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-sm-85,
|
|
.layout-row>.flex-sm-85 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 85%;
|
|
}
|
|
|
|
.layout-column>.flex-sm-85 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 85%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-sm-row>.flex-sm-85 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 85%;
|
|
}
|
|
|
|
.layout-sm-column>.flex-sm-85 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 85%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-sm-90,
|
|
.layout-row>.flex-sm-90 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 90%;
|
|
}
|
|
|
|
.layout-column>.flex-sm-90 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 90%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-sm-row>.flex-sm-90 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 90%;
|
|
}
|
|
|
|
.layout-sm-column>.flex-sm-90 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 90%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-sm-95,
|
|
.layout-row>.flex-sm-95 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 95%;
|
|
}
|
|
|
|
.layout-column>.flex-sm-95 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 95%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-sm-row>.flex-sm-95 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 95%;
|
|
}
|
|
|
|
.layout-sm-column>.flex-sm-95 {
|
|
max-height: 95%;
|
|
}
|
|
|
|
.flex-sm-100,
|
|
.layout-sm-column>.flex-sm-95 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-sm-100 {
|
|
max-height: 100%;
|
|
}
|
|
|
|
.layout-column>.flex-sm-100,
|
|
.layout-row>.flex-sm-100,
|
|
.layout-sm-column>.flex-sm-100,
|
|
.layout-sm-row>.flex-sm-100 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-row>.flex-sm-33 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 33.33%;
|
|
max-height: 100%;
|
|
max-width: 33.33%;
|
|
}
|
|
|
|
.layout-row>.flex-sm-66 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 66.66%;
|
|
max-height: 100%;
|
|
max-width: 66.66%;
|
|
}
|
|
|
|
.layout-column>.flex-sm-33 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 33.33%;
|
|
max-height: 33.33%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-column>.flex-sm-66 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 66.66%;
|
|
max-height: 66.66%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-sm-row>.flex-sm-33 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 33.33%;
|
|
}
|
|
|
|
.layout-sm-row>.flex-sm-66 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 66.66%;
|
|
}
|
|
|
|
.layout-sm-row>.flex {
|
|
min-width: 0;
|
|
}
|
|
|
|
.layout-sm-column>.flex-sm-33 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 33.33%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-sm-column>.flex-sm-66 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 66.66%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-sm-column>.flex {
|
|
min-height: 0;
|
|
}
|
|
|
|
.layout-sm,
|
|
.layout-sm-column,
|
|
.layout-sm-row {
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
}
|
|
|
|
.layout-sm-column {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.layout-sm-row {
|
|
flex-direction: row;
|
|
}
|
|
}
|
|
|
|
@media (min-width:960px) {
|
|
.flex-order-gt-sm--20 {
|
|
order: -20;
|
|
}
|
|
|
|
.flex-order-gt-sm--19 {
|
|
order: -19;
|
|
}
|
|
|
|
.flex-order-gt-sm--18 {
|
|
order: -18;
|
|
}
|
|
|
|
.flex-order-gt-sm--17 {
|
|
order: -17;
|
|
}
|
|
|
|
.flex-order-gt-sm--16 {
|
|
order: -16;
|
|
}
|
|
|
|
.flex-order-gt-sm--15 {
|
|
order: -15;
|
|
}
|
|
|
|
.flex-order-gt-sm--14 {
|
|
order: -14;
|
|
}
|
|
|
|
.flex-order-gt-sm--13 {
|
|
order: -13;
|
|
}
|
|
|
|
.flex-order-gt-sm--12 {
|
|
order: -12;
|
|
}
|
|
|
|
.flex-order-gt-sm--11 {
|
|
order: -11;
|
|
}
|
|
|
|
.flex-order-gt-sm--10 {
|
|
order: -10;
|
|
}
|
|
|
|
.flex-order-gt-sm--9 {
|
|
order: -9;
|
|
}
|
|
|
|
.flex-order-gt-sm--8 {
|
|
order: -8;
|
|
}
|
|
|
|
.flex-order-gt-sm--7 {
|
|
order: -7;
|
|
}
|
|
|
|
.flex-order-gt-sm--6 {
|
|
order: -6;
|
|
}
|
|
|
|
.flex-order-gt-sm--5 {
|
|
order: -5;
|
|
}
|
|
|
|
.flex-order-gt-sm--4 {
|
|
order: -4;
|
|
}
|
|
|
|
.flex-order-gt-sm--3 {
|
|
order: -3;
|
|
}
|
|
|
|
.flex-order-gt-sm--2 {
|
|
order: -2;
|
|
}
|
|
|
|
.flex-order-gt-sm--1 {
|
|
order: -1;
|
|
}
|
|
|
|
.flex-order-gt-sm-0 {
|
|
order: 0;
|
|
}
|
|
|
|
.flex-order-gt-sm-1 {
|
|
order: 1;
|
|
}
|
|
|
|
.flex-order-gt-sm-2 {
|
|
order: 2;
|
|
}
|
|
|
|
.flex-order-gt-sm-3 {
|
|
order: 3;
|
|
}
|
|
|
|
.flex-order-gt-sm-4 {
|
|
order: 4;
|
|
}
|
|
|
|
.flex-order-gt-sm-5 {
|
|
order: 5;
|
|
}
|
|
|
|
.flex-order-gt-sm-6 {
|
|
order: 6;
|
|
}
|
|
|
|
.flex-order-gt-sm-7 {
|
|
order: 7;
|
|
}
|
|
|
|
.flex-order-gt-sm-8 {
|
|
order: 8;
|
|
}
|
|
|
|
.flex-order-gt-sm-9 {
|
|
order: 9;
|
|
}
|
|
|
|
.flex-order-gt-sm-10 {
|
|
order: 10;
|
|
}
|
|
|
|
.flex-order-gt-sm-11 {
|
|
order: 11;
|
|
}
|
|
|
|
.flex-order-gt-sm-12 {
|
|
order: 12;
|
|
}
|
|
|
|
.flex-order-gt-sm-13 {
|
|
order: 13;
|
|
}
|
|
|
|
.flex-order-gt-sm-14 {
|
|
order: 14;
|
|
}
|
|
|
|
.flex-order-gt-sm-15 {
|
|
order: 15;
|
|
}
|
|
|
|
.flex-order-gt-sm-16 {
|
|
order: 16;
|
|
}
|
|
|
|
.flex-order-gt-sm-17 {
|
|
order: 17;
|
|
}
|
|
|
|
.flex-order-gt-sm-18 {
|
|
order: 18;
|
|
}
|
|
|
|
.flex-order-gt-sm-19 {
|
|
order: 19;
|
|
}
|
|
|
|
.flex-order-gt-sm-20 {
|
|
order: 20;
|
|
}
|
|
|
|
.flex-offset-gt-sm-0,
|
|
.layout-margin .flex-offset-gt-sm-0,
|
|
.layout-margin .offset-gt-sm-0,
|
|
.offset-gt-sm-0 {
|
|
margin-left: 0;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-sm-0,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-sm-0,
|
|
[dir=rtl] .layout-margin .offset-gt-sm-0,
|
|
[dir=rtl] .offset-gt-sm-0 {
|
|
margin-left: auto;
|
|
margin-right: 0;
|
|
}
|
|
|
|
.flex-offset-gt-sm-5,
|
|
.layout-margin .flex-offset-gt-sm-5,
|
|
.layout-margin .offset-gt-sm-5,
|
|
.offset-gt-sm-5 {
|
|
margin-left: 5%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-sm-5,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-sm-5,
|
|
[dir=rtl] .layout-margin .offset-gt-sm-5,
|
|
[dir=rtl] .offset-gt-sm-5 {
|
|
margin-left: auto;
|
|
margin-right: 5%;
|
|
}
|
|
|
|
.flex-offset-gt-sm-10,
|
|
.layout-margin .flex-offset-gt-sm-10,
|
|
.layout-margin .offset-gt-sm-10,
|
|
.offset-gt-sm-10 {
|
|
margin-left: 10%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-sm-10,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-sm-10,
|
|
[dir=rtl] .layout-margin .offset-gt-sm-10,
|
|
[dir=rtl] .offset-gt-sm-10 {
|
|
margin-left: auto;
|
|
margin-right: 10%;
|
|
}
|
|
|
|
.flex-offset-gt-sm-15,
|
|
.layout-margin .flex-offset-gt-sm-15,
|
|
.layout-margin .offset-gt-sm-15,
|
|
.offset-gt-sm-15 {
|
|
margin-left: 15%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-sm-15,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-sm-15,
|
|
[dir=rtl] .layout-margin .offset-gt-sm-15,
|
|
[dir=rtl] .offset-gt-sm-15 {
|
|
margin-left: auto;
|
|
margin-right: 15%;
|
|
}
|
|
|
|
.flex-offset-gt-sm-20,
|
|
.layout-margin .flex-offset-gt-sm-20,
|
|
.layout-margin .offset-gt-sm-20,
|
|
.offset-gt-sm-20 {
|
|
margin-left: 20%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-sm-20,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-sm-20,
|
|
[dir=rtl] .layout-margin .offset-gt-sm-20,
|
|
[dir=rtl] .offset-gt-sm-20 {
|
|
margin-left: auto;
|
|
margin-right: 20%;
|
|
}
|
|
|
|
.flex-offset-gt-sm-25,
|
|
.layout-margin .flex-offset-gt-sm-25,
|
|
.layout-margin .offset-gt-sm-25,
|
|
.offset-gt-sm-25 {
|
|
margin-left: 25%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-sm-25,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-sm-25,
|
|
[dir=rtl] .layout-margin .offset-gt-sm-25,
|
|
[dir=rtl] .offset-gt-sm-25 {
|
|
margin-left: auto;
|
|
margin-right: 25%;
|
|
}
|
|
|
|
.flex-offset-gt-sm-30,
|
|
.layout-margin .flex-offset-gt-sm-30,
|
|
.layout-margin .offset-gt-sm-30,
|
|
.offset-gt-sm-30 {
|
|
margin-left: 30%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-sm-30,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-sm-30,
|
|
[dir=rtl] .layout-margin .offset-gt-sm-30,
|
|
[dir=rtl] .offset-gt-sm-30 {
|
|
margin-left: auto;
|
|
margin-right: 30%;
|
|
}
|
|
|
|
.flex-offset-gt-sm-35,
|
|
.layout-margin .flex-offset-gt-sm-35,
|
|
.layout-margin .offset-gt-sm-35,
|
|
.offset-gt-sm-35 {
|
|
margin-left: 35%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-sm-35,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-sm-35,
|
|
[dir=rtl] .layout-margin .offset-gt-sm-35,
|
|
[dir=rtl] .offset-gt-sm-35 {
|
|
margin-left: auto;
|
|
margin-right: 35%;
|
|
}
|
|
|
|
.flex-offset-gt-sm-40,
|
|
.layout-margin .flex-offset-gt-sm-40,
|
|
.layout-margin .offset-gt-sm-40,
|
|
.offset-gt-sm-40 {
|
|
margin-left: 40%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-sm-40,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-sm-40,
|
|
[dir=rtl] .layout-margin .offset-gt-sm-40,
|
|
[dir=rtl] .offset-gt-sm-40 {
|
|
margin-left: auto;
|
|
margin-right: 40%;
|
|
}
|
|
|
|
.flex-offset-gt-sm-45,
|
|
.layout-margin .flex-offset-gt-sm-45,
|
|
.layout-margin .offset-gt-sm-45,
|
|
.offset-gt-sm-45 {
|
|
margin-left: 45%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-sm-45,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-sm-45,
|
|
[dir=rtl] .layout-margin .offset-gt-sm-45,
|
|
[dir=rtl] .offset-gt-sm-45 {
|
|
margin-left: auto;
|
|
margin-right: 45%;
|
|
}
|
|
|
|
.flex-offset-gt-sm-50,
|
|
.layout-margin .flex-offset-gt-sm-50,
|
|
.layout-margin .offset-gt-sm-50,
|
|
.offset-gt-sm-50 {
|
|
margin-left: 50%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-sm-50,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-sm-50,
|
|
[dir=rtl] .layout-margin .offset-gt-sm-50,
|
|
[dir=rtl] .offset-gt-sm-50 {
|
|
margin-left: auto;
|
|
margin-right: 50%;
|
|
}
|
|
|
|
.flex-offset-gt-sm-55,
|
|
.layout-margin .flex-offset-gt-sm-55,
|
|
.layout-margin .offset-gt-sm-55,
|
|
.offset-gt-sm-55 {
|
|
margin-left: 55%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-sm-55,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-sm-55,
|
|
[dir=rtl] .layout-margin .offset-gt-sm-55,
|
|
[dir=rtl] .offset-gt-sm-55 {
|
|
margin-left: auto;
|
|
margin-right: 55%;
|
|
}
|
|
|
|
.flex-offset-gt-sm-60,
|
|
.layout-margin .flex-offset-gt-sm-60,
|
|
.layout-margin .offset-gt-sm-60,
|
|
.offset-gt-sm-60 {
|
|
margin-left: 60%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-sm-60,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-sm-60,
|
|
[dir=rtl] .layout-margin .offset-gt-sm-60,
|
|
[dir=rtl] .offset-gt-sm-60 {
|
|
margin-left: auto;
|
|
margin-right: 60%;
|
|
}
|
|
|
|
.flex-offset-gt-sm-65,
|
|
.layout-margin .flex-offset-gt-sm-65,
|
|
.layout-margin .offset-gt-sm-65,
|
|
.offset-gt-sm-65 {
|
|
margin-left: 65%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-sm-65,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-sm-65,
|
|
[dir=rtl] .layout-margin .offset-gt-sm-65,
|
|
[dir=rtl] .offset-gt-sm-65 {
|
|
margin-left: auto;
|
|
margin-right: 65%;
|
|
}
|
|
|
|
.flex-offset-gt-sm-70,
|
|
.layout-margin .flex-offset-gt-sm-70,
|
|
.layout-margin .offset-gt-sm-70,
|
|
.offset-gt-sm-70 {
|
|
margin-left: 70%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-sm-70,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-sm-70,
|
|
[dir=rtl] .layout-margin .offset-gt-sm-70,
|
|
[dir=rtl] .offset-gt-sm-70 {
|
|
margin-left: auto;
|
|
margin-right: 70%;
|
|
}
|
|
|
|
.flex-offset-gt-sm-75,
|
|
.layout-margin .flex-offset-gt-sm-75,
|
|
.layout-margin .offset-gt-sm-75,
|
|
.offset-gt-sm-75 {
|
|
margin-left: 75%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-sm-75,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-sm-75,
|
|
[dir=rtl] .layout-margin .offset-gt-sm-75,
|
|
[dir=rtl] .offset-gt-sm-75 {
|
|
margin-left: auto;
|
|
margin-right: 75%;
|
|
}
|
|
|
|
.flex-offset-gt-sm-80,
|
|
.layout-margin .flex-offset-gt-sm-80,
|
|
.layout-margin .offset-gt-sm-80,
|
|
.offset-gt-sm-80 {
|
|
margin-left: 80%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-sm-80,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-sm-80,
|
|
[dir=rtl] .layout-margin .offset-gt-sm-80,
|
|
[dir=rtl] .offset-gt-sm-80 {
|
|
margin-left: auto;
|
|
margin-right: 80%;
|
|
}
|
|
|
|
.flex-offset-gt-sm-85,
|
|
.layout-margin .flex-offset-gt-sm-85,
|
|
.layout-margin .offset-gt-sm-85,
|
|
.offset-gt-sm-85 {
|
|
margin-left: 85%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-sm-85,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-sm-85,
|
|
[dir=rtl] .layout-margin .offset-gt-sm-85,
|
|
[dir=rtl] .offset-gt-sm-85 {
|
|
margin-left: auto;
|
|
margin-right: 85%;
|
|
}
|
|
|
|
.flex-offset-gt-sm-90,
|
|
.layout-margin .flex-offset-gt-sm-90,
|
|
.layout-margin .offset-gt-sm-90,
|
|
.offset-gt-sm-90 {
|
|
margin-left: 90%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-sm-90,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-sm-90,
|
|
[dir=rtl] .layout-margin .offset-gt-sm-90,
|
|
[dir=rtl] .offset-gt-sm-90 {
|
|
margin-left: auto;
|
|
margin-right: 90%;
|
|
}
|
|
|
|
.flex-offset-gt-sm-95,
|
|
.layout-margin .flex-offset-gt-sm-95,
|
|
.layout-margin .offset-gt-sm-95,
|
|
.offset-gt-sm-95 {
|
|
margin-left: 95%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-sm-95,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-sm-95,
|
|
[dir=rtl] .layout-margin .offset-gt-sm-95,
|
|
[dir=rtl] .offset-gt-sm-95 {
|
|
margin-left: auto;
|
|
margin-right: 95%;
|
|
}
|
|
|
|
.flex-offset-gt-sm-33,
|
|
.layout-margin .flex-offset-gt-sm-33,
|
|
.layout-margin .offset-gt-sm-33,
|
|
.offset-gt-sm-33 {
|
|
margin-left: 33.3333333333%;
|
|
}
|
|
|
|
.flex-offset-gt-sm-66,
|
|
.layout-margin .flex-offset-gt-sm-66,
|
|
.layout-margin .offset-gt-sm-66,
|
|
.offset-gt-sm-66 {
|
|
margin-left: 66.6666666667%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-sm-66,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-sm-66,
|
|
[dir=rtl] .layout-margin .offset-gt-sm-66,
|
|
[dir=rtl] .offset-gt-sm-66 {
|
|
margin-left: auto;
|
|
margin-right: 66.6666666667%;
|
|
}
|
|
|
|
.layout-align-gt-sm,
|
|
.layout-align-gt-sm-start-stretch {
|
|
align-content: stretch;
|
|
align-items: stretch;
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.layout-align-gt-sm-start,
|
|
.layout-align-gt-sm-start-center,
|
|
.layout-align-gt-sm-start-end,
|
|
.layout-align-gt-sm-start-start,
|
|
.layout-align-gt-sm-start-stretch {
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.layout-align-gt-sm-center,
|
|
.layout-align-gt-sm-center-center,
|
|
.layout-align-gt-sm-center-end,
|
|
.layout-align-gt-sm-center-start,
|
|
.layout-align-gt-sm-center-stretch {
|
|
justify-content: center;
|
|
}
|
|
|
|
.layout-align-gt-sm-end,
|
|
.layout-align-gt-sm-end-center,
|
|
.layout-align-gt-sm-end-end,
|
|
.layout-align-gt-sm-end-start,
|
|
.layout-align-gt-sm-end-stretch {
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.layout-align-gt-sm-space-around,
|
|
.layout-align-gt-sm-space-around-center,
|
|
.layout-align-gt-sm-space-around-end,
|
|
.layout-align-gt-sm-space-around-start,
|
|
.layout-align-gt-sm-space-around-stretch {
|
|
justify-content: space-around;
|
|
}
|
|
|
|
.layout-align-gt-sm-space-between,
|
|
.layout-align-gt-sm-space-between-center,
|
|
.layout-align-gt-sm-space-between-end,
|
|
.layout-align-gt-sm-space-between-start,
|
|
.layout-align-gt-sm-space-between-stretch {
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.layout-align-gt-sm-center-start,
|
|
.layout-align-gt-sm-end-start,
|
|
.layout-align-gt-sm-space-around-start,
|
|
.layout-align-gt-sm-space-between-start,
|
|
.layout-align-gt-sm-start-start {
|
|
align-content: flex-start;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.layout-align-gt-sm-center-center,
|
|
.layout-align-gt-sm-end-center,
|
|
.layout-align-gt-sm-space-around-center,
|
|
.layout-align-gt-sm-space-between-center,
|
|
.layout-align-gt-sm-start-center {
|
|
align-content: center;
|
|
align-items: center;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-align-gt-sm-center-center>*,
|
|
.layout-align-gt-sm-end-center>*,
|
|
.layout-align-gt-sm-space-around-center>*,
|
|
.layout-align-gt-sm-space-between-center>*,
|
|
.layout-align-gt-sm-start-center>* {
|
|
box-sizing: border-box;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-align-gt-sm-center-end,
|
|
.layout-align-gt-sm-end-end,
|
|
.layout-align-gt-sm-space-around-end,
|
|
.layout-align-gt-sm-space-between-end,
|
|
.layout-align-gt-sm-start-end {
|
|
align-content: flex-end;
|
|
align-items: flex-end;
|
|
}
|
|
|
|
.layout-align-gt-sm-center-stretch,
|
|
.layout-align-gt-sm-end-stretch,
|
|
.layout-align-gt-sm-space-around-stretch,
|
|
.layout-align-gt-sm-space-between-stretch,
|
|
.layout-align-gt-sm-start-stretch {
|
|
align-content: stretch;
|
|
align-items: stretch;
|
|
}
|
|
|
|
.flex-gt-sm {
|
|
box-sizing: border-box;
|
|
flex: 1;
|
|
}
|
|
|
|
.flex-gt-sm-grow {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
}
|
|
|
|
.flex-gt-sm-initial {
|
|
box-sizing: border-box;
|
|
flex: 0 1 auto;
|
|
}
|
|
|
|
.flex-gt-sm-auto {
|
|
box-sizing: border-box;
|
|
flex: 1 1 auto;
|
|
}
|
|
|
|
.flex-gt-sm-none {
|
|
box-sizing: border-box;
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
.flex-gt-sm-noshrink {
|
|
box-sizing: border-box;
|
|
flex: 1 0 auto;
|
|
}
|
|
|
|
.flex-gt-sm-nogrow {
|
|
box-sizing: border-box;
|
|
flex: 0 1 auto;
|
|
}
|
|
|
|
.flex-gt-sm-0,
|
|
.layout-row>.flex-gt-sm-0 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 0;
|
|
}
|
|
|
|
.layout-row>.flex-gt-sm-0 {
|
|
min-width: 0;
|
|
}
|
|
|
|
.layout-column>.flex-gt-sm-0 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 0%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-sm-row>.flex-gt-sm-0 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 0;
|
|
min-width: 0;
|
|
}
|
|
|
|
.layout-gt-sm-column>.flex-gt-sm-0 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 0%;
|
|
max-width: 100%;
|
|
min-height: 0;
|
|
}
|
|
|
|
.flex-gt-sm-5,
|
|
.layout-row>.flex-gt-sm-5 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 5%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-sm-5 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 5%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-sm-row>.flex-gt-sm-5 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 5%;
|
|
}
|
|
|
|
.layout-gt-sm-column>.flex-gt-sm-5 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 5%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-sm-10,
|
|
.layout-row>.flex-gt-sm-10 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 10%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-sm-10 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 10%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-sm-row>.flex-gt-sm-10 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 10%;
|
|
}
|
|
|
|
.layout-gt-sm-column>.flex-gt-sm-10 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 10%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-sm-15,
|
|
.layout-row>.flex-gt-sm-15 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 15%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-sm-15 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 15%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-sm-row>.flex-gt-sm-15 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 15%;
|
|
}
|
|
|
|
.layout-gt-sm-column>.flex-gt-sm-15 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 15%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-sm-20,
|
|
.layout-row>.flex-gt-sm-20 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 20%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-sm-20 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 20%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-sm-row>.flex-gt-sm-20 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 20%;
|
|
}
|
|
|
|
.layout-gt-sm-column>.flex-gt-sm-20 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 20%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-sm-25,
|
|
.layout-row>.flex-gt-sm-25 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 25%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-sm-25 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 25%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-sm-row>.flex-gt-sm-25 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 25%;
|
|
}
|
|
|
|
.layout-gt-sm-column>.flex-gt-sm-25 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 25%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-sm-30,
|
|
.layout-row>.flex-gt-sm-30 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 30%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-sm-30 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 30%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-sm-row>.flex-gt-sm-30 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 30%;
|
|
}
|
|
|
|
.layout-gt-sm-column>.flex-gt-sm-30 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 30%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-sm-35,
|
|
.layout-row>.flex-gt-sm-35 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 35%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-sm-35 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 35%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-sm-row>.flex-gt-sm-35 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 35%;
|
|
}
|
|
|
|
.layout-gt-sm-column>.flex-gt-sm-35 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 35%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-sm-40,
|
|
.layout-row>.flex-gt-sm-40 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 40%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-sm-40 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 40%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-sm-row>.flex-gt-sm-40 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 40%;
|
|
}
|
|
|
|
.layout-gt-sm-column>.flex-gt-sm-40 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 40%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-sm-45,
|
|
.layout-row>.flex-gt-sm-45 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 45%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-sm-45 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 45%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-sm-row>.flex-gt-sm-45 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 45%;
|
|
}
|
|
|
|
.layout-gt-sm-column>.flex-gt-sm-45 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 45%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-sm-50,
|
|
.layout-row>.flex-gt-sm-50 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 50%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-sm-50 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 50%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-sm-row>.flex-gt-sm-50 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 50%;
|
|
}
|
|
|
|
.layout-gt-sm-column>.flex-gt-sm-50 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 50%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-sm-55,
|
|
.layout-row>.flex-gt-sm-55 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 55%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-sm-55 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 55%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-sm-row>.flex-gt-sm-55 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 55%;
|
|
}
|
|
|
|
.layout-gt-sm-column>.flex-gt-sm-55 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 55%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-sm-60,
|
|
.layout-row>.flex-gt-sm-60 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 60%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-sm-60 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 60%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-sm-row>.flex-gt-sm-60 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 60%;
|
|
}
|
|
|
|
.layout-gt-sm-column>.flex-gt-sm-60 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 60%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-sm-65,
|
|
.layout-row>.flex-gt-sm-65 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 65%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-sm-65 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 65%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-sm-row>.flex-gt-sm-65 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 65%;
|
|
}
|
|
|
|
.layout-gt-sm-column>.flex-gt-sm-65 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 65%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-sm-70,
|
|
.layout-row>.flex-gt-sm-70 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 70%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-sm-70 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 70%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-sm-row>.flex-gt-sm-70 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 70%;
|
|
}
|
|
|
|
.layout-gt-sm-column>.flex-gt-sm-70 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 70%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-sm-75,
|
|
.layout-row>.flex-gt-sm-75 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 75%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-sm-75 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 75%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-sm-row>.flex-gt-sm-75 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 75%;
|
|
}
|
|
|
|
.layout-gt-sm-column>.flex-gt-sm-75 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 75%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-sm-80,
|
|
.layout-row>.flex-gt-sm-80 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 80%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-sm-80 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 80%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-sm-row>.flex-gt-sm-80 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 80%;
|
|
}
|
|
|
|
.layout-gt-sm-column>.flex-gt-sm-80 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 80%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-sm-85,
|
|
.layout-row>.flex-gt-sm-85 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 85%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-sm-85 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 85%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-sm-row>.flex-gt-sm-85 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 85%;
|
|
}
|
|
|
|
.layout-gt-sm-column>.flex-gt-sm-85 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 85%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-sm-90,
|
|
.layout-row>.flex-gt-sm-90 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 90%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-sm-90 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 90%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-sm-row>.flex-gt-sm-90 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 90%;
|
|
}
|
|
|
|
.layout-gt-sm-column>.flex-gt-sm-90 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 90%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-sm-95,
|
|
.layout-row>.flex-gt-sm-95 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 95%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-sm-95 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 95%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-sm-row>.flex-gt-sm-95 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 95%;
|
|
}
|
|
|
|
.layout-gt-sm-column>.flex-gt-sm-95 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 95%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-sm-100,
|
|
.layout-column>.flex-gt-sm-100,
|
|
.layout-gt-sm-column>.flex-gt-sm-100,
|
|
.layout-gt-sm-row>.flex-gt-sm-100,
|
|
.layout-row>.flex-gt-sm-100 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-row>.flex-gt-sm-33 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 33.33%;
|
|
max-height: 100%;
|
|
max-width: 33.33%;
|
|
}
|
|
|
|
.layout-row>.flex-gt-sm-66 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 66.66%;
|
|
max-height: 100%;
|
|
max-width: 66.66%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-sm-33 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 33.33%;
|
|
max-height: 33.33%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-sm-66 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 66.66%;
|
|
max-height: 66.66%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-sm-row>.flex-gt-sm-33 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 33.33%;
|
|
}
|
|
|
|
.layout-gt-sm-row>.flex-gt-sm-66 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 66.66%;
|
|
}
|
|
|
|
.layout-gt-sm-row>.flex {
|
|
min-width: 0;
|
|
}
|
|
|
|
.layout-gt-sm-column>.flex-gt-sm-33 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 33.33%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-sm-column>.flex-gt-sm-66 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 66.66%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-sm-column>.flex {
|
|
min-height: 0;
|
|
}
|
|
|
|
.layout-gt-sm,
|
|
.layout-gt-sm-column,
|
|
.layout-gt-sm-row {
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
}
|
|
|
|
.layout-gt-sm-column {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.layout-gt-sm-row {
|
|
flex-direction: row;
|
|
}
|
|
}
|
|
|
|
@media (min-width:960px) and (max-width:1279px) {
|
|
.hide-gt-sm:not(.show-gt-xs):not(.show-gt-sm):not(.show-md):not(.show),
|
|
.hide-gt-xs:not(.show-gt-xs):not(.show-gt-sm):not(.show-md):not(.show),
|
|
.hide-md:not(.show-md):not(.show-gt-sm):not(.show-gt-xs):not(.show),
|
|
.hide:not(.show-gt-xs):not(.show-gt-sm):not(.show-md):not(.show) {
|
|
display: none;
|
|
}
|
|
|
|
.flex-order-md--20 {
|
|
order: -20;
|
|
}
|
|
|
|
.flex-order-md--19 {
|
|
order: -19;
|
|
}
|
|
|
|
.flex-order-md--18 {
|
|
order: -18;
|
|
}
|
|
|
|
.flex-order-md--17 {
|
|
order: -17;
|
|
}
|
|
|
|
.flex-order-md--16 {
|
|
order: -16;
|
|
}
|
|
|
|
.flex-order-md--15 {
|
|
order: -15;
|
|
}
|
|
|
|
.flex-order-md--14 {
|
|
order: -14;
|
|
}
|
|
|
|
.flex-order-md--13 {
|
|
order: -13;
|
|
}
|
|
|
|
.flex-order-md--12 {
|
|
order: -12;
|
|
}
|
|
|
|
.flex-order-md--11 {
|
|
order: -11;
|
|
}
|
|
|
|
.flex-order-md--10 {
|
|
order: -10;
|
|
}
|
|
|
|
.flex-order-md--9 {
|
|
order: -9;
|
|
}
|
|
|
|
.flex-order-md--8 {
|
|
order: -8;
|
|
}
|
|
|
|
.flex-order-md--7 {
|
|
order: -7;
|
|
}
|
|
|
|
.flex-order-md--6 {
|
|
order: -6;
|
|
}
|
|
|
|
.flex-order-md--5 {
|
|
order: -5;
|
|
}
|
|
|
|
.flex-order-md--4 {
|
|
order: -4;
|
|
}
|
|
|
|
.flex-order-md--3 {
|
|
order: -3;
|
|
}
|
|
|
|
.flex-order-md--2 {
|
|
order: -2;
|
|
}
|
|
|
|
.flex-order-md--1 {
|
|
order: -1;
|
|
}
|
|
|
|
.flex-order-md-0 {
|
|
order: 0;
|
|
}
|
|
|
|
.flex-order-md-1 {
|
|
order: 1;
|
|
}
|
|
|
|
.flex-order-md-2 {
|
|
order: 2;
|
|
}
|
|
|
|
.flex-order-md-3 {
|
|
order: 3;
|
|
}
|
|
|
|
.flex-order-md-4 {
|
|
order: 4;
|
|
}
|
|
|
|
.flex-order-md-5 {
|
|
order: 5;
|
|
}
|
|
|
|
.flex-order-md-6 {
|
|
order: 6;
|
|
}
|
|
|
|
.flex-order-md-7 {
|
|
order: 7;
|
|
}
|
|
|
|
.flex-order-md-8 {
|
|
order: 8;
|
|
}
|
|
|
|
.flex-order-md-9 {
|
|
order: 9;
|
|
}
|
|
|
|
.flex-order-md-10 {
|
|
order: 10;
|
|
}
|
|
|
|
.flex-order-md-11 {
|
|
order: 11;
|
|
}
|
|
|
|
.flex-order-md-12 {
|
|
order: 12;
|
|
}
|
|
|
|
.flex-order-md-13 {
|
|
order: 13;
|
|
}
|
|
|
|
.flex-order-md-14 {
|
|
order: 14;
|
|
}
|
|
|
|
.flex-order-md-15 {
|
|
order: 15;
|
|
}
|
|
|
|
.flex-order-md-16 {
|
|
order: 16;
|
|
}
|
|
|
|
.flex-order-md-17 {
|
|
order: 17;
|
|
}
|
|
|
|
.flex-order-md-18 {
|
|
order: 18;
|
|
}
|
|
|
|
.flex-order-md-19 {
|
|
order: 19;
|
|
}
|
|
|
|
.flex-order-md-20 {
|
|
order: 20;
|
|
}
|
|
|
|
.flex-offset-md-0,
|
|
.layout-margin .flex-offset-md-0,
|
|
.layout-margin .offset-md-0,
|
|
.offset-md-0 {
|
|
margin-left: 0;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-md-0,
|
|
[dir=rtl] .layout-margin .flex-offset-md-0,
|
|
[dir=rtl] .layout-margin .offset-md-0,
|
|
[dir=rtl] .offset-md-0 {
|
|
margin-left: auto;
|
|
margin-right: 0;
|
|
}
|
|
|
|
.flex-offset-md-5,
|
|
.layout-margin .flex-offset-md-5,
|
|
.layout-margin .offset-md-5,
|
|
.offset-md-5 {
|
|
margin-left: 5%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-md-5,
|
|
[dir=rtl] .layout-margin .flex-offset-md-5,
|
|
[dir=rtl] .layout-margin .offset-md-5,
|
|
[dir=rtl] .offset-md-5 {
|
|
margin-left: auto;
|
|
margin-right: 5%;
|
|
}
|
|
|
|
.flex-offset-md-10,
|
|
.layout-margin .flex-offset-md-10,
|
|
.layout-margin .offset-md-10,
|
|
.offset-md-10 {
|
|
margin-left: 10%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-md-10,
|
|
[dir=rtl] .layout-margin .flex-offset-md-10,
|
|
[dir=rtl] .layout-margin .offset-md-10,
|
|
[dir=rtl] .offset-md-10 {
|
|
margin-left: auto;
|
|
margin-right: 10%;
|
|
}
|
|
|
|
.flex-offset-md-15,
|
|
.layout-margin .flex-offset-md-15,
|
|
.layout-margin .offset-md-15,
|
|
.offset-md-15 {
|
|
margin-left: 15%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-md-15,
|
|
[dir=rtl] .layout-margin .flex-offset-md-15,
|
|
[dir=rtl] .layout-margin .offset-md-15,
|
|
[dir=rtl] .offset-md-15 {
|
|
margin-left: auto;
|
|
margin-right: 15%;
|
|
}
|
|
|
|
.flex-offset-md-20,
|
|
.layout-margin .flex-offset-md-20,
|
|
.layout-margin .offset-md-20,
|
|
.offset-md-20 {
|
|
margin-left: 20%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-md-20,
|
|
[dir=rtl] .layout-margin .flex-offset-md-20,
|
|
[dir=rtl] .layout-margin .offset-md-20,
|
|
[dir=rtl] .offset-md-20 {
|
|
margin-left: auto;
|
|
margin-right: 20%;
|
|
}
|
|
|
|
.flex-offset-md-25,
|
|
.layout-margin .flex-offset-md-25,
|
|
.layout-margin .offset-md-25,
|
|
.offset-md-25 {
|
|
margin-left: 25%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-md-25,
|
|
[dir=rtl] .layout-margin .flex-offset-md-25,
|
|
[dir=rtl] .layout-margin .offset-md-25,
|
|
[dir=rtl] .offset-md-25 {
|
|
margin-left: auto;
|
|
margin-right: 25%;
|
|
}
|
|
|
|
.flex-offset-md-30,
|
|
.layout-margin .flex-offset-md-30,
|
|
.layout-margin .offset-md-30,
|
|
.offset-md-30 {
|
|
margin-left: 30%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-md-30,
|
|
[dir=rtl] .layout-margin .flex-offset-md-30,
|
|
[dir=rtl] .layout-margin .offset-md-30,
|
|
[dir=rtl] .offset-md-30 {
|
|
margin-left: auto;
|
|
margin-right: 30%;
|
|
}
|
|
|
|
.flex-offset-md-35,
|
|
.layout-margin .flex-offset-md-35,
|
|
.layout-margin .offset-md-35,
|
|
.offset-md-35 {
|
|
margin-left: 35%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-md-35,
|
|
[dir=rtl] .layout-margin .flex-offset-md-35,
|
|
[dir=rtl] .layout-margin .offset-md-35,
|
|
[dir=rtl] .offset-md-35 {
|
|
margin-left: auto;
|
|
margin-right: 35%;
|
|
}
|
|
|
|
.flex-offset-md-40,
|
|
.layout-margin .flex-offset-md-40,
|
|
.layout-margin .offset-md-40,
|
|
.offset-md-40 {
|
|
margin-left: 40%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-md-40,
|
|
[dir=rtl] .layout-margin .flex-offset-md-40,
|
|
[dir=rtl] .layout-margin .offset-md-40,
|
|
[dir=rtl] .offset-md-40 {
|
|
margin-left: auto;
|
|
margin-right: 40%;
|
|
}
|
|
|
|
.flex-offset-md-45,
|
|
.layout-margin .flex-offset-md-45,
|
|
.layout-margin .offset-md-45,
|
|
.offset-md-45 {
|
|
margin-left: 45%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-md-45,
|
|
[dir=rtl] .layout-margin .flex-offset-md-45,
|
|
[dir=rtl] .layout-margin .offset-md-45,
|
|
[dir=rtl] .offset-md-45 {
|
|
margin-left: auto;
|
|
margin-right: 45%;
|
|
}
|
|
|
|
.flex-offset-md-50,
|
|
.layout-margin .flex-offset-md-50,
|
|
.layout-margin .offset-md-50,
|
|
.offset-md-50 {
|
|
margin-left: 50%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-md-50,
|
|
[dir=rtl] .layout-margin .flex-offset-md-50,
|
|
[dir=rtl] .layout-margin .offset-md-50,
|
|
[dir=rtl] .offset-md-50 {
|
|
margin-left: auto;
|
|
margin-right: 50%;
|
|
}
|
|
|
|
.flex-offset-md-55,
|
|
.layout-margin .flex-offset-md-55,
|
|
.layout-margin .offset-md-55,
|
|
.offset-md-55 {
|
|
margin-left: 55%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-md-55,
|
|
[dir=rtl] .layout-margin .flex-offset-md-55,
|
|
[dir=rtl] .layout-margin .offset-md-55,
|
|
[dir=rtl] .offset-md-55 {
|
|
margin-left: auto;
|
|
margin-right: 55%;
|
|
}
|
|
|
|
.flex-offset-md-60,
|
|
.layout-margin .flex-offset-md-60,
|
|
.layout-margin .offset-md-60,
|
|
.offset-md-60 {
|
|
margin-left: 60%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-md-60,
|
|
[dir=rtl] .layout-margin .flex-offset-md-60,
|
|
[dir=rtl] .layout-margin .offset-md-60,
|
|
[dir=rtl] .offset-md-60 {
|
|
margin-left: auto;
|
|
margin-right: 60%;
|
|
}
|
|
|
|
.flex-offset-md-65,
|
|
.layout-margin .flex-offset-md-65,
|
|
.layout-margin .offset-md-65,
|
|
.offset-md-65 {
|
|
margin-left: 65%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-md-65,
|
|
[dir=rtl] .layout-margin .flex-offset-md-65,
|
|
[dir=rtl] .layout-margin .offset-md-65,
|
|
[dir=rtl] .offset-md-65 {
|
|
margin-left: auto;
|
|
margin-right: 65%;
|
|
}
|
|
|
|
.flex-offset-md-70,
|
|
.layout-margin .flex-offset-md-70,
|
|
.layout-margin .offset-md-70,
|
|
.offset-md-70 {
|
|
margin-left: 70%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-md-70,
|
|
[dir=rtl] .layout-margin .flex-offset-md-70,
|
|
[dir=rtl] .layout-margin .offset-md-70,
|
|
[dir=rtl] .offset-md-70 {
|
|
margin-left: auto;
|
|
margin-right: 70%;
|
|
}
|
|
|
|
.flex-offset-md-75,
|
|
.layout-margin .flex-offset-md-75,
|
|
.layout-margin .offset-md-75,
|
|
.offset-md-75 {
|
|
margin-left: 75%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-md-75,
|
|
[dir=rtl] .layout-margin .flex-offset-md-75,
|
|
[dir=rtl] .layout-margin .offset-md-75,
|
|
[dir=rtl] .offset-md-75 {
|
|
margin-left: auto;
|
|
margin-right: 75%;
|
|
}
|
|
|
|
.flex-offset-md-80,
|
|
.layout-margin .flex-offset-md-80,
|
|
.layout-margin .offset-md-80,
|
|
.offset-md-80 {
|
|
margin-left: 80%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-md-80,
|
|
[dir=rtl] .layout-margin .flex-offset-md-80,
|
|
[dir=rtl] .layout-margin .offset-md-80,
|
|
[dir=rtl] .offset-md-80 {
|
|
margin-left: auto;
|
|
margin-right: 80%;
|
|
}
|
|
|
|
.flex-offset-md-85,
|
|
.layout-margin .flex-offset-md-85,
|
|
.layout-margin .offset-md-85,
|
|
.offset-md-85 {
|
|
margin-left: 85%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-md-85,
|
|
[dir=rtl] .layout-margin .flex-offset-md-85,
|
|
[dir=rtl] .layout-margin .offset-md-85,
|
|
[dir=rtl] .offset-md-85 {
|
|
margin-left: auto;
|
|
margin-right: 85%;
|
|
}
|
|
|
|
.flex-offset-md-90,
|
|
.layout-margin .flex-offset-md-90,
|
|
.layout-margin .offset-md-90,
|
|
.offset-md-90 {
|
|
margin-left: 90%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-md-90,
|
|
[dir=rtl] .layout-margin .flex-offset-md-90,
|
|
[dir=rtl] .layout-margin .offset-md-90,
|
|
[dir=rtl] .offset-md-90 {
|
|
margin-left: auto;
|
|
margin-right: 90%;
|
|
}
|
|
|
|
.flex-offset-md-95,
|
|
.layout-margin .flex-offset-md-95,
|
|
.layout-margin .offset-md-95,
|
|
.offset-md-95 {
|
|
margin-left: 95%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-md-95,
|
|
[dir=rtl] .layout-margin .flex-offset-md-95,
|
|
[dir=rtl] .layout-margin .offset-md-95,
|
|
[dir=rtl] .offset-md-95 {
|
|
margin-left: auto;
|
|
margin-right: 95%;
|
|
}
|
|
|
|
.flex-offset-md-33,
|
|
.layout-margin .flex-offset-md-33,
|
|
.layout-margin .offset-md-33,
|
|
.offset-md-33 {
|
|
margin-left: 33.3333333333%;
|
|
}
|
|
|
|
.flex-offset-md-66,
|
|
.layout-margin .flex-offset-md-66,
|
|
.layout-margin .offset-md-66,
|
|
.offset-md-66 {
|
|
margin-left: 66.6666666667%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-md-66,
|
|
[dir=rtl] .layout-margin .flex-offset-md-66,
|
|
[dir=rtl] .layout-margin .offset-md-66,
|
|
[dir=rtl] .offset-md-66 {
|
|
margin-left: auto;
|
|
margin-right: 66.6666666667%;
|
|
}
|
|
|
|
.layout-align-md,
|
|
.layout-align-md-start-stretch {
|
|
align-content: stretch;
|
|
align-items: stretch;
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.layout-align-md-start,
|
|
.layout-align-md-start-center,
|
|
.layout-align-md-start-end,
|
|
.layout-align-md-start-start,
|
|
.layout-align-md-start-stretch {
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.layout-align-md-center,
|
|
.layout-align-md-center-center,
|
|
.layout-align-md-center-end,
|
|
.layout-align-md-center-start,
|
|
.layout-align-md-center-stretch {
|
|
justify-content: center;
|
|
}
|
|
|
|
.layout-align-md-end,
|
|
.layout-align-md-end-center,
|
|
.layout-align-md-end-end,
|
|
.layout-align-md-end-start,
|
|
.layout-align-md-end-stretch {
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.layout-align-md-space-around,
|
|
.layout-align-md-space-around-center,
|
|
.layout-align-md-space-around-end,
|
|
.layout-align-md-space-around-start,
|
|
.layout-align-md-space-around-stretch {
|
|
justify-content: space-around;
|
|
}
|
|
|
|
.layout-align-md-space-between,
|
|
.layout-align-md-space-between-center,
|
|
.layout-align-md-space-between-end,
|
|
.layout-align-md-space-between-start,
|
|
.layout-align-md-space-between-stretch {
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.layout-align-md-center-start,
|
|
.layout-align-md-end-start,
|
|
.layout-align-md-space-around-start,
|
|
.layout-align-md-space-between-start,
|
|
.layout-align-md-start-start {
|
|
align-content: flex-start;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.layout-align-md-center-center,
|
|
.layout-align-md-end-center,
|
|
.layout-align-md-space-around-center,
|
|
.layout-align-md-space-between-center,
|
|
.layout-align-md-start-center {
|
|
align-content: center;
|
|
align-items: center;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-align-md-center-center>*,
|
|
.layout-align-md-end-center>*,
|
|
.layout-align-md-space-around-center>*,
|
|
.layout-align-md-space-between-center>*,
|
|
.layout-align-md-start-center>* {
|
|
box-sizing: border-box;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-align-md-center-end,
|
|
.layout-align-md-end-end,
|
|
.layout-align-md-space-around-end,
|
|
.layout-align-md-space-between-end,
|
|
.layout-align-md-start-end {
|
|
align-content: flex-end;
|
|
align-items: flex-end;
|
|
}
|
|
|
|
.layout-align-md-center-stretch,
|
|
.layout-align-md-end-stretch,
|
|
.layout-align-md-space-around-stretch,
|
|
.layout-align-md-space-between-stretch,
|
|
.layout-align-md-start-stretch {
|
|
align-content: stretch;
|
|
align-items: stretch;
|
|
}
|
|
|
|
.flex-md {
|
|
box-sizing: border-box;
|
|
flex: 1;
|
|
}
|
|
|
|
.flex-md-grow {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
}
|
|
|
|
.flex-md-initial {
|
|
box-sizing: border-box;
|
|
flex: 0 1 auto;
|
|
}
|
|
|
|
.flex-md-auto {
|
|
box-sizing: border-box;
|
|
flex: 1 1 auto;
|
|
}
|
|
|
|
.flex-md-none {
|
|
box-sizing: border-box;
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
.flex-md-noshrink {
|
|
box-sizing: border-box;
|
|
flex: 1 0 auto;
|
|
}
|
|
|
|
.flex-md-nogrow {
|
|
box-sizing: border-box;
|
|
flex: 0 1 auto;
|
|
}
|
|
|
|
.flex-md-0,
|
|
.layout-row>.flex-md-0 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 0;
|
|
}
|
|
|
|
.layout-row>.flex-md-0 {
|
|
min-width: 0;
|
|
}
|
|
|
|
.layout-column>.flex-md-0 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 0%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-md-row>.flex-md-0 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 0;
|
|
min-width: 0;
|
|
}
|
|
|
|
.layout-md-column>.flex-md-0 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 0%;
|
|
max-width: 100%;
|
|
min-height: 0;
|
|
}
|
|
|
|
.flex-md-5,
|
|
.layout-row>.flex-md-5 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 5%;
|
|
}
|
|
|
|
.layout-column>.flex-md-5 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 5%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-md-row>.flex-md-5 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 5%;
|
|
}
|
|
|
|
.layout-md-column>.flex-md-5 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 5%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-md-10,
|
|
.layout-row>.flex-md-10 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 10%;
|
|
}
|
|
|
|
.layout-column>.flex-md-10 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 10%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-md-row>.flex-md-10 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 10%;
|
|
}
|
|
|
|
.layout-md-column>.flex-md-10 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 10%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-md-15,
|
|
.layout-row>.flex-md-15 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 15%;
|
|
}
|
|
|
|
.layout-column>.flex-md-15 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 15%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-md-row>.flex-md-15 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 15%;
|
|
}
|
|
|
|
.layout-md-column>.flex-md-15 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 15%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-md-20,
|
|
.layout-row>.flex-md-20 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 20%;
|
|
}
|
|
|
|
.layout-column>.flex-md-20 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 20%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-md-row>.flex-md-20 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 20%;
|
|
}
|
|
|
|
.layout-md-column>.flex-md-20 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 20%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-md-25,
|
|
.layout-row>.flex-md-25 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 25%;
|
|
}
|
|
|
|
.layout-column>.flex-md-25 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 25%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-md-row>.flex-md-25 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 25%;
|
|
}
|
|
|
|
.layout-md-column>.flex-md-25 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 25%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-md-30,
|
|
.layout-row>.flex-md-30 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 30%;
|
|
}
|
|
|
|
.layout-column>.flex-md-30 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 30%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-md-row>.flex-md-30 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 30%;
|
|
}
|
|
|
|
.layout-md-column>.flex-md-30 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 30%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-md-35,
|
|
.layout-row>.flex-md-35 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 35%;
|
|
}
|
|
|
|
.layout-column>.flex-md-35 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 35%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-md-row>.flex-md-35 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 35%;
|
|
}
|
|
|
|
.layout-md-column>.flex-md-35 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 35%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-md-40,
|
|
.layout-row>.flex-md-40 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 40%;
|
|
}
|
|
|
|
.layout-column>.flex-md-40 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 40%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-md-row>.flex-md-40 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 40%;
|
|
}
|
|
|
|
.layout-md-column>.flex-md-40 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 40%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-md-45,
|
|
.layout-row>.flex-md-45 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 45%;
|
|
}
|
|
|
|
.layout-column>.flex-md-45 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 45%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-md-row>.flex-md-45 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 45%;
|
|
}
|
|
|
|
.layout-md-column>.flex-md-45 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 45%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-md-50,
|
|
.layout-row>.flex-md-50 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 50%;
|
|
}
|
|
|
|
.layout-column>.flex-md-50 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 50%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-md-row>.flex-md-50 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 50%;
|
|
}
|
|
|
|
.layout-md-column>.flex-md-50 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 50%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-md-55,
|
|
.layout-row>.flex-md-55 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 55%;
|
|
}
|
|
|
|
.layout-column>.flex-md-55 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 55%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-md-row>.flex-md-55 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 55%;
|
|
}
|
|
|
|
.layout-md-column>.flex-md-55 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 55%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-md-60,
|
|
.layout-row>.flex-md-60 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 60%;
|
|
}
|
|
|
|
.layout-column>.flex-md-60 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 60%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-md-row>.flex-md-60 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 60%;
|
|
}
|
|
|
|
.layout-md-column>.flex-md-60 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 60%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-md-65,
|
|
.layout-row>.flex-md-65 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 65%;
|
|
}
|
|
|
|
.layout-column>.flex-md-65 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 65%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-md-row>.flex-md-65 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 65%;
|
|
}
|
|
|
|
.layout-md-column>.flex-md-65 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 65%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-md-70,
|
|
.layout-row>.flex-md-70 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 70%;
|
|
}
|
|
|
|
.layout-column>.flex-md-70 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 70%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-md-row>.flex-md-70 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 70%;
|
|
}
|
|
|
|
.layout-md-column>.flex-md-70 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 70%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-md-75,
|
|
.layout-row>.flex-md-75 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 75%;
|
|
}
|
|
|
|
.layout-column>.flex-md-75 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 75%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-md-row>.flex-md-75 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 75%;
|
|
}
|
|
|
|
.layout-md-column>.flex-md-75 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 75%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-md-80,
|
|
.layout-row>.flex-md-80 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 80%;
|
|
}
|
|
|
|
.layout-column>.flex-md-80 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 80%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-md-row>.flex-md-80 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 80%;
|
|
}
|
|
|
|
.layout-md-column>.flex-md-80 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 80%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-md-85,
|
|
.layout-row>.flex-md-85 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 85%;
|
|
}
|
|
|
|
.layout-column>.flex-md-85 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 85%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-md-row>.flex-md-85 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 85%;
|
|
}
|
|
|
|
.layout-md-column>.flex-md-85 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 85%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-md-90,
|
|
.layout-row>.flex-md-90 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 90%;
|
|
}
|
|
|
|
.layout-column>.flex-md-90 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 90%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-md-row>.flex-md-90 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 90%;
|
|
}
|
|
|
|
.layout-md-column>.flex-md-90 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 90%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-md-95,
|
|
.layout-row>.flex-md-95 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 95%;
|
|
}
|
|
|
|
.layout-column>.flex-md-95 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 95%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-md-row>.flex-md-95 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 95%;
|
|
}
|
|
|
|
.layout-md-column>.flex-md-95 {
|
|
max-height: 95%;
|
|
}
|
|
|
|
.flex-md-100,
|
|
.layout-md-column>.flex-md-95 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-md-100 {
|
|
max-height: 100%;
|
|
}
|
|
|
|
.layout-column>.flex-md-100,
|
|
.layout-md-column>.flex-md-100,
|
|
.layout-md-row>.flex-md-100,
|
|
.layout-row>.flex-md-100 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-row>.flex-md-33 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 33.33%;
|
|
max-height: 100%;
|
|
max-width: 33.33%;
|
|
}
|
|
|
|
.layout-row>.flex-md-66 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 66.66%;
|
|
max-height: 100%;
|
|
max-width: 66.66%;
|
|
}
|
|
|
|
.layout-column>.flex-md-33 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 33.33%;
|
|
max-height: 33.33%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-column>.flex-md-66 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 66.66%;
|
|
max-height: 66.66%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-md-row>.flex-md-33 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 33.33%;
|
|
}
|
|
|
|
.layout-md-row>.flex-md-66 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 66.66%;
|
|
}
|
|
|
|
.layout-md-row>.flex {
|
|
min-width: 0;
|
|
}
|
|
|
|
.layout-md-column>.flex-md-33 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 33.33%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-md-column>.flex-md-66 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 66.66%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-md-column>.flex {
|
|
min-height: 0;
|
|
}
|
|
|
|
.layout-md,
|
|
.layout-md-column,
|
|
.layout-md-row {
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
}
|
|
|
|
.layout-md-column {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.layout-md-row {
|
|
flex-direction: row;
|
|
}
|
|
}
|
|
|
|
@media (min-width:1280px) {
|
|
.flex-order-gt-md--20 {
|
|
order: -20;
|
|
}
|
|
|
|
.flex-order-gt-md--19 {
|
|
order: -19;
|
|
}
|
|
|
|
.flex-order-gt-md--18 {
|
|
order: -18;
|
|
}
|
|
|
|
.flex-order-gt-md--17 {
|
|
order: -17;
|
|
}
|
|
|
|
.flex-order-gt-md--16 {
|
|
order: -16;
|
|
}
|
|
|
|
.flex-order-gt-md--15 {
|
|
order: -15;
|
|
}
|
|
|
|
.flex-order-gt-md--14 {
|
|
order: -14;
|
|
}
|
|
|
|
.flex-order-gt-md--13 {
|
|
order: -13;
|
|
}
|
|
|
|
.flex-order-gt-md--12 {
|
|
order: -12;
|
|
}
|
|
|
|
.flex-order-gt-md--11 {
|
|
order: -11;
|
|
}
|
|
|
|
.flex-order-gt-md--10 {
|
|
order: -10;
|
|
}
|
|
|
|
.flex-order-gt-md--9 {
|
|
order: -9;
|
|
}
|
|
|
|
.flex-order-gt-md--8 {
|
|
order: -8;
|
|
}
|
|
|
|
.flex-order-gt-md--7 {
|
|
order: -7;
|
|
}
|
|
|
|
.flex-order-gt-md--6 {
|
|
order: -6;
|
|
}
|
|
|
|
.flex-order-gt-md--5 {
|
|
order: -5;
|
|
}
|
|
|
|
.flex-order-gt-md--4 {
|
|
order: -4;
|
|
}
|
|
|
|
.flex-order-gt-md--3 {
|
|
order: -3;
|
|
}
|
|
|
|
.flex-order-gt-md--2 {
|
|
order: -2;
|
|
}
|
|
|
|
.flex-order-gt-md--1 {
|
|
order: -1;
|
|
}
|
|
|
|
.flex-order-gt-md-0 {
|
|
order: 0;
|
|
}
|
|
|
|
.flex-order-gt-md-1 {
|
|
order: 1;
|
|
}
|
|
|
|
.flex-order-gt-md-2 {
|
|
order: 2;
|
|
}
|
|
|
|
.flex-order-gt-md-3 {
|
|
order: 3;
|
|
}
|
|
|
|
.flex-order-gt-md-4 {
|
|
order: 4;
|
|
}
|
|
|
|
.flex-order-gt-md-5 {
|
|
order: 5;
|
|
}
|
|
|
|
.flex-order-gt-md-6 {
|
|
order: 6;
|
|
}
|
|
|
|
.flex-order-gt-md-7 {
|
|
order: 7;
|
|
}
|
|
|
|
.flex-order-gt-md-8 {
|
|
order: 8;
|
|
}
|
|
|
|
.flex-order-gt-md-9 {
|
|
order: 9;
|
|
}
|
|
|
|
.flex-order-gt-md-10 {
|
|
order: 10;
|
|
}
|
|
|
|
.flex-order-gt-md-11 {
|
|
order: 11;
|
|
}
|
|
|
|
.flex-order-gt-md-12 {
|
|
order: 12;
|
|
}
|
|
|
|
.flex-order-gt-md-13 {
|
|
order: 13;
|
|
}
|
|
|
|
.flex-order-gt-md-14 {
|
|
order: 14;
|
|
}
|
|
|
|
.flex-order-gt-md-15 {
|
|
order: 15;
|
|
}
|
|
|
|
.flex-order-gt-md-16 {
|
|
order: 16;
|
|
}
|
|
|
|
.flex-order-gt-md-17 {
|
|
order: 17;
|
|
}
|
|
|
|
.flex-order-gt-md-18 {
|
|
order: 18;
|
|
}
|
|
|
|
.flex-order-gt-md-19 {
|
|
order: 19;
|
|
}
|
|
|
|
.flex-order-gt-md-20 {
|
|
order: 20;
|
|
}
|
|
|
|
.flex-offset-gt-md-0,
|
|
.layout-margin .flex-offset-gt-md-0,
|
|
.layout-margin .offset-gt-md-0,
|
|
.offset-gt-md-0 {
|
|
margin-left: 0;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-md-0,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-md-0,
|
|
[dir=rtl] .layout-margin .offset-gt-md-0,
|
|
[dir=rtl] .offset-gt-md-0 {
|
|
margin-left: auto;
|
|
margin-right: 0;
|
|
}
|
|
|
|
.flex-offset-gt-md-5,
|
|
.layout-margin .flex-offset-gt-md-5,
|
|
.layout-margin .offset-gt-md-5,
|
|
.offset-gt-md-5 {
|
|
margin-left: 5%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-md-5,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-md-5,
|
|
[dir=rtl] .layout-margin .offset-gt-md-5,
|
|
[dir=rtl] .offset-gt-md-5 {
|
|
margin-left: auto;
|
|
margin-right: 5%;
|
|
}
|
|
|
|
.flex-offset-gt-md-10,
|
|
.layout-margin .flex-offset-gt-md-10,
|
|
.layout-margin .offset-gt-md-10,
|
|
.offset-gt-md-10 {
|
|
margin-left: 10%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-md-10,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-md-10,
|
|
[dir=rtl] .layout-margin .offset-gt-md-10,
|
|
[dir=rtl] .offset-gt-md-10 {
|
|
margin-left: auto;
|
|
margin-right: 10%;
|
|
}
|
|
|
|
.flex-offset-gt-md-15,
|
|
.layout-margin .flex-offset-gt-md-15,
|
|
.layout-margin .offset-gt-md-15,
|
|
.offset-gt-md-15 {
|
|
margin-left: 15%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-md-15,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-md-15,
|
|
[dir=rtl] .layout-margin .offset-gt-md-15,
|
|
[dir=rtl] .offset-gt-md-15 {
|
|
margin-left: auto;
|
|
margin-right: 15%;
|
|
}
|
|
|
|
.flex-offset-gt-md-20,
|
|
.layout-margin .flex-offset-gt-md-20,
|
|
.layout-margin .offset-gt-md-20,
|
|
.offset-gt-md-20 {
|
|
margin-left: 20%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-md-20,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-md-20,
|
|
[dir=rtl] .layout-margin .offset-gt-md-20,
|
|
[dir=rtl] .offset-gt-md-20 {
|
|
margin-left: auto;
|
|
margin-right: 20%;
|
|
}
|
|
|
|
.flex-offset-gt-md-25,
|
|
.layout-margin .flex-offset-gt-md-25,
|
|
.layout-margin .offset-gt-md-25,
|
|
.offset-gt-md-25 {
|
|
margin-left: 25%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-md-25,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-md-25,
|
|
[dir=rtl] .layout-margin .offset-gt-md-25,
|
|
[dir=rtl] .offset-gt-md-25 {
|
|
margin-left: auto;
|
|
margin-right: 25%;
|
|
}
|
|
|
|
.flex-offset-gt-md-30,
|
|
.layout-margin .flex-offset-gt-md-30,
|
|
.layout-margin .offset-gt-md-30,
|
|
.offset-gt-md-30 {
|
|
margin-left: 30%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-md-30,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-md-30,
|
|
[dir=rtl] .layout-margin .offset-gt-md-30,
|
|
[dir=rtl] .offset-gt-md-30 {
|
|
margin-left: auto;
|
|
margin-right: 30%;
|
|
}
|
|
|
|
.flex-offset-gt-md-35,
|
|
.layout-margin .flex-offset-gt-md-35,
|
|
.layout-margin .offset-gt-md-35,
|
|
.offset-gt-md-35 {
|
|
margin-left: 35%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-md-35,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-md-35,
|
|
[dir=rtl] .layout-margin .offset-gt-md-35,
|
|
[dir=rtl] .offset-gt-md-35 {
|
|
margin-left: auto;
|
|
margin-right: 35%;
|
|
}
|
|
|
|
.flex-offset-gt-md-40,
|
|
.layout-margin .flex-offset-gt-md-40,
|
|
.layout-margin .offset-gt-md-40,
|
|
.offset-gt-md-40 {
|
|
margin-left: 40%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-md-40,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-md-40,
|
|
[dir=rtl] .layout-margin .offset-gt-md-40,
|
|
[dir=rtl] .offset-gt-md-40 {
|
|
margin-left: auto;
|
|
margin-right: 40%;
|
|
}
|
|
|
|
.flex-offset-gt-md-45,
|
|
.layout-margin .flex-offset-gt-md-45,
|
|
.layout-margin .offset-gt-md-45,
|
|
.offset-gt-md-45 {
|
|
margin-left: 45%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-md-45,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-md-45,
|
|
[dir=rtl] .layout-margin .offset-gt-md-45,
|
|
[dir=rtl] .offset-gt-md-45 {
|
|
margin-left: auto;
|
|
margin-right: 45%;
|
|
}
|
|
|
|
.flex-offset-gt-md-50,
|
|
.layout-margin .flex-offset-gt-md-50,
|
|
.layout-margin .offset-gt-md-50,
|
|
.offset-gt-md-50 {
|
|
margin-left: 50%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-md-50,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-md-50,
|
|
[dir=rtl] .layout-margin .offset-gt-md-50,
|
|
[dir=rtl] .offset-gt-md-50 {
|
|
margin-left: auto;
|
|
margin-right: 50%;
|
|
}
|
|
|
|
.flex-offset-gt-md-55,
|
|
.layout-margin .flex-offset-gt-md-55,
|
|
.layout-margin .offset-gt-md-55,
|
|
.offset-gt-md-55 {
|
|
margin-left: 55%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-md-55,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-md-55,
|
|
[dir=rtl] .layout-margin .offset-gt-md-55,
|
|
[dir=rtl] .offset-gt-md-55 {
|
|
margin-left: auto;
|
|
margin-right: 55%;
|
|
}
|
|
|
|
.flex-offset-gt-md-60,
|
|
.layout-margin .flex-offset-gt-md-60,
|
|
.layout-margin .offset-gt-md-60,
|
|
.offset-gt-md-60 {
|
|
margin-left: 60%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-md-60,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-md-60,
|
|
[dir=rtl] .layout-margin .offset-gt-md-60,
|
|
[dir=rtl] .offset-gt-md-60 {
|
|
margin-left: auto;
|
|
margin-right: 60%;
|
|
}
|
|
|
|
.flex-offset-gt-md-65,
|
|
.layout-margin .flex-offset-gt-md-65,
|
|
.layout-margin .offset-gt-md-65,
|
|
.offset-gt-md-65 {
|
|
margin-left: 65%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-md-65,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-md-65,
|
|
[dir=rtl] .layout-margin .offset-gt-md-65,
|
|
[dir=rtl] .offset-gt-md-65 {
|
|
margin-left: auto;
|
|
margin-right: 65%;
|
|
}
|
|
|
|
.flex-offset-gt-md-70,
|
|
.layout-margin .flex-offset-gt-md-70,
|
|
.layout-margin .offset-gt-md-70,
|
|
.offset-gt-md-70 {
|
|
margin-left: 70%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-md-70,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-md-70,
|
|
[dir=rtl] .layout-margin .offset-gt-md-70,
|
|
[dir=rtl] .offset-gt-md-70 {
|
|
margin-left: auto;
|
|
margin-right: 70%;
|
|
}
|
|
|
|
.flex-offset-gt-md-75,
|
|
.layout-margin .flex-offset-gt-md-75,
|
|
.layout-margin .offset-gt-md-75,
|
|
.offset-gt-md-75 {
|
|
margin-left: 75%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-md-75,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-md-75,
|
|
[dir=rtl] .layout-margin .offset-gt-md-75,
|
|
[dir=rtl] .offset-gt-md-75 {
|
|
margin-left: auto;
|
|
margin-right: 75%;
|
|
}
|
|
|
|
.flex-offset-gt-md-80,
|
|
.layout-margin .flex-offset-gt-md-80,
|
|
.layout-margin .offset-gt-md-80,
|
|
.offset-gt-md-80 {
|
|
margin-left: 80%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-md-80,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-md-80,
|
|
[dir=rtl] .layout-margin .offset-gt-md-80,
|
|
[dir=rtl] .offset-gt-md-80 {
|
|
margin-left: auto;
|
|
margin-right: 80%;
|
|
}
|
|
|
|
.flex-offset-gt-md-85,
|
|
.layout-margin .flex-offset-gt-md-85,
|
|
.layout-margin .offset-gt-md-85,
|
|
.offset-gt-md-85 {
|
|
margin-left: 85%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-md-85,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-md-85,
|
|
[dir=rtl] .layout-margin .offset-gt-md-85,
|
|
[dir=rtl] .offset-gt-md-85 {
|
|
margin-left: auto;
|
|
margin-right: 85%;
|
|
}
|
|
|
|
.flex-offset-gt-md-90,
|
|
.layout-margin .flex-offset-gt-md-90,
|
|
.layout-margin .offset-gt-md-90,
|
|
.offset-gt-md-90 {
|
|
margin-left: 90%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-md-90,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-md-90,
|
|
[dir=rtl] .layout-margin .offset-gt-md-90,
|
|
[dir=rtl] .offset-gt-md-90 {
|
|
margin-left: auto;
|
|
margin-right: 90%;
|
|
}
|
|
|
|
.flex-offset-gt-md-95,
|
|
.layout-margin .flex-offset-gt-md-95,
|
|
.layout-margin .offset-gt-md-95,
|
|
.offset-gt-md-95 {
|
|
margin-left: 95%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-md-95,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-md-95,
|
|
[dir=rtl] .layout-margin .offset-gt-md-95,
|
|
[dir=rtl] .offset-gt-md-95 {
|
|
margin-left: auto;
|
|
margin-right: 95%;
|
|
}
|
|
|
|
.flex-offset-gt-md-33,
|
|
.layout-margin .flex-offset-gt-md-33,
|
|
.layout-margin .offset-gt-md-33,
|
|
.offset-gt-md-33 {
|
|
margin-left: 33.3333333333%;
|
|
}
|
|
|
|
.flex-offset-gt-md-66,
|
|
.layout-margin .flex-offset-gt-md-66,
|
|
.layout-margin .offset-gt-md-66,
|
|
.offset-gt-md-66 {
|
|
margin-left: 66.6666666667%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-md-66,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-md-66,
|
|
[dir=rtl] .layout-margin .offset-gt-md-66,
|
|
[dir=rtl] .offset-gt-md-66 {
|
|
margin-left: auto;
|
|
margin-right: 66.6666666667%;
|
|
}
|
|
|
|
.layout-align-gt-md,
|
|
.layout-align-gt-md-start-stretch {
|
|
align-content: stretch;
|
|
align-items: stretch;
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.layout-align-gt-md-start,
|
|
.layout-align-gt-md-start-center,
|
|
.layout-align-gt-md-start-end,
|
|
.layout-align-gt-md-start-start,
|
|
.layout-align-gt-md-start-stretch {
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.layout-align-gt-md-center,
|
|
.layout-align-gt-md-center-center,
|
|
.layout-align-gt-md-center-end,
|
|
.layout-align-gt-md-center-start,
|
|
.layout-align-gt-md-center-stretch {
|
|
justify-content: center;
|
|
}
|
|
|
|
.layout-align-gt-md-end,
|
|
.layout-align-gt-md-end-center,
|
|
.layout-align-gt-md-end-end,
|
|
.layout-align-gt-md-end-start,
|
|
.layout-align-gt-md-end-stretch {
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.layout-align-gt-md-space-around,
|
|
.layout-align-gt-md-space-around-center,
|
|
.layout-align-gt-md-space-around-end,
|
|
.layout-align-gt-md-space-around-start,
|
|
.layout-align-gt-md-space-around-stretch {
|
|
justify-content: space-around;
|
|
}
|
|
|
|
.layout-align-gt-md-space-between,
|
|
.layout-align-gt-md-space-between-center,
|
|
.layout-align-gt-md-space-between-end,
|
|
.layout-align-gt-md-space-between-start,
|
|
.layout-align-gt-md-space-between-stretch {
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.layout-align-gt-md-center-start,
|
|
.layout-align-gt-md-end-start,
|
|
.layout-align-gt-md-space-around-start,
|
|
.layout-align-gt-md-space-between-start,
|
|
.layout-align-gt-md-start-start {
|
|
align-content: flex-start;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.layout-align-gt-md-center-center,
|
|
.layout-align-gt-md-end-center,
|
|
.layout-align-gt-md-space-around-center,
|
|
.layout-align-gt-md-space-between-center,
|
|
.layout-align-gt-md-start-center {
|
|
align-content: center;
|
|
align-items: center;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-align-gt-md-center-center>*,
|
|
.layout-align-gt-md-end-center>*,
|
|
.layout-align-gt-md-space-around-center>*,
|
|
.layout-align-gt-md-space-between-center>*,
|
|
.layout-align-gt-md-start-center>* {
|
|
box-sizing: border-box;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-align-gt-md-center-end,
|
|
.layout-align-gt-md-end-end,
|
|
.layout-align-gt-md-space-around-end,
|
|
.layout-align-gt-md-space-between-end,
|
|
.layout-align-gt-md-start-end {
|
|
align-content: flex-end;
|
|
align-items: flex-end;
|
|
}
|
|
|
|
.layout-align-gt-md-center-stretch,
|
|
.layout-align-gt-md-end-stretch,
|
|
.layout-align-gt-md-space-around-stretch,
|
|
.layout-align-gt-md-space-between-stretch,
|
|
.layout-align-gt-md-start-stretch {
|
|
align-content: stretch;
|
|
align-items: stretch;
|
|
}
|
|
|
|
.flex-gt-md {
|
|
box-sizing: border-box;
|
|
flex: 1;
|
|
}
|
|
|
|
.flex-gt-md-grow {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
}
|
|
|
|
.flex-gt-md-initial {
|
|
box-sizing: border-box;
|
|
flex: 0 1 auto;
|
|
}
|
|
|
|
.flex-gt-md-auto {
|
|
box-sizing: border-box;
|
|
flex: 1 1 auto;
|
|
}
|
|
|
|
.flex-gt-md-none {
|
|
box-sizing: border-box;
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
.flex-gt-md-noshrink {
|
|
box-sizing: border-box;
|
|
flex: 1 0 auto;
|
|
}
|
|
|
|
.flex-gt-md-nogrow {
|
|
box-sizing: border-box;
|
|
flex: 0 1 auto;
|
|
}
|
|
|
|
.flex-gt-md-0,
|
|
.layout-row>.flex-gt-md-0 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 0;
|
|
}
|
|
|
|
.layout-row>.flex-gt-md-0 {
|
|
min-width: 0;
|
|
}
|
|
|
|
.layout-column>.flex-gt-md-0 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 0%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-md-row>.flex-gt-md-0 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 0;
|
|
min-width: 0;
|
|
}
|
|
|
|
.layout-gt-md-column>.flex-gt-md-0 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 0%;
|
|
max-width: 100%;
|
|
min-height: 0;
|
|
}
|
|
|
|
.flex-gt-md-5,
|
|
.layout-row>.flex-gt-md-5 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 5%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-md-5 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 5%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-md-row>.flex-gt-md-5 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 5%;
|
|
}
|
|
|
|
.layout-gt-md-column>.flex-gt-md-5 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 5%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-md-10,
|
|
.layout-row>.flex-gt-md-10 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 10%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-md-10 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 10%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-md-row>.flex-gt-md-10 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 10%;
|
|
}
|
|
|
|
.layout-gt-md-column>.flex-gt-md-10 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 10%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-md-15,
|
|
.layout-row>.flex-gt-md-15 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 15%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-md-15 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 15%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-md-row>.flex-gt-md-15 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 15%;
|
|
}
|
|
|
|
.layout-gt-md-column>.flex-gt-md-15 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 15%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-md-20,
|
|
.layout-row>.flex-gt-md-20 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 20%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-md-20 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 20%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-md-row>.flex-gt-md-20 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 20%;
|
|
}
|
|
|
|
.layout-gt-md-column>.flex-gt-md-20 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 20%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-md-25,
|
|
.layout-row>.flex-gt-md-25 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 25%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-md-25 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 25%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-md-row>.flex-gt-md-25 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 25%;
|
|
}
|
|
|
|
.layout-gt-md-column>.flex-gt-md-25 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 25%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-md-30,
|
|
.layout-row>.flex-gt-md-30 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 30%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-md-30 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 30%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-md-row>.flex-gt-md-30 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 30%;
|
|
}
|
|
|
|
.layout-gt-md-column>.flex-gt-md-30 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 30%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-md-35,
|
|
.layout-row>.flex-gt-md-35 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 35%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-md-35 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 35%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-md-row>.flex-gt-md-35 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 35%;
|
|
}
|
|
|
|
.layout-gt-md-column>.flex-gt-md-35 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 35%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-md-40,
|
|
.layout-row>.flex-gt-md-40 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 40%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-md-40 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 40%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-md-row>.flex-gt-md-40 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 40%;
|
|
}
|
|
|
|
.layout-gt-md-column>.flex-gt-md-40 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 40%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-md-45,
|
|
.layout-row>.flex-gt-md-45 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 45%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-md-45 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 45%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-md-row>.flex-gt-md-45 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 45%;
|
|
}
|
|
|
|
.layout-gt-md-column>.flex-gt-md-45 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 45%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-md-50,
|
|
.layout-row>.flex-gt-md-50 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 50%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-md-50 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 50%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-md-row>.flex-gt-md-50 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 50%;
|
|
}
|
|
|
|
.layout-gt-md-column>.flex-gt-md-50 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 50%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-md-55,
|
|
.layout-row>.flex-gt-md-55 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 55%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-md-55 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 55%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-md-row>.flex-gt-md-55 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 55%;
|
|
}
|
|
|
|
.layout-gt-md-column>.flex-gt-md-55 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 55%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-md-60,
|
|
.layout-row>.flex-gt-md-60 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 60%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-md-60 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 60%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-md-row>.flex-gt-md-60 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 60%;
|
|
}
|
|
|
|
.layout-gt-md-column>.flex-gt-md-60 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 60%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-md-65,
|
|
.layout-row>.flex-gt-md-65 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 65%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-md-65 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 65%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-md-row>.flex-gt-md-65 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 65%;
|
|
}
|
|
|
|
.layout-gt-md-column>.flex-gt-md-65 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 65%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-md-70,
|
|
.layout-row>.flex-gt-md-70 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 70%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-md-70 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 70%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-md-row>.flex-gt-md-70 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 70%;
|
|
}
|
|
|
|
.layout-gt-md-column>.flex-gt-md-70 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 70%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-md-75,
|
|
.layout-row>.flex-gt-md-75 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 75%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-md-75 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 75%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-md-row>.flex-gt-md-75 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 75%;
|
|
}
|
|
|
|
.layout-gt-md-column>.flex-gt-md-75 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 75%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-md-80,
|
|
.layout-row>.flex-gt-md-80 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 80%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-md-80 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 80%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-md-row>.flex-gt-md-80 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 80%;
|
|
}
|
|
|
|
.layout-gt-md-column>.flex-gt-md-80 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 80%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-md-85,
|
|
.layout-row>.flex-gt-md-85 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 85%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-md-85 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 85%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-md-row>.flex-gt-md-85 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 85%;
|
|
}
|
|
|
|
.layout-gt-md-column>.flex-gt-md-85 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 85%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-md-90,
|
|
.layout-row>.flex-gt-md-90 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 90%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-md-90 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 90%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-md-row>.flex-gt-md-90 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 90%;
|
|
}
|
|
|
|
.layout-gt-md-column>.flex-gt-md-90 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 90%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-md-95,
|
|
.layout-row>.flex-gt-md-95 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 95%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-md-95 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 95%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-md-row>.flex-gt-md-95 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 95%;
|
|
}
|
|
|
|
.layout-gt-md-column>.flex-gt-md-95 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 95%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-md-100,
|
|
.layout-column>.flex-gt-md-100,
|
|
.layout-gt-md-column>.flex-gt-md-100,
|
|
.layout-gt-md-row>.flex-gt-md-100,
|
|
.layout-row>.flex-gt-md-100 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-row>.flex-gt-md-33 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 33.33%;
|
|
max-height: 100%;
|
|
max-width: 33.33%;
|
|
}
|
|
|
|
.layout-row>.flex-gt-md-66 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 66.66%;
|
|
max-height: 100%;
|
|
max-width: 66.66%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-md-33 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 33.33%;
|
|
max-height: 33.33%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-md-66 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 66.66%;
|
|
max-height: 66.66%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-md-row>.flex-gt-md-33 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 33.33%;
|
|
}
|
|
|
|
.layout-gt-md-row>.flex-gt-md-66 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 66.66%;
|
|
}
|
|
|
|
.layout-gt-md-row>.flex {
|
|
min-width: 0;
|
|
}
|
|
|
|
.layout-gt-md-column>.flex-gt-md-33 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 33.33%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-md-column>.flex-gt-md-66 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 66.66%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-md-column>.flex {
|
|
min-height: 0;
|
|
}
|
|
|
|
.layout-gt-md,
|
|
.layout-gt-md-column,
|
|
.layout-gt-md-row {
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
}
|
|
|
|
.layout-gt-md-column {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.layout-gt-md-row {
|
|
flex-direction: row;
|
|
}
|
|
}
|
|
|
|
@media (min-width:1280px) and (max-width:1919px) {
|
|
.hide-gt-md:not(.show-gt-xs):not(.show-gt-sm):not(.show-gt-md):not(.show-lg):not(.show),
|
|
.hide-gt-sm:not(.show-gt-xs):not(.show-gt-sm):not(.show-gt-md):not(.show-lg):not(.show),
|
|
.hide-gt-xs:not(.show-gt-xs):not(.show-gt-sm):not(.show-gt-md):not(.show-lg):not(.show),
|
|
.hide-lg:not(.show-lg):not(.show-gt-md):not(.show-gt-sm):not(.show-gt-xs):not(.show),
|
|
.hide:not(.show-gt-xs):not(.show-gt-sm):not(.show-gt-md):not(.show-lg):not(.show) {
|
|
display: none;
|
|
}
|
|
|
|
.flex-order-lg--20 {
|
|
order: -20;
|
|
}
|
|
|
|
.flex-order-lg--19 {
|
|
order: -19;
|
|
}
|
|
|
|
.flex-order-lg--18 {
|
|
order: -18;
|
|
}
|
|
|
|
.flex-order-lg--17 {
|
|
order: -17;
|
|
}
|
|
|
|
.flex-order-lg--16 {
|
|
order: -16;
|
|
}
|
|
|
|
.flex-order-lg--15 {
|
|
order: -15;
|
|
}
|
|
|
|
.flex-order-lg--14 {
|
|
order: -14;
|
|
}
|
|
|
|
.flex-order-lg--13 {
|
|
order: -13;
|
|
}
|
|
|
|
.flex-order-lg--12 {
|
|
order: -12;
|
|
}
|
|
|
|
.flex-order-lg--11 {
|
|
order: -11;
|
|
}
|
|
|
|
.flex-order-lg--10 {
|
|
order: -10;
|
|
}
|
|
|
|
.flex-order-lg--9 {
|
|
order: -9;
|
|
}
|
|
|
|
.flex-order-lg--8 {
|
|
order: -8;
|
|
}
|
|
|
|
.flex-order-lg--7 {
|
|
order: -7;
|
|
}
|
|
|
|
.flex-order-lg--6 {
|
|
order: -6;
|
|
}
|
|
|
|
.flex-order-lg--5 {
|
|
order: -5;
|
|
}
|
|
|
|
.flex-order-lg--4 {
|
|
order: -4;
|
|
}
|
|
|
|
.flex-order-lg--3 {
|
|
order: -3;
|
|
}
|
|
|
|
.flex-order-lg--2 {
|
|
order: -2;
|
|
}
|
|
|
|
.flex-order-lg--1 {
|
|
order: -1;
|
|
}
|
|
|
|
.flex-order-lg-0 {
|
|
order: 0;
|
|
}
|
|
|
|
.flex-order-lg-1 {
|
|
order: 1;
|
|
}
|
|
|
|
.flex-order-lg-2 {
|
|
order: 2;
|
|
}
|
|
|
|
.flex-order-lg-3 {
|
|
order: 3;
|
|
}
|
|
|
|
.flex-order-lg-4 {
|
|
order: 4;
|
|
}
|
|
|
|
.flex-order-lg-5 {
|
|
order: 5;
|
|
}
|
|
|
|
.flex-order-lg-6 {
|
|
order: 6;
|
|
}
|
|
|
|
.flex-order-lg-7 {
|
|
order: 7;
|
|
}
|
|
|
|
.flex-order-lg-8 {
|
|
order: 8;
|
|
}
|
|
|
|
.flex-order-lg-9 {
|
|
order: 9;
|
|
}
|
|
|
|
.flex-order-lg-10 {
|
|
order: 10;
|
|
}
|
|
|
|
.flex-order-lg-11 {
|
|
order: 11;
|
|
}
|
|
|
|
.flex-order-lg-12 {
|
|
order: 12;
|
|
}
|
|
|
|
.flex-order-lg-13 {
|
|
order: 13;
|
|
}
|
|
|
|
.flex-order-lg-14 {
|
|
order: 14;
|
|
}
|
|
|
|
.flex-order-lg-15 {
|
|
order: 15;
|
|
}
|
|
|
|
.flex-order-lg-16 {
|
|
order: 16;
|
|
}
|
|
|
|
.flex-order-lg-17 {
|
|
order: 17;
|
|
}
|
|
|
|
.flex-order-lg-18 {
|
|
order: 18;
|
|
}
|
|
|
|
.flex-order-lg-19 {
|
|
order: 19;
|
|
}
|
|
|
|
.flex-order-lg-20 {
|
|
order: 20;
|
|
}
|
|
|
|
.flex-offset-lg-0,
|
|
.layout-margin .flex-offset-lg-0,
|
|
.layout-margin .offset-lg-0,
|
|
.offset-lg-0 {
|
|
margin-left: 0;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-lg-0,
|
|
[dir=rtl] .layout-margin .flex-offset-lg-0,
|
|
[dir=rtl] .layout-margin .offset-lg-0,
|
|
[dir=rtl] .offset-lg-0 {
|
|
margin-left: auto;
|
|
margin-right: 0;
|
|
}
|
|
|
|
.flex-offset-lg-5,
|
|
.layout-margin .flex-offset-lg-5,
|
|
.layout-margin .offset-lg-5,
|
|
.offset-lg-5 {
|
|
margin-left: 5%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-lg-5,
|
|
[dir=rtl] .layout-margin .flex-offset-lg-5,
|
|
[dir=rtl] .layout-margin .offset-lg-5,
|
|
[dir=rtl] .offset-lg-5 {
|
|
margin-left: auto;
|
|
margin-right: 5%;
|
|
}
|
|
|
|
.flex-offset-lg-10,
|
|
.layout-margin .flex-offset-lg-10,
|
|
.layout-margin .offset-lg-10,
|
|
.offset-lg-10 {
|
|
margin-left: 10%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-lg-10,
|
|
[dir=rtl] .layout-margin .flex-offset-lg-10,
|
|
[dir=rtl] .layout-margin .offset-lg-10,
|
|
[dir=rtl] .offset-lg-10 {
|
|
margin-left: auto;
|
|
margin-right: 10%;
|
|
}
|
|
|
|
.flex-offset-lg-15,
|
|
.layout-margin .flex-offset-lg-15,
|
|
.layout-margin .offset-lg-15,
|
|
.offset-lg-15 {
|
|
margin-left: 15%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-lg-15,
|
|
[dir=rtl] .layout-margin .flex-offset-lg-15,
|
|
[dir=rtl] .layout-margin .offset-lg-15,
|
|
[dir=rtl] .offset-lg-15 {
|
|
margin-left: auto;
|
|
margin-right: 15%;
|
|
}
|
|
|
|
.flex-offset-lg-20,
|
|
.layout-margin .flex-offset-lg-20,
|
|
.layout-margin .offset-lg-20,
|
|
.offset-lg-20 {
|
|
margin-left: 20%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-lg-20,
|
|
[dir=rtl] .layout-margin .flex-offset-lg-20,
|
|
[dir=rtl] .layout-margin .offset-lg-20,
|
|
[dir=rtl] .offset-lg-20 {
|
|
margin-left: auto;
|
|
margin-right: 20%;
|
|
}
|
|
|
|
.flex-offset-lg-25,
|
|
.layout-margin .flex-offset-lg-25,
|
|
.layout-margin .offset-lg-25,
|
|
.offset-lg-25 {
|
|
margin-left: 25%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-lg-25,
|
|
[dir=rtl] .layout-margin .flex-offset-lg-25,
|
|
[dir=rtl] .layout-margin .offset-lg-25,
|
|
[dir=rtl] .offset-lg-25 {
|
|
margin-left: auto;
|
|
margin-right: 25%;
|
|
}
|
|
|
|
.flex-offset-lg-30,
|
|
.layout-margin .flex-offset-lg-30,
|
|
.layout-margin .offset-lg-30,
|
|
.offset-lg-30 {
|
|
margin-left: 30%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-lg-30,
|
|
[dir=rtl] .layout-margin .flex-offset-lg-30,
|
|
[dir=rtl] .layout-margin .offset-lg-30,
|
|
[dir=rtl] .offset-lg-30 {
|
|
margin-left: auto;
|
|
margin-right: 30%;
|
|
}
|
|
|
|
.flex-offset-lg-35,
|
|
.layout-margin .flex-offset-lg-35,
|
|
.layout-margin .offset-lg-35,
|
|
.offset-lg-35 {
|
|
margin-left: 35%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-lg-35,
|
|
[dir=rtl] .layout-margin .flex-offset-lg-35,
|
|
[dir=rtl] .layout-margin .offset-lg-35,
|
|
[dir=rtl] .offset-lg-35 {
|
|
margin-left: auto;
|
|
margin-right: 35%;
|
|
}
|
|
|
|
.flex-offset-lg-40,
|
|
.layout-margin .flex-offset-lg-40,
|
|
.layout-margin .offset-lg-40,
|
|
.offset-lg-40 {
|
|
margin-left: 40%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-lg-40,
|
|
[dir=rtl] .layout-margin .flex-offset-lg-40,
|
|
[dir=rtl] .layout-margin .offset-lg-40,
|
|
[dir=rtl] .offset-lg-40 {
|
|
margin-left: auto;
|
|
margin-right: 40%;
|
|
}
|
|
|
|
.flex-offset-lg-45,
|
|
.layout-margin .flex-offset-lg-45,
|
|
.layout-margin .offset-lg-45,
|
|
.offset-lg-45 {
|
|
margin-left: 45%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-lg-45,
|
|
[dir=rtl] .layout-margin .flex-offset-lg-45,
|
|
[dir=rtl] .layout-margin .offset-lg-45,
|
|
[dir=rtl] .offset-lg-45 {
|
|
margin-left: auto;
|
|
margin-right: 45%;
|
|
}
|
|
|
|
.flex-offset-lg-50,
|
|
.layout-margin .flex-offset-lg-50,
|
|
.layout-margin .offset-lg-50,
|
|
.offset-lg-50 {
|
|
margin-left: 50%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-lg-50,
|
|
[dir=rtl] .layout-margin .flex-offset-lg-50,
|
|
[dir=rtl] .layout-margin .offset-lg-50,
|
|
[dir=rtl] .offset-lg-50 {
|
|
margin-left: auto;
|
|
margin-right: 50%;
|
|
}
|
|
|
|
.flex-offset-lg-55,
|
|
.layout-margin .flex-offset-lg-55,
|
|
.layout-margin .offset-lg-55,
|
|
.offset-lg-55 {
|
|
margin-left: 55%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-lg-55,
|
|
[dir=rtl] .layout-margin .flex-offset-lg-55,
|
|
[dir=rtl] .layout-margin .offset-lg-55,
|
|
[dir=rtl] .offset-lg-55 {
|
|
margin-left: auto;
|
|
margin-right: 55%;
|
|
}
|
|
|
|
.flex-offset-lg-60,
|
|
.layout-margin .flex-offset-lg-60,
|
|
.layout-margin .offset-lg-60,
|
|
.offset-lg-60 {
|
|
margin-left: 60%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-lg-60,
|
|
[dir=rtl] .layout-margin .flex-offset-lg-60,
|
|
[dir=rtl] .layout-margin .offset-lg-60,
|
|
[dir=rtl] .offset-lg-60 {
|
|
margin-left: auto;
|
|
margin-right: 60%;
|
|
}
|
|
|
|
.flex-offset-lg-65,
|
|
.layout-margin .flex-offset-lg-65,
|
|
.layout-margin .offset-lg-65,
|
|
.offset-lg-65 {
|
|
margin-left: 65%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-lg-65,
|
|
[dir=rtl] .layout-margin .flex-offset-lg-65,
|
|
[dir=rtl] .layout-margin .offset-lg-65,
|
|
[dir=rtl] .offset-lg-65 {
|
|
margin-left: auto;
|
|
margin-right: 65%;
|
|
}
|
|
|
|
.flex-offset-lg-70,
|
|
.layout-margin .flex-offset-lg-70,
|
|
.layout-margin .offset-lg-70,
|
|
.offset-lg-70 {
|
|
margin-left: 70%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-lg-70,
|
|
[dir=rtl] .layout-margin .flex-offset-lg-70,
|
|
[dir=rtl] .layout-margin .offset-lg-70,
|
|
[dir=rtl] .offset-lg-70 {
|
|
margin-left: auto;
|
|
margin-right: 70%;
|
|
}
|
|
|
|
.flex-offset-lg-75,
|
|
.layout-margin .flex-offset-lg-75,
|
|
.layout-margin .offset-lg-75,
|
|
.offset-lg-75 {
|
|
margin-left: 75%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-lg-75,
|
|
[dir=rtl] .layout-margin .flex-offset-lg-75,
|
|
[dir=rtl] .layout-margin .offset-lg-75,
|
|
[dir=rtl] .offset-lg-75 {
|
|
margin-left: auto;
|
|
margin-right: 75%;
|
|
}
|
|
|
|
.flex-offset-lg-80,
|
|
.layout-margin .flex-offset-lg-80,
|
|
.layout-margin .offset-lg-80,
|
|
.offset-lg-80 {
|
|
margin-left: 80%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-lg-80,
|
|
[dir=rtl] .layout-margin .flex-offset-lg-80,
|
|
[dir=rtl] .layout-margin .offset-lg-80,
|
|
[dir=rtl] .offset-lg-80 {
|
|
margin-left: auto;
|
|
margin-right: 80%;
|
|
}
|
|
|
|
.flex-offset-lg-85,
|
|
.layout-margin .flex-offset-lg-85,
|
|
.layout-margin .offset-lg-85,
|
|
.offset-lg-85 {
|
|
margin-left: 85%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-lg-85,
|
|
[dir=rtl] .layout-margin .flex-offset-lg-85,
|
|
[dir=rtl] .layout-margin .offset-lg-85,
|
|
[dir=rtl] .offset-lg-85 {
|
|
margin-left: auto;
|
|
margin-right: 85%;
|
|
}
|
|
|
|
.flex-offset-lg-90,
|
|
.layout-margin .flex-offset-lg-90,
|
|
.layout-margin .offset-lg-90,
|
|
.offset-lg-90 {
|
|
margin-left: 90%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-lg-90,
|
|
[dir=rtl] .layout-margin .flex-offset-lg-90,
|
|
[dir=rtl] .layout-margin .offset-lg-90,
|
|
[dir=rtl] .offset-lg-90 {
|
|
margin-left: auto;
|
|
margin-right: 90%;
|
|
}
|
|
|
|
.flex-offset-lg-95,
|
|
.layout-margin .flex-offset-lg-95,
|
|
.layout-margin .offset-lg-95,
|
|
.offset-lg-95 {
|
|
margin-left: 95%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-lg-95,
|
|
[dir=rtl] .layout-margin .flex-offset-lg-95,
|
|
[dir=rtl] .layout-margin .offset-lg-95,
|
|
[dir=rtl] .offset-lg-95 {
|
|
margin-left: auto;
|
|
margin-right: 95%;
|
|
}
|
|
|
|
.flex-offset-lg-33,
|
|
.layout-margin .flex-offset-lg-33,
|
|
.layout-margin .offset-lg-33,
|
|
.offset-lg-33 {
|
|
margin-left: 33.3333333333%;
|
|
}
|
|
|
|
.flex-offset-lg-66,
|
|
.layout-margin .flex-offset-lg-66,
|
|
.layout-margin .offset-lg-66,
|
|
.offset-lg-66 {
|
|
margin-left: 66.6666666667%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-lg-66,
|
|
[dir=rtl] .layout-margin .flex-offset-lg-66,
|
|
[dir=rtl] .layout-margin .offset-lg-66,
|
|
[dir=rtl] .offset-lg-66 {
|
|
margin-left: auto;
|
|
margin-right: 66.6666666667%;
|
|
}
|
|
|
|
.layout-align-lg,
|
|
.layout-align-lg-start-stretch {
|
|
align-content: stretch;
|
|
align-items: stretch;
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.layout-align-lg-start,
|
|
.layout-align-lg-start-center,
|
|
.layout-align-lg-start-end,
|
|
.layout-align-lg-start-start,
|
|
.layout-align-lg-start-stretch {
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.layout-align-lg-center,
|
|
.layout-align-lg-center-center,
|
|
.layout-align-lg-center-end,
|
|
.layout-align-lg-center-start,
|
|
.layout-align-lg-center-stretch {
|
|
justify-content: center;
|
|
}
|
|
|
|
.layout-align-lg-end,
|
|
.layout-align-lg-end-center,
|
|
.layout-align-lg-end-end,
|
|
.layout-align-lg-end-start,
|
|
.layout-align-lg-end-stretch {
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.layout-align-lg-space-around,
|
|
.layout-align-lg-space-around-center,
|
|
.layout-align-lg-space-around-end,
|
|
.layout-align-lg-space-around-start,
|
|
.layout-align-lg-space-around-stretch {
|
|
justify-content: space-around;
|
|
}
|
|
|
|
.layout-align-lg-space-between,
|
|
.layout-align-lg-space-between-center,
|
|
.layout-align-lg-space-between-end,
|
|
.layout-align-lg-space-between-start,
|
|
.layout-align-lg-space-between-stretch {
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.layout-align-lg-center-start,
|
|
.layout-align-lg-end-start,
|
|
.layout-align-lg-space-around-start,
|
|
.layout-align-lg-space-between-start,
|
|
.layout-align-lg-start-start {
|
|
align-content: flex-start;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.layout-align-lg-center-center,
|
|
.layout-align-lg-end-center,
|
|
.layout-align-lg-space-around-center,
|
|
.layout-align-lg-space-between-center,
|
|
.layout-align-lg-start-center {
|
|
align-content: center;
|
|
align-items: center;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-align-lg-center-center>*,
|
|
.layout-align-lg-end-center>*,
|
|
.layout-align-lg-space-around-center>*,
|
|
.layout-align-lg-space-between-center>*,
|
|
.layout-align-lg-start-center>* {
|
|
box-sizing: border-box;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-align-lg-center-end,
|
|
.layout-align-lg-end-end,
|
|
.layout-align-lg-space-around-end,
|
|
.layout-align-lg-space-between-end,
|
|
.layout-align-lg-start-end {
|
|
align-content: flex-end;
|
|
align-items: flex-end;
|
|
}
|
|
|
|
.layout-align-lg-center-stretch,
|
|
.layout-align-lg-end-stretch,
|
|
.layout-align-lg-space-around-stretch,
|
|
.layout-align-lg-space-between-stretch,
|
|
.layout-align-lg-start-stretch {
|
|
align-content: stretch;
|
|
align-items: stretch;
|
|
}
|
|
|
|
.flex-lg {
|
|
box-sizing: border-box;
|
|
flex: 1;
|
|
}
|
|
|
|
.flex-lg-grow {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
}
|
|
|
|
.flex-lg-initial {
|
|
box-sizing: border-box;
|
|
flex: 0 1 auto;
|
|
}
|
|
|
|
.flex-lg-auto {
|
|
box-sizing: border-box;
|
|
flex: 1 1 auto;
|
|
}
|
|
|
|
.flex-lg-none {
|
|
box-sizing: border-box;
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
.flex-lg-noshrink {
|
|
box-sizing: border-box;
|
|
flex: 1 0 auto;
|
|
}
|
|
|
|
.flex-lg-nogrow {
|
|
box-sizing: border-box;
|
|
flex: 0 1 auto;
|
|
}
|
|
|
|
.flex-lg-0,
|
|
.layout-row>.flex-lg-0 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 0;
|
|
}
|
|
|
|
.layout-row>.flex-lg-0 {
|
|
min-width: 0;
|
|
}
|
|
|
|
.layout-column>.flex-lg-0 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 0%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-lg-row>.flex-lg-0 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 0;
|
|
min-width: 0;
|
|
}
|
|
|
|
.layout-lg-column>.flex-lg-0 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 0%;
|
|
max-width: 100%;
|
|
min-height: 0;
|
|
}
|
|
|
|
.flex-lg-5,
|
|
.layout-row>.flex-lg-5 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 5%;
|
|
}
|
|
|
|
.layout-column>.flex-lg-5 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 5%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-lg-row>.flex-lg-5 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 5%;
|
|
}
|
|
|
|
.layout-lg-column>.flex-lg-5 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 5%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-lg-10,
|
|
.layout-row>.flex-lg-10 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 10%;
|
|
}
|
|
|
|
.layout-column>.flex-lg-10 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 10%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-lg-row>.flex-lg-10 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 10%;
|
|
}
|
|
|
|
.layout-lg-column>.flex-lg-10 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 10%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-lg-15,
|
|
.layout-row>.flex-lg-15 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 15%;
|
|
}
|
|
|
|
.layout-column>.flex-lg-15 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 15%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-lg-row>.flex-lg-15 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 15%;
|
|
}
|
|
|
|
.layout-lg-column>.flex-lg-15 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 15%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-lg-20,
|
|
.layout-row>.flex-lg-20 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 20%;
|
|
}
|
|
|
|
.layout-column>.flex-lg-20 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 20%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-lg-row>.flex-lg-20 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 20%;
|
|
}
|
|
|
|
.layout-lg-column>.flex-lg-20 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 20%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-lg-25,
|
|
.layout-row>.flex-lg-25 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 25%;
|
|
}
|
|
|
|
.layout-column>.flex-lg-25 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 25%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-lg-row>.flex-lg-25 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 25%;
|
|
}
|
|
|
|
.layout-lg-column>.flex-lg-25 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 25%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-lg-30,
|
|
.layout-row>.flex-lg-30 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 30%;
|
|
}
|
|
|
|
.layout-column>.flex-lg-30 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 30%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-lg-row>.flex-lg-30 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 30%;
|
|
}
|
|
|
|
.layout-lg-column>.flex-lg-30 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 30%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-lg-35,
|
|
.layout-row>.flex-lg-35 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 35%;
|
|
}
|
|
|
|
.layout-column>.flex-lg-35 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 35%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-lg-row>.flex-lg-35 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 35%;
|
|
}
|
|
|
|
.layout-lg-column>.flex-lg-35 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 35%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-lg-40,
|
|
.layout-row>.flex-lg-40 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 40%;
|
|
}
|
|
|
|
.layout-column>.flex-lg-40 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 40%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-lg-row>.flex-lg-40 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 40%;
|
|
}
|
|
|
|
.layout-lg-column>.flex-lg-40 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 40%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-lg-45,
|
|
.layout-row>.flex-lg-45 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 45%;
|
|
}
|
|
|
|
.layout-column>.flex-lg-45 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 45%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-lg-row>.flex-lg-45 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 45%;
|
|
}
|
|
|
|
.layout-lg-column>.flex-lg-45 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 45%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-lg-50,
|
|
.layout-row>.flex-lg-50 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 50%;
|
|
}
|
|
|
|
.layout-column>.flex-lg-50 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 50%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-lg-row>.flex-lg-50 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 50%;
|
|
}
|
|
|
|
.layout-lg-column>.flex-lg-50 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 50%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-lg-55,
|
|
.layout-row>.flex-lg-55 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 55%;
|
|
}
|
|
|
|
.layout-column>.flex-lg-55 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 55%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-lg-row>.flex-lg-55 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 55%;
|
|
}
|
|
|
|
.layout-lg-column>.flex-lg-55 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 55%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-lg-60,
|
|
.layout-row>.flex-lg-60 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 60%;
|
|
}
|
|
|
|
.layout-column>.flex-lg-60 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 60%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-lg-row>.flex-lg-60 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 60%;
|
|
}
|
|
|
|
.layout-lg-column>.flex-lg-60 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 60%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-lg-65,
|
|
.layout-row>.flex-lg-65 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 65%;
|
|
}
|
|
|
|
.layout-column>.flex-lg-65 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 65%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-lg-row>.flex-lg-65 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 65%;
|
|
}
|
|
|
|
.layout-lg-column>.flex-lg-65 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 65%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-lg-70,
|
|
.layout-row>.flex-lg-70 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 70%;
|
|
}
|
|
|
|
.layout-column>.flex-lg-70 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 70%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-lg-row>.flex-lg-70 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 70%;
|
|
}
|
|
|
|
.layout-lg-column>.flex-lg-70 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 70%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-lg-75,
|
|
.layout-row>.flex-lg-75 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 75%;
|
|
}
|
|
|
|
.layout-column>.flex-lg-75 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 75%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-lg-row>.flex-lg-75 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 75%;
|
|
}
|
|
|
|
.layout-lg-column>.flex-lg-75 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 75%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-lg-80,
|
|
.layout-row>.flex-lg-80 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 80%;
|
|
}
|
|
|
|
.layout-column>.flex-lg-80 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 80%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-lg-row>.flex-lg-80 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 80%;
|
|
}
|
|
|
|
.layout-lg-column>.flex-lg-80 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 80%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-lg-85,
|
|
.layout-row>.flex-lg-85 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 85%;
|
|
}
|
|
|
|
.layout-column>.flex-lg-85 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 85%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-lg-row>.flex-lg-85 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 85%;
|
|
}
|
|
|
|
.layout-lg-column>.flex-lg-85 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 85%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-lg-90,
|
|
.layout-row>.flex-lg-90 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 90%;
|
|
}
|
|
|
|
.layout-column>.flex-lg-90 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 90%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-lg-row>.flex-lg-90 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 90%;
|
|
}
|
|
|
|
.layout-lg-column>.flex-lg-90 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 90%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-lg-95,
|
|
.layout-row>.flex-lg-95 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 95%;
|
|
}
|
|
|
|
.layout-column>.flex-lg-95 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 95%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-lg-row>.flex-lg-95 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 95%;
|
|
}
|
|
|
|
.layout-lg-column>.flex-lg-95 {
|
|
max-height: 95%;
|
|
}
|
|
|
|
.flex-lg-100,
|
|
.layout-lg-column>.flex-lg-95 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-lg-100 {
|
|
max-height: 100%;
|
|
}
|
|
|
|
.layout-column>.flex-lg-100,
|
|
.layout-lg-column>.flex-lg-100,
|
|
.layout-lg-row>.flex-lg-100,
|
|
.layout-row>.flex-lg-100 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-row>.flex-lg-33 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 33.33%;
|
|
max-height: 100%;
|
|
max-width: 33.33%;
|
|
}
|
|
|
|
.layout-row>.flex-lg-66 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 66.66%;
|
|
max-height: 100%;
|
|
max-width: 66.66%;
|
|
}
|
|
|
|
.layout-column>.flex-lg-33 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 33.33%;
|
|
max-height: 33.33%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-column>.flex-lg-66 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 66.66%;
|
|
max-height: 66.66%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-lg-row>.flex-lg-33 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 33.33%;
|
|
}
|
|
|
|
.layout-lg-row>.flex-lg-66 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 66.66%;
|
|
}
|
|
|
|
.layout-lg-row>.flex {
|
|
min-width: 0;
|
|
}
|
|
|
|
.layout-lg-column>.flex-lg-33 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 33.33%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-lg-column>.flex-lg-66 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 66.66%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-lg-column>.flex {
|
|
min-height: 0;
|
|
}
|
|
|
|
.layout-lg,
|
|
.layout-lg-column,
|
|
.layout-lg-row {
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
}
|
|
|
|
.layout-lg-column {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.layout-lg-row {
|
|
flex-direction: row;
|
|
}
|
|
}
|
|
|
|
@media (min-width:1920px) {
|
|
.flex-order-gt-lg--20 {
|
|
order: -20;
|
|
}
|
|
|
|
.flex-order-gt-lg--19 {
|
|
order: -19;
|
|
}
|
|
|
|
.flex-order-gt-lg--18 {
|
|
order: -18;
|
|
}
|
|
|
|
.flex-order-gt-lg--17 {
|
|
order: -17;
|
|
}
|
|
|
|
.flex-order-gt-lg--16 {
|
|
order: -16;
|
|
}
|
|
|
|
.flex-order-gt-lg--15 {
|
|
order: -15;
|
|
}
|
|
|
|
.flex-order-gt-lg--14 {
|
|
order: -14;
|
|
}
|
|
|
|
.flex-order-gt-lg--13 {
|
|
order: -13;
|
|
}
|
|
|
|
.flex-order-gt-lg--12 {
|
|
order: -12;
|
|
}
|
|
|
|
.flex-order-gt-lg--11 {
|
|
order: -11;
|
|
}
|
|
|
|
.flex-order-gt-lg--10 {
|
|
order: -10;
|
|
}
|
|
|
|
.flex-order-gt-lg--9 {
|
|
order: -9;
|
|
}
|
|
|
|
.flex-order-gt-lg--8 {
|
|
order: -8;
|
|
}
|
|
|
|
.flex-order-gt-lg--7 {
|
|
order: -7;
|
|
}
|
|
|
|
.flex-order-gt-lg--6 {
|
|
order: -6;
|
|
}
|
|
|
|
.flex-order-gt-lg--5 {
|
|
order: -5;
|
|
}
|
|
|
|
.flex-order-gt-lg--4 {
|
|
order: -4;
|
|
}
|
|
|
|
.flex-order-gt-lg--3 {
|
|
order: -3;
|
|
}
|
|
|
|
.flex-order-gt-lg--2 {
|
|
order: -2;
|
|
}
|
|
|
|
.flex-order-gt-lg--1 {
|
|
order: -1;
|
|
}
|
|
|
|
.flex-order-gt-lg-0 {
|
|
order: 0;
|
|
}
|
|
|
|
.flex-order-gt-lg-1 {
|
|
order: 1;
|
|
}
|
|
|
|
.flex-order-gt-lg-2 {
|
|
order: 2;
|
|
}
|
|
|
|
.flex-order-gt-lg-3 {
|
|
order: 3;
|
|
}
|
|
|
|
.flex-order-gt-lg-4 {
|
|
order: 4;
|
|
}
|
|
|
|
.flex-order-gt-lg-5 {
|
|
order: 5;
|
|
}
|
|
|
|
.flex-order-gt-lg-6 {
|
|
order: 6;
|
|
}
|
|
|
|
.flex-order-gt-lg-7 {
|
|
order: 7;
|
|
}
|
|
|
|
.flex-order-gt-lg-8 {
|
|
order: 8;
|
|
}
|
|
|
|
.flex-order-gt-lg-9 {
|
|
order: 9;
|
|
}
|
|
|
|
.flex-order-gt-lg-10 {
|
|
order: 10;
|
|
}
|
|
|
|
.flex-order-gt-lg-11 {
|
|
order: 11;
|
|
}
|
|
|
|
.flex-order-gt-lg-12 {
|
|
order: 12;
|
|
}
|
|
|
|
.flex-order-gt-lg-13 {
|
|
order: 13;
|
|
}
|
|
|
|
.flex-order-gt-lg-14 {
|
|
order: 14;
|
|
}
|
|
|
|
.flex-order-gt-lg-15 {
|
|
order: 15;
|
|
}
|
|
|
|
.flex-order-gt-lg-16 {
|
|
order: 16;
|
|
}
|
|
|
|
.flex-order-gt-lg-17 {
|
|
order: 17;
|
|
}
|
|
|
|
.flex-order-gt-lg-18 {
|
|
order: 18;
|
|
}
|
|
|
|
.flex-order-gt-lg-19 {
|
|
order: 19;
|
|
}
|
|
|
|
.flex-order-gt-lg-20 {
|
|
order: 20;
|
|
}
|
|
|
|
.flex-offset-gt-lg-0,
|
|
.layout-margin .flex-offset-gt-lg-0,
|
|
.layout-margin .offset-gt-lg-0,
|
|
.offset-gt-lg-0 {
|
|
margin-left: 0;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-lg-0,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-lg-0,
|
|
[dir=rtl] .layout-margin .offset-gt-lg-0,
|
|
[dir=rtl] .offset-gt-lg-0 {
|
|
margin-left: auto;
|
|
margin-right: 0;
|
|
}
|
|
|
|
.flex-offset-gt-lg-5,
|
|
.layout-margin .flex-offset-gt-lg-5,
|
|
.layout-margin .offset-gt-lg-5,
|
|
.offset-gt-lg-5 {
|
|
margin-left: 5%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-lg-5,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-lg-5,
|
|
[dir=rtl] .layout-margin .offset-gt-lg-5,
|
|
[dir=rtl] .offset-gt-lg-5 {
|
|
margin-left: auto;
|
|
margin-right: 5%;
|
|
}
|
|
|
|
.flex-offset-gt-lg-10,
|
|
.layout-margin .flex-offset-gt-lg-10,
|
|
.layout-margin .offset-gt-lg-10,
|
|
.offset-gt-lg-10 {
|
|
margin-left: 10%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-lg-10,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-lg-10,
|
|
[dir=rtl] .layout-margin .offset-gt-lg-10,
|
|
[dir=rtl] .offset-gt-lg-10 {
|
|
margin-left: auto;
|
|
margin-right: 10%;
|
|
}
|
|
|
|
.flex-offset-gt-lg-15,
|
|
.layout-margin .flex-offset-gt-lg-15,
|
|
.layout-margin .offset-gt-lg-15,
|
|
.offset-gt-lg-15 {
|
|
margin-left: 15%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-lg-15,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-lg-15,
|
|
[dir=rtl] .layout-margin .offset-gt-lg-15,
|
|
[dir=rtl] .offset-gt-lg-15 {
|
|
margin-left: auto;
|
|
margin-right: 15%;
|
|
}
|
|
|
|
.flex-offset-gt-lg-20,
|
|
.layout-margin .flex-offset-gt-lg-20,
|
|
.layout-margin .offset-gt-lg-20,
|
|
.offset-gt-lg-20 {
|
|
margin-left: 20%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-lg-20,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-lg-20,
|
|
[dir=rtl] .layout-margin .offset-gt-lg-20,
|
|
[dir=rtl] .offset-gt-lg-20 {
|
|
margin-left: auto;
|
|
margin-right: 20%;
|
|
}
|
|
|
|
.flex-offset-gt-lg-25,
|
|
.layout-margin .flex-offset-gt-lg-25,
|
|
.layout-margin .offset-gt-lg-25,
|
|
.offset-gt-lg-25 {
|
|
margin-left: 25%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-lg-25,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-lg-25,
|
|
[dir=rtl] .layout-margin .offset-gt-lg-25,
|
|
[dir=rtl] .offset-gt-lg-25 {
|
|
margin-left: auto;
|
|
margin-right: 25%;
|
|
}
|
|
|
|
.flex-offset-gt-lg-30,
|
|
.layout-margin .flex-offset-gt-lg-30,
|
|
.layout-margin .offset-gt-lg-30,
|
|
.offset-gt-lg-30 {
|
|
margin-left: 30%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-lg-30,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-lg-30,
|
|
[dir=rtl] .layout-margin .offset-gt-lg-30,
|
|
[dir=rtl] .offset-gt-lg-30 {
|
|
margin-left: auto;
|
|
margin-right: 30%;
|
|
}
|
|
|
|
.flex-offset-gt-lg-35,
|
|
.layout-margin .flex-offset-gt-lg-35,
|
|
.layout-margin .offset-gt-lg-35,
|
|
.offset-gt-lg-35 {
|
|
margin-left: 35%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-lg-35,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-lg-35,
|
|
[dir=rtl] .layout-margin .offset-gt-lg-35,
|
|
[dir=rtl] .offset-gt-lg-35 {
|
|
margin-left: auto;
|
|
margin-right: 35%;
|
|
}
|
|
|
|
.flex-offset-gt-lg-40,
|
|
.layout-margin .flex-offset-gt-lg-40,
|
|
.layout-margin .offset-gt-lg-40,
|
|
.offset-gt-lg-40 {
|
|
margin-left: 40%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-lg-40,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-lg-40,
|
|
[dir=rtl] .layout-margin .offset-gt-lg-40,
|
|
[dir=rtl] .offset-gt-lg-40 {
|
|
margin-left: auto;
|
|
margin-right: 40%;
|
|
}
|
|
|
|
.flex-offset-gt-lg-45,
|
|
.layout-margin .flex-offset-gt-lg-45,
|
|
.layout-margin .offset-gt-lg-45,
|
|
.offset-gt-lg-45 {
|
|
margin-left: 45%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-lg-45,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-lg-45,
|
|
[dir=rtl] .layout-margin .offset-gt-lg-45,
|
|
[dir=rtl] .offset-gt-lg-45 {
|
|
margin-left: auto;
|
|
margin-right: 45%;
|
|
}
|
|
|
|
.flex-offset-gt-lg-50,
|
|
.layout-margin .flex-offset-gt-lg-50,
|
|
.layout-margin .offset-gt-lg-50,
|
|
.offset-gt-lg-50 {
|
|
margin-left: 50%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-lg-50,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-lg-50,
|
|
[dir=rtl] .layout-margin .offset-gt-lg-50,
|
|
[dir=rtl] .offset-gt-lg-50 {
|
|
margin-left: auto;
|
|
margin-right: 50%;
|
|
}
|
|
|
|
.flex-offset-gt-lg-55,
|
|
.layout-margin .flex-offset-gt-lg-55,
|
|
.layout-margin .offset-gt-lg-55,
|
|
.offset-gt-lg-55 {
|
|
margin-left: 55%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-lg-55,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-lg-55,
|
|
[dir=rtl] .layout-margin .offset-gt-lg-55,
|
|
[dir=rtl] .offset-gt-lg-55 {
|
|
margin-left: auto;
|
|
margin-right: 55%;
|
|
}
|
|
|
|
.flex-offset-gt-lg-60,
|
|
.layout-margin .flex-offset-gt-lg-60,
|
|
.layout-margin .offset-gt-lg-60,
|
|
.offset-gt-lg-60 {
|
|
margin-left: 60%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-lg-60,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-lg-60,
|
|
[dir=rtl] .layout-margin .offset-gt-lg-60,
|
|
[dir=rtl] .offset-gt-lg-60 {
|
|
margin-left: auto;
|
|
margin-right: 60%;
|
|
}
|
|
|
|
.flex-offset-gt-lg-65,
|
|
.layout-margin .flex-offset-gt-lg-65,
|
|
.layout-margin .offset-gt-lg-65,
|
|
.offset-gt-lg-65 {
|
|
margin-left: 65%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-lg-65,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-lg-65,
|
|
[dir=rtl] .layout-margin .offset-gt-lg-65,
|
|
[dir=rtl] .offset-gt-lg-65 {
|
|
margin-left: auto;
|
|
margin-right: 65%;
|
|
}
|
|
|
|
.flex-offset-gt-lg-70,
|
|
.layout-margin .flex-offset-gt-lg-70,
|
|
.layout-margin .offset-gt-lg-70,
|
|
.offset-gt-lg-70 {
|
|
margin-left: 70%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-lg-70,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-lg-70,
|
|
[dir=rtl] .layout-margin .offset-gt-lg-70,
|
|
[dir=rtl] .offset-gt-lg-70 {
|
|
margin-left: auto;
|
|
margin-right: 70%;
|
|
}
|
|
|
|
.flex-offset-gt-lg-75,
|
|
.layout-margin .flex-offset-gt-lg-75,
|
|
.layout-margin .offset-gt-lg-75,
|
|
.offset-gt-lg-75 {
|
|
margin-left: 75%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-lg-75,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-lg-75,
|
|
[dir=rtl] .layout-margin .offset-gt-lg-75,
|
|
[dir=rtl] .offset-gt-lg-75 {
|
|
margin-left: auto;
|
|
margin-right: 75%;
|
|
}
|
|
|
|
.flex-offset-gt-lg-80,
|
|
.layout-margin .flex-offset-gt-lg-80,
|
|
.layout-margin .offset-gt-lg-80,
|
|
.offset-gt-lg-80 {
|
|
margin-left: 80%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-lg-80,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-lg-80,
|
|
[dir=rtl] .layout-margin .offset-gt-lg-80,
|
|
[dir=rtl] .offset-gt-lg-80 {
|
|
margin-left: auto;
|
|
margin-right: 80%;
|
|
}
|
|
|
|
.flex-offset-gt-lg-85,
|
|
.layout-margin .flex-offset-gt-lg-85,
|
|
.layout-margin .offset-gt-lg-85,
|
|
.offset-gt-lg-85 {
|
|
margin-left: 85%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-lg-85,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-lg-85,
|
|
[dir=rtl] .layout-margin .offset-gt-lg-85,
|
|
[dir=rtl] .offset-gt-lg-85 {
|
|
margin-left: auto;
|
|
margin-right: 85%;
|
|
}
|
|
|
|
.flex-offset-gt-lg-90,
|
|
.layout-margin .flex-offset-gt-lg-90,
|
|
.layout-margin .offset-gt-lg-90,
|
|
.offset-gt-lg-90 {
|
|
margin-left: 90%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-lg-90,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-lg-90,
|
|
[dir=rtl] .layout-margin .offset-gt-lg-90,
|
|
[dir=rtl] .offset-gt-lg-90 {
|
|
margin-left: auto;
|
|
margin-right: 90%;
|
|
}
|
|
|
|
.flex-offset-gt-lg-95,
|
|
.layout-margin .flex-offset-gt-lg-95,
|
|
.layout-margin .offset-gt-lg-95,
|
|
.offset-gt-lg-95 {
|
|
margin-left: 95%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-lg-95,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-lg-95,
|
|
[dir=rtl] .layout-margin .offset-gt-lg-95,
|
|
[dir=rtl] .offset-gt-lg-95 {
|
|
margin-left: auto;
|
|
margin-right: 95%;
|
|
}
|
|
|
|
.flex-offset-gt-lg-33,
|
|
.layout-margin .flex-offset-gt-lg-33,
|
|
.layout-margin .offset-gt-lg-33,
|
|
.offset-gt-lg-33 {
|
|
margin-left: 33.3333333333%;
|
|
}
|
|
|
|
.flex-offset-gt-lg-66,
|
|
.layout-margin .flex-offset-gt-lg-66,
|
|
.layout-margin .offset-gt-lg-66,
|
|
.offset-gt-lg-66 {
|
|
margin-left: 66.6666666667%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-gt-lg-66,
|
|
[dir=rtl] .layout-margin .flex-offset-gt-lg-66,
|
|
[dir=rtl] .layout-margin .offset-gt-lg-66,
|
|
[dir=rtl] .offset-gt-lg-66 {
|
|
margin-left: auto;
|
|
margin-right: 66.6666666667%;
|
|
}
|
|
|
|
.layout-align-gt-lg,
|
|
.layout-align-gt-lg-start-stretch {
|
|
align-content: stretch;
|
|
align-items: stretch;
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.layout-align-gt-lg-start,
|
|
.layout-align-gt-lg-start-center,
|
|
.layout-align-gt-lg-start-end,
|
|
.layout-align-gt-lg-start-start,
|
|
.layout-align-gt-lg-start-stretch {
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.layout-align-gt-lg-center,
|
|
.layout-align-gt-lg-center-center,
|
|
.layout-align-gt-lg-center-end,
|
|
.layout-align-gt-lg-center-start,
|
|
.layout-align-gt-lg-center-stretch {
|
|
justify-content: center;
|
|
}
|
|
|
|
.layout-align-gt-lg-end,
|
|
.layout-align-gt-lg-end-center,
|
|
.layout-align-gt-lg-end-end,
|
|
.layout-align-gt-lg-end-start,
|
|
.layout-align-gt-lg-end-stretch {
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.layout-align-gt-lg-space-around,
|
|
.layout-align-gt-lg-space-around-center,
|
|
.layout-align-gt-lg-space-around-end,
|
|
.layout-align-gt-lg-space-around-start,
|
|
.layout-align-gt-lg-space-around-stretch {
|
|
justify-content: space-around;
|
|
}
|
|
|
|
.layout-align-gt-lg-space-between,
|
|
.layout-align-gt-lg-space-between-center,
|
|
.layout-align-gt-lg-space-between-end,
|
|
.layout-align-gt-lg-space-between-start,
|
|
.layout-align-gt-lg-space-between-stretch {
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.layout-align-gt-lg-center-start,
|
|
.layout-align-gt-lg-end-start,
|
|
.layout-align-gt-lg-space-around-start,
|
|
.layout-align-gt-lg-space-between-start,
|
|
.layout-align-gt-lg-start-start {
|
|
align-content: flex-start;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.layout-align-gt-lg-center-center,
|
|
.layout-align-gt-lg-end-center,
|
|
.layout-align-gt-lg-space-around-center,
|
|
.layout-align-gt-lg-space-between-center,
|
|
.layout-align-gt-lg-start-center {
|
|
align-content: center;
|
|
align-items: center;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-align-gt-lg-center-center>*,
|
|
.layout-align-gt-lg-end-center>*,
|
|
.layout-align-gt-lg-space-around-center>*,
|
|
.layout-align-gt-lg-space-between-center>*,
|
|
.layout-align-gt-lg-start-center>* {
|
|
box-sizing: border-box;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-align-gt-lg-center-end,
|
|
.layout-align-gt-lg-end-end,
|
|
.layout-align-gt-lg-space-around-end,
|
|
.layout-align-gt-lg-space-between-end,
|
|
.layout-align-gt-lg-start-end {
|
|
align-content: flex-end;
|
|
align-items: flex-end;
|
|
}
|
|
|
|
.layout-align-gt-lg-center-stretch,
|
|
.layout-align-gt-lg-end-stretch,
|
|
.layout-align-gt-lg-space-around-stretch,
|
|
.layout-align-gt-lg-space-between-stretch,
|
|
.layout-align-gt-lg-start-stretch {
|
|
align-content: stretch;
|
|
align-items: stretch;
|
|
}
|
|
|
|
.flex-gt-lg {
|
|
box-sizing: border-box;
|
|
flex: 1;
|
|
}
|
|
|
|
.flex-gt-lg-grow {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
}
|
|
|
|
.flex-gt-lg-initial {
|
|
box-sizing: border-box;
|
|
flex: 0 1 auto;
|
|
}
|
|
|
|
.flex-gt-lg-auto {
|
|
box-sizing: border-box;
|
|
flex: 1 1 auto;
|
|
}
|
|
|
|
.flex-gt-lg-none {
|
|
box-sizing: border-box;
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
.flex-gt-lg-noshrink {
|
|
box-sizing: border-box;
|
|
flex: 1 0 auto;
|
|
}
|
|
|
|
.flex-gt-lg-nogrow {
|
|
box-sizing: border-box;
|
|
flex: 0 1 auto;
|
|
}
|
|
|
|
.flex-gt-lg-0,
|
|
.layout-row>.flex-gt-lg-0 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 0;
|
|
}
|
|
|
|
.layout-row>.flex-gt-lg-0 {
|
|
min-width: 0;
|
|
}
|
|
|
|
.layout-column>.flex-gt-lg-0 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 0%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-lg-row>.flex-gt-lg-0 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 0;
|
|
min-width: 0;
|
|
}
|
|
|
|
.layout-gt-lg-column>.flex-gt-lg-0 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 0%;
|
|
max-width: 100%;
|
|
min-height: 0;
|
|
}
|
|
|
|
.flex-gt-lg-5,
|
|
.layout-row>.flex-gt-lg-5 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 5%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-lg-5 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 5%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-lg-row>.flex-gt-lg-5 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 5%;
|
|
}
|
|
|
|
.layout-gt-lg-column>.flex-gt-lg-5 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 5%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-lg-10,
|
|
.layout-row>.flex-gt-lg-10 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 10%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-lg-10 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 10%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-lg-row>.flex-gt-lg-10 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 10%;
|
|
}
|
|
|
|
.layout-gt-lg-column>.flex-gt-lg-10 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 10%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-lg-15,
|
|
.layout-row>.flex-gt-lg-15 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 15%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-lg-15 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 15%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-lg-row>.flex-gt-lg-15 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 15%;
|
|
}
|
|
|
|
.layout-gt-lg-column>.flex-gt-lg-15 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 15%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-lg-20,
|
|
.layout-row>.flex-gt-lg-20 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 20%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-lg-20 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 20%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-lg-row>.flex-gt-lg-20 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 20%;
|
|
}
|
|
|
|
.layout-gt-lg-column>.flex-gt-lg-20 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 20%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-lg-25,
|
|
.layout-row>.flex-gt-lg-25 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 25%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-lg-25 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 25%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-lg-row>.flex-gt-lg-25 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 25%;
|
|
}
|
|
|
|
.layout-gt-lg-column>.flex-gt-lg-25 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 25%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-lg-30,
|
|
.layout-row>.flex-gt-lg-30 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 30%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-lg-30 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 30%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-lg-row>.flex-gt-lg-30 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 30%;
|
|
}
|
|
|
|
.layout-gt-lg-column>.flex-gt-lg-30 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 30%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-lg-35,
|
|
.layout-row>.flex-gt-lg-35 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 35%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-lg-35 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 35%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-lg-row>.flex-gt-lg-35 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 35%;
|
|
}
|
|
|
|
.layout-gt-lg-column>.flex-gt-lg-35 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 35%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-lg-40,
|
|
.layout-row>.flex-gt-lg-40 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 40%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-lg-40 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 40%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-lg-row>.flex-gt-lg-40 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 40%;
|
|
}
|
|
|
|
.layout-gt-lg-column>.flex-gt-lg-40 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 40%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-lg-45,
|
|
.layout-row>.flex-gt-lg-45 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 45%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-lg-45 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 45%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-lg-row>.flex-gt-lg-45 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 45%;
|
|
}
|
|
|
|
.layout-gt-lg-column>.flex-gt-lg-45 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 45%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-lg-50,
|
|
.layout-row>.flex-gt-lg-50 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 50%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-lg-50 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 50%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-lg-row>.flex-gt-lg-50 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 50%;
|
|
}
|
|
|
|
.layout-gt-lg-column>.flex-gt-lg-50 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 50%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-lg-55,
|
|
.layout-row>.flex-gt-lg-55 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 55%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-lg-55 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 55%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-lg-row>.flex-gt-lg-55 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 55%;
|
|
}
|
|
|
|
.layout-gt-lg-column>.flex-gt-lg-55 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 55%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-lg-60,
|
|
.layout-row>.flex-gt-lg-60 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 60%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-lg-60 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 60%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-lg-row>.flex-gt-lg-60 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 60%;
|
|
}
|
|
|
|
.layout-gt-lg-column>.flex-gt-lg-60 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 60%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-lg-65,
|
|
.layout-row>.flex-gt-lg-65 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 65%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-lg-65 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 65%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-lg-row>.flex-gt-lg-65 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 65%;
|
|
}
|
|
|
|
.layout-gt-lg-column>.flex-gt-lg-65 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 65%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-lg-70,
|
|
.layout-row>.flex-gt-lg-70 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 70%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-lg-70 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 70%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-lg-row>.flex-gt-lg-70 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 70%;
|
|
}
|
|
|
|
.layout-gt-lg-column>.flex-gt-lg-70 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 70%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-lg-75,
|
|
.layout-row>.flex-gt-lg-75 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 75%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-lg-75 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 75%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-lg-row>.flex-gt-lg-75 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 75%;
|
|
}
|
|
|
|
.layout-gt-lg-column>.flex-gt-lg-75 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 75%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-lg-80,
|
|
.layout-row>.flex-gt-lg-80 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 80%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-lg-80 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 80%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-lg-row>.flex-gt-lg-80 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 80%;
|
|
}
|
|
|
|
.layout-gt-lg-column>.flex-gt-lg-80 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 80%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-lg-85,
|
|
.layout-row>.flex-gt-lg-85 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 85%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-lg-85 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 85%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-lg-row>.flex-gt-lg-85 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 85%;
|
|
}
|
|
|
|
.layout-gt-lg-column>.flex-gt-lg-85 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 85%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-lg-90,
|
|
.layout-row>.flex-gt-lg-90 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 90%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-lg-90 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 90%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-lg-row>.flex-gt-lg-90 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 90%;
|
|
}
|
|
|
|
.layout-gt-lg-column>.flex-gt-lg-90 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 90%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-lg-95,
|
|
.layout-row>.flex-gt-lg-95 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 95%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-lg-95 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 95%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-lg-row>.flex-gt-lg-95 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 95%;
|
|
}
|
|
|
|
.layout-gt-lg-column>.flex-gt-lg-95 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 95%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-gt-lg-100,
|
|
.layout-column>.flex-gt-lg-100,
|
|
.layout-gt-lg-column>.flex-gt-lg-100,
|
|
.layout-gt-lg-row>.flex-gt-lg-100,
|
|
.layout-row>.flex-gt-lg-100 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-row>.flex-gt-lg-33 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 33.33%;
|
|
max-height: 100%;
|
|
max-width: 33.33%;
|
|
}
|
|
|
|
.layout-row>.flex-gt-lg-66 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 66.66%;
|
|
max-height: 100%;
|
|
max-width: 66.66%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-lg-33 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 33.33%;
|
|
max-height: 33.33%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-column>.flex-gt-lg-66 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 66.66%;
|
|
max-height: 66.66%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-lg-row>.flex-gt-lg-33 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 33.33%;
|
|
}
|
|
|
|
.layout-gt-lg-row>.flex-gt-lg-66 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 66.66%;
|
|
}
|
|
|
|
.layout-gt-lg-row>.flex {
|
|
min-width: 0;
|
|
}
|
|
|
|
.layout-gt-lg-column>.flex-gt-lg-33 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 33.33%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-lg-column>.flex-gt-lg-66 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 66.66%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-gt-lg-column>.flex {
|
|
min-height: 0;
|
|
}
|
|
|
|
.layout-gt-lg,
|
|
.layout-gt-lg-column,
|
|
.layout-gt-lg-row {
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
}
|
|
|
|
.layout-gt-lg-column {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.layout-gt-lg-row {
|
|
flex-direction: row;
|
|
}
|
|
|
|
.flex-order-xl--20 {
|
|
order: -20;
|
|
}
|
|
|
|
.flex-order-xl--19 {
|
|
order: -19;
|
|
}
|
|
|
|
.flex-order-xl--18 {
|
|
order: -18;
|
|
}
|
|
|
|
.flex-order-xl--17 {
|
|
order: -17;
|
|
}
|
|
|
|
.flex-order-xl--16 {
|
|
order: -16;
|
|
}
|
|
|
|
.flex-order-xl--15 {
|
|
order: -15;
|
|
}
|
|
|
|
.flex-order-xl--14 {
|
|
order: -14;
|
|
}
|
|
|
|
.flex-order-xl--13 {
|
|
order: -13;
|
|
}
|
|
|
|
.flex-order-xl--12 {
|
|
order: -12;
|
|
}
|
|
|
|
.flex-order-xl--11 {
|
|
order: -11;
|
|
}
|
|
|
|
.flex-order-xl--10 {
|
|
order: -10;
|
|
}
|
|
|
|
.flex-order-xl--9 {
|
|
order: -9;
|
|
}
|
|
|
|
.flex-order-xl--8 {
|
|
order: -8;
|
|
}
|
|
|
|
.flex-order-xl--7 {
|
|
order: -7;
|
|
}
|
|
|
|
.flex-order-xl--6 {
|
|
order: -6;
|
|
}
|
|
|
|
.flex-order-xl--5 {
|
|
order: -5;
|
|
}
|
|
|
|
.flex-order-xl--4 {
|
|
order: -4;
|
|
}
|
|
|
|
.flex-order-xl--3 {
|
|
order: -3;
|
|
}
|
|
|
|
.flex-order-xl--2 {
|
|
order: -2;
|
|
}
|
|
|
|
.flex-order-xl--1 {
|
|
order: -1;
|
|
}
|
|
|
|
.flex-order-xl-0 {
|
|
order: 0;
|
|
}
|
|
|
|
.flex-order-xl-1 {
|
|
order: 1;
|
|
}
|
|
|
|
.flex-order-xl-2 {
|
|
order: 2;
|
|
}
|
|
|
|
.flex-order-xl-3 {
|
|
order: 3;
|
|
}
|
|
|
|
.flex-order-xl-4 {
|
|
order: 4;
|
|
}
|
|
|
|
.flex-order-xl-5 {
|
|
order: 5;
|
|
}
|
|
|
|
.flex-order-xl-6 {
|
|
order: 6;
|
|
}
|
|
|
|
.flex-order-xl-7 {
|
|
order: 7;
|
|
}
|
|
|
|
.flex-order-xl-8 {
|
|
order: 8;
|
|
}
|
|
|
|
.flex-order-xl-9 {
|
|
order: 9;
|
|
}
|
|
|
|
.flex-order-xl-10 {
|
|
order: 10;
|
|
}
|
|
|
|
.flex-order-xl-11 {
|
|
order: 11;
|
|
}
|
|
|
|
.flex-order-xl-12 {
|
|
order: 12;
|
|
}
|
|
|
|
.flex-order-xl-13 {
|
|
order: 13;
|
|
}
|
|
|
|
.flex-order-xl-14 {
|
|
order: 14;
|
|
}
|
|
|
|
.flex-order-xl-15 {
|
|
order: 15;
|
|
}
|
|
|
|
.flex-order-xl-16 {
|
|
order: 16;
|
|
}
|
|
|
|
.flex-order-xl-17 {
|
|
order: 17;
|
|
}
|
|
|
|
.flex-order-xl-18 {
|
|
order: 18;
|
|
}
|
|
|
|
.flex-order-xl-19 {
|
|
order: 19;
|
|
}
|
|
|
|
.flex-order-xl-20 {
|
|
order: 20;
|
|
}
|
|
|
|
.flex-offset-xl-0,
|
|
.layout-margin .flex-offset-xl-0,
|
|
.layout-margin .offset-xl-0,
|
|
.offset-xl-0 {
|
|
margin-left: 0;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-xl-0,
|
|
[dir=rtl] .layout-margin .flex-offset-xl-0,
|
|
[dir=rtl] .layout-margin .offset-xl-0,
|
|
[dir=rtl] .offset-xl-0 {
|
|
margin-left: auto;
|
|
margin-right: 0;
|
|
}
|
|
|
|
.flex-offset-xl-5,
|
|
.layout-margin .flex-offset-xl-5,
|
|
.layout-margin .offset-xl-5,
|
|
.offset-xl-5 {
|
|
margin-left: 5%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-xl-5,
|
|
[dir=rtl] .layout-margin .flex-offset-xl-5,
|
|
[dir=rtl] .layout-margin .offset-xl-5,
|
|
[dir=rtl] .offset-xl-5 {
|
|
margin-left: auto;
|
|
margin-right: 5%;
|
|
}
|
|
|
|
.flex-offset-xl-10,
|
|
.layout-margin .flex-offset-xl-10,
|
|
.layout-margin .offset-xl-10,
|
|
.offset-xl-10 {
|
|
margin-left: 10%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-xl-10,
|
|
[dir=rtl] .layout-margin .flex-offset-xl-10,
|
|
[dir=rtl] .layout-margin .offset-xl-10,
|
|
[dir=rtl] .offset-xl-10 {
|
|
margin-left: auto;
|
|
margin-right: 10%;
|
|
}
|
|
|
|
.flex-offset-xl-15,
|
|
.layout-margin .flex-offset-xl-15,
|
|
.layout-margin .offset-xl-15,
|
|
.offset-xl-15 {
|
|
margin-left: 15%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-xl-15,
|
|
[dir=rtl] .layout-margin .flex-offset-xl-15,
|
|
[dir=rtl] .layout-margin .offset-xl-15,
|
|
[dir=rtl] .offset-xl-15 {
|
|
margin-left: auto;
|
|
margin-right: 15%;
|
|
}
|
|
|
|
.flex-offset-xl-20,
|
|
.layout-margin .flex-offset-xl-20,
|
|
.layout-margin .offset-xl-20,
|
|
.offset-xl-20 {
|
|
margin-left: 20%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-xl-20,
|
|
[dir=rtl] .layout-margin .flex-offset-xl-20,
|
|
[dir=rtl] .layout-margin .offset-xl-20,
|
|
[dir=rtl] .offset-xl-20 {
|
|
margin-left: auto;
|
|
margin-right: 20%;
|
|
}
|
|
|
|
.flex-offset-xl-25,
|
|
.layout-margin .flex-offset-xl-25,
|
|
.layout-margin .offset-xl-25,
|
|
.offset-xl-25 {
|
|
margin-left: 25%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-xl-25,
|
|
[dir=rtl] .layout-margin .flex-offset-xl-25,
|
|
[dir=rtl] .layout-margin .offset-xl-25,
|
|
[dir=rtl] .offset-xl-25 {
|
|
margin-left: auto;
|
|
margin-right: 25%;
|
|
}
|
|
|
|
.flex-offset-xl-30,
|
|
.layout-margin .flex-offset-xl-30,
|
|
.layout-margin .offset-xl-30,
|
|
.offset-xl-30 {
|
|
margin-left: 30%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-xl-30,
|
|
[dir=rtl] .layout-margin .flex-offset-xl-30,
|
|
[dir=rtl] .layout-margin .offset-xl-30,
|
|
[dir=rtl] .offset-xl-30 {
|
|
margin-left: auto;
|
|
margin-right: 30%;
|
|
}
|
|
|
|
.flex-offset-xl-35,
|
|
.layout-margin .flex-offset-xl-35,
|
|
.layout-margin .offset-xl-35,
|
|
.offset-xl-35 {
|
|
margin-left: 35%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-xl-35,
|
|
[dir=rtl] .layout-margin .flex-offset-xl-35,
|
|
[dir=rtl] .layout-margin .offset-xl-35,
|
|
[dir=rtl] .offset-xl-35 {
|
|
margin-left: auto;
|
|
margin-right: 35%;
|
|
}
|
|
|
|
.flex-offset-xl-40,
|
|
.layout-margin .flex-offset-xl-40,
|
|
.layout-margin .offset-xl-40,
|
|
.offset-xl-40 {
|
|
margin-left: 40%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-xl-40,
|
|
[dir=rtl] .layout-margin .flex-offset-xl-40,
|
|
[dir=rtl] .layout-margin .offset-xl-40,
|
|
[dir=rtl] .offset-xl-40 {
|
|
margin-left: auto;
|
|
margin-right: 40%;
|
|
}
|
|
|
|
.flex-offset-xl-45,
|
|
.layout-margin .flex-offset-xl-45,
|
|
.layout-margin .offset-xl-45,
|
|
.offset-xl-45 {
|
|
margin-left: 45%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-xl-45,
|
|
[dir=rtl] .layout-margin .flex-offset-xl-45,
|
|
[dir=rtl] .layout-margin .offset-xl-45,
|
|
[dir=rtl] .offset-xl-45 {
|
|
margin-left: auto;
|
|
margin-right: 45%;
|
|
}
|
|
|
|
.flex-offset-xl-50,
|
|
.layout-margin .flex-offset-xl-50,
|
|
.layout-margin .offset-xl-50,
|
|
.offset-xl-50 {
|
|
margin-left: 50%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-xl-50,
|
|
[dir=rtl] .layout-margin .flex-offset-xl-50,
|
|
[dir=rtl] .layout-margin .offset-xl-50,
|
|
[dir=rtl] .offset-xl-50 {
|
|
margin-left: auto;
|
|
margin-right: 50%;
|
|
}
|
|
|
|
.flex-offset-xl-55,
|
|
.layout-margin .flex-offset-xl-55,
|
|
.layout-margin .offset-xl-55,
|
|
.offset-xl-55 {
|
|
margin-left: 55%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-xl-55,
|
|
[dir=rtl] .layout-margin .flex-offset-xl-55,
|
|
[dir=rtl] .layout-margin .offset-xl-55,
|
|
[dir=rtl] .offset-xl-55 {
|
|
margin-left: auto;
|
|
margin-right: 55%;
|
|
}
|
|
|
|
.flex-offset-xl-60,
|
|
.layout-margin .flex-offset-xl-60,
|
|
.layout-margin .offset-xl-60,
|
|
.offset-xl-60 {
|
|
margin-left: 60%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-xl-60,
|
|
[dir=rtl] .layout-margin .flex-offset-xl-60,
|
|
[dir=rtl] .layout-margin .offset-xl-60,
|
|
[dir=rtl] .offset-xl-60 {
|
|
margin-left: auto;
|
|
margin-right: 60%;
|
|
}
|
|
|
|
.flex-offset-xl-65,
|
|
.layout-margin .flex-offset-xl-65,
|
|
.layout-margin .offset-xl-65,
|
|
.offset-xl-65 {
|
|
margin-left: 65%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-xl-65,
|
|
[dir=rtl] .layout-margin .flex-offset-xl-65,
|
|
[dir=rtl] .layout-margin .offset-xl-65,
|
|
[dir=rtl] .offset-xl-65 {
|
|
margin-left: auto;
|
|
margin-right: 65%;
|
|
}
|
|
|
|
.flex-offset-xl-70,
|
|
.layout-margin .flex-offset-xl-70,
|
|
.layout-margin .offset-xl-70,
|
|
.offset-xl-70 {
|
|
margin-left: 70%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-xl-70,
|
|
[dir=rtl] .layout-margin .flex-offset-xl-70,
|
|
[dir=rtl] .layout-margin .offset-xl-70,
|
|
[dir=rtl] .offset-xl-70 {
|
|
margin-left: auto;
|
|
margin-right: 70%;
|
|
}
|
|
|
|
.flex-offset-xl-75,
|
|
.layout-margin .flex-offset-xl-75,
|
|
.layout-margin .offset-xl-75,
|
|
.offset-xl-75 {
|
|
margin-left: 75%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-xl-75,
|
|
[dir=rtl] .layout-margin .flex-offset-xl-75,
|
|
[dir=rtl] .layout-margin .offset-xl-75,
|
|
[dir=rtl] .offset-xl-75 {
|
|
margin-left: auto;
|
|
margin-right: 75%;
|
|
}
|
|
|
|
.flex-offset-xl-80,
|
|
.layout-margin .flex-offset-xl-80,
|
|
.layout-margin .offset-xl-80,
|
|
.offset-xl-80 {
|
|
margin-left: 80%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-xl-80,
|
|
[dir=rtl] .layout-margin .flex-offset-xl-80,
|
|
[dir=rtl] .layout-margin .offset-xl-80,
|
|
[dir=rtl] .offset-xl-80 {
|
|
margin-left: auto;
|
|
margin-right: 80%;
|
|
}
|
|
|
|
.flex-offset-xl-85,
|
|
.layout-margin .flex-offset-xl-85,
|
|
.layout-margin .offset-xl-85,
|
|
.offset-xl-85 {
|
|
margin-left: 85%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-xl-85,
|
|
[dir=rtl] .layout-margin .flex-offset-xl-85,
|
|
[dir=rtl] .layout-margin .offset-xl-85,
|
|
[dir=rtl] .offset-xl-85 {
|
|
margin-left: auto;
|
|
margin-right: 85%;
|
|
}
|
|
|
|
.flex-offset-xl-90,
|
|
.layout-margin .flex-offset-xl-90,
|
|
.layout-margin .offset-xl-90,
|
|
.offset-xl-90 {
|
|
margin-left: 90%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-xl-90,
|
|
[dir=rtl] .layout-margin .flex-offset-xl-90,
|
|
[dir=rtl] .layout-margin .offset-xl-90,
|
|
[dir=rtl] .offset-xl-90 {
|
|
margin-left: auto;
|
|
margin-right: 90%;
|
|
}
|
|
|
|
.flex-offset-xl-95,
|
|
.layout-margin .flex-offset-xl-95,
|
|
.layout-margin .offset-xl-95,
|
|
.offset-xl-95 {
|
|
margin-left: 95%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-xl-95,
|
|
[dir=rtl] .layout-margin .flex-offset-xl-95,
|
|
[dir=rtl] .layout-margin .offset-xl-95,
|
|
[dir=rtl] .offset-xl-95 {
|
|
margin-left: auto;
|
|
margin-right: 95%;
|
|
}
|
|
|
|
.flex-offset-xl-33,
|
|
.layout-margin .flex-offset-xl-33,
|
|
.layout-margin .offset-xl-33,
|
|
.offset-xl-33 {
|
|
margin-left: 33.3333333333%;
|
|
}
|
|
|
|
.flex-offset-xl-66,
|
|
.layout-margin .flex-offset-xl-66,
|
|
.layout-margin .offset-xl-66,
|
|
.offset-xl-66 {
|
|
margin-left: 66.6666666667%;
|
|
}
|
|
|
|
[dir=rtl] .flex-offset-xl-66,
|
|
[dir=rtl] .layout-margin .flex-offset-xl-66,
|
|
[dir=rtl] .layout-margin .offset-xl-66,
|
|
[dir=rtl] .offset-xl-66 {
|
|
margin-left: auto;
|
|
margin-right: 66.6666666667%;
|
|
}
|
|
|
|
.layout-align-xl,
|
|
.layout-align-xl-start-stretch {
|
|
align-content: stretch;
|
|
align-items: stretch;
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.layout-align-xl-start,
|
|
.layout-align-xl-start-center,
|
|
.layout-align-xl-start-end,
|
|
.layout-align-xl-start-start,
|
|
.layout-align-xl-start-stretch {
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.layout-align-xl-center,
|
|
.layout-align-xl-center-center,
|
|
.layout-align-xl-center-end,
|
|
.layout-align-xl-center-start,
|
|
.layout-align-xl-center-stretch {
|
|
justify-content: center;
|
|
}
|
|
|
|
.layout-align-xl-end,
|
|
.layout-align-xl-end-center,
|
|
.layout-align-xl-end-end,
|
|
.layout-align-xl-end-start,
|
|
.layout-align-xl-end-stretch {
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.layout-align-xl-space-around,
|
|
.layout-align-xl-space-around-center,
|
|
.layout-align-xl-space-around-end,
|
|
.layout-align-xl-space-around-start,
|
|
.layout-align-xl-space-around-stretch {
|
|
justify-content: space-around;
|
|
}
|
|
|
|
.layout-align-xl-space-between,
|
|
.layout-align-xl-space-between-center,
|
|
.layout-align-xl-space-between-end,
|
|
.layout-align-xl-space-between-start,
|
|
.layout-align-xl-space-between-stretch {
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.layout-align-xl-center-start,
|
|
.layout-align-xl-end-start,
|
|
.layout-align-xl-space-around-start,
|
|
.layout-align-xl-space-between-start,
|
|
.layout-align-xl-start-start {
|
|
align-content: flex-start;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.layout-align-xl-center-center,
|
|
.layout-align-xl-end-center,
|
|
.layout-align-xl-space-around-center,
|
|
.layout-align-xl-space-between-center,
|
|
.layout-align-xl-start-center {
|
|
align-content: center;
|
|
align-items: center;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-align-xl-center-center>*,
|
|
.layout-align-xl-end-center>*,
|
|
.layout-align-xl-space-around-center>*,
|
|
.layout-align-xl-space-between-center>*,
|
|
.layout-align-xl-start-center>* {
|
|
box-sizing: border-box;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-align-xl-center-end,
|
|
.layout-align-xl-end-end,
|
|
.layout-align-xl-space-around-end,
|
|
.layout-align-xl-space-between-end,
|
|
.layout-align-xl-start-end {
|
|
align-content: flex-end;
|
|
align-items: flex-end;
|
|
}
|
|
|
|
.layout-align-xl-center-stretch,
|
|
.layout-align-xl-end-stretch,
|
|
.layout-align-xl-space-around-stretch,
|
|
.layout-align-xl-space-between-stretch,
|
|
.layout-align-xl-start-stretch {
|
|
align-content: stretch;
|
|
align-items: stretch;
|
|
}
|
|
|
|
.flex-xl {
|
|
box-sizing: border-box;
|
|
flex: 1;
|
|
}
|
|
|
|
.flex-xl-grow {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
}
|
|
|
|
.flex-xl-initial {
|
|
box-sizing: border-box;
|
|
flex: 0 1 auto;
|
|
}
|
|
|
|
.flex-xl-auto {
|
|
box-sizing: border-box;
|
|
flex: 1 1 auto;
|
|
}
|
|
|
|
.flex-xl-none {
|
|
box-sizing: border-box;
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
.flex-xl-noshrink {
|
|
box-sizing: border-box;
|
|
flex: 1 0 auto;
|
|
}
|
|
|
|
.flex-xl-nogrow {
|
|
box-sizing: border-box;
|
|
flex: 0 1 auto;
|
|
}
|
|
|
|
.flex-xl-0,
|
|
.layout-row>.flex-xl-0 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 0;
|
|
}
|
|
|
|
.layout-row>.flex-xl-0 {
|
|
min-width: 0;
|
|
}
|
|
|
|
.layout-column>.flex-xl-0 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 0%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-xl-row>.flex-xl-0 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 0;
|
|
min-width: 0;
|
|
}
|
|
|
|
.layout-xl-column>.flex-xl-0 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 0%;
|
|
max-width: 100%;
|
|
min-height: 0;
|
|
}
|
|
|
|
.flex-xl-5,
|
|
.layout-row>.flex-xl-5 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 5%;
|
|
}
|
|
|
|
.layout-column>.flex-xl-5 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 5%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-xl-row>.flex-xl-5 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 5%;
|
|
}
|
|
|
|
.layout-xl-column>.flex-xl-5 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 5%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-xl-10,
|
|
.layout-row>.flex-xl-10 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 10%;
|
|
}
|
|
|
|
.layout-column>.flex-xl-10 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 10%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-xl-row>.flex-xl-10 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 10%;
|
|
}
|
|
|
|
.layout-xl-column>.flex-xl-10 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 10%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-xl-15,
|
|
.layout-row>.flex-xl-15 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 15%;
|
|
}
|
|
|
|
.layout-column>.flex-xl-15 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 15%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-xl-row>.flex-xl-15 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 15%;
|
|
}
|
|
|
|
.layout-xl-column>.flex-xl-15 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 15%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-xl-20,
|
|
.layout-row>.flex-xl-20 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 20%;
|
|
}
|
|
|
|
.layout-column>.flex-xl-20 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 20%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-xl-row>.flex-xl-20 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 20%;
|
|
}
|
|
|
|
.layout-xl-column>.flex-xl-20 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 20%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-xl-25,
|
|
.layout-row>.flex-xl-25 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 25%;
|
|
}
|
|
|
|
.layout-column>.flex-xl-25 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 25%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-xl-row>.flex-xl-25 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 25%;
|
|
}
|
|
|
|
.layout-xl-column>.flex-xl-25 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 25%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-xl-30,
|
|
.layout-row>.flex-xl-30 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 30%;
|
|
}
|
|
|
|
.layout-column>.flex-xl-30 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 30%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-xl-row>.flex-xl-30 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 30%;
|
|
}
|
|
|
|
.layout-xl-column>.flex-xl-30 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 30%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-xl-35,
|
|
.layout-row>.flex-xl-35 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 35%;
|
|
}
|
|
|
|
.layout-column>.flex-xl-35 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 35%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-xl-row>.flex-xl-35 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 35%;
|
|
}
|
|
|
|
.layout-xl-column>.flex-xl-35 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 35%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-xl-40,
|
|
.layout-row>.flex-xl-40 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 40%;
|
|
}
|
|
|
|
.layout-column>.flex-xl-40 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 40%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-xl-row>.flex-xl-40 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 40%;
|
|
}
|
|
|
|
.layout-xl-column>.flex-xl-40 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 40%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-xl-45,
|
|
.layout-row>.flex-xl-45 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 45%;
|
|
}
|
|
|
|
.layout-column>.flex-xl-45 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 45%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-xl-row>.flex-xl-45 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 45%;
|
|
}
|
|
|
|
.layout-xl-column>.flex-xl-45 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 45%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-xl-50,
|
|
.layout-row>.flex-xl-50 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 50%;
|
|
}
|
|
|
|
.layout-column>.flex-xl-50 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 50%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-xl-row>.flex-xl-50 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 50%;
|
|
}
|
|
|
|
.layout-xl-column>.flex-xl-50 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 50%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-xl-55,
|
|
.layout-row>.flex-xl-55 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 55%;
|
|
}
|
|
|
|
.layout-column>.flex-xl-55 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 55%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-xl-row>.flex-xl-55 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 55%;
|
|
}
|
|
|
|
.layout-xl-column>.flex-xl-55 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 55%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-xl-60,
|
|
.layout-row>.flex-xl-60 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 60%;
|
|
}
|
|
|
|
.layout-column>.flex-xl-60 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 60%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-xl-row>.flex-xl-60 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 60%;
|
|
}
|
|
|
|
.layout-xl-column>.flex-xl-60 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 60%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-xl-65,
|
|
.layout-row>.flex-xl-65 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 65%;
|
|
}
|
|
|
|
.layout-column>.flex-xl-65 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 65%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-xl-row>.flex-xl-65 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 65%;
|
|
}
|
|
|
|
.layout-xl-column>.flex-xl-65 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 65%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-xl-70,
|
|
.layout-row>.flex-xl-70 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 70%;
|
|
}
|
|
|
|
.layout-column>.flex-xl-70 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 70%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-xl-row>.flex-xl-70 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 70%;
|
|
}
|
|
|
|
.layout-xl-column>.flex-xl-70 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 70%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-xl-75,
|
|
.layout-row>.flex-xl-75 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 75%;
|
|
}
|
|
|
|
.layout-column>.flex-xl-75 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 75%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-xl-row>.flex-xl-75 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 75%;
|
|
}
|
|
|
|
.layout-xl-column>.flex-xl-75 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 75%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-xl-80,
|
|
.layout-row>.flex-xl-80 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 80%;
|
|
}
|
|
|
|
.layout-column>.flex-xl-80 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 80%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-xl-row>.flex-xl-80 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 80%;
|
|
}
|
|
|
|
.layout-xl-column>.flex-xl-80 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 80%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-xl-85,
|
|
.layout-row>.flex-xl-85 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 85%;
|
|
}
|
|
|
|
.layout-column>.flex-xl-85 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 85%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-xl-row>.flex-xl-85 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 85%;
|
|
}
|
|
|
|
.layout-xl-column>.flex-xl-85 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 85%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-xl-90,
|
|
.layout-row>.flex-xl-90 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 90%;
|
|
}
|
|
|
|
.layout-column>.flex-xl-90 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 90%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-xl-row>.flex-xl-90 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 90%;
|
|
}
|
|
|
|
.layout-xl-column>.flex-xl-90 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 90%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-xl-95,
|
|
.layout-row>.flex-xl-95 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 95%;
|
|
}
|
|
|
|
.layout-column>.flex-xl-95 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 95%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-xl-row>.flex-xl-95 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 95%;
|
|
}
|
|
|
|
.layout-xl-column>.flex-xl-95 {
|
|
max-height: 95%;
|
|
}
|
|
|
|
.flex-xl-100,
|
|
.layout-xl-column>.flex-xl-95 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flex-xl-100 {
|
|
max-height: 100%;
|
|
}
|
|
|
|
.layout-column>.flex-xl-100,
|
|
.layout-row>.flex-xl-100,
|
|
.layout-xl-column>.flex-xl-100,
|
|
.layout-xl-row>.flex-xl-100 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-row>.flex-xl-33 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 33.33%;
|
|
max-height: 100%;
|
|
max-width: 33.33%;
|
|
}
|
|
|
|
.layout-row>.flex-xl-66 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 66.66%;
|
|
max-height: 100%;
|
|
max-width: 66.66%;
|
|
}
|
|
|
|
.layout-column>.flex-xl-33 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 33.33%;
|
|
max-height: 33.33%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-column>.flex-xl-66 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 66.66%;
|
|
max-height: 66.66%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-xl-row>.flex-xl-33 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 33.33%;
|
|
}
|
|
|
|
.layout-xl-row>.flex-xl-66 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 100%;
|
|
max-width: 66.66%;
|
|
}
|
|
|
|
.layout-xl-row>.flex {
|
|
min-width: 0;
|
|
}
|
|
|
|
.layout-xl-column>.flex-xl-33 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 33.33%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-xl-column>.flex-xl-66 {
|
|
box-sizing: border-box;
|
|
flex: 1 1 100%;
|
|
max-height: 66.66%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.layout-xl-column>.flex {
|
|
min-height: 0;
|
|
}
|
|
|
|
.layout-xl,
|
|
.layout-xl-column,
|
|
.layout-xl-row {
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
}
|
|
|
|
.layout-xl-column {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.layout-xl-row {
|
|
flex-direction: row;
|
|
}
|
|
|
|
.hide-gt-lg:not(.show-gt-xs):not(.show-gt-sm):not(.show-gt-md):not(.show-gt-lg):not(.show-xl):not(.show),
|
|
.hide-gt-md:not(.show-gt-xs):not(.show-gt-sm):not(.show-gt-md):not(.show-gt-lg):not(.show-xl):not(.show),
|
|
.hide-gt-sm:not(.show-gt-xs):not(.show-gt-sm):not(.show-gt-md):not(.show-gt-lg):not(.show-xl):not(.show),
|
|
.hide-gt-xs:not(.show-gt-xs):not(.show-gt-sm):not(.show-gt-md):not(.show-gt-lg):not(.show-xl):not(.show),
|
|
.hide-xl:not(.show-xl):not(.show-gt-lg):not(.show-gt-md):not(.show-gt-sm):not(.show-gt-xs):not(.show),
|
|
.hide:not(.show-gt-xs):not(.show-gt-sm):not(.show-gt-md):not(.show-gt-lg):not(.show-xl):not(.show) {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
@media print {
|
|
.hide-print:not(.show-print):not(.show) {
|
|
display: none!important;
|
|
}
|
|
}
|
|
/*!
|
|
* Angular Material Design
|
|
* https://github.com/angular/material
|
|
* @license MIT
|
|
* v0.9.7
|
|
*/
|
|
|
|
/* mixin definition ; sets LTR and RTL within the same style call */
|
|
|
|
md-autocomplete button ng-md-icon {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
-webkit-transform: translate3d(-50%, -50%, 0) scale(0.9);
|
|
transform: translate3d(-50%, -50%, 0) scale(0.9);
|
|
}
|
|
|
|
md-autocomplete button ng-md-icon path {
|
|
stroke-width: 0;
|
|
}
|
|
|
|
.md-button.ng-md-icon {
|
|
padding: 0;
|
|
background: none;
|
|
}
|
|
|
|
.md-button.md-fab ng-md-icon {
|
|
margin-top: 0;
|
|
}
|
|
|
|
md-checkbox .ng-md-icon {
|
|
transition: 240ms;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 18px;
|
|
height: 18px;
|
|
border: 2px solid;
|
|
border-radius: 2px;
|
|
}
|
|
|
|
md-checkbox.md-checked .ng-md-icon {
|
|
border: none;
|
|
}
|
|
|
|
md-checkbox.md-checked .ng-md-icon:after {
|
|
-webkit-transform: rotate(45deg);
|
|
transform: rotate(45deg);
|
|
position: absolute;
|
|
left: 6px;
|
|
top: 2px;
|
|
display: table;
|
|
width: 6px;
|
|
height: 12px;
|
|
border: 2px solid;
|
|
border-top: 0;
|
|
border-left: 0;
|
|
content: '';
|
|
}
|
|
|
|
.md-chips .md-chip .md-chip-remove ng-md-icon {
|
|
height: 18px;
|
|
width: 18px;
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
-webkit-transform: translate3d(-50%, -50%, 0);
|
|
transform: translate3d(-50%, -50%, 0);
|
|
}
|
|
|
|
ng-md-icon {
|
|
margin: auto;
|
|
background-repeat: no-repeat no-repeat;
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
fill: currentColor;
|
|
height: 24px;
|
|
width: 24px;
|
|
}
|
|
|
|
ng-md-icon svg {
|
|
pointer-events: none;
|
|
display: block;
|
|
}
|
|
|
|
ng-md-icon[md-font-icon] {
|
|
line-height: 1;
|
|
width: auto;
|
|
}
|
|
|
|
md-input-container > ng-md-icon {
|
|
position: absolute;
|
|
top: 5px;
|
|
left: 2px;
|
|
}
|
|
|
|
md-input-container > ng-md-icon + input {
|
|
margin-left: 36px;
|
|
}
|
|
|
|
md-input-container.md-icon-float > ng-md-icon {
|
|
top: 26px;
|
|
left: 2px;
|
|
}
|
|
|
|
md-input-container.md-icon-float > ng-md-icon + input {
|
|
margin-left: 36px;
|
|
}
|
|
|
|
@media screen and (-ms-high-contrast: active) {
|
|
md-input-container.md-default-theme > ng-md-icon {
|
|
fill: #fff;
|
|
}
|
|
}
|
|
|
|
md-list-item > div.md-primary > ng-md-icon,
|
|
md-list-item > div.md-secondary > ng-md-icon,
|
|
md-list-item > ng-md-icon:first-child,
|
|
md-list-item > ng-md-icon.md-secondary,
|
|
md-list-item .md-list-item-inner > div.md-primary > ng-md-icon,
|
|
md-list-item .md-list-item-inner > div.md-secondary > ng-md-icon,
|
|
md-list-item .md-list-item-inner > ng-md-icon:first-child,
|
|
md-list-item .md-list-item-inner > ng-md-icon.md-secondary {
|
|
width: 24px;
|
|
margin-top: 16px;
|
|
margin-bottom: 12px;
|
|
box-sizing: content-box;
|
|
}
|
|
|
|
md-list-item > ng-md-icon:first-child,
|
|
md-list-item .md-list-item-inner > ng-md-icon:first-child {
|
|
margin-right: 32px;
|
|
}
|
|
|
|
md-list-item.md-2-line > ng-md-icon:first-child,
|
|
md-list-item.md-2-line > .md-no-style > ng-md-icon:first-child {
|
|
-webkit-align-self: flex-start;
|
|
-ms-flex-item-align: start;
|
|
align-self: flex-start;
|
|
}
|
|
|
|
md-list-item.md-3-line > ng-md-icon:first-child,
|
|
md-list-item.md-3-line > .md-no-style > ng-md-icon:first-child {
|
|
margin-top: 16px;
|
|
}
|
|
|
|
md-tabs-wrapper md-prev-button ng-md-icon,
|
|
md-tabs-wrapper md-next-button ng-md-icon {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
-webkit-transform: translate3d(-50%, -50%, 0);
|
|
transform: translate3d(-50%, -50%, 0);
|
|
}
|
|
|
|
md-tabs-wrapper md-next-button ng-md-icon {
|
|
-webkit-transform: translate3d(-50%, -50%, 0) rotate(180deg);
|
|
transform: translate3d(-50%, -50%, 0) rotate(180deg);
|
|
}
|
|
/*!
|
|
* Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
|
|
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
|
|
*/
|
|
|
|
/* FONT PATH
|
|
* -------------------------- */
|
|
|
|
@font-face {
|
|
font-family: 'FontAwesome';
|
|
src: url('../fonts/fontawesome-webfont.eot');
|
|
src: url('../fonts/fontawesome-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2') format('woff2'), url('../fonts/fontawesome-webfont.woff') format('woff'), url('../fonts/fontawesome-webfont.ttf') format('truetype'), url('../fonts/fontawesome-webfont.svg#fontawesomeregular') format('svg');
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|
|
|
|
.fa {
|
|
display: inline-block;
|
|
font: normal normal normal 14px/1 FontAwesome;
|
|
font-size: inherit;
|
|
text-rendering: auto;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
/* makes the font 33% larger relative to the icon container */
|
|
|
|
.fa-sm {
|
|
font-size: 0.875em;
|
|
}
|
|
|
|
.fa-xs {
|
|
font-size: 0.75em;
|
|
}
|
|
|
|
.fa-lg {
|
|
font-size: 1.33333333em;
|
|
line-height: 0.75em;
|
|
vertical-align: -15%;
|
|
}
|
|
|
|
.fa-2x {
|
|
font-size: 2em;
|
|
}
|
|
|
|
.fa-3x {
|
|
font-size: 3em;
|
|
}
|
|
|
|
.fa-4x {
|
|
font-size: 4em;
|
|
}
|
|
|
|
.fa-5x {
|
|
font-size: 5em;
|
|
}
|
|
|
|
.fa-fw {
|
|
width: 1.28571429em;
|
|
text-align: center;
|
|
}
|
|
|
|
.fa-ul {
|
|
padding-left: 0;
|
|
margin-left: 2.14285714em;
|
|
list-style-type: none;
|
|
}
|
|
|
|
.fa-ul > li {
|
|
position: relative;
|
|
}
|
|
|
|
.fa-li {
|
|
position: absolute;
|
|
left: -2.14285714em;
|
|
width: 2.14285714em;
|
|
top: 0.14285714em;
|
|
text-align: center;
|
|
}
|
|
|
|
.fa-li.fa-lg {
|
|
left: -1.85714286em;
|
|
}
|
|
|
|
.fa-border {
|
|
padding: .2em .25em .15em;
|
|
border: solid 0.08em #eeeeee;
|
|
border-radius: .1em;
|
|
}
|
|
|
|
.fa-pull-left {
|
|
float: left;
|
|
}
|
|
|
|
.fa-pull-right {
|
|
float: right;
|
|
}
|
|
|
|
.fa.fa-pull-left {
|
|
margin-right: .3em;
|
|
}
|
|
|
|
.fa.fa-pull-right {
|
|
margin-left: .3em;
|
|
}
|
|
|
|
/* Deprecated as of 4.4.0 */
|
|
|
|
.pull-right {
|
|
float: right;
|
|
}
|
|
|
|
.pull-left {
|
|
float: left;
|
|
}
|
|
|
|
.fa.pull-left {
|
|
margin-right: .3em;
|
|
}
|
|
|
|
.fa.pull-right {
|
|
margin-left: .3em;
|
|
}
|
|
|
|
.fa-spin {
|
|
-webkit-animation: fa-spin 2s infinite linear;
|
|
animation: fa-spin 2s infinite linear;
|
|
}
|
|
|
|
.fa-pulse {
|
|
-webkit-animation: fa-spin 1s infinite steps(8);
|
|
animation: fa-spin 1s infinite steps(8);
|
|
}
|
|
|
|
@-webkit-keyframes fa-spin {
|
|
0% {
|
|
-webkit-transform: rotate(0deg);
|
|
transform: rotate(0deg);
|
|
}
|
|
|
|
100% {
|
|
-webkit-transform: rotate(359deg);
|
|
transform: rotate(359deg);
|
|
}
|
|
}
|
|
|
|
@keyframes fa-spin {
|
|
0% {
|
|
-webkit-transform: rotate(0deg);
|
|
transform: rotate(0deg);
|
|
}
|
|
|
|
100% {
|
|
-webkit-transform: rotate(359deg);
|
|
transform: rotate(359deg);
|
|
}
|
|
}
|
|
|
|
.fa-rotate-90 {
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
|
|
-webkit-transform: rotate(90deg);
|
|
-ms-transform: rotate(90deg);
|
|
transform: rotate(90deg);
|
|
}
|
|
|
|
.fa-rotate-180 {
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
|
|
-webkit-transform: rotate(180deg);
|
|
-ms-transform: rotate(180deg);
|
|
transform: rotate(180deg);
|
|
}
|
|
|
|
.fa-rotate-270 {
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
|
|
-webkit-transform: rotate(270deg);
|
|
-ms-transform: rotate(270deg);
|
|
transform: rotate(270deg);
|
|
}
|
|
|
|
.fa-flip-horizontal {
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
|
|
-webkit-transform: scale(-1, 1);
|
|
-ms-transform: scale(-1, 1);
|
|
transform: scale(-1, 1);
|
|
}
|
|
|
|
.fa-flip-vertical {
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
|
|
-webkit-transform: scale(1, -1);
|
|
-ms-transform: scale(1, -1);
|
|
transform: scale(1, -1);
|
|
}
|
|
|
|
:root .fa-rotate-90,
|
|
:root .fa-rotate-180,
|
|
:root .fa-rotate-270,
|
|
:root .fa-flip-horizontal,
|
|
:root .fa-flip-vertical {
|
|
filter: none;
|
|
}
|
|
|
|
.fa-stack {
|
|
position: relative;
|
|
display: inline-block;
|
|
width: 2em;
|
|
height: 2em;
|
|
line-height: 2em;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.fa-stack-1x,
|
|
.fa-stack-2x {
|
|
position: absolute;
|
|
left: 0;
|
|
width: 100%;
|
|
text-align: center;
|
|
}
|
|
|
|
.fa-stack-1x {
|
|
line-height: inherit;
|
|
}
|
|
|
|
.fa-stack-2x {
|
|
font-size: 2em;
|
|
}
|
|
|
|
.fa-inverse {
|
|
color: #ffffff;
|
|
}
|
|
|
|
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
|
|
readers do not read off random characters that represent icons */
|
|
|
|
.fa-glass:before {
|
|
content: "\f000";
|
|
}
|
|
|
|
.fa-music:before {
|
|
content: "\f001";
|
|
}
|
|
|
|
.fa-search:before {
|
|
content: "\f002";
|
|
}
|
|
|
|
.fa-envelope-o:before {
|
|
content: "\f003";
|
|
}
|
|
|
|
.fa-heart:before {
|
|
content: "\f004";
|
|
}
|
|
|
|
.fa-star:before {
|
|
content: "\f005";
|
|
}
|
|
|
|
.fa-star-o:before {
|
|
content: "\f006";
|
|
}
|
|
|
|
.fa-user:before {
|
|
content: "\f007";
|
|
}
|
|
|
|
.fa-film:before {
|
|
content: "\f008";
|
|
}
|
|
|
|
.fa-th-large:before {
|
|
content: "\f009";
|
|
}
|
|
|
|
.fa-th:before {
|
|
content: "\f00a";
|
|
}
|
|
|
|
.fa-th-list:before {
|
|
content: "\f00b";
|
|
}
|
|
|
|
.fa-check:before {
|
|
content: "\f00c";
|
|
}
|
|
|
|
.fa-remove:before,
|
|
.fa-close:before,
|
|
.fa-times:before {
|
|
content: "\f00d";
|
|
}
|
|
|
|
.fa-search-plus:before {
|
|
content: "\f00e";
|
|
}
|
|
|
|
.fa-search-minus:before {
|
|
content: "\f010";
|
|
}
|
|
|
|
.fa-power-off:before {
|
|
content: "\f011";
|
|
}
|
|
|
|
.fa-signal:before {
|
|
content: "\f012";
|
|
}
|
|
|
|
.fa-gear:before,
|
|
.fa-cog:before {
|
|
content: "\f013";
|
|
}
|
|
|
|
.fa-trash-o:before {
|
|
content: "\f014";
|
|
}
|
|
|
|
.fa-home:before {
|
|
content: "\f015";
|
|
}
|
|
|
|
.fa-file-o:before {
|
|
content: "\f016";
|
|
}
|
|
|
|
.fa-clock-o:before {
|
|
content: "\f017";
|
|
}
|
|
|
|
.fa-road:before {
|
|
content: "\f018";
|
|
}
|
|
|
|
.fa-download:before {
|
|
content: "\f019";
|
|
}
|
|
|
|
.fa-arrow-circle-o-down:before {
|
|
content: "\f01a";
|
|
}
|
|
|
|
.fa-arrow-circle-o-up:before {
|
|
content: "\f01b";
|
|
}
|
|
|
|
.fa-inbox:before {
|
|
content: "\f01c";
|
|
}
|
|
|
|
.fa-play-circle-o:before {
|
|
content: "\f01d";
|
|
}
|
|
|
|
.fa-rotate-right:before,
|
|
.fa-repeat:before {
|
|
content: "\f01e";
|
|
}
|
|
|
|
.fa-refresh:before {
|
|
content: "\f021";
|
|
}
|
|
|
|
.fa-list-alt:before {
|
|
content: "\f022";
|
|
}
|
|
|
|
.fa-lock:before {
|
|
content: "\f023";
|
|
}
|
|
|
|
.fa-flag:before {
|
|
content: "\f024";
|
|
}
|
|
|
|
.fa-headphones:before {
|
|
content: "\f025";
|
|
}
|
|
|
|
.fa-volume-off:before {
|
|
content: "\f026";
|
|
}
|
|
|
|
.fa-volume-down:before {
|
|
content: "\f027";
|
|
}
|
|
|
|
.fa-volume-up:before {
|
|
content: "\f028";
|
|
}
|
|
|
|
.fa-qrcode:before {
|
|
content: "\f029";
|
|
}
|
|
|
|
.fa-barcode:before {
|
|
content: "\f02a";
|
|
}
|
|
|
|
.fa-tag:before {
|
|
content: "\f02b";
|
|
}
|
|
|
|
.fa-tags:before {
|
|
content: "\f02c";
|
|
}
|
|
|
|
.fa-book:before {
|
|
content: "\f02d";
|
|
}
|
|
|
|
.fa-bookmark:before {
|
|
content: "\f02e";
|
|
}
|
|
|
|
.fa-print:before {
|
|
content: "\f02f";
|
|
}
|
|
|
|
.fa-camera:before {
|
|
content: "\f030";
|
|
}
|
|
|
|
.fa-font:before {
|
|
content: "\f031";
|
|
}
|
|
|
|
.fa-bold:before {
|
|
content: "\f032";
|
|
}
|
|
|
|
.fa-italic:before {
|
|
content: "\f033";
|
|
}
|
|
|
|
.fa-text-height:before {
|
|
content: "\f034";
|
|
}
|
|
|
|
.fa-text-width:before {
|
|
content: "\f035";
|
|
}
|
|
|
|
.fa-align-left:before {
|
|
content: "\f036";
|
|
}
|
|
|
|
.fa-align-center:before {
|
|
content: "\f037";
|
|
}
|
|
|
|
.fa-align-right:before {
|
|
content: "\f038";
|
|
}
|
|
|
|
.fa-align-justify:before {
|
|
content: "\f039";
|
|
}
|
|
|
|
.fa-list:before {
|
|
content: "\f03a";
|
|
}
|
|
|
|
.fa-dedent:before,
|
|
.fa-outdent:before {
|
|
content: "\f03b";
|
|
}
|
|
|
|
.fa-indent:before {
|
|
content: "\f03c";
|
|
}
|
|
|
|
.fa-video-camera:before {
|
|
content: "\f03d";
|
|
}
|
|
|
|
.fa-photo:before,
|
|
.fa-image:before,
|
|
.fa-picture-o:before {
|
|
content: "\f03e";
|
|
}
|
|
|
|
.fa-pencil:before {
|
|
content: "\f040";
|
|
}
|
|
|
|
.fa-map-marker:before {
|
|
content: "\f041";
|
|
}
|
|
|
|
.fa-adjust:before {
|
|
content: "\f042";
|
|
}
|
|
|
|
.fa-tint:before {
|
|
content: "\f043";
|
|
}
|
|
|
|
.fa-edit:before,
|
|
.fa-pencil-square-o:before {
|
|
content: "\f044";
|
|
}
|
|
|
|
.fa-share-square-o:before {
|
|
content: "\f045";
|
|
}
|
|
|
|
.fa-check-square-o:before {
|
|
content: "\f046";
|
|
}
|
|
|
|
.fa-arrows:before {
|
|
content: "\f047";
|
|
}
|
|
|
|
.fa-step-backward:before {
|
|
content: "\f048";
|
|
}
|
|
|
|
.fa-fast-backward:before {
|
|
content: "\f049";
|
|
}
|
|
|
|
.fa-backward:before {
|
|
content: "\f04a";
|
|
}
|
|
|
|
.fa-play:before {
|
|
content: "\f04b";
|
|
}
|
|
|
|
.fa-pause:before {
|
|
content: "\f04c";
|
|
}
|
|
|
|
.fa-stop:before {
|
|
content: "\f04d";
|
|
}
|
|
|
|
.fa-forward:before {
|
|
content: "\f04e";
|
|
}
|
|
|
|
.fa-fast-forward:before {
|
|
content: "\f050";
|
|
}
|
|
|
|
.fa-step-forward:before {
|
|
content: "\f051";
|
|
}
|
|
|
|
.fa-eject:before {
|
|
content: "\f052";
|
|
}
|
|
|
|
.fa-chevron-left:before {
|
|
content: "\f053";
|
|
}
|
|
|
|
.fa-chevron-right:before {
|
|
content: "\f054";
|
|
}
|
|
|
|
.fa-plus-circle:before {
|
|
content: "\f055";
|
|
}
|
|
|
|
.fa-minus-circle:before {
|
|
content: "\f056";
|
|
}
|
|
|
|
.fa-times-circle:before {
|
|
content: "\f057";
|
|
}
|
|
|
|
.fa-check-circle:before {
|
|
content: "\f058";
|
|
}
|
|
|
|
.fa-question-circle:before {
|
|
content: "\f059";
|
|
}
|
|
|
|
.fa-info-circle:before {
|
|
content: "\f05a";
|
|
}
|
|
|
|
.fa-crosshairs:before {
|
|
content: "\f05b";
|
|
}
|
|
|
|
.fa-times-circle-o:before {
|
|
content: "\f05c";
|
|
}
|
|
|
|
.fa-check-circle-o:before {
|
|
content: "\f05d";
|
|
}
|
|
|
|
.fa-ban:before {
|
|
content: "\f05e";
|
|
}
|
|
|
|
.fa-arrow-left:before {
|
|
content: "\f060";
|
|
}
|
|
|
|
.fa-arrow-right:before {
|
|
content: "\f061";
|
|
}
|
|
|
|
.fa-arrow-up:before {
|
|
content: "\f062";
|
|
}
|
|
|
|
.fa-arrow-down:before {
|
|
content: "\f063";
|
|
}
|
|
|
|
.fa-mail-forward:before,
|
|
.fa-share:before {
|
|
content: "\f064";
|
|
}
|
|
|
|
.fa-expand:before {
|
|
content: "\f065";
|
|
}
|
|
|
|
.fa-compress:before {
|
|
content: "\f066";
|
|
}
|
|
|
|
.fa-plus:before {
|
|
content: "\f067";
|
|
}
|
|
|
|
.fa-minus:before {
|
|
content: "\f068";
|
|
}
|
|
|
|
.fa-asterisk:before {
|
|
content: "\f069";
|
|
}
|
|
|
|
.fa-exclamation-circle:before {
|
|
content: "\f06a";
|
|
}
|
|
|
|
.fa-gift:before {
|
|
content: "\f06b";
|
|
}
|
|
|
|
.fa-leaf:before {
|
|
content: "\f06c";
|
|
}
|
|
|
|
.fa-fire:before {
|
|
content: "\f06d";
|
|
}
|
|
|
|
.fa-eye:before {
|
|
content: "\f06e";
|
|
}
|
|
|
|
.fa-eye-slash:before {
|
|
content: "\f070";
|
|
}
|
|
|
|
.fa-warning:before,
|
|
.fa-exclamation-triangle:before {
|
|
content: "\f071";
|
|
}
|
|
|
|
.fa-plane:before {
|
|
content: "\f072";
|
|
}
|
|
|
|
.fa-calendar:before {
|
|
content: "\f073";
|
|
}
|
|
|
|
.fa-random:before {
|
|
content: "\f074";
|
|
}
|
|
|
|
.fa-comment:before {
|
|
content: "\f075";
|
|
}
|
|
|
|
.fa-magnet:before {
|
|
content: "\f076";
|
|
}
|
|
|
|
.fa-chevron-up:before {
|
|
content: "\f077";
|
|
}
|
|
|
|
.fa-chevron-down:before {
|
|
content: "\f078";
|
|
}
|
|
|
|
.fa-retweet:before {
|
|
content: "\f079";
|
|
}
|
|
|
|
.fa-shopping-cart:before {
|
|
content: "\f07a";
|
|
}
|
|
|
|
.fa-folder:before {
|
|
content: "\f07b";
|
|
}
|
|
|
|
.fa-folder-open:before {
|
|
content: "\f07c";
|
|
}
|
|
|
|
.fa-arrows-v:before {
|
|
content: "\f07d";
|
|
}
|
|
|
|
.fa-arrows-h:before {
|
|
content: "\f07e";
|
|
}
|
|
|
|
.fa-bar-chart-o:before,
|
|
.fa-bar-chart:before {
|
|
content: "\f080";
|
|
}
|
|
|
|
.fa-twitter-square:before {
|
|
content: "\f081";
|
|
}
|
|
|
|
.fa-facebook-square:before {
|
|
content: "\f082";
|
|
}
|
|
|
|
.fa-camera-retro:before {
|
|
content: "\f083";
|
|
}
|
|
|
|
.fa-key:before {
|
|
content: "\f084";
|
|
}
|
|
|
|
.fa-gears:before,
|
|
.fa-cogs:before {
|
|
content: "\f085";
|
|
}
|
|
|
|
.fa-comments:before {
|
|
content: "\f086";
|
|
}
|
|
|
|
.fa-thumbs-o-up:before {
|
|
content: "\f087";
|
|
}
|
|
|
|
.fa-thumbs-o-down:before {
|
|
content: "\f088";
|
|
}
|
|
|
|
.fa-star-half:before {
|
|
content: "\f089";
|
|
}
|
|
|
|
.fa-heart-o:before {
|
|
content: "\f08a";
|
|
}
|
|
|
|
.fa-sign-out:before {
|
|
content: "\f08b";
|
|
}
|
|
|
|
.fa-linkedin-square:before {
|
|
content: "\f08c";
|
|
}
|
|
|
|
.fa-thumb-tack:before {
|
|
content: "\f08d";
|
|
}
|
|
|
|
.fa-external-link:before {
|
|
content: "\f08e";
|
|
}
|
|
|
|
.fa-sign-in:before {
|
|
content: "\f090";
|
|
}
|
|
|
|
.fa-trophy:before {
|
|
content: "\f091";
|
|
}
|
|
|
|
.fa-github-square:before {
|
|
content: "\f092";
|
|
}
|
|
|
|
.fa-upload:before {
|
|
content: "\f093";
|
|
}
|
|
|
|
.fa-lemon-o:before {
|
|
content: "\f094";
|
|
}
|
|
|
|
.fa-phone:before {
|
|
content: "\f095";
|
|
}
|
|
|
|
.fa-square-o:before {
|
|
content: "\f096";
|
|
}
|
|
|
|
.fa-bookmark-o:before {
|
|
content: "\f097";
|
|
}
|
|
|
|
.fa-phone-square:before {
|
|
content: "\f098";
|
|
}
|
|
|
|
.fa-twitter:before {
|
|
content: "\f099";
|
|
}
|
|
|
|
.fa-facebook-f:before,
|
|
.fa-facebook:before {
|
|
content: "\f09a";
|
|
}
|
|
|
|
.fa-github:before {
|
|
content: "\f09b";
|
|
}
|
|
|
|
.fa-unlock:before {
|
|
content: "\f09c";
|
|
}
|
|
|
|
.fa-credit-card:before {
|
|
content: "\f09d";
|
|
}
|
|
|
|
.fa-feed:before,
|
|
.fa-rss:before {
|
|
content: "\f09e";
|
|
}
|
|
|
|
.fa-hdd-o:before {
|
|
content: "\f0a0";
|
|
}
|
|
|
|
.fa-bullhorn:before {
|
|
content: "\f0a1";
|
|
}
|
|
|
|
.fa-bell:before {
|
|
content: "\f0f3";
|
|
}
|
|
|
|
.fa-certificate:before {
|
|
content: "\f0a3";
|
|
}
|
|
|
|
.fa-hand-o-right:before {
|
|
content: "\f0a4";
|
|
}
|
|
|
|
.fa-hand-o-left:before {
|
|
content: "\f0a5";
|
|
}
|
|
|
|
.fa-hand-o-up:before {
|
|
content: "\f0a6";
|
|
}
|
|
|
|
.fa-hand-o-down:before {
|
|
content: "\f0a7";
|
|
}
|
|
|
|
.fa-arrow-circle-left:before {
|
|
content: "\f0a8";
|
|
}
|
|
|
|
.fa-arrow-circle-right:before {
|
|
content: "\f0a9";
|
|
}
|
|
|
|
.fa-arrow-circle-up:before {
|
|
content: "\f0aa";
|
|
}
|
|
|
|
.fa-arrow-circle-down:before {
|
|
content: "\f0ab";
|
|
}
|
|
|
|
.fa-globe:before {
|
|
content: "\f0ac";
|
|
}
|
|
|
|
.fa-wrench:before {
|
|
content: "\f0ad";
|
|
}
|
|
|
|
.fa-tasks:before {
|
|
content: "\f0ae";
|
|
}
|
|
|
|
.fa-filter:before {
|
|
content: "\f0b0";
|
|
}
|
|
|
|
.fa-briefcase:before {
|
|
content: "\f0b1";
|
|
}
|
|
|
|
.fa-arrows-alt:before {
|
|
content: "\f0b2";
|
|
}
|
|
|
|
.fa-group:before,
|
|
.fa-users:before {
|
|
content: "\f0c0";
|
|
}
|
|
|
|
.fa-chain:before,
|
|
.fa-link:before {
|
|
content: "\f0c1";
|
|
}
|
|
|
|
.fa-cloud:before {
|
|
content: "\f0c2";
|
|
}
|
|
|
|
.fa-flask:before {
|
|
content: "\f0c3";
|
|
}
|
|
|
|
.fa-cut:before,
|
|
.fa-scissors:before {
|
|
content: "\f0c4";
|
|
}
|
|
|
|
.fa-copy:before,
|
|
.fa-files-o:before {
|
|
content: "\f0c5";
|
|
}
|
|
|
|
.fa-paperclip:before {
|
|
content: "\f0c6";
|
|
}
|
|
|
|
.fa-save:before,
|
|
.fa-floppy-o:before {
|
|
content: "\f0c7";
|
|
}
|
|
|
|
.fa-square:before {
|
|
content: "\f0c8";
|
|
}
|
|
|
|
.fa-navicon:before,
|
|
.fa-reorder:before,
|
|
.fa-bars:before {
|
|
content: "\f0c9";
|
|
}
|
|
|
|
.fa-list-ul:before {
|
|
content: "\f0ca";
|
|
}
|
|
|
|
.fa-list-ol:before {
|
|
content: "\f0cb";
|
|
}
|
|
|
|
.fa-strikethrough:before {
|
|
content: "\f0cc";
|
|
}
|
|
|
|
.fa-underline:before {
|
|
content: "\f0cd";
|
|
}
|
|
|
|
.fa-table:before {
|
|
content: "\f0ce";
|
|
}
|
|
|
|
.fa-magic:before {
|
|
content: "\f0d0";
|
|
}
|
|
|
|
.fa-truck:before {
|
|
content: "\f0d1";
|
|
}
|
|
|
|
.fa-pinterest:before {
|
|
content: "\f0d2";
|
|
}
|
|
|
|
.fa-pinterest-square:before {
|
|
content: "\f0d3";
|
|
}
|
|
|
|
.fa-google-plus-square:before {
|
|
content: "\f0d4";
|
|
}
|
|
|
|
.fa-google-plus:before {
|
|
content: "\f0d5";
|
|
}
|
|
|
|
.fa-money:before {
|
|
content: "\f0d6";
|
|
}
|
|
|
|
.fa-caret-down:before {
|
|
content: "\f0d7";
|
|
}
|
|
|
|
.fa-caret-up:before {
|
|
content: "\f0d8";
|
|
}
|
|
|
|
.fa-caret-left:before {
|
|
content: "\f0d9";
|
|
}
|
|
|
|
.fa-caret-right:before {
|
|
content: "\f0da";
|
|
}
|
|
|
|
.fa-columns:before {
|
|
content: "\f0db";
|
|
}
|
|
|
|
.fa-unsorted:before,
|
|
.fa-sort:before {
|
|
content: "\f0dc";
|
|
}
|
|
|
|
.fa-sort-down:before,
|
|
.fa-sort-desc:before {
|
|
content: "\f0dd";
|
|
}
|
|
|
|
.fa-sort-up:before,
|
|
.fa-sort-asc:before {
|
|
content: "\f0de";
|
|
}
|
|
|
|
.fa-envelope:before {
|
|
content: "\f0e0";
|
|
}
|
|
|
|
.fa-linkedin:before {
|
|
content: "\f0e1";
|
|
}
|
|
|
|
.fa-rotate-left:before,
|
|
.fa-undo:before {
|
|
content: "\f0e2";
|
|
}
|
|
|
|
.fa-legal:before,
|
|
.fa-gavel:before {
|
|
content: "\f0e3";
|
|
}
|
|
|
|
.fa-dashboard:before,
|
|
.fa-tachometer:before {
|
|
content: "\f0e4";
|
|
}
|
|
|
|
.fa-comment-o:before {
|
|
content: "\f0e5";
|
|
}
|
|
|
|
.fa-comments-o:before {
|
|
content: "\f0e6";
|
|
}
|
|
|
|
.fa-flash:before,
|
|
.fa-bolt:before {
|
|
content: "\f0e7";
|
|
}
|
|
|
|
.fa-sitemap:before {
|
|
content: "\f0e8";
|
|
}
|
|
|
|
.fa-umbrella:before {
|
|
content: "\f0e9";
|
|
}
|
|
|
|
.fa-paste:before,
|
|
.fa-clipboard:before {
|
|
content: "\f0ea";
|
|
}
|
|
|
|
.fa-lightbulb-o:before {
|
|
content: "\f0eb";
|
|
}
|
|
|
|
.fa-exchange:before {
|
|
content: "\f0ec";
|
|
}
|
|
|
|
.fa-cloud-download:before {
|
|
content: "\f0ed";
|
|
}
|
|
|
|
.fa-cloud-upload:before {
|
|
content: "\f0ee";
|
|
}
|
|
|
|
.fa-user-md:before {
|
|
content: "\f0f0";
|
|
}
|
|
|
|
.fa-stethoscope:before {
|
|
content: "\f0f1";
|
|
}
|
|
|
|
.fa-suitcase:before {
|
|
content: "\f0f2";
|
|
}
|
|
|
|
.fa-bell-o:before {
|
|
content: "\f0a2";
|
|
}
|
|
|
|
.fa-coffee:before {
|
|
content: "\f0f4";
|
|
}
|
|
|
|
.fa-cutlery:before {
|
|
content: "\f0f5";
|
|
}
|
|
|
|
.fa-file-text-o:before {
|
|
content: "\f0f6";
|
|
}
|
|
|
|
.fa-building-o:before {
|
|
content: "\f0f7";
|
|
}
|
|
|
|
.fa-hospital-o:before {
|
|
content: "\f0f8";
|
|
}
|
|
|
|
.fa-ambulance:before {
|
|
content: "\f0f9";
|
|
}
|
|
|
|
.fa-medkit:before {
|
|
content: "\f0fa";
|
|
}
|
|
|
|
.fa-fighter-jet:before {
|
|
content: "\f0fb";
|
|
}
|
|
|
|
.fa-beer:before {
|
|
content: "\f0fc";
|
|
}
|
|
|
|
.fa-h-square:before {
|
|
content: "\f0fd";
|
|
}
|
|
|
|
.fa-plus-square:before {
|
|
content: "\f0fe";
|
|
}
|
|
|
|
.fa-angle-double-left:before {
|
|
content: "\f100";
|
|
}
|
|
|
|
.fa-angle-double-right:before {
|
|
content: "\f101";
|
|
}
|
|
|
|
.fa-angle-double-up:before {
|
|
content: "\f102";
|
|
}
|
|
|
|
.fa-angle-double-down:before {
|
|
content: "\f103";
|
|
}
|
|
|
|
.fa-angle-left:before {
|
|
content: "\f104";
|
|
}
|
|
|
|
.fa-angle-right:before {
|
|
content: "\f105";
|
|
}
|
|
|
|
.fa-angle-up:before {
|
|
content: "\f106";
|
|
}
|
|
|
|
.fa-angle-down:before {
|
|
content: "\f107";
|
|
}
|
|
|
|
.fa-desktop:before {
|
|
content: "\f108";
|
|
}
|
|
|
|
.fa-laptop:before {
|
|
content: "\f109";
|
|
}
|
|
|
|
.fa-tablet:before {
|
|
content: "\f10a";
|
|
}
|
|
|
|
.fa-mobile-phone:before,
|
|
.fa-mobile:before {
|
|
content: "\f10b";
|
|
}
|
|
|
|
.fa-circle-o:before {
|
|
content: "\f10c";
|
|
}
|
|
|
|
.fa-quote-left:before {
|
|
content: "\f10d";
|
|
}
|
|
|
|
.fa-quote-right:before {
|
|
content: "\f10e";
|
|
}
|
|
|
|
.fa-spinner:before {
|
|
content: "\f110";
|
|
}
|
|
|
|
.fa-circle:before {
|
|
content: "\f111";
|
|
}
|
|
|
|
.fa-mail-reply:before,
|
|
.fa-reply:before {
|
|
content: "\f112";
|
|
}
|
|
|
|
.fa-github-alt:before {
|
|
content: "\f113";
|
|
}
|
|
|
|
.fa-folder-o:before {
|
|
content: "\f114";
|
|
}
|
|
|
|
.fa-folder-open-o:before {
|
|
content: "\f115";
|
|
}
|
|
|
|
.fa-smile-o:before {
|
|
content: "\f118";
|
|
}
|
|
|
|
.fa-frown-o:before {
|
|
content: "\f119";
|
|
}
|
|
|
|
.fa-meh-o:before {
|
|
content: "\f11a";
|
|
}
|
|
|
|
.fa-gamepad:before {
|
|
content: "\f11b";
|
|
}
|
|
|
|
.fa-keyboard-o:before {
|
|
content: "\f11c";
|
|
}
|
|
|
|
.fa-flag-o:before {
|
|
content: "\f11d";
|
|
}
|
|
|
|
.fa-flag-checkered:before {
|
|
content: "\f11e";
|
|
}
|
|
|
|
.fa-terminal:before {
|
|
content: "\f120";
|
|
}
|
|
|
|
.fa-code:before {
|
|
content: "\f121";
|
|
}
|
|
|
|
.fa-mail-reply-all:before,
|
|
.fa-reply-all:before {
|
|
content: "\f122";
|
|
}
|
|
|
|
.fa-star-half-empty:before,
|
|
.fa-star-half-full:before,
|
|
.fa-star-half-o:before {
|
|
content: "\f123";
|
|
}
|
|
|
|
.fa-location-arrow:before {
|
|
content: "\f124";
|
|
}
|
|
|
|
.fa-crop:before {
|
|
content: "\f125";
|
|
}
|
|
|
|
.fa-code-fork:before {
|
|
content: "\f126";
|
|
}
|
|
|
|
.fa-unlink:before,
|
|
.fa-chain-broken:before {
|
|
content: "\f127";
|
|
}
|
|
|
|
.fa-question:before {
|
|
content: "\f128";
|
|
}
|
|
|
|
.fa-info:before {
|
|
content: "\f129";
|
|
}
|
|
|
|
.fa-exclamation:before {
|
|
content: "\f12a";
|
|
}
|
|
|
|
.fa-superscript:before {
|
|
content: "\f12b";
|
|
}
|
|
|
|
.fa-subscript:before {
|
|
content: "\f12c";
|
|
}
|
|
|
|
.fa-eraser:before {
|
|
content: "\f12d";
|
|
}
|
|
|
|
.fa-puzzle-piece:before {
|
|
content: "\f12e";
|
|
}
|
|
|
|
.fa-microphone:before {
|
|
content: "\f130";
|
|
}
|
|
|
|
.fa-microphone-slash:before {
|
|
content: "\f131";
|
|
}
|
|
|
|
.fa-shield:before {
|
|
content: "\f132";
|
|
}
|
|
|
|
.fa-calendar-o:before {
|
|
content: "\f133";
|
|
}
|
|
|
|
.fa-fire-extinguisher:before {
|
|
content: "\f134";
|
|
}
|
|
|
|
.fa-rocket:before {
|
|
content: "\f135";
|
|
}
|
|
|
|
.fa-maxcdn:before {
|
|
content: "\f136";
|
|
}
|
|
|
|
.fa-chevron-circle-left:before {
|
|
content: "\f137";
|
|
}
|
|
|
|
.fa-chevron-circle-right:before {
|
|
content: "\f138";
|
|
}
|
|
|
|
.fa-chevron-circle-up:before {
|
|
content: "\f139";
|
|
}
|
|
|
|
.fa-chevron-circle-down:before {
|
|
content: "\f13a";
|
|
}
|
|
|
|
.fa-html5:before {
|
|
content: "\f13b";
|
|
}
|
|
|
|
.fa-css3:before {
|
|
content: "\f13c";
|
|
}
|
|
|
|
.fa-anchor:before {
|
|
content: "\f13d";
|
|
}
|
|
|
|
.fa-unlock-alt:before {
|
|
content: "\f13e";
|
|
}
|
|
|
|
.fa-bullseye:before {
|
|
content: "\f140";
|
|
}
|
|
|
|
.fa-ellipsis-h:before {
|
|
content: "\f141";
|
|
}
|
|
|
|
.fa-ellipsis-v:before {
|
|
content: "\f142";
|
|
}
|
|
|
|
.fa-rss-square:before {
|
|
content: "\f143";
|
|
}
|
|
|
|
.fa-play-circle:before {
|
|
content: "\f144";
|
|
}
|
|
|
|
.fa-ticket:before {
|
|
content: "\f145";
|
|
}
|
|
|
|
.fa-minus-square:before {
|
|
content: "\f146";
|
|
}
|
|
|
|
.fa-minus-square-o:before {
|
|
content: "\f147";
|
|
}
|
|
|
|
.fa-level-up:before {
|
|
content: "\f148";
|
|
}
|
|
|
|
.fa-level-down:before {
|
|
content: "\f149";
|
|
}
|
|
|
|
.fa-check-square:before {
|
|
content: "\f14a";
|
|
}
|
|
|
|
.fa-pencil-square:before {
|
|
content: "\f14b";
|
|
}
|
|
|
|
.fa-external-link-square:before {
|
|
content: "\f14c";
|
|
}
|
|
|
|
.fa-share-square:before {
|
|
content: "\f14d";
|
|
}
|
|
|
|
.fa-compass:before {
|
|
content: "\f14e";
|
|
}
|
|
|
|
.fa-toggle-down:before,
|
|
.fa-caret-square-o-down:before {
|
|
content: "\f150";
|
|
}
|
|
|
|
.fa-toggle-up:before,
|
|
.fa-caret-square-o-up:before {
|
|
content: "\f151";
|
|
}
|
|
|
|
.fa-toggle-right:before,
|
|
.fa-caret-square-o-right:before {
|
|
content: "\f152";
|
|
}
|
|
|
|
.fa-euro:before,
|
|
.fa-eur:before {
|
|
content: "\f153";
|
|
}
|
|
|
|
.fa-gbp:before {
|
|
content: "\f154";
|
|
}
|
|
|
|
.fa-dollar:before,
|
|
.fa-usd:before {
|
|
content: "\f155";
|
|
}
|
|
|
|
.fa-rupee:before,
|
|
.fa-inr:before {
|
|
content: "\f156";
|
|
}
|
|
|
|
.fa-cny:before,
|
|
.fa-rmb:before,
|
|
.fa-yen:before,
|
|
.fa-jpy:before {
|
|
content: "\f157";
|
|
}
|
|
|
|
.fa-ruble:before,
|
|
.fa-rouble:before,
|
|
.fa-rub:before {
|
|
content: "\f158";
|
|
}
|
|
|
|
.fa-won:before,
|
|
.fa-krw:before {
|
|
content: "\f159";
|
|
}
|
|
|
|
.fa-bitcoin:before,
|
|
.fa-btc:before {
|
|
content: "\f15a";
|
|
}
|
|
|
|
.fa-file:before {
|
|
content: "\f15b";
|
|
}
|
|
|
|
.fa-file-text:before {
|
|
content: "\f15c";
|
|
}
|
|
|
|
.fa-sort-alpha-asc:before {
|
|
content: "\f15d";
|
|
}
|
|
|
|
.fa-sort-alpha-desc:before {
|
|
content: "\f15e";
|
|
}
|
|
|
|
.fa-sort-amount-asc:before {
|
|
content: "\f160";
|
|
}
|
|
|
|
.fa-sort-amount-desc:before {
|
|
content: "\f161";
|
|
}
|
|
|
|
.fa-sort-numeric-asc:before {
|
|
content: "\f162";
|
|
}
|
|
|
|
.fa-sort-numeric-desc:before {
|
|
content: "\f163";
|
|
}
|
|
|
|
.fa-thumbs-up:before {
|
|
content: "\f164";
|
|
}
|
|
|
|
.fa-thumbs-down:before {
|
|
content: "\f165";
|
|
}
|
|
|
|
.fa-youtube-square:before {
|
|
content: "\f166";
|
|
}
|
|
|
|
.fa-youtube:before {
|
|
content: "\f167";
|
|
}
|
|
|
|
.fa-xing:before {
|
|
content: "\f168";
|
|
}
|
|
|
|
.fa-xing-square:before {
|
|
content: "\f169";
|
|
}
|
|
|
|
.fa-youtube-play:before {
|
|
content: "\f16a";
|
|
}
|
|
|
|
.fa-dropbox:before {
|
|
content: "\f16b";
|
|
}
|
|
|
|
.fa-stack-overflow:before {
|
|
content: "\f16c";
|
|
}
|
|
|
|
.fa-instagram:before {
|
|
content: "\f16d";
|
|
}
|
|
|
|
.fa-flickr:before {
|
|
content: "\f16e";
|
|
}
|
|
|
|
.fa-adn:before {
|
|
content: "\f170";
|
|
}
|
|
|
|
.fa-bitbucket:before {
|
|
content: "\f171";
|
|
}
|
|
|
|
.fa-bitbucket-square:before {
|
|
content: "\f172";
|
|
}
|
|
|
|
.fa-tumblr:before {
|
|
content: "\f173";
|
|
}
|
|
|
|
.fa-tumblr-square:before {
|
|
content: "\f174";
|
|
}
|
|
|
|
.fa-long-arrow-down:before {
|
|
content: "\f175";
|
|
}
|
|
|
|
.fa-long-arrow-up:before {
|
|
content: "\f176";
|
|
}
|
|
|
|
.fa-long-arrow-left:before {
|
|
content: "\f177";
|
|
}
|
|
|
|
.fa-long-arrow-right:before {
|
|
content: "\f178";
|
|
}
|
|
|
|
.fa-apple:before {
|
|
content: "\f179";
|
|
}
|
|
|
|
.fa-windows:before {
|
|
content: "\f17a";
|
|
}
|
|
|
|
.fa-android:before {
|
|
content: "\f17b";
|
|
}
|
|
|
|
.fa-linux:before {
|
|
content: "\f17c";
|
|
}
|
|
|
|
.fa-dribbble:before {
|
|
content: "\f17d";
|
|
}
|
|
|
|
.fa-skype:before {
|
|
content: "\f17e";
|
|
}
|
|
|
|
.fa-foursquare:before {
|
|
content: "\f180";
|
|
}
|
|
|
|
.fa-trello:before {
|
|
content: "\f181";
|
|
}
|
|
|
|
.fa-female:before {
|
|
content: "\f182";
|
|
}
|
|
|
|
.fa-male:before {
|
|
content: "\f183";
|
|
}
|
|
|
|
.fa-gittip:before,
|
|
.fa-gratipay:before {
|
|
content: "\f184";
|
|
}
|
|
|
|
.fa-sun-o:before {
|
|
content: "\f185";
|
|
}
|
|
|
|
.fa-moon-o:before {
|
|
content: "\f186";
|
|
}
|
|
|
|
.fa-archive:before {
|
|
content: "\f187";
|
|
}
|
|
|
|
.fa-bug:before {
|
|
content: "\f188";
|
|
}
|
|
|
|
.fa-vk:before {
|
|
content: "\f189";
|
|
}
|
|
|
|
.fa-weibo:before {
|
|
content: "\f18a";
|
|
}
|
|
|
|
.fa-renren:before {
|
|
content: "\f18b";
|
|
}
|
|
|
|
.fa-pagelines:before {
|
|
content: "\f18c";
|
|
}
|
|
|
|
.fa-stack-exchange:before {
|
|
content: "\f18d";
|
|
}
|
|
|
|
.fa-arrow-circle-o-right:before {
|
|
content: "\f18e";
|
|
}
|
|
|
|
.fa-arrow-circle-o-left:before {
|
|
content: "\f190";
|
|
}
|
|
|
|
.fa-toggle-left:before,
|
|
.fa-caret-square-o-left:before {
|
|
content: "\f191";
|
|
}
|
|
|
|
.fa-dot-circle-o:before {
|
|
content: "\f192";
|
|
}
|
|
|
|
.fa-wheelchair:before {
|
|
content: "\f193";
|
|
}
|
|
|
|
.fa-vimeo-square:before {
|
|
content: "\f194";
|
|
}
|
|
|
|
.fa-turkish-lira:before,
|
|
.fa-try:before {
|
|
content: "\f195";
|
|
}
|
|
|
|
.fa-plus-square-o:before {
|
|
content: "\f196";
|
|
}
|
|
|
|
.fa-space-shuttle:before {
|
|
content: "\f197";
|
|
}
|
|
|
|
.fa-slack:before {
|
|
content: "\f198";
|
|
}
|
|
|
|
.fa-envelope-square:before {
|
|
content: "\f199";
|
|
}
|
|
|
|
.fa-wordpress:before {
|
|
content: "\f19a";
|
|
}
|
|
|
|
.fa-openid:before {
|
|
content: "\f19b";
|
|
}
|
|
|
|
.fa-institution:before,
|
|
.fa-bank:before,
|
|
.fa-university:before {
|
|
content: "\f19c";
|
|
}
|
|
|
|
.fa-mortar-board:before,
|
|
.fa-graduation-cap:before {
|
|
content: "\f19d";
|
|
}
|
|
|
|
.fa-yahoo:before {
|
|
content: "\f19e";
|
|
}
|
|
|
|
.fa-google:before {
|
|
content: "\f1a0";
|
|
}
|
|
|
|
.fa-reddit:before {
|
|
content: "\f1a1";
|
|
}
|
|
|
|
.fa-reddit-square:before {
|
|
content: "\f1a2";
|
|
}
|
|
|
|
.fa-stumbleupon-circle:before {
|
|
content: "\f1a3";
|
|
}
|
|
|
|
.fa-stumbleupon:before {
|
|
content: "\f1a4";
|
|
}
|
|
|
|
.fa-delicious:before {
|
|
content: "\f1a5";
|
|
}
|
|
|
|
.fa-digg:before {
|
|
content: "\f1a6";
|
|
}
|
|
|
|
.fa-pied-piper-pp:before {
|
|
content: "\f1a7";
|
|
}
|
|
|
|
.fa-pied-piper-alt:before {
|
|
content: "\f1a8";
|
|
}
|
|
|
|
.fa-drupal:before {
|
|
content: "\f1a9";
|
|
}
|
|
|
|
.fa-joomla:before {
|
|
content: "\f1aa";
|
|
}
|
|
|
|
.fa-language:before {
|
|
content: "\f1ab";
|
|
}
|
|
|
|
.fa-fax:before {
|
|
content: "\f1ac";
|
|
}
|
|
|
|
.fa-building:before {
|
|
content: "\f1ad";
|
|
}
|
|
|
|
.fa-child:before {
|
|
content: "\f1ae";
|
|
}
|
|
|
|
.fa-paw:before {
|
|
content: "\f1b0";
|
|
}
|
|
|
|
.fa-spoon:before {
|
|
content: "\f1b1";
|
|
}
|
|
|
|
.fa-cube:before {
|
|
content: "\f1b2";
|
|
}
|
|
|
|
.fa-cubes:before {
|
|
content: "\f1b3";
|
|
}
|
|
|
|
.fa-behance:before {
|
|
content: "\f1b4";
|
|
}
|
|
|
|
.fa-behance-square:before {
|
|
content: "\f1b5";
|
|
}
|
|
|
|
.fa-steam:before {
|
|
content: "\f1b6";
|
|
}
|
|
|
|
.fa-steam-square:before {
|
|
content: "\f1b7";
|
|
}
|
|
|
|
.fa-recycle:before {
|
|
content: "\f1b8";
|
|
}
|
|
|
|
.fa-automobile:before,
|
|
.fa-car:before {
|
|
content: "\f1b9";
|
|
}
|
|
|
|
.fa-cab:before,
|
|
.fa-taxi:before {
|
|
content: "\f1ba";
|
|
}
|
|
|
|
.fa-tree:before {
|
|
content: "\f1bb";
|
|
}
|
|
|
|
.fa-spotify:before {
|
|
content: "\f1bc";
|
|
}
|
|
|
|
.fa-deviantart:before {
|
|
content: "\f1bd";
|
|
}
|
|
|
|
.fa-soundcloud:before {
|
|
content: "\f1be";
|
|
}
|
|
|
|
.fa-database:before {
|
|
content: "\f1c0";
|
|
}
|
|
|
|
.fa-file-pdf-o:before {
|
|
content: "\f1c1";
|
|
}
|
|
|
|
.fa-file-word-o:before {
|
|
content: "\f1c2";
|
|
}
|
|
|
|
.fa-file-excel-o:before {
|
|
content: "\f1c3";
|
|
}
|
|
|
|
.fa-file-powerpoint-o:before {
|
|
content: "\f1c4";
|
|
}
|
|
|
|
.fa-file-photo-o:before,
|
|
.fa-file-picture-o:before,
|
|
.fa-file-image-o:before {
|
|
content: "\f1c5";
|
|
}
|
|
|
|
.fa-file-zip-o:before,
|
|
.fa-file-archive-o:before {
|
|
content: "\f1c6";
|
|
}
|
|
|
|
.fa-file-sound-o:before,
|
|
.fa-file-audio-o:before {
|
|
content: "\f1c7";
|
|
}
|
|
|
|
.fa-file-movie-o:before,
|
|
.fa-file-video-o:before {
|
|
content: "\f1c8";
|
|
}
|
|
|
|
.fa-file-code-o:before {
|
|
content: "\f1c9";
|
|
}
|
|
|
|
.fa-vine:before {
|
|
content: "\f1ca";
|
|
}
|
|
|
|
.fa-codepen:before {
|
|
content: "\f1cb";
|
|
}
|
|
|
|
.fa-jsfiddle:before {
|
|
content: "\f1cc";
|
|
}
|
|
|
|
.fa-life-bouy:before,
|
|
.fa-life-buoy:before,
|
|
.fa-life-saver:before,
|
|
.fa-support:before,
|
|
.fa-life-ring:before {
|
|
content: "\f1cd";
|
|
}
|
|
|
|
.fa-circle-o-notch:before {
|
|
content: "\f1ce";
|
|
}
|
|
|
|
.fa-ra:before,
|
|
.fa-resistance:before,
|
|
.fa-rebel:before {
|
|
content: "\f1d0";
|
|
}
|
|
|
|
.fa-ge:before,
|
|
.fa-empire:before {
|
|
content: "\f1d1";
|
|
}
|
|
|
|
.fa-git-square:before {
|
|
content: "\f1d2";
|
|
}
|
|
|
|
.fa-git:before {
|
|
content: "\f1d3";
|
|
}
|
|
|
|
.fa-y-combinator-square:before,
|
|
.fa-yc-square:before,
|
|
.fa-hacker-news:before {
|
|
content: "\f1d4";
|
|
}
|
|
|
|
.fa-tencent-weibo:before {
|
|
content: "\f1d5";
|
|
}
|
|
|
|
.fa-qq:before {
|
|
content: "\f1d6";
|
|
}
|
|
|
|
.fa-wechat:before,
|
|
.fa-weixin:before {
|
|
content: "\f1d7";
|
|
}
|
|
|
|
.fa-send:before,
|
|
.fa-paper-plane:before {
|
|
content: "\f1d8";
|
|
}
|
|
|
|
.fa-send-o:before,
|
|
.fa-paper-plane-o:before {
|
|
content: "\f1d9";
|
|
}
|
|
|
|
.fa-history:before {
|
|
content: "\f1da";
|
|
}
|
|
|
|
.fa-circle-thin:before {
|
|
content: "\f1db";
|
|
}
|
|
|
|
.fa-header:before {
|
|
content: "\f1dc";
|
|
}
|
|
|
|
.fa-paragraph:before {
|
|
content: "\f1dd";
|
|
}
|
|
|
|
.fa-sliders:before {
|
|
content: "\f1de";
|
|
}
|
|
|
|
.fa-share-alt:before {
|
|
content: "\f1e0";
|
|
}
|
|
|
|
.fa-share-alt-square:before {
|
|
content: "\f1e1";
|
|
}
|
|
|
|
.fa-bomb:before {
|
|
content: "\f1e2";
|
|
}
|
|
|
|
.fa-soccer-ball-o:before,
|
|
.fa-futbol-o:before {
|
|
content: "\f1e3";
|
|
}
|
|
|
|
.fa-tty:before {
|
|
content: "\f1e4";
|
|
}
|
|
|
|
.fa-binoculars:before {
|
|
content: "\f1e5";
|
|
}
|
|
|
|
.fa-plug:before {
|
|
content: "\f1e6";
|
|
}
|
|
|
|
.fa-slideshare:before {
|
|
content: "\f1e7";
|
|
}
|
|
|
|
.fa-twitch:before {
|
|
content: "\f1e8";
|
|
}
|
|
|
|
.fa-yelp:before {
|
|
content: "\f1e9";
|
|
}
|
|
|
|
.fa-newspaper-o:before {
|
|
content: "\f1ea";
|
|
}
|
|
|
|
.fa-wifi:before {
|
|
content: "\f1eb";
|
|
}
|
|
|
|
.fa-calculator:before {
|
|
content: "\f1ec";
|
|
}
|
|
|
|
.fa-paypal:before {
|
|
content: "\f1ed";
|
|
}
|
|
|
|
.fa-google-wallet:before {
|
|
content: "\f1ee";
|
|
}
|
|
|
|
.fa-cc-visa:before {
|
|
content: "\f1f0";
|
|
}
|
|
|
|
.fa-cc-mastercard:before {
|
|
content: "\f1f1";
|
|
}
|
|
|
|
.fa-cc-discover:before {
|
|
content: "\f1f2";
|
|
}
|
|
|
|
.fa-cc-amex:before {
|
|
content: "\f1f3";
|
|
}
|
|
|
|
.fa-cc-paypal:before {
|
|
content: "\f1f4";
|
|
}
|
|
|
|
.fa-cc-stripe:before {
|
|
content: "\f1f5";
|
|
}
|
|
|
|
.fa-bell-slash:before {
|
|
content: "\f1f6";
|
|
}
|
|
|
|
.fa-bell-slash-o:before {
|
|
content: "\f1f7";
|
|
}
|
|
|
|
.fa-trash:before {
|
|
content: "\f1f8";
|
|
}
|
|
|
|
.fa-copyright:before {
|
|
content: "\f1f9";
|
|
}
|
|
|
|
.fa-at:before {
|
|
content: "\f1fa";
|
|
}
|
|
|
|
.fa-eyedropper:before {
|
|
content: "\f1fb";
|
|
}
|
|
|
|
.fa-paint-brush:before {
|
|
content: "\f1fc";
|
|
}
|
|
|
|
.fa-birthday-cake:before {
|
|
content: "\f1fd";
|
|
}
|
|
|
|
.fa-area-chart:before {
|
|
content: "\f1fe";
|
|
}
|
|
|
|
.fa-pie-chart:before {
|
|
content: "\f200";
|
|
}
|
|
|
|
.fa-line-chart:before {
|
|
content: "\f201";
|
|
}
|
|
|
|
.fa-lastfm:before {
|
|
content: "\f202";
|
|
}
|
|
|
|
.fa-lastfm-square:before {
|
|
content: "\f203";
|
|
}
|
|
|
|
.fa-toggle-off:before {
|
|
content: "\f204";
|
|
}
|
|
|
|
.fa-toggle-on:before {
|
|
content: "\f205";
|
|
}
|
|
|
|
.fa-bicycle:before {
|
|
content: "\f206";
|
|
}
|
|
|
|
.fa-bus:before {
|
|
content: "\f207";
|
|
}
|
|
|
|
.fa-ioxhost:before {
|
|
content: "\f208";
|
|
}
|
|
|
|
.fa-angellist:before {
|
|
content: "\f209";
|
|
}
|
|
|
|
.fa-cc:before {
|
|
content: "\f20a";
|
|
}
|
|
|
|
.fa-shekel:before,
|
|
.fa-sheqel:before,
|
|
.fa-ils:before {
|
|
content: "\f20b";
|
|
}
|
|
|
|
.fa-meanpath:before {
|
|
content: "\f20c";
|
|
}
|
|
|
|
.fa-buysellads:before {
|
|
content: "\f20d";
|
|
}
|
|
|
|
.fa-connectdevelop:before {
|
|
content: "\f20e";
|
|
}
|
|
|
|
.fa-dashcube:before {
|
|
content: "\f210";
|
|
}
|
|
|
|
.fa-forumbee:before {
|
|
content: "\f211";
|
|
}
|
|
|
|
.fa-leanpub:before {
|
|
content: "\f212";
|
|
}
|
|
|
|
.fa-sellsy:before {
|
|
content: "\f213";
|
|
}
|
|
|
|
.fa-shirtsinbulk:before {
|
|
content: "\f214";
|
|
}
|
|
|
|
.fa-simplybuilt:before {
|
|
content: "\f215";
|
|
}
|
|
|
|
.fa-skyatlas:before {
|
|
content: "\f216";
|
|
}
|
|
|
|
.fa-cart-plus:before {
|
|
content: "\f217";
|
|
}
|
|
|
|
.fa-cart-arrow-down:before {
|
|
content: "\f218";
|
|
}
|
|
|
|
.fa-diamond:before {
|
|
content: "\f219";
|
|
}
|
|
|
|
.fa-ship:before {
|
|
content: "\f21a";
|
|
}
|
|
|
|
.fa-user-secret:before {
|
|
content: "\f21b";
|
|
}
|
|
|
|
.fa-motorcycle:before {
|
|
content: "\f21c";
|
|
}
|
|
|
|
.fa-street-view:before {
|
|
content: "\f21d";
|
|
}
|
|
|
|
.fa-heartbeat:before {
|
|
content: "\f21e";
|
|
}
|
|
|
|
.fa-venus:before {
|
|
content: "\f221";
|
|
}
|
|
|
|
.fa-mars:before {
|
|
content: "\f222";
|
|
}
|
|
|
|
.fa-mercury:before {
|
|
content: "\f223";
|
|
}
|
|
|
|
.fa-intersex:before,
|
|
.fa-transgender:before {
|
|
content: "\f224";
|
|
}
|
|
|
|
.fa-transgender-alt:before {
|
|
content: "\f225";
|
|
}
|
|
|
|
.fa-venus-double:before {
|
|
content: "\f226";
|
|
}
|
|
|
|
.fa-mars-double:before {
|
|
content: "\f227";
|
|
}
|
|
|
|
.fa-venus-mars:before {
|
|
content: "\f228";
|
|
}
|
|
|
|
.fa-mars-stroke:before {
|
|
content: "\f229";
|
|
}
|
|
|
|
.fa-mars-stroke-v:before {
|
|
content: "\f22a";
|
|
}
|
|
|
|
.fa-mars-stroke-h:before {
|
|
content: "\f22b";
|
|
}
|
|
|
|
.fa-neuter:before {
|
|
content: "\f22c";
|
|
}
|
|
|
|
.fa-genderless:before {
|
|
content: "\f22d";
|
|
}
|
|
|
|
.fa-facebook-official:before {
|
|
content: "\f230";
|
|
}
|
|
|
|
.fa-pinterest-p:before {
|
|
content: "\f231";
|
|
}
|
|
|
|
.fa-whatsapp:before {
|
|
content: "\f232";
|
|
}
|
|
|
|
.fa-server:before {
|
|
content: "\f233";
|
|
}
|
|
|
|
.fa-user-plus:before {
|
|
content: "\f234";
|
|
}
|
|
|
|
.fa-user-times:before {
|
|
content: "\f235";
|
|
}
|
|
|
|
.fa-hotel:before,
|
|
.fa-bed:before {
|
|
content: "\f236";
|
|
}
|
|
|
|
.fa-viacoin:before {
|
|
content: "\f237";
|
|
}
|
|
|
|
.fa-train:before {
|
|
content: "\f238";
|
|
}
|
|
|
|
.fa-subway:before {
|
|
content: "\f239";
|
|
}
|
|
|
|
.fa-medium:before {
|
|
content: "\f23a";
|
|
}
|
|
|
|
.fa-yc:before,
|
|
.fa-y-combinator:before {
|
|
content: "\f23b";
|
|
}
|
|
|
|
.fa-optin-monster:before {
|
|
content: "\f23c";
|
|
}
|
|
|
|
.fa-opencart:before {
|
|
content: "\f23d";
|
|
}
|
|
|
|
.fa-expeditedssl:before {
|
|
content: "\f23e";
|
|
}
|
|
|
|
.fa-battery-4:before,
|
|
.fa-battery:before,
|
|
.fa-battery-full:before {
|
|
content: "\f240";
|
|
}
|
|
|
|
.fa-battery-3:before,
|
|
.fa-battery-three-quarters:before {
|
|
content: "\f241";
|
|
}
|
|
|
|
.fa-battery-2:before,
|
|
.fa-battery-half:before {
|
|
content: "\f242";
|
|
}
|
|
|
|
.fa-battery-1:before,
|
|
.fa-battery-quarter:before {
|
|
content: "\f243";
|
|
}
|
|
|
|
.fa-battery-0:before,
|
|
.fa-battery-empty:before {
|
|
content: "\f244";
|
|
}
|
|
|
|
.fa-mouse-pointer:before {
|
|
content: "\f245";
|
|
}
|
|
|
|
.fa-i-cursor:before {
|
|
content: "\f246";
|
|
}
|
|
|
|
.fa-object-group:before {
|
|
content: "\f247";
|
|
}
|
|
|
|
.fa-object-ungroup:before {
|
|
content: "\f248";
|
|
}
|
|
|
|
.fa-sticky-note:before {
|
|
content: "\f249";
|
|
}
|
|
|
|
.fa-sticky-note-o:before {
|
|
content: "\f24a";
|
|
}
|
|
|
|
.fa-cc-jcb:before {
|
|
content: "\f24b";
|
|
}
|
|
|
|
.fa-cc-diners-club:before {
|
|
content: "\f24c";
|
|
}
|
|
|
|
.fa-clone:before {
|
|
content: "\f24d";
|
|
}
|
|
|
|
.fa-balance-scale:before {
|
|
content: "\f24e";
|
|
}
|
|
|
|
.fa-hourglass-o:before {
|
|
content: "\f250";
|
|
}
|
|
|
|
.fa-hourglass-1:before,
|
|
.fa-hourglass-start:before {
|
|
content: "\f251";
|
|
}
|
|
|
|
.fa-hourglass-2:before,
|
|
.fa-hourglass-half:before {
|
|
content: "\f252";
|
|
}
|
|
|
|
.fa-hourglass-3:before,
|
|
.fa-hourglass-end:before {
|
|
content: "\f253";
|
|
}
|
|
|
|
.fa-hourglass:before {
|
|
content: "\f254";
|
|
}
|
|
|
|
.fa-hand-grab-o:before,
|
|
.fa-hand-rock-o:before {
|
|
content: "\f255";
|
|
}
|
|
|
|
.fa-hand-stop-o:before,
|
|
.fa-hand-paper-o:before {
|
|
content: "\f256";
|
|
}
|
|
|
|
.fa-hand-scissors-o:before {
|
|
content: "\f257";
|
|
}
|
|
|
|
.fa-hand-lizard-o:before {
|
|
content: "\f258";
|
|
}
|
|
|
|
.fa-hand-spock-o:before {
|
|
content: "\f259";
|
|
}
|
|
|
|
.fa-hand-pointer-o:before {
|
|
content: "\f25a";
|
|
}
|
|
|
|
.fa-hand-peace-o:before {
|
|
content: "\f25b";
|
|
}
|
|
|
|
.fa-trademark:before {
|
|
content: "\f25c";
|
|
}
|
|
|
|
.fa-registered:before {
|
|
content: "\f25d";
|
|
}
|
|
|
|
.fa-creative-commons:before {
|
|
content: "\f25e";
|
|
}
|
|
|
|
.fa-gg:before {
|
|
content: "\f260";
|
|
}
|
|
|
|
.fa-gg-circle:before {
|
|
content: "\f261";
|
|
}
|
|
|
|
.fa-tripadvisor:before {
|
|
content: "\f262";
|
|
}
|
|
|
|
.fa-odnoklassniki:before {
|
|
content: "\f263";
|
|
}
|
|
|
|
.fa-odnoklassniki-square:before {
|
|
content: "\f264";
|
|
}
|
|
|
|
.fa-get-pocket:before {
|
|
content: "\f265";
|
|
}
|
|
|
|
.fa-wikipedia-w:before {
|
|
content: "\f266";
|
|
}
|
|
|
|
.fa-safari:before {
|
|
content: "\f267";
|
|
}
|
|
|
|
.fa-chrome:before {
|
|
content: "\f268";
|
|
}
|
|
|
|
.fa-firefox:before {
|
|
content: "\f269";
|
|
}
|
|
|
|
.fa-opera:before {
|
|
content: "\f26a";
|
|
}
|
|
|
|
.fa-internet-explorer:before {
|
|
content: "\f26b";
|
|
}
|
|
|
|
.fa-tv:before,
|
|
.fa-television:before {
|
|
content: "\f26c";
|
|
}
|
|
|
|
.fa-contao:before {
|
|
content: "\f26d";
|
|
}
|
|
|
|
.fa-500px:before {
|
|
content: "\f26e";
|
|
}
|
|
|
|
.fa-amazon:before {
|
|
content: "\f270";
|
|
}
|
|
|
|
.fa-calendar-plus-o:before {
|
|
content: "\f271";
|
|
}
|
|
|
|
.fa-calendar-minus-o:before {
|
|
content: "\f272";
|
|
}
|
|
|
|
.fa-calendar-times-o:before {
|
|
content: "\f273";
|
|
}
|
|
|
|
.fa-calendar-check-o:before {
|
|
content: "\f274";
|
|
}
|
|
|
|
.fa-industry:before {
|
|
content: "\f275";
|
|
}
|
|
|
|
.fa-map-pin:before {
|
|
content: "\f276";
|
|
}
|
|
|
|
.fa-map-signs:before {
|
|
content: "\f277";
|
|
}
|
|
|
|
.fa-map-o:before {
|
|
content: "\f278";
|
|
}
|
|
|
|
.fa-map:before {
|
|
content: "\f279";
|
|
}
|
|
|
|
.fa-commenting:before {
|
|
content: "\f27a";
|
|
}
|
|
|
|
.fa-commenting-o:before {
|
|
content: "\f27b";
|
|
}
|
|
|
|
.fa-houzz:before {
|
|
content: "\f27c";
|
|
}
|
|
|
|
.fa-vimeo:before {
|
|
content: "\f27d";
|
|
}
|
|
|
|
.fa-black-tie:before {
|
|
content: "\f27e";
|
|
}
|
|
|
|
.fa-fonticons:before {
|
|
content: "\f280";
|
|
}
|
|
|
|
.fa-reddit-alien:before {
|
|
content: "\f281";
|
|
}
|
|
|
|
.fa-edge:before {
|
|
content: "\f282";
|
|
}
|
|
|
|
.fa-credit-card-alt:before {
|
|
content: "\f283";
|
|
}
|
|
|
|
.fa-codiepie:before {
|
|
content: "\f284";
|
|
}
|
|
|
|
.fa-modx:before {
|
|
content: "\f285";
|
|
}
|
|
|
|
.fa-fort-awesome:before {
|
|
content: "\f286";
|
|
}
|
|
|
|
.fa-usb:before {
|
|
content: "\f287";
|
|
}
|
|
|
|
.fa-product-hunt:before {
|
|
content: "\f288";
|
|
}
|
|
|
|
.fa-mixcloud:before {
|
|
content: "\f289";
|
|
}
|
|
|
|
.fa-scribd:before {
|
|
content: "\f28a";
|
|
}
|
|
|
|
.fa-pause-circle:before {
|
|
content: "\f28b";
|
|
}
|
|
|
|
.fa-pause-circle-o:before {
|
|
content: "\f28c";
|
|
}
|
|
|
|
.fa-stop-circle:before {
|
|
content: "\f28d";
|
|
}
|
|
|
|
.fa-stop-circle-o:before {
|
|
content: "\f28e";
|
|
}
|
|
|
|
.fa-shopping-bag:before {
|
|
content: "\f290";
|
|
}
|
|
|
|
.fa-shopping-basket:before {
|
|
content: "\f291";
|
|
}
|
|
|
|
.fa-hashtag:before {
|
|
content: "\f292";
|
|
}
|
|
|
|
.fa-bluetooth:before {
|
|
content: "\f293";
|
|
}
|
|
|
|
.fa-bluetooth-b:before {
|
|
content: "\f294";
|
|
}
|
|
|
|
.fa-percent:before {
|
|
content: "\f295";
|
|
}
|
|
|
|
.fa-gitlab:before {
|
|
content: "\f296";
|
|
}
|
|
|
|
.fa-wpbeginner:before {
|
|
content: "\f297";
|
|
}
|
|
|
|
.fa-wpforms:before {
|
|
content: "\f298";
|
|
}
|
|
|
|
.fa-envira:before {
|
|
content: "\f299";
|
|
}
|
|
|
|
.fa-universal-access:before {
|
|
content: "\f29a";
|
|
}
|
|
|
|
.fa-wheelchair-alt:before {
|
|
content: "\f29b";
|
|
}
|
|
|
|
.fa-question-circle-o:before {
|
|
content: "\f29c";
|
|
}
|
|
|
|
.fa-blind:before {
|
|
content: "\f29d";
|
|
}
|
|
|
|
.fa-audio-description:before {
|
|
content: "\f29e";
|
|
}
|
|
|
|
.fa-volume-control-phone:before {
|
|
content: "\f2a0";
|
|
}
|
|
|
|
.fa-braille:before {
|
|
content: "\f2a1";
|
|
}
|
|
|
|
.fa-assistive-listening-systems:before {
|
|
content: "\f2a2";
|
|
}
|
|
|
|
.fa-asl-interpreting:before,
|
|
.fa-american-sign-language-interpreting:before {
|
|
content: "\f2a3";
|
|
}
|
|
|
|
.fa-deafness:before,
|
|
.fa-hard-of-hearing:before,
|
|
.fa-deaf:before {
|
|
content: "\f2a4";
|
|
}
|
|
|
|
.fa-glide:before {
|
|
content: "\f2a5";
|
|
}
|
|
|
|
.fa-glide-g:before {
|
|
content: "\f2a6";
|
|
}
|
|
|
|
.fa-signing:before,
|
|
.fa-sign-language:before {
|
|
content: "\f2a7";
|
|
}
|
|
|
|
.fa-low-vision:before {
|
|
content: "\f2a8";
|
|
}
|
|
|
|
.fa-viadeo:before {
|
|
content: "\f2a9";
|
|
}
|
|
|
|
.fa-viadeo-square:before {
|
|
content: "\f2aa";
|
|
}
|
|
|
|
.fa-snapchat:before {
|
|
content: "\f2ab";
|
|
}
|
|
|
|
.fa-snapchat-ghost:before {
|
|
content: "\f2ac";
|
|
}
|
|
|
|
.fa-snapchat-square:before {
|
|
content: "\f2ad";
|
|
}
|
|
|
|
.fa-pied-piper:before {
|
|
content: "\f2ae";
|
|
}
|
|
|
|
.fa-first-order:before {
|
|
content: "\f2b0";
|
|
}
|
|
|
|
.fa-yoast:before {
|
|
content: "\f2b1";
|
|
}
|
|
|
|
.fa-themeisle:before {
|
|
content: "\f2b2";
|
|
}
|
|
|
|
.fa-google-plus-circle:before,
|
|
.fa-google-plus-official:before {
|
|
content: "\f2b3";
|
|
}
|
|
|
|
.fa-fa:before,
|
|
.fa-font-awesome:before {
|
|
content: "\f2b4";
|
|
}
|
|
|
|
.fa-handshake-o:before {
|
|
content: "\f2b5";
|
|
}
|
|
|
|
.fa-envelope-open:before {
|
|
content: "\f2b6";
|
|
}
|
|
|
|
.fa-envelope-open-o:before {
|
|
content: "\f2b7";
|
|
}
|
|
|
|
.fa-linode:before {
|
|
content: "\f2b8";
|
|
}
|
|
|
|
.fa-address-book:before {
|
|
content: "\f2b9";
|
|
}
|
|
|
|
.fa-address-book-o:before {
|
|
content: "\f2ba";
|
|
}
|
|
|
|
.fa-vcard:before,
|
|
.fa-address-card:before {
|
|
content: "\f2bb";
|
|
}
|
|
|
|
.fa-vcard-o:before,
|
|
.fa-address-card-o:before {
|
|
content: "\f2bc";
|
|
}
|
|
|
|
.fa-user-circle:before {
|
|
content: "\f2bd";
|
|
}
|
|
|
|
.fa-user-circle-o:before {
|
|
content: "\f2be";
|
|
}
|
|
|
|
.fa-user-o:before {
|
|
content: "\f2c0";
|
|
}
|
|
|
|
.fa-id-badge:before {
|
|
content: "\f2c1";
|
|
}
|
|
|
|
.fa-drivers-license:before,
|
|
.fa-id-card:before {
|
|
content: "\f2c2";
|
|
}
|
|
|
|
.fa-drivers-license-o:before,
|
|
.fa-id-card-o:before {
|
|
content: "\f2c3";
|
|
}
|
|
|
|
.fa-quora:before {
|
|
content: "\f2c4";
|
|
}
|
|
|
|
.fa-free-code-camp:before {
|
|
content: "\f2c5";
|
|
}
|
|
|
|
.fa-telegram:before {
|
|
content: "\f2c6";
|
|
}
|
|
|
|
.fa-thermometer-4:before,
|
|
.fa-thermometer:before,
|
|
.fa-thermometer-full:before {
|
|
content: "\f2c7";
|
|
}
|
|
|
|
.fa-thermometer-3:before,
|
|
.fa-thermometer-three-quarters:before {
|
|
content: "\f2c8";
|
|
}
|
|
|
|
.fa-thermometer-2:before,
|
|
.fa-thermometer-half:before {
|
|
content: "\f2c9";
|
|
}
|
|
|
|
.fa-thermometer-1:before,
|
|
.fa-thermometer-quarter:before {
|
|
content: "\f2ca";
|
|
}
|
|
|
|
.fa-thermometer-0:before,
|
|
.fa-thermometer-empty:before {
|
|
content: "\f2cb";
|
|
}
|
|
|
|
.fa-shower:before {
|
|
content: "\f2cc";
|
|
}
|
|
|
|
.fa-bathtub:before,
|
|
.fa-s15:before,
|
|
.fa-bath:before {
|
|
content: "\f2cd";
|
|
}
|
|
|
|
.fa-podcast:before {
|
|
content: "\f2ce";
|
|
}
|
|
|
|
.fa-window-maximize:before {
|
|
content: "\f2d0";
|
|
}
|
|
|
|
.fa-window-minimize:before {
|
|
content: "\f2d1";
|
|
}
|
|
|
|
.fa-window-restore:before {
|
|
content: "\f2d2";
|
|
}
|
|
|
|
.fa-times-rectangle:before,
|
|
.fa-window-close:before {
|
|
content: "\f2d3";
|
|
}
|
|
|
|
.fa-times-rectangle-o:before,
|
|
.fa-window-close-o:before {
|
|
content: "\f2d4";
|
|
}
|
|
|
|
.fa-bandcamp:before {
|
|
content: "\f2d5";
|
|
}
|
|
|
|
.fa-grav:before {
|
|
content: "\f2d6";
|
|
}
|
|
|
|
.fa-etsy:before {
|
|
content: "\f2d7";
|
|
}
|
|
|
|
.fa-imdb:before {
|
|
content: "\f2d8";
|
|
}
|
|
|
|
.fa-ravelry:before {
|
|
content: "\f2d9";
|
|
}
|
|
|
|
.fa-eercast:before {
|
|
content: "\f2da";
|
|
}
|
|
|
|
.fa-microchip:before {
|
|
content: "\f2db";
|
|
}
|
|
|
|
.fa-snowflake-o:before {
|
|
content: "\f2dc";
|
|
}
|
|
|
|
.fa-superpowers:before {
|
|
content: "\f2dd";
|
|
}
|
|
|
|
.fa-wpexplorer:before {
|
|
content: "\f2de";
|
|
}
|
|
|
|
.fa-meetup:before {
|
|
content: "\f2e0";
|
|
}
|
|
|
|
.sr-only {
|
|
position: absolute;
|
|
width: 1px;
|
|
height: 1px;
|
|
padding: 0;
|
|
margin: -1px;
|
|
overflow: hidden;
|
|
clip: rect(0, 0, 0, 0);
|
|
border: 0;
|
|
}
|
|
|
|
.sr-only-focusable:active,
|
|
.sr-only-focusable:focus {
|
|
position: static;
|
|
width: auto;
|
|
height: auto;
|
|
margin: 0;
|
|
overflow: visible;
|
|
clip: auto;
|
|
}
|
|
@charset "UTF-8";
|
|
|
|
@font-face {
|
|
font-family: 'Material Icons';
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
font-display: block;
|
|
src: url("../fonts/MaterialIcons-Regular.eot");
|
|
/* For IE6-8 */
|
|
src: local("☺"), url("../fonts/MaterialIcons-Regular.woff2") format("woff2"), url("../fonts/MaterialIcons-Regular.woff") format("woff"), url("../fonts/MaterialIcons-Regular.ttf") format("truetype");
|
|
}
|
|
|
|
.material-icons {
|
|
font-family: 'Material Icons';
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
font-size: 24px;
|
|
/* Preferred icon size */
|
|
display: inline-block;
|
|
line-height: 1;
|
|
text-transform: none;
|
|
letter-spacing: normal;
|
|
word-wrap: normal;
|
|
white-space: nowrap;
|
|
/* Respect document layout direction */
|
|
direction: inherit;
|
|
/* Support for all WebKit browsers. */
|
|
-webkit-font-smoothing: antialiased;
|
|
/* Support for Safari and Chrome. */
|
|
text-rendering: optimizeLegibility;
|
|
/* Support for Firefox. */
|
|
-moz-osx-font-smoothing: grayscale;
|
|
/* Support for IE. */
|
|
font-feature-settings: 'liga';
|
|
}
|
|
|
|
.material-icons._10k:before {
|
|
content: "\e951";
|
|
}
|
|
|
|
.material-icons._10mp:before {
|
|
content: "\e952";
|
|
}
|
|
|
|
.material-icons._11mp:before {
|
|
content: "\e953";
|
|
}
|
|
|
|
.material-icons._123:before {
|
|
content: "\eb8d";
|
|
}
|
|
|
|
.material-icons._12mp:before {
|
|
content: "\e954";
|
|
}
|
|
|
|
.material-icons._13mp:before {
|
|
content: "\e955";
|
|
}
|
|
|
|
.material-icons._14mp:before {
|
|
content: "\e956";
|
|
}
|
|
|
|
.material-icons._15mp:before {
|
|
content: "\e957";
|
|
}
|
|
|
|
.material-icons._16mp:before {
|
|
content: "\e958";
|
|
}
|
|
|
|
.material-icons._17mp:before {
|
|
content: "\e959";
|
|
}
|
|
|
|
.material-icons._18_up_rating:before {
|
|
content: "\f8fd";
|
|
}
|
|
|
|
.material-icons._18mp:before {
|
|
content: "\e95a";
|
|
}
|
|
|
|
.material-icons._19mp:before {
|
|
content: "\e95b";
|
|
}
|
|
|
|
.material-icons._1k:before {
|
|
content: "\e95c";
|
|
}
|
|
|
|
.material-icons._1k_plus:before {
|
|
content: "\e95d";
|
|
}
|
|
|
|
.material-icons._1x_mobiledata:before {
|
|
content: "\efcd";
|
|
}
|
|
|
|
.material-icons._20mp:before {
|
|
content: "\e95e";
|
|
}
|
|
|
|
.material-icons._21mp:before {
|
|
content: "\e95f";
|
|
}
|
|
|
|
.material-icons._22mp:before {
|
|
content: "\e960";
|
|
}
|
|
|
|
.material-icons._23mp:before {
|
|
content: "\e961";
|
|
}
|
|
|
|
.material-icons._24mp:before {
|
|
content: "\e962";
|
|
}
|
|
|
|
.material-icons._2k:before {
|
|
content: "\e963";
|
|
}
|
|
|
|
.material-icons._2k_plus:before {
|
|
content: "\e964";
|
|
}
|
|
|
|
.material-icons._2mp:before {
|
|
content: "\e965";
|
|
}
|
|
|
|
.material-icons._30fps:before {
|
|
content: "\efce";
|
|
}
|
|
|
|
.material-icons._30fps_select:before {
|
|
content: "\efcf";
|
|
}
|
|
|
|
.material-icons._360:before {
|
|
content: "\e577";
|
|
}
|
|
|
|
.material-icons._3d_rotation:before {
|
|
content: "\e84d";
|
|
}
|
|
|
|
.material-icons._3g_mobiledata:before {
|
|
content: "\efd0";
|
|
}
|
|
|
|
.material-icons._3k:before {
|
|
content: "\e966";
|
|
}
|
|
|
|
.material-icons._3k_plus:before {
|
|
content: "\e967";
|
|
}
|
|
|
|
.material-icons._3mp:before {
|
|
content: "\e968";
|
|
}
|
|
|
|
.material-icons._3p:before {
|
|
content: "\efd1";
|
|
}
|
|
|
|
.material-icons._4g_mobiledata:before {
|
|
content: "\efd2";
|
|
}
|
|
|
|
.material-icons._4g_plus_mobiledata:before {
|
|
content: "\efd3";
|
|
}
|
|
|
|
.material-icons._4k:before {
|
|
content: "\e072";
|
|
}
|
|
|
|
.material-icons._4k_plus:before {
|
|
content: "\e969";
|
|
}
|
|
|
|
.material-icons._4mp:before {
|
|
content: "\e96a";
|
|
}
|
|
|
|
.material-icons._5g:before {
|
|
content: "\ef38";
|
|
}
|
|
|
|
.material-icons._5k:before {
|
|
content: "\e96b";
|
|
}
|
|
|
|
.material-icons._5k_plus:before {
|
|
content: "\e96c";
|
|
}
|
|
|
|
.material-icons._5mp:before {
|
|
content: "\e96d";
|
|
}
|
|
|
|
.material-icons._60fps:before {
|
|
content: "\efd4";
|
|
}
|
|
|
|
.material-icons._60fps_select:before {
|
|
content: "\efd5";
|
|
}
|
|
|
|
.material-icons._6_ft_apart:before {
|
|
content: "\f21e";
|
|
}
|
|
|
|
.material-icons._6k:before {
|
|
content: "\e96e";
|
|
}
|
|
|
|
.material-icons._6k_plus:before {
|
|
content: "\e96f";
|
|
}
|
|
|
|
.material-icons._6mp:before {
|
|
content: "\e970";
|
|
}
|
|
|
|
.material-icons._7k:before {
|
|
content: "\e971";
|
|
}
|
|
|
|
.material-icons._7k_plus:before {
|
|
content: "\e972";
|
|
}
|
|
|
|
.material-icons._7mp:before {
|
|
content: "\e973";
|
|
}
|
|
|
|
.material-icons._8k:before {
|
|
content: "\e974";
|
|
}
|
|
|
|
.material-icons._8k_plus:before {
|
|
content: "\e975";
|
|
}
|
|
|
|
.material-icons._8mp:before {
|
|
content: "\e976";
|
|
}
|
|
|
|
.material-icons._9k:before {
|
|
content: "\e977";
|
|
}
|
|
|
|
.material-icons._9k_plus:before {
|
|
content: "\e978";
|
|
}
|
|
|
|
.material-icons._9mp:before {
|
|
content: "\e979";
|
|
}
|
|
|
|
.material-icons.abc:before {
|
|
content: "\eb94";
|
|
}
|
|
|
|
.material-icons.ac_unit:before {
|
|
content: "\eb3b";
|
|
}
|
|
|
|
.material-icons.access_alarm:before {
|
|
content: "\e190";
|
|
}
|
|
|
|
.material-icons.access_alarms:before {
|
|
content: "\e191";
|
|
}
|
|
|
|
.material-icons.access_time:before {
|
|
content: "\e192";
|
|
}
|
|
|
|
.material-icons.access_time_filled:before {
|
|
content: "\efd6";
|
|
}
|
|
|
|
.material-icons.accessibility:before {
|
|
content: "\e84e";
|
|
}
|
|
|
|
.material-icons.accessibility_new:before {
|
|
content: "\e92c";
|
|
}
|
|
|
|
.material-icons.accessible:before {
|
|
content: "\e914";
|
|
}
|
|
|
|
.material-icons.accessible_forward:before {
|
|
content: "\e934";
|
|
}
|
|
|
|
.material-icons.account_balance:before {
|
|
content: "\e84f";
|
|
}
|
|
|
|
.material-icons.account_balance_wallet:before {
|
|
content: "\e850";
|
|
}
|
|
|
|
.material-icons.account_box:before {
|
|
content: "\e851";
|
|
}
|
|
|
|
.material-icons.account_circle:before {
|
|
content: "\e853";
|
|
}
|
|
|
|
.material-icons.account_tree:before {
|
|
content: "\e97a";
|
|
}
|
|
|
|
.material-icons.ad_units:before {
|
|
content: "\ef39";
|
|
}
|
|
|
|
.material-icons.adb:before {
|
|
content: "\e60e";
|
|
}
|
|
|
|
.material-icons.add:before {
|
|
content: "\e145";
|
|
}
|
|
|
|
.material-icons.add_a_photo:before {
|
|
content: "\e439";
|
|
}
|
|
|
|
.material-icons.add_alarm:before {
|
|
content: "\e193";
|
|
}
|
|
|
|
.material-icons.add_alert:before {
|
|
content: "\e003";
|
|
}
|
|
|
|
.material-icons.add_box:before {
|
|
content: "\e146";
|
|
}
|
|
|
|
.material-icons.add_business:before {
|
|
content: "\e729";
|
|
}
|
|
|
|
.material-icons.add_call:before {
|
|
content: "\e0e8";
|
|
}
|
|
|
|
.material-icons.add_card:before {
|
|
content: "\eb86";
|
|
}
|
|
|
|
.material-icons.add_chart:before {
|
|
content: "\e97b";
|
|
}
|
|
|
|
.material-icons.add_circle:before {
|
|
content: "\e147";
|
|
}
|
|
|
|
.material-icons.add_circle_outline:before {
|
|
content: "\e148";
|
|
}
|
|
|
|
.material-icons.add_comment:before {
|
|
content: "\e266";
|
|
}
|
|
|
|
.material-icons.add_home:before {
|
|
content: "\f8eb";
|
|
}
|
|
|
|
.material-icons.add_home_work:before {
|
|
content: "\f8ed";
|
|
}
|
|
|
|
.material-icons.add_ic_call:before {
|
|
content: "\e97c";
|
|
}
|
|
|
|
.material-icons.add_link:before {
|
|
content: "\e178";
|
|
}
|
|
|
|
.material-icons.add_location:before {
|
|
content: "\e567";
|
|
}
|
|
|
|
.material-icons.add_location_alt:before {
|
|
content: "\ef3a";
|
|
}
|
|
|
|
.material-icons.add_moderator:before {
|
|
content: "\e97d";
|
|
}
|
|
|
|
.material-icons.add_photo_alternate:before {
|
|
content: "\e43e";
|
|
}
|
|
|
|
.material-icons.add_reaction:before {
|
|
content: "\e1d3";
|
|
}
|
|
|
|
.material-icons.add_road:before {
|
|
content: "\ef3b";
|
|
}
|
|
|
|
.material-icons.add_shopping_cart:before {
|
|
content: "\e854";
|
|
}
|
|
|
|
.material-icons.add_task:before {
|
|
content: "\f23a";
|
|
}
|
|
|
|
.material-icons.add_to_drive:before {
|
|
content: "\e65c";
|
|
}
|
|
|
|
.material-icons.add_to_home_screen:before {
|
|
content: "\e1fe";
|
|
}
|
|
|
|
.material-icons.add_to_photos:before {
|
|
content: "\e39d";
|
|
}
|
|
|
|
.material-icons.add_to_queue:before {
|
|
content: "\e05c";
|
|
}
|
|
|
|
.material-icons.addchart:before {
|
|
content: "\ef3c";
|
|
}
|
|
|
|
.material-icons.adf_scanner:before {
|
|
content: "\eada";
|
|
}
|
|
|
|
.material-icons.adjust:before {
|
|
content: "\e39e";
|
|
}
|
|
|
|
.material-icons.admin_panel_settings:before {
|
|
content: "\ef3d";
|
|
}
|
|
|
|
.material-icons.adobe:before {
|
|
content: "\ea96";
|
|
}
|
|
|
|
.material-icons.ads_click:before {
|
|
content: "\e762";
|
|
}
|
|
|
|
.material-icons.agriculture:before {
|
|
content: "\ea79";
|
|
}
|
|
|
|
.material-icons.air:before {
|
|
content: "\efd8";
|
|
}
|
|
|
|
.material-icons.airline_seat_flat:before {
|
|
content: "\e630";
|
|
}
|
|
|
|
.material-icons.airline_seat_flat_angled:before {
|
|
content: "\e631";
|
|
}
|
|
|
|
.material-icons.airline_seat_individual_suite:before {
|
|
content: "\e632";
|
|
}
|
|
|
|
.material-icons.airline_seat_legroom_extra:before {
|
|
content: "\e633";
|
|
}
|
|
|
|
.material-icons.airline_seat_legroom_normal:before {
|
|
content: "\e634";
|
|
}
|
|
|
|
.material-icons.airline_seat_legroom_reduced:before {
|
|
content: "\e635";
|
|
}
|
|
|
|
.material-icons.airline_seat_recline_extra:before {
|
|
content: "\e636";
|
|
}
|
|
|
|
.material-icons.airline_seat_recline_normal:before {
|
|
content: "\e637";
|
|
}
|
|
|
|
.material-icons.airline_stops:before {
|
|
content: "\e7d0";
|
|
}
|
|
|
|
.material-icons.airlines:before {
|
|
content: "\e7ca";
|
|
}
|
|
|
|
.material-icons.airplane_ticket:before {
|
|
content: "\efd9";
|
|
}
|
|
|
|
.material-icons.airplanemode_active:before {
|
|
content: "\e195";
|
|
}
|
|
|
|
.material-icons.airplanemode_inactive:before {
|
|
content: "\e194";
|
|
}
|
|
|
|
.material-icons.airplanemode_off:before {
|
|
content: "\e194";
|
|
}
|
|
|
|
.material-icons.airplanemode_on:before {
|
|
content: "\e195";
|
|
}
|
|
|
|
.material-icons.airplay:before {
|
|
content: "\e055";
|
|
}
|
|
|
|
.material-icons.airport_shuttle:before {
|
|
content: "\eb3c";
|
|
}
|
|
|
|
.material-icons.alarm:before {
|
|
content: "\e855";
|
|
}
|
|
|
|
.material-icons.alarm_add:before {
|
|
content: "\e856";
|
|
}
|
|
|
|
.material-icons.alarm_off:before {
|
|
content: "\e857";
|
|
}
|
|
|
|
.material-icons.alarm_on:before {
|
|
content: "\e858";
|
|
}
|
|
|
|
.material-icons.album:before {
|
|
content: "\e019";
|
|
}
|
|
|
|
.material-icons.align_horizontal_center:before {
|
|
content: "\e00f";
|
|
}
|
|
|
|
.material-icons.align_horizontal_left:before {
|
|
content: "\e00d";
|
|
}
|
|
|
|
.material-icons.align_horizontal_right:before {
|
|
content: "\e010";
|
|
}
|
|
|
|
.material-icons.align_vertical_bottom:before {
|
|
content: "\e015";
|
|
}
|
|
|
|
.material-icons.align_vertical_center:before {
|
|
content: "\e011";
|
|
}
|
|
|
|
.material-icons.align_vertical_top:before {
|
|
content: "\e00c";
|
|
}
|
|
|
|
.material-icons.all_inbox:before {
|
|
content: "\e97f";
|
|
}
|
|
|
|
.material-icons.all_inclusive:before {
|
|
content: "\eb3d";
|
|
}
|
|
|
|
.material-icons.all_out:before {
|
|
content: "\e90b";
|
|
}
|
|
|
|
.material-icons.alt_route:before {
|
|
content: "\f184";
|
|
}
|
|
|
|
.material-icons.alternate_email:before {
|
|
content: "\e0e6";
|
|
}
|
|
|
|
.material-icons.amp_stories:before {
|
|
content: "\ea13";
|
|
}
|
|
|
|
.material-icons.analytics:before {
|
|
content: "\ef3e";
|
|
}
|
|
|
|
.material-icons.anchor:before {
|
|
content: "\f1cd";
|
|
}
|
|
|
|
.material-icons.android:before {
|
|
content: "\e859";
|
|
}
|
|
|
|
.material-icons.animation:before {
|
|
content: "\e71c";
|
|
}
|
|
|
|
.material-icons.announcement:before {
|
|
content: "\e85a";
|
|
}
|
|
|
|
.material-icons.aod:before {
|
|
content: "\efda";
|
|
}
|
|
|
|
.material-icons.apartment:before {
|
|
content: "\ea40";
|
|
}
|
|
|
|
.material-icons.api:before {
|
|
content: "\f1b7";
|
|
}
|
|
|
|
.material-icons.app_blocking:before {
|
|
content: "\ef3f";
|
|
}
|
|
|
|
.material-icons.app_registration:before {
|
|
content: "\ef40";
|
|
}
|
|
|
|
.material-icons.app_settings_alt:before {
|
|
content: "\ef41";
|
|
}
|
|
|
|
.material-icons.app_shortcut:before {
|
|
content: "\eae4";
|
|
}
|
|
|
|
.material-icons.apple:before {
|
|
content: "\ea80";
|
|
}
|
|
|
|
.material-icons.approval:before {
|
|
content: "\e982";
|
|
}
|
|
|
|
.material-icons.apps:before {
|
|
content: "\e5c3";
|
|
}
|
|
|
|
.material-icons.apps_outage:before {
|
|
content: "\e7cc";
|
|
}
|
|
|
|
.material-icons.architecture:before {
|
|
content: "\ea3b";
|
|
}
|
|
|
|
.material-icons.archive:before {
|
|
content: "\e149";
|
|
}
|
|
|
|
.material-icons.area_chart:before {
|
|
content: "\e770";
|
|
}
|
|
|
|
.material-icons.arrow_back:before {
|
|
content: "\e5c4";
|
|
}
|
|
|
|
.material-icons.arrow_back_ios:before {
|
|
content: "\e5e0";
|
|
}
|
|
|
|
.material-icons.arrow_back_ios_new:before {
|
|
content: "\e2ea";
|
|
}
|
|
|
|
.material-icons.arrow_circle_down:before {
|
|
content: "\f181";
|
|
}
|
|
|
|
.material-icons.arrow_circle_left:before {
|
|
content: "\eaa7";
|
|
}
|
|
|
|
.material-icons.arrow_circle_right:before {
|
|
content: "\eaaa";
|
|
}
|
|
|
|
.material-icons.arrow_circle_up:before {
|
|
content: "\f182";
|
|
}
|
|
|
|
.material-icons.arrow_downward:before {
|
|
content: "\e5db";
|
|
}
|
|
|
|
.material-icons.arrow_drop_down:before {
|
|
content: "\e5c5";
|
|
}
|
|
|
|
.material-icons.arrow_drop_down_circle:before {
|
|
content: "\e5c6";
|
|
}
|
|
|
|
.material-icons.arrow_drop_up:before {
|
|
content: "\e5c7";
|
|
}
|
|
|
|
.material-icons.arrow_forward:before {
|
|
content: "\e5c8";
|
|
}
|
|
|
|
.material-icons.arrow_forward_ios:before {
|
|
content: "\e5e1";
|
|
}
|
|
|
|
.material-icons.arrow_left:before {
|
|
content: "\e5de";
|
|
}
|
|
|
|
.material-icons.arrow_right:before {
|
|
content: "\e5df";
|
|
}
|
|
|
|
.material-icons.arrow_right_alt:before {
|
|
content: "\e941";
|
|
}
|
|
|
|
.material-icons.arrow_upward:before {
|
|
content: "\e5d8";
|
|
}
|
|
|
|
.material-icons.art_track:before {
|
|
content: "\e060";
|
|
}
|
|
|
|
.material-icons.article:before {
|
|
content: "\ef42";
|
|
}
|
|
|
|
.material-icons.aspect_ratio:before {
|
|
content: "\e85b";
|
|
}
|
|
|
|
.material-icons.assessment:before {
|
|
content: "\e85c";
|
|
}
|
|
|
|
.material-icons.assignment:before {
|
|
content: "\e85d";
|
|
}
|
|
|
|
.material-icons.assignment_ind:before {
|
|
content: "\e85e";
|
|
}
|
|
|
|
.material-icons.assignment_late:before {
|
|
content: "\e85f";
|
|
}
|
|
|
|
.material-icons.assignment_return:before {
|
|
content: "\e860";
|
|
}
|
|
|
|
.material-icons.assignment_returned:before {
|
|
content: "\e861";
|
|
}
|
|
|
|
.material-icons.assignment_turned_in:before {
|
|
content: "\e862";
|
|
}
|
|
|
|
.material-icons.assistant:before {
|
|
content: "\e39f";
|
|
}
|
|
|
|
.material-icons.assistant_direction:before {
|
|
content: "\e988";
|
|
}
|
|
|
|
.material-icons.assistant_navigation:before {
|
|
content: "\e989";
|
|
}
|
|
|
|
.material-icons.assistant_photo:before {
|
|
content: "\e3a0";
|
|
}
|
|
|
|
.material-icons.assured_workload:before {
|
|
content: "\eb6f";
|
|
}
|
|
|
|
.material-icons.atm:before {
|
|
content: "\e573";
|
|
}
|
|
|
|
.material-icons.attach_email:before {
|
|
content: "\ea5e";
|
|
}
|
|
|
|
.material-icons.attach_file:before {
|
|
content: "\e226";
|
|
}
|
|
|
|
.material-icons.attach_money:before {
|
|
content: "\e227";
|
|
}
|
|
|
|
.material-icons.attachment:before {
|
|
content: "\e2bc";
|
|
}
|
|
|
|
.material-icons.attractions:before {
|
|
content: "\ea52";
|
|
}
|
|
|
|
.material-icons.attribution:before {
|
|
content: "\efdb";
|
|
}
|
|
|
|
.material-icons.audio_file:before {
|
|
content: "\eb82";
|
|
}
|
|
|
|
.material-icons.audiotrack:before {
|
|
content: "\e3a1";
|
|
}
|
|
|
|
.material-icons.auto_awesome:before {
|
|
content: "\e65f";
|
|
}
|
|
|
|
.material-icons.auto_awesome_mosaic:before {
|
|
content: "\e660";
|
|
}
|
|
|
|
.material-icons.auto_awesome_motion:before {
|
|
content: "\e661";
|
|
}
|
|
|
|
.material-icons.auto_delete:before {
|
|
content: "\ea4c";
|
|
}
|
|
|
|
.material-icons.auto_fix_high:before {
|
|
content: "\e663";
|
|
}
|
|
|
|
.material-icons.auto_fix_normal:before {
|
|
content: "\e664";
|
|
}
|
|
|
|
.material-icons.auto_fix_off:before {
|
|
content: "\e665";
|
|
}
|
|
|
|
.material-icons.auto_graph:before {
|
|
content: "\e4fb";
|
|
}
|
|
|
|
.material-icons.auto_mode:before {
|
|
content: "\ec20";
|
|
}
|
|
|
|
.material-icons.auto_stories:before {
|
|
content: "\e666";
|
|
}
|
|
|
|
.material-icons.autofps_select:before {
|
|
content: "\efdc";
|
|
}
|
|
|
|
.material-icons.autorenew:before {
|
|
content: "\e863";
|
|
}
|
|
|
|
.material-icons.av_timer:before {
|
|
content: "\e01b";
|
|
}
|
|
|
|
.material-icons.baby_changing_station:before {
|
|
content: "\f19b";
|
|
}
|
|
|
|
.material-icons.back_hand:before {
|
|
content: "\e764";
|
|
}
|
|
|
|
.material-icons.backpack:before {
|
|
content: "\f19c";
|
|
}
|
|
|
|
.material-icons.backspace:before {
|
|
content: "\e14a";
|
|
}
|
|
|
|
.material-icons.backup:before {
|
|
content: "\e864";
|
|
}
|
|
|
|
.material-icons.backup_table:before {
|
|
content: "\ef43";
|
|
}
|
|
|
|
.material-icons.badge:before {
|
|
content: "\ea67";
|
|
}
|
|
|
|
.material-icons.bakery_dining:before {
|
|
content: "\ea53";
|
|
}
|
|
|
|
.material-icons.balance:before {
|
|
content: "\eaf6";
|
|
}
|
|
|
|
.material-icons.balcony:before {
|
|
content: "\e58f";
|
|
}
|
|
|
|
.material-icons.ballot:before {
|
|
content: "\e172";
|
|
}
|
|
|
|
.material-icons.bar_chart:before {
|
|
content: "\e26b";
|
|
}
|
|
|
|
.material-icons.batch_prediction:before {
|
|
content: "\f0f5";
|
|
}
|
|
|
|
.material-icons.bathroom:before {
|
|
content: "\efdd";
|
|
}
|
|
|
|
.material-icons.bathtub:before {
|
|
content: "\ea41";
|
|
}
|
|
|
|
.material-icons.battery_0_bar:before {
|
|
content: "\ebdc";
|
|
}
|
|
|
|
.material-icons.battery_1_bar:before {
|
|
content: "\ebd9";
|
|
}
|
|
|
|
.material-icons.battery_2_bar:before {
|
|
content: "\ebe0";
|
|
}
|
|
|
|
.material-icons.battery_3_bar:before {
|
|
content: "\ebdd";
|
|
}
|
|
|
|
.material-icons.battery_4_bar:before {
|
|
content: "\ebe2";
|
|
}
|
|
|
|
.material-icons.battery_5_bar:before {
|
|
content: "\ebd4";
|
|
}
|
|
|
|
.material-icons.battery_6_bar:before {
|
|
content: "\ebd2";
|
|
}
|
|
|
|
.material-icons.battery_alert:before {
|
|
content: "\e19c";
|
|
}
|
|
|
|
.material-icons.battery_charging_full:before {
|
|
content: "\e1a3";
|
|
}
|
|
|
|
.material-icons.battery_full:before {
|
|
content: "\e1a4";
|
|
}
|
|
|
|
.material-icons.battery_saver:before {
|
|
content: "\efde";
|
|
}
|
|
|
|
.material-icons.battery_std:before {
|
|
content: "\e1a5";
|
|
}
|
|
|
|
.material-icons.battery_unknown:before {
|
|
content: "\e1a6";
|
|
}
|
|
|
|
.material-icons.beach_access:before {
|
|
content: "\eb3e";
|
|
}
|
|
|
|
.material-icons.bed:before {
|
|
content: "\efdf";
|
|
}
|
|
|
|
.material-icons.bedroom_baby:before {
|
|
content: "\efe0";
|
|
}
|
|
|
|
.material-icons.bedroom_child:before {
|
|
content: "\efe1";
|
|
}
|
|
|
|
.material-icons.bedroom_parent:before {
|
|
content: "\efe2";
|
|
}
|
|
|
|
.material-icons.bedtime:before {
|
|
content: "\ef44";
|
|
}
|
|
|
|
.material-icons.bedtime_off:before {
|
|
content: "\eb76";
|
|
}
|
|
|
|
.material-icons.beenhere:before {
|
|
content: "\e52d";
|
|
}
|
|
|
|
.material-icons.bento:before {
|
|
content: "\f1f4";
|
|
}
|
|
|
|
.material-icons.bike_scooter:before {
|
|
content: "\ef45";
|
|
}
|
|
|
|
.material-icons.biotech:before {
|
|
content: "\ea3a";
|
|
}
|
|
|
|
.material-icons.blender:before {
|
|
content: "\efe3";
|
|
}
|
|
|
|
.material-icons.blinds:before {
|
|
content: "\e286";
|
|
}
|
|
|
|
.material-icons.blinds_closed:before {
|
|
content: "\ec1f";
|
|
}
|
|
|
|
.material-icons.block:before {
|
|
content: "\e14b";
|
|
}
|
|
|
|
.material-icons.block_flipped:before {
|
|
content: "\ef46";
|
|
}
|
|
|
|
.material-icons.bloodtype:before {
|
|
content: "\efe4";
|
|
}
|
|
|
|
.material-icons.bluetooth:before {
|
|
content: "\e1a7";
|
|
}
|
|
|
|
.material-icons.bluetooth_audio:before {
|
|
content: "\e60f";
|
|
}
|
|
|
|
.material-icons.bluetooth_connected:before {
|
|
content: "\e1a8";
|
|
}
|
|
|
|
.material-icons.bluetooth_disabled:before {
|
|
content: "\e1a9";
|
|
}
|
|
|
|
.material-icons.bluetooth_drive:before {
|
|
content: "\efe5";
|
|
}
|
|
|
|
.material-icons.bluetooth_searching:before {
|
|
content: "\e1aa";
|
|
}
|
|
|
|
.material-icons.blur_circular:before {
|
|
content: "\e3a2";
|
|
}
|
|
|
|
.material-icons.blur_linear:before {
|
|
content: "\e3a3";
|
|
}
|
|
|
|
.material-icons.blur_off:before {
|
|
content: "\e3a4";
|
|
}
|
|
|
|
.material-icons.blur_on:before {
|
|
content: "\e3a5";
|
|
}
|
|
|
|
.material-icons.bolt:before {
|
|
content: "\ea0b";
|
|
}
|
|
|
|
.material-icons.book:before {
|
|
content: "\e865";
|
|
}
|
|
|
|
.material-icons.book_online:before {
|
|
content: "\f217";
|
|
}
|
|
|
|
.material-icons.bookmark:before {
|
|
content: "\e866";
|
|
}
|
|
|
|
.material-icons.bookmark_add:before {
|
|
content: "\e598";
|
|
}
|
|
|
|
.material-icons.bookmark_added:before {
|
|
content: "\e599";
|
|
}
|
|
|
|
.material-icons.bookmark_border:before {
|
|
content: "\e867";
|
|
}
|
|
|
|
.material-icons.bookmark_outline:before {
|
|
content: "\e867";
|
|
}
|
|
|
|
.material-icons.bookmark_remove:before {
|
|
content: "\e59a";
|
|
}
|
|
|
|
.material-icons.bookmarks:before {
|
|
content: "\e98b";
|
|
}
|
|
|
|
.material-icons.border_all:before {
|
|
content: "\e228";
|
|
}
|
|
|
|
.material-icons.border_bottom:before {
|
|
content: "\e229";
|
|
}
|
|
|
|
.material-icons.border_clear:before {
|
|
content: "\e22a";
|
|
}
|
|
|
|
.material-icons.border_color:before {
|
|
content: "\e22b";
|
|
}
|
|
|
|
.material-icons.border_horizontal:before {
|
|
content: "\e22c";
|
|
}
|
|
|
|
.material-icons.border_inner:before {
|
|
content: "\e22d";
|
|
}
|
|
|
|
.material-icons.border_left:before {
|
|
content: "\e22e";
|
|
}
|
|
|
|
.material-icons.border_outer:before {
|
|
content: "\e22f";
|
|
}
|
|
|
|
.material-icons.border_right:before {
|
|
content: "\e230";
|
|
}
|
|
|
|
.material-icons.border_style:before {
|
|
content: "\e231";
|
|
}
|
|
|
|
.material-icons.border_top:before {
|
|
content: "\e232";
|
|
}
|
|
|
|
.material-icons.border_vertical:before {
|
|
content: "\e233";
|
|
}
|
|
|
|
.material-icons.boy:before {
|
|
content: "\eb67";
|
|
}
|
|
|
|
.material-icons.branding_watermark:before {
|
|
content: "\e06b";
|
|
}
|
|
|
|
.material-icons.breakfast_dining:before {
|
|
content: "\ea54";
|
|
}
|
|
|
|
.material-icons.brightness_1:before {
|
|
content: "\e3a6";
|
|
}
|
|
|
|
.material-icons.brightness_2:before {
|
|
content: "\e3a7";
|
|
}
|
|
|
|
.material-icons.brightness_3:before {
|
|
content: "\e3a8";
|
|
}
|
|
|
|
.material-icons.brightness_4:before {
|
|
content: "\e3a9";
|
|
}
|
|
|
|
.material-icons.brightness_5:before {
|
|
content: "\e3aa";
|
|
}
|
|
|
|
.material-icons.brightness_6:before {
|
|
content: "\e3ab";
|
|
}
|
|
|
|
.material-icons.brightness_7:before {
|
|
content: "\e3ac";
|
|
}
|
|
|
|
.material-icons.brightness_auto:before {
|
|
content: "\e1ab";
|
|
}
|
|
|
|
.material-icons.brightness_high:before {
|
|
content: "\e1ac";
|
|
}
|
|
|
|
.material-icons.brightness_low:before {
|
|
content: "\e1ad";
|
|
}
|
|
|
|
.material-icons.brightness_medium:before {
|
|
content: "\e1ae";
|
|
}
|
|
|
|
.material-icons.broadcast_on_home:before {
|
|
content: "\f8f8";
|
|
}
|
|
|
|
.material-icons.broadcast_on_personal:before {
|
|
content: "\f8f9";
|
|
}
|
|
|
|
.material-icons.broken_image:before {
|
|
content: "\e3ad";
|
|
}
|
|
|
|
.material-icons.browse_gallery:before {
|
|
content: "\ebd1";
|
|
}
|
|
|
|
.material-icons.browser_not_supported:before {
|
|
content: "\ef47";
|
|
}
|
|
|
|
.material-icons.browser_updated:before {
|
|
content: "\e7cf";
|
|
}
|
|
|
|
.material-icons.brunch_dining:before {
|
|
content: "\ea73";
|
|
}
|
|
|
|
.material-icons.brush:before {
|
|
content: "\e3ae";
|
|
}
|
|
|
|
.material-icons.bubble_chart:before {
|
|
content: "\e6dd";
|
|
}
|
|
|
|
.material-icons.bug_report:before {
|
|
content: "\e868";
|
|
}
|
|
|
|
.material-icons.build:before {
|
|
content: "\e869";
|
|
}
|
|
|
|
.material-icons.build_circle:before {
|
|
content: "\ef48";
|
|
}
|
|
|
|
.material-icons.bungalow:before {
|
|
content: "\e591";
|
|
}
|
|
|
|
.material-icons.burst_mode:before {
|
|
content: "\e43c";
|
|
}
|
|
|
|
.material-icons.bus_alert:before {
|
|
content: "\e98f";
|
|
}
|
|
|
|
.material-icons.business:before {
|
|
content: "\e0af";
|
|
}
|
|
|
|
.material-icons.business_center:before {
|
|
content: "\eb3f";
|
|
}
|
|
|
|
.material-icons.cabin:before {
|
|
content: "\e589";
|
|
}
|
|
|
|
.material-icons.cable:before {
|
|
content: "\efe6";
|
|
}
|
|
|
|
.material-icons.cached:before {
|
|
content: "\e86a";
|
|
}
|
|
|
|
.material-icons.cake:before {
|
|
content: "\e7e9";
|
|
}
|
|
|
|
.material-icons.calculate:before {
|
|
content: "\ea5f";
|
|
}
|
|
|
|
.material-icons.calendar_month:before {
|
|
content: "\ebcc";
|
|
}
|
|
|
|
.material-icons.calendar_today:before {
|
|
content: "\e935";
|
|
}
|
|
|
|
.material-icons.calendar_view_day:before {
|
|
content: "\e936";
|
|
}
|
|
|
|
.material-icons.calendar_view_month:before {
|
|
content: "\efe7";
|
|
}
|
|
|
|
.material-icons.calendar_view_week:before {
|
|
content: "\efe8";
|
|
}
|
|
|
|
.material-icons.call:before {
|
|
content: "\e0b0";
|
|
}
|
|
|
|
.material-icons.call_end:before {
|
|
content: "\e0b1";
|
|
}
|
|
|
|
.material-icons.call_made:before {
|
|
content: "\e0b2";
|
|
}
|
|
|
|
.material-icons.call_merge:before {
|
|
content: "\e0b3";
|
|
}
|
|
|
|
.material-icons.call_missed:before {
|
|
content: "\e0b4";
|
|
}
|
|
|
|
.material-icons.call_missed_outgoing:before {
|
|
content: "\e0e4";
|
|
}
|
|
|
|
.material-icons.call_received:before {
|
|
content: "\e0b5";
|
|
}
|
|
|
|
.material-icons.call_split:before {
|
|
content: "\e0b6";
|
|
}
|
|
|
|
.material-icons.call_to_action:before {
|
|
content: "\e06c";
|
|
}
|
|
|
|
.material-icons.camera:before {
|
|
content: "\e3af";
|
|
}
|
|
|
|
.material-icons.camera_alt:before {
|
|
content: "\e3b0";
|
|
}
|
|
|
|
.material-icons.camera_enhance:before {
|
|
content: "\e8fc";
|
|
}
|
|
|
|
.material-icons.camera_front:before {
|
|
content: "\e3b1";
|
|
}
|
|
|
|
.material-icons.camera_indoor:before {
|
|
content: "\efe9";
|
|
}
|
|
|
|
.material-icons.camera_outdoor:before {
|
|
content: "\efea";
|
|
}
|
|
|
|
.material-icons.camera_rear:before {
|
|
content: "\e3b2";
|
|
}
|
|
|
|
.material-icons.camera_roll:before {
|
|
content: "\e3b3";
|
|
}
|
|
|
|
.material-icons.cameraswitch:before {
|
|
content: "\efeb";
|
|
}
|
|
|
|
.material-icons.campaign:before {
|
|
content: "\ef49";
|
|
}
|
|
|
|
.material-icons.cancel:before {
|
|
content: "\e5c9";
|
|
}
|
|
|
|
.material-icons.cancel_presentation:before {
|
|
content: "\e0e9";
|
|
}
|
|
|
|
.material-icons.cancel_schedule_send:before {
|
|
content: "\ea39";
|
|
}
|
|
|
|
.material-icons.candlestick_chart:before {
|
|
content: "\ead4";
|
|
}
|
|
|
|
.material-icons.car_crash:before {
|
|
content: "\ebf2";
|
|
}
|
|
|
|
.material-icons.car_rental:before {
|
|
content: "\ea55";
|
|
}
|
|
|
|
.material-icons.car_repair:before {
|
|
content: "\ea56";
|
|
}
|
|
|
|
.material-icons.card_giftcard:before {
|
|
content: "\e8f6";
|
|
}
|
|
|
|
.material-icons.card_membership:before {
|
|
content: "\e8f7";
|
|
}
|
|
|
|
.material-icons.card_travel:before {
|
|
content: "\e8f8";
|
|
}
|
|
|
|
.material-icons.carpenter:before {
|
|
content: "\f1f8";
|
|
}
|
|
|
|
.material-icons.cases:before {
|
|
content: "\e992";
|
|
}
|
|
|
|
.material-icons.casino:before {
|
|
content: "\eb40";
|
|
}
|
|
|
|
.material-icons.cast:before {
|
|
content: "\e307";
|
|
}
|
|
|
|
.material-icons.cast_connected:before {
|
|
content: "\e308";
|
|
}
|
|
|
|
.material-icons.cast_for_education:before {
|
|
content: "\efec";
|
|
}
|
|
|
|
.material-icons.castle:before {
|
|
content: "\eab1";
|
|
}
|
|
|
|
.material-icons.catching_pokemon:before {
|
|
content: "\e508";
|
|
}
|
|
|
|
.material-icons.category:before {
|
|
content: "\e574";
|
|
}
|
|
|
|
.material-icons.celebration:before {
|
|
content: "\ea65";
|
|
}
|
|
|
|
.material-icons.cell_tower:before {
|
|
content: "\ebba";
|
|
}
|
|
|
|
.material-icons.cell_wifi:before {
|
|
content: "\e0ec";
|
|
}
|
|
|
|
.material-icons.center_focus_strong:before {
|
|
content: "\e3b4";
|
|
}
|
|
|
|
.material-icons.center_focus_weak:before {
|
|
content: "\e3b5";
|
|
}
|
|
|
|
.material-icons.chair:before {
|
|
content: "\efed";
|
|
}
|
|
|
|
.material-icons.chair_alt:before {
|
|
content: "\efee";
|
|
}
|
|
|
|
.material-icons.chalet:before {
|
|
content: "\e585";
|
|
}
|
|
|
|
.material-icons.change_circle:before {
|
|
content: "\e2e7";
|
|
}
|
|
|
|
.material-icons.change_history:before {
|
|
content: "\e86b";
|
|
}
|
|
|
|
.material-icons.charging_station:before {
|
|
content: "\f19d";
|
|
}
|
|
|
|
.material-icons.chat:before {
|
|
content: "\e0b7";
|
|
}
|
|
|
|
.material-icons.chat_bubble:before {
|
|
content: "\e0ca";
|
|
}
|
|
|
|
.material-icons.chat_bubble_outline:before {
|
|
content: "\e0cb";
|
|
}
|
|
|
|
.material-icons.check:before {
|
|
content: "\e5ca";
|
|
}
|
|
|
|
.material-icons.check_box:before {
|
|
content: "\e834";
|
|
}
|
|
|
|
.material-icons.check_box_outline_blank:before {
|
|
content: "\e835";
|
|
}
|
|
|
|
.material-icons.check_circle:before {
|
|
content: "\e86c";
|
|
}
|
|
|
|
.material-icons.check_circle_outline:before {
|
|
content: "\e92d";
|
|
}
|
|
|
|
.material-icons.checklist:before {
|
|
content: "\e6b1";
|
|
}
|
|
|
|
.material-icons.checklist_rtl:before {
|
|
content: "\e6b3";
|
|
}
|
|
|
|
.material-icons.checkroom:before {
|
|
content: "\f19e";
|
|
}
|
|
|
|
.material-icons.chevron_left:before {
|
|
content: "\e5cb";
|
|
}
|
|
|
|
.material-icons.chevron_right:before {
|
|
content: "\e5cc";
|
|
}
|
|
|
|
.material-icons.child_care:before {
|
|
content: "\eb41";
|
|
}
|
|
|
|
.material-icons.child_friendly:before {
|
|
content: "\eb42";
|
|
}
|
|
|
|
.material-icons.chrome_reader_mode:before {
|
|
content: "\e86d";
|
|
}
|
|
|
|
.material-icons.church:before {
|
|
content: "\eaae";
|
|
}
|
|
|
|
.material-icons.circle:before {
|
|
content: "\ef4a";
|
|
}
|
|
|
|
.material-icons.circle_notifications:before {
|
|
content: "\e994";
|
|
}
|
|
|
|
.material-icons.class:before {
|
|
content: "\e86e";
|
|
}
|
|
|
|
.material-icons.clean_hands:before {
|
|
content: "\f21f";
|
|
}
|
|
|
|
.material-icons.cleaning_services:before {
|
|
content: "\f0ff";
|
|
}
|
|
|
|
.material-icons.clear:before {
|
|
content: "\e14c";
|
|
}
|
|
|
|
.material-icons.clear_all:before {
|
|
content: "\e0b8";
|
|
}
|
|
|
|
.material-icons.close:before {
|
|
content: "\e5cd";
|
|
}
|
|
|
|
.material-icons.close_fullscreen:before {
|
|
content: "\f1cf";
|
|
}
|
|
|
|
.material-icons.closed_caption:before {
|
|
content: "\e01c";
|
|
}
|
|
|
|
.material-icons.closed_caption_disabled:before {
|
|
content: "\f1dc";
|
|
}
|
|
|
|
.material-icons.closed_caption_off:before {
|
|
content: "\e996";
|
|
}
|
|
|
|
.material-icons.cloud:before {
|
|
content: "\e2bd";
|
|
}
|
|
|
|
.material-icons.cloud_circle:before {
|
|
content: "\e2be";
|
|
}
|
|
|
|
.material-icons.cloud_done:before {
|
|
content: "\e2bf";
|
|
}
|
|
|
|
.material-icons.cloud_download:before {
|
|
content: "\e2c0";
|
|
}
|
|
|
|
.material-icons.cloud_off:before {
|
|
content: "\e2c1";
|
|
}
|
|
|
|
.material-icons.cloud_queue:before {
|
|
content: "\e2c2";
|
|
}
|
|
|
|
.material-icons.cloud_sync:before {
|
|
content: "\eb5a";
|
|
}
|
|
|
|
.material-icons.cloud_upload:before {
|
|
content: "\e2c3";
|
|
}
|
|
|
|
.material-icons.cloudy_snowing:before {
|
|
content: "\e810";
|
|
}
|
|
|
|
.material-icons.co2:before {
|
|
content: "\e7b0";
|
|
}
|
|
|
|
.material-icons.co_present:before {
|
|
content: "\eaf0";
|
|
}
|
|
|
|
.material-icons.code:before {
|
|
content: "\e86f";
|
|
}
|
|
|
|
.material-icons.code_off:before {
|
|
content: "\e4f3";
|
|
}
|
|
|
|
.material-icons.coffee:before {
|
|
content: "\efef";
|
|
}
|
|
|
|
.material-icons.coffee_maker:before {
|
|
content: "\eff0";
|
|
}
|
|
|
|
.material-icons.collections:before {
|
|
content: "\e3b6";
|
|
}
|
|
|
|
.material-icons.collections_bookmark:before {
|
|
content: "\e431";
|
|
}
|
|
|
|
.material-icons.color_lens:before {
|
|
content: "\e3b7";
|
|
}
|
|
|
|
.material-icons.colorize:before {
|
|
content: "\e3b8";
|
|
}
|
|
|
|
.material-icons.comment:before {
|
|
content: "\e0b9";
|
|
}
|
|
|
|
.material-icons.comment_bank:before {
|
|
content: "\ea4e";
|
|
}
|
|
|
|
.material-icons.comments_disabled:before {
|
|
content: "\e7a2";
|
|
}
|
|
|
|
.material-icons.commit:before {
|
|
content: "\eaf5";
|
|
}
|
|
|
|
.material-icons.commute:before {
|
|
content: "\e940";
|
|
}
|
|
|
|
.material-icons.compare:before {
|
|
content: "\e3b9";
|
|
}
|
|
|
|
.material-icons.compare_arrows:before {
|
|
content: "\e915";
|
|
}
|
|
|
|
.material-icons.compass_calibration:before {
|
|
content: "\e57c";
|
|
}
|
|
|
|
.material-icons.compost:before {
|
|
content: "\e761";
|
|
}
|
|
|
|
.material-icons.compress:before {
|
|
content: "\e94d";
|
|
}
|
|
|
|
.material-icons.computer:before {
|
|
content: "\e30a";
|
|
}
|
|
|
|
.material-icons.confirmation_num:before {
|
|
content: "\e638";
|
|
}
|
|
|
|
.material-icons.confirmation_number:before {
|
|
content: "\e638";
|
|
}
|
|
|
|
.material-icons.connect_without_contact:before {
|
|
content: "\f223";
|
|
}
|
|
|
|
.material-icons.connected_tv:before {
|
|
content: "\e998";
|
|
}
|
|
|
|
.material-icons.connecting_airports:before {
|
|
content: "\e7c9";
|
|
}
|
|
|
|
.material-icons.construction:before {
|
|
content: "\ea3c";
|
|
}
|
|
|
|
.material-icons.contact_mail:before {
|
|
content: "\e0d0";
|
|
}
|
|
|
|
.material-icons.contact_page:before {
|
|
content: "\f22e";
|
|
}
|
|
|
|
.material-icons.contact_phone:before {
|
|
content: "\e0cf";
|
|
}
|
|
|
|
.material-icons.contact_support:before {
|
|
content: "\e94c";
|
|
}
|
|
|
|
.material-icons.contactless:before {
|
|
content: "\ea71";
|
|
}
|
|
|
|
.material-icons.contacts:before {
|
|
content: "\e0ba";
|
|
}
|
|
|
|
.material-icons.content_copy:before {
|
|
content: "\e14d";
|
|
}
|
|
|
|
.material-icons.content_cut:before {
|
|
content: "\e14e";
|
|
}
|
|
|
|
.material-icons.content_paste:before {
|
|
content: "\e14f";
|
|
}
|
|
|
|
.material-icons.content_paste_go:before {
|
|
content: "\ea8e";
|
|
}
|
|
|
|
.material-icons.content_paste_off:before {
|
|
content: "\e4f8";
|
|
}
|
|
|
|
.material-icons.content_paste_search:before {
|
|
content: "\ea9b";
|
|
}
|
|
|
|
.material-icons.contrast:before {
|
|
content: "\eb37";
|
|
}
|
|
|
|
.material-icons.control_camera:before {
|
|
content: "\e074";
|
|
}
|
|
|
|
.material-icons.control_point:before {
|
|
content: "\e3ba";
|
|
}
|
|
|
|
.material-icons.control_point_duplicate:before {
|
|
content: "\e3bb";
|
|
}
|
|
|
|
.material-icons.cookie:before {
|
|
content: "\eaac";
|
|
}
|
|
|
|
.material-icons.copy_all:before {
|
|
content: "\e2ec";
|
|
}
|
|
|
|
.material-icons.copyright:before {
|
|
content: "\e90c";
|
|
}
|
|
|
|
.material-icons.coronavirus:before {
|
|
content: "\f221";
|
|
}
|
|
|
|
.material-icons.corporate_fare:before {
|
|
content: "\f1d0";
|
|
}
|
|
|
|
.material-icons.cottage:before {
|
|
content: "\e587";
|
|
}
|
|
|
|
.material-icons.countertops:before {
|
|
content: "\f1f7";
|
|
}
|
|
|
|
.material-icons.create:before {
|
|
content: "\e150";
|
|
}
|
|
|
|
.material-icons.create_new_folder:before {
|
|
content: "\e2cc";
|
|
}
|
|
|
|
.material-icons.credit_card:before {
|
|
content: "\e870";
|
|
}
|
|
|
|
.material-icons.credit_card_off:before {
|
|
content: "\e4f4";
|
|
}
|
|
|
|
.material-icons.credit_score:before {
|
|
content: "\eff1";
|
|
}
|
|
|
|
.material-icons.crib:before {
|
|
content: "\e588";
|
|
}
|
|
|
|
.material-icons.crisis_alert:before {
|
|
content: "\ebe9";
|
|
}
|
|
|
|
.material-icons.crop:before {
|
|
content: "\e3be";
|
|
}
|
|
|
|
.material-icons.crop_16_9:before {
|
|
content: "\e3bc";
|
|
}
|
|
|
|
.material-icons.crop_3_2:before {
|
|
content: "\e3bd";
|
|
}
|
|
|
|
.material-icons.crop_5_4:before {
|
|
content: "\e3bf";
|
|
}
|
|
|
|
.material-icons.crop_7_5:before {
|
|
content: "\e3c0";
|
|
}
|
|
|
|
.material-icons.crop_din:before {
|
|
content: "\e3c1";
|
|
}
|
|
|
|
.material-icons.crop_free:before {
|
|
content: "\e3c2";
|
|
}
|
|
|
|
.material-icons.crop_landscape:before {
|
|
content: "\e3c3";
|
|
}
|
|
|
|
.material-icons.crop_original:before {
|
|
content: "\e3c4";
|
|
}
|
|
|
|
.material-icons.crop_portrait:before {
|
|
content: "\e3c5";
|
|
}
|
|
|
|
.material-icons.crop_rotate:before {
|
|
content: "\e437";
|
|
}
|
|
|
|
.material-icons.crop_square:before {
|
|
content: "\e3c6";
|
|
}
|
|
|
|
.material-icons.cruelty_free:before {
|
|
content: "\e799";
|
|
}
|
|
|
|
.material-icons.css:before {
|
|
content: "\eb93";
|
|
}
|
|
|
|
.material-icons.currency_bitcoin:before {
|
|
content: "\ebc5";
|
|
}
|
|
|
|
.material-icons.currency_exchange:before {
|
|
content: "\eb70";
|
|
}
|
|
|
|
.material-icons.currency_franc:before {
|
|
content: "\eafa";
|
|
}
|
|
|
|
.material-icons.currency_lira:before {
|
|
content: "\eaef";
|
|
}
|
|
|
|
.material-icons.currency_pound:before {
|
|
content: "\eaf1";
|
|
}
|
|
|
|
.material-icons.currency_ruble:before {
|
|
content: "\eaec";
|
|
}
|
|
|
|
.material-icons.currency_rupee:before {
|
|
content: "\eaf7";
|
|
}
|
|
|
|
.material-icons.currency_yen:before {
|
|
content: "\eafb";
|
|
}
|
|
|
|
.material-icons.currency_yuan:before {
|
|
content: "\eaf9";
|
|
}
|
|
|
|
.material-icons.curtains:before {
|
|
content: "\ec1e";
|
|
}
|
|
|
|
.material-icons.curtains_closed:before {
|
|
content: "\ec1d";
|
|
}
|
|
|
|
.material-icons.cyclone:before {
|
|
content: "\ebd5";
|
|
}
|
|
|
|
.material-icons.dangerous:before {
|
|
content: "\e99a";
|
|
}
|
|
|
|
.material-icons.dark_mode:before {
|
|
content: "\e51c";
|
|
}
|
|
|
|
.material-icons.dashboard:before {
|
|
content: "\e871";
|
|
}
|
|
|
|
.material-icons.dashboard_customize:before {
|
|
content: "\e99b";
|
|
}
|
|
|
|
.material-icons.data_array:before {
|
|
content: "\ead1";
|
|
}
|
|
|
|
.material-icons.data_exploration:before {
|
|
content: "\e76f";
|
|
}
|
|
|
|
.material-icons.data_object:before {
|
|
content: "\ead3";
|
|
}
|
|
|
|
.material-icons.data_saver_off:before {
|
|
content: "\eff2";
|
|
}
|
|
|
|
.material-icons.data_saver_on:before {
|
|
content: "\eff3";
|
|
}
|
|
|
|
.material-icons.data_thresholding:before {
|
|
content: "\eb9f";
|
|
}
|
|
|
|
.material-icons.data_usage:before {
|
|
content: "\e1af";
|
|
}
|
|
|
|
.material-icons.dataset:before {
|
|
content: "\f8ee";
|
|
}
|
|
|
|
.material-icons.dataset_linked:before {
|
|
content: "\f8ef";
|
|
}
|
|
|
|
.material-icons.date_range:before {
|
|
content: "\e916";
|
|
}
|
|
|
|
.material-icons.deblur:before {
|
|
content: "\eb77";
|
|
}
|
|
|
|
.material-icons.deck:before {
|
|
content: "\ea42";
|
|
}
|
|
|
|
.material-icons.dehaze:before {
|
|
content: "\e3c7";
|
|
}
|
|
|
|
.material-icons.delete:before {
|
|
content: "\e872";
|
|
}
|
|
|
|
.material-icons.delete_forever:before {
|
|
content: "\e92b";
|
|
}
|
|
|
|
.material-icons.delete_outline:before {
|
|
content: "\e92e";
|
|
}
|
|
|
|
.material-icons.delete_sweep:before {
|
|
content: "\e16c";
|
|
}
|
|
|
|
.material-icons.delivery_dining:before {
|
|
content: "\ea72";
|
|
}
|
|
|
|
.material-icons.density_large:before {
|
|
content: "\eba9";
|
|
}
|
|
|
|
.material-icons.density_medium:before {
|
|
content: "\eb9e";
|
|
}
|
|
|
|
.material-icons.density_small:before {
|
|
content: "\eba8";
|
|
}
|
|
|
|
.material-icons.departure_board:before {
|
|
content: "\e576";
|
|
}
|
|
|
|
.material-icons.description:before {
|
|
content: "\e873";
|
|
}
|
|
|
|
.material-icons.deselect:before {
|
|
content: "\ebb6";
|
|
}
|
|
|
|
.material-icons.design_services:before {
|
|
content: "\f10a";
|
|
}
|
|
|
|
.material-icons.desk:before {
|
|
content: "\f8f4";
|
|
}
|
|
|
|
.material-icons.desktop_access_disabled:before {
|
|
content: "\e99d";
|
|
}
|
|
|
|
.material-icons.desktop_mac:before {
|
|
content: "\e30b";
|
|
}
|
|
|
|
.material-icons.desktop_windows:before {
|
|
content: "\e30c";
|
|
}
|
|
|
|
.material-icons.details:before {
|
|
content: "\e3c8";
|
|
}
|
|
|
|
.material-icons.developer_board:before {
|
|
content: "\e30d";
|
|
}
|
|
|
|
.material-icons.developer_board_off:before {
|
|
content: "\e4ff";
|
|
}
|
|
|
|
.material-icons.developer_mode:before {
|
|
content: "\e1b0";
|
|
}
|
|
|
|
.material-icons.device_hub:before {
|
|
content: "\e335";
|
|
}
|
|
|
|
.material-icons.device_thermostat:before {
|
|
content: "\e1ff";
|
|
}
|
|
|
|
.material-icons.device_unknown:before {
|
|
content: "\e339";
|
|
}
|
|
|
|
.material-icons.devices:before {
|
|
content: "\e1b1";
|
|
}
|
|
|
|
.material-icons.devices_fold:before {
|
|
content: "\ebde";
|
|
}
|
|
|
|
.material-icons.devices_other:before {
|
|
content: "\e337";
|
|
}
|
|
|
|
.material-icons.dialer_sip:before {
|
|
content: "\e0bb";
|
|
}
|
|
|
|
.material-icons.dialpad:before {
|
|
content: "\e0bc";
|
|
}
|
|
|
|
.material-icons.diamond:before {
|
|
content: "\ead5";
|
|
}
|
|
|
|
.material-icons.difference:before {
|
|
content: "\eb7d";
|
|
}
|
|
|
|
.material-icons.dining:before {
|
|
content: "\eff4";
|
|
}
|
|
|
|
.material-icons.dinner_dining:before {
|
|
content: "\ea57";
|
|
}
|
|
|
|
.material-icons.directions:before {
|
|
content: "\e52e";
|
|
}
|
|
|
|
.material-icons.directions_bike:before {
|
|
content: "\e52f";
|
|
}
|
|
|
|
.material-icons.directions_boat:before {
|
|
content: "\e532";
|
|
}
|
|
|
|
.material-icons.directions_boat_filled:before {
|
|
content: "\eff5";
|
|
}
|
|
|
|
.material-icons.directions_bus:before {
|
|
content: "\e530";
|
|
}
|
|
|
|
.material-icons.directions_bus_filled:before {
|
|
content: "\eff6";
|
|
}
|
|
|
|
.material-icons.directions_car:before {
|
|
content: "\e531";
|
|
}
|
|
|
|
.material-icons.directions_car_filled:before {
|
|
content: "\eff7";
|
|
}
|
|
|
|
.material-icons.directions_ferry:before {
|
|
content: "\e532";
|
|
}
|
|
|
|
.material-icons.directions_off:before {
|
|
content: "\f10f";
|
|
}
|
|
|
|
.material-icons.directions_railway:before {
|
|
content: "\e534";
|
|
}
|
|
|
|
.material-icons.directions_railway_filled:before {
|
|
content: "\eff8";
|
|
}
|
|
|
|
.material-icons.directions_run:before {
|
|
content: "\e566";
|
|
}
|
|
|
|
.material-icons.directions_subway:before {
|
|
content: "\e533";
|
|
}
|
|
|
|
.material-icons.directions_subway_filled:before {
|
|
content: "\eff9";
|
|
}
|
|
|
|
.material-icons.directions_train:before {
|
|
content: "\e534";
|
|
}
|
|
|
|
.material-icons.directions_transit:before {
|
|
content: "\e535";
|
|
}
|
|
|
|
.material-icons.directions_transit_filled:before {
|
|
content: "\effa";
|
|
}
|
|
|
|
.material-icons.directions_walk:before {
|
|
content: "\e536";
|
|
}
|
|
|
|
.material-icons.dirty_lens:before {
|
|
content: "\ef4b";
|
|
}
|
|
|
|
.material-icons.disabled_by_default:before {
|
|
content: "\f230";
|
|
}
|
|
|
|
.material-icons.disabled_visible:before {
|
|
content: "\e76e";
|
|
}
|
|
|
|
.material-icons.disc_full:before {
|
|
content: "\e610";
|
|
}
|
|
|
|
.material-icons.discord:before {
|
|
content: "\ea6c";
|
|
}
|
|
|
|
.material-icons.discount:before {
|
|
content: "\ebc9";
|
|
}
|
|
|
|
.material-icons.display_settings:before {
|
|
content: "\eb97";
|
|
}
|
|
|
|
.material-icons.dnd_forwardslash:before {
|
|
content: "\e611";
|
|
}
|
|
|
|
.material-icons.dns:before {
|
|
content: "\e875";
|
|
}
|
|
|
|
.material-icons.do_disturb:before {
|
|
content: "\f08c";
|
|
}
|
|
|
|
.material-icons.do_disturb_alt:before {
|
|
content: "\f08d";
|
|
}
|
|
|
|
.material-icons.do_disturb_off:before {
|
|
content: "\f08e";
|
|
}
|
|
|
|
.material-icons.do_disturb_on:before {
|
|
content: "\f08f";
|
|
}
|
|
|
|
.material-icons.do_not_disturb:before {
|
|
content: "\e612";
|
|
}
|
|
|
|
.material-icons.do_not_disturb_alt:before {
|
|
content: "\e611";
|
|
}
|
|
|
|
.material-icons.do_not_disturb_off:before {
|
|
content: "\e643";
|
|
}
|
|
|
|
.material-icons.do_not_disturb_on:before {
|
|
content: "\e644";
|
|
}
|
|
|
|
.material-icons.do_not_disturb_on_total_silence:before {
|
|
content: "\effb";
|
|
}
|
|
|
|
.material-icons.do_not_step:before {
|
|
content: "\f19f";
|
|
}
|
|
|
|
.material-icons.do_not_touch:before {
|
|
content: "\f1b0";
|
|
}
|
|
|
|
.material-icons.dock:before {
|
|
content: "\e30e";
|
|
}
|
|
|
|
.material-icons.document_scanner:before {
|
|
content: "\e5fa";
|
|
}
|
|
|
|
.material-icons.domain:before {
|
|
content: "\e7ee";
|
|
}
|
|
|
|
.material-icons.domain_add:before {
|
|
content: "\eb62";
|
|
}
|
|
|
|
.material-icons.domain_disabled:before {
|
|
content: "\e0ef";
|
|
}
|
|
|
|
.material-icons.domain_verification:before {
|
|
content: "\ef4c";
|
|
}
|
|
|
|
.material-icons.done:before {
|
|
content: "\e876";
|
|
}
|
|
|
|
.material-icons.done_all:before {
|
|
content: "\e877";
|
|
}
|
|
|
|
.material-icons.done_outline:before {
|
|
content: "\e92f";
|
|
}
|
|
|
|
.material-icons.donut_large:before {
|
|
content: "\e917";
|
|
}
|
|
|
|
.material-icons.donut_small:before {
|
|
content: "\e918";
|
|
}
|
|
|
|
.material-icons.door_back:before {
|
|
content: "\effc";
|
|
}
|
|
|
|
.material-icons.door_front:before {
|
|
content: "\effd";
|
|
}
|
|
|
|
.material-icons.door_sliding:before {
|
|
content: "\effe";
|
|
}
|
|
|
|
.material-icons.doorbell:before {
|
|
content: "\efff";
|
|
}
|
|
|
|
.material-icons.double_arrow:before {
|
|
content: "\ea50";
|
|
}
|
|
|
|
.material-icons.downhill_skiing:before {
|
|
content: "\e509";
|
|
}
|
|
|
|
.material-icons.download:before {
|
|
content: "\f090";
|
|
}
|
|
|
|
.material-icons.download_done:before {
|
|
content: "\f091";
|
|
}
|
|
|
|
.material-icons.download_for_offline:before {
|
|
content: "\f000";
|
|
}
|
|
|
|
.material-icons.downloading:before {
|
|
content: "\f001";
|
|
}
|
|
|
|
.material-icons.drafts:before {
|
|
content: "\e151";
|
|
}
|
|
|
|
.material-icons.drag_handle:before {
|
|
content: "\e25d";
|
|
}
|
|
|
|
.material-icons.drag_indicator:before {
|
|
content: "\e945";
|
|
}
|
|
|
|
.material-icons.draw:before {
|
|
content: "\e746";
|
|
}
|
|
|
|
.material-icons.drive_eta:before {
|
|
content: "\e613";
|
|
}
|
|
|
|
.material-icons.drive_file_move:before {
|
|
content: "\e675";
|
|
}
|
|
|
|
.material-icons.drive_file_move_outline:before {
|
|
content: "\e9a1";
|
|
}
|
|
|
|
.material-icons.drive_file_move_rtl:before {
|
|
content: "\e76d";
|
|
}
|
|
|
|
.material-icons.drive_file_rename_outline:before {
|
|
content: "\e9a2";
|
|
}
|
|
|
|
.material-icons.drive_folder_upload:before {
|
|
content: "\e9a3";
|
|
}
|
|
|
|
.material-icons.dry:before {
|
|
content: "\f1b3";
|
|
}
|
|
|
|
.material-icons.dry_cleaning:before {
|
|
content: "\ea58";
|
|
}
|
|
|
|
.material-icons.duo:before {
|
|
content: "\e9a5";
|
|
}
|
|
|
|
.material-icons.dvr:before {
|
|
content: "\e1b2";
|
|
}
|
|
|
|
.material-icons.dynamic_feed:before {
|
|
content: "\ea14";
|
|
}
|
|
|
|
.material-icons.dynamic_form:before {
|
|
content: "\f1bf";
|
|
}
|
|
|
|
.material-icons.e_mobiledata:before {
|
|
content: "\f002";
|
|
}
|
|
|
|
.material-icons.earbuds:before {
|
|
content: "\f003";
|
|
}
|
|
|
|
.material-icons.earbuds_battery:before {
|
|
content: "\f004";
|
|
}
|
|
|
|
.material-icons.east:before {
|
|
content: "\f1df";
|
|
}
|
|
|
|
.material-icons.eco:before {
|
|
content: "\ea35";
|
|
}
|
|
|
|
.material-icons.edgesensor_high:before {
|
|
content: "\f005";
|
|
}
|
|
|
|
.material-icons.edgesensor_low:before {
|
|
content: "\f006";
|
|
}
|
|
|
|
.material-icons.edit:before {
|
|
content: "\e3c9";
|
|
}
|
|
|
|
.material-icons.edit_attributes:before {
|
|
content: "\e578";
|
|
}
|
|
|
|
.material-icons.edit_calendar:before {
|
|
content: "\e742";
|
|
}
|
|
|
|
.material-icons.edit_location:before {
|
|
content: "\e568";
|
|
}
|
|
|
|
.material-icons.edit_location_alt:before {
|
|
content: "\e1c5";
|
|
}
|
|
|
|
.material-icons.edit_note:before {
|
|
content: "\e745";
|
|
}
|
|
|
|
.material-icons.edit_notifications:before {
|
|
content: "\e525";
|
|
}
|
|
|
|
.material-icons.edit_off:before {
|
|
content: "\e950";
|
|
}
|
|
|
|
.material-icons.edit_road:before {
|
|
content: "\ef4d";
|
|
}
|
|
|
|
.material-icons.egg:before {
|
|
content: "\eacc";
|
|
}
|
|
|
|
.material-icons.egg_alt:before {
|
|
content: "\eac8";
|
|
}
|
|
|
|
.material-icons.eject:before {
|
|
content: "\e8fb";
|
|
}
|
|
|
|
.material-icons.elderly:before {
|
|
content: "\f21a";
|
|
}
|
|
|
|
.material-icons.elderly_woman:before {
|
|
content: "\eb69";
|
|
}
|
|
|
|
.material-icons.electric_bike:before {
|
|
content: "\eb1b";
|
|
}
|
|
|
|
.material-icons.electric_bolt:before {
|
|
content: "\ec1c";
|
|
}
|
|
|
|
.material-icons.electric_car:before {
|
|
content: "\eb1c";
|
|
}
|
|
|
|
.material-icons.electric_meter:before {
|
|
content: "\ec1b";
|
|
}
|
|
|
|
.material-icons.electric_moped:before {
|
|
content: "\eb1d";
|
|
}
|
|
|
|
.material-icons.electric_rickshaw:before {
|
|
content: "\eb1e";
|
|
}
|
|
|
|
.material-icons.electric_scooter:before {
|
|
content: "\eb1f";
|
|
}
|
|
|
|
.material-icons.electrical_services:before {
|
|
content: "\f102";
|
|
}
|
|
|
|
.material-icons.elevator:before {
|
|
content: "\f1a0";
|
|
}
|
|
|
|
.material-icons.email:before {
|
|
content: "\e0be";
|
|
}
|
|
|
|
.material-icons.emergency:before {
|
|
content: "\e1eb";
|
|
}
|
|
|
|
.material-icons.emergency_recording:before {
|
|
content: "\ebf4";
|
|
}
|
|
|
|
.material-icons.emergency_share:before {
|
|
content: "\ebf6";
|
|
}
|
|
|
|
.material-icons.emoji_emotions:before {
|
|
content: "\ea22";
|
|
}
|
|
|
|
.material-icons.emoji_events:before {
|
|
content: "\ea23";
|
|
}
|
|
|
|
.material-icons.emoji_flags:before {
|
|
content: "\ea1a";
|
|
}
|
|
|
|
.material-icons.emoji_food_beverage:before {
|
|
content: "\ea1b";
|
|
}
|
|
|
|
.material-icons.emoji_nature:before {
|
|
content: "\ea1c";
|
|
}
|
|
|
|
.material-icons.emoji_objects:before {
|
|
content: "\ea24";
|
|
}
|
|
|
|
.material-icons.emoji_people:before {
|
|
content: "\ea1d";
|
|
}
|
|
|
|
.material-icons.emoji_symbols:before {
|
|
content: "\ea1e";
|
|
}
|
|
|
|
.material-icons.emoji_transportation:before {
|
|
content: "\ea1f";
|
|
}
|
|
|
|
.material-icons.energy_savings_leaf:before {
|
|
content: "\ec1a";
|
|
}
|
|
|
|
.material-icons.engineering:before {
|
|
content: "\ea3d";
|
|
}
|
|
|
|
.material-icons.enhance_photo_translate:before {
|
|
content: "\e8fc";
|
|
}
|
|
|
|
.material-icons.enhanced_encryption:before {
|
|
content: "\e63f";
|
|
}
|
|
|
|
.material-icons.equalizer:before {
|
|
content: "\e01d";
|
|
}
|
|
|
|
.material-icons.error:before {
|
|
content: "\e000";
|
|
}
|
|
|
|
.material-icons.error_outline:before {
|
|
content: "\e001";
|
|
}
|
|
|
|
.material-icons.escalator:before {
|
|
content: "\f1a1";
|
|
}
|
|
|
|
.material-icons.escalator_warning:before {
|
|
content: "\f1ac";
|
|
}
|
|
|
|
.material-icons.euro:before {
|
|
content: "\ea15";
|
|
}
|
|
|
|
.material-icons.euro_symbol:before {
|
|
content: "\e926";
|
|
}
|
|
|
|
.material-icons.ev_station:before {
|
|
content: "\e56d";
|
|
}
|
|
|
|
.material-icons.event:before {
|
|
content: "\e878";
|
|
}
|
|
|
|
.material-icons.event_available:before {
|
|
content: "\e614";
|
|
}
|
|
|
|
.material-icons.event_busy:before {
|
|
content: "\e615";
|
|
}
|
|
|
|
.material-icons.event_note:before {
|
|
content: "\e616";
|
|
}
|
|
|
|
.material-icons.event_repeat:before {
|
|
content: "\eb7b";
|
|
}
|
|
|
|
.material-icons.event_seat:before {
|
|
content: "\e903";
|
|
}
|
|
|
|
.material-icons.exit_to_app:before {
|
|
content: "\e879";
|
|
}
|
|
|
|
.material-icons.expand:before {
|
|
content: "\e94f";
|
|
}
|
|
|
|
.material-icons.expand_circle_down:before {
|
|
content: "\e7cd";
|
|
}
|
|
|
|
.material-icons.expand_less:before {
|
|
content: "\e5ce";
|
|
}
|
|
|
|
.material-icons.expand_more:before {
|
|
content: "\e5cf";
|
|
}
|
|
|
|
.material-icons.explicit:before {
|
|
content: "\e01e";
|
|
}
|
|
|
|
.material-icons.explore:before {
|
|
content: "\e87a";
|
|
}
|
|
|
|
.material-icons.explore_off:before {
|
|
content: "\e9a8";
|
|
}
|
|
|
|
.material-icons.exposure:before {
|
|
content: "\e3ca";
|
|
}
|
|
|
|
.material-icons.exposure_minus_1:before {
|
|
content: "\e3cb";
|
|
}
|
|
|
|
.material-icons.exposure_minus_2:before {
|
|
content: "\e3cc";
|
|
}
|
|
|
|
.material-icons.exposure_neg_1:before {
|
|
content: "\e3cb";
|
|
}
|
|
|
|
.material-icons.exposure_neg_2:before {
|
|
content: "\e3cc";
|
|
}
|
|
|
|
.material-icons.exposure_plus_1:before {
|
|
content: "\e3cd";
|
|
}
|
|
|
|
.material-icons.exposure_plus_2:before {
|
|
content: "\e3ce";
|
|
}
|
|
|
|
.material-icons.exposure_zero:before {
|
|
content: "\e3cf";
|
|
}
|
|
|
|
.material-icons.extension:before {
|
|
content: "\e87b";
|
|
}
|
|
|
|
.material-icons.extension_off:before {
|
|
content: "\e4f5";
|
|
}
|
|
|
|
.material-icons.face:before {
|
|
content: "\e87c";
|
|
}
|
|
|
|
.material-icons.face_retouching_natural:before {
|
|
content: "\ef4e";
|
|
}
|
|
|
|
.material-icons.face_retouching_off:before {
|
|
content: "\f007";
|
|
}
|
|
|
|
.material-icons.facebook:before {
|
|
content: "\f234";
|
|
}
|
|
|
|
.material-icons.fact_check:before {
|
|
content: "\f0c5";
|
|
}
|
|
|
|
.material-icons.factory:before {
|
|
content: "\ebbc";
|
|
}
|
|
|
|
.material-icons.family_restroom:before {
|
|
content: "\f1a2";
|
|
}
|
|
|
|
.material-icons.fast_forward:before {
|
|
content: "\e01f";
|
|
}
|
|
|
|
.material-icons.fast_rewind:before {
|
|
content: "\e020";
|
|
}
|
|
|
|
.material-icons.fastfood:before {
|
|
content: "\e57a";
|
|
}
|
|
|
|
.material-icons.favorite:before {
|
|
content: "\e87d";
|
|
}
|
|
|
|
.material-icons.favorite_border:before {
|
|
content: "\e87e";
|
|
}
|
|
|
|
.material-icons.favorite_outline:before {
|
|
content: "\e87e";
|
|
}
|
|
|
|
.material-icons.fax:before {
|
|
content: "\ead8";
|
|
}
|
|
|
|
.material-icons.featured_play_list:before {
|
|
content: "\e06d";
|
|
}
|
|
|
|
.material-icons.featured_video:before {
|
|
content: "\e06e";
|
|
}
|
|
|
|
.material-icons.feed:before {
|
|
content: "\f009";
|
|
}
|
|
|
|
.material-icons.feedback:before {
|
|
content: "\e87f";
|
|
}
|
|
|
|
.material-icons.female:before {
|
|
content: "\e590";
|
|
}
|
|
|
|
.material-icons.fence:before {
|
|
content: "\f1f6";
|
|
}
|
|
|
|
.material-icons.festival:before {
|
|
content: "\ea68";
|
|
}
|
|
|
|
.material-icons.fiber_dvr:before {
|
|
content: "\e05d";
|
|
}
|
|
|
|
.material-icons.fiber_manual_record:before {
|
|
content: "\e061";
|
|
}
|
|
|
|
.material-icons.fiber_new:before {
|
|
content: "\e05e";
|
|
}
|
|
|
|
.material-icons.fiber_pin:before {
|
|
content: "\e06a";
|
|
}
|
|
|
|
.material-icons.fiber_smart_record:before {
|
|
content: "\e062";
|
|
}
|
|
|
|
.material-icons.file_copy:before {
|
|
content: "\e173";
|
|
}
|
|
|
|
.material-icons.file_download:before {
|
|
content: "\e2c4";
|
|
}
|
|
|
|
.material-icons.file_download_done:before {
|
|
content: "\e9aa";
|
|
}
|
|
|
|
.material-icons.file_download_off:before {
|
|
content: "\e4fe";
|
|
}
|
|
|
|
.material-icons.file_open:before {
|
|
content: "\eaf3";
|
|
}
|
|
|
|
.material-icons.file_present:before {
|
|
content: "\ea0e";
|
|
}
|
|
|
|
.material-icons.file_upload:before {
|
|
content: "\e2c6";
|
|
}
|
|
|
|
.material-icons.filter:before {
|
|
content: "\e3d3";
|
|
}
|
|
|
|
.material-icons.filter_1:before {
|
|
content: "\e3d0";
|
|
}
|
|
|
|
.material-icons.filter_2:before {
|
|
content: "\e3d1";
|
|
}
|
|
|
|
.material-icons.filter_3:before {
|
|
content: "\e3d2";
|
|
}
|
|
|
|
.material-icons.filter_4:before {
|
|
content: "\e3d4";
|
|
}
|
|
|
|
.material-icons.filter_5:before {
|
|
content: "\e3d5";
|
|
}
|
|
|
|
.material-icons.filter_6:before {
|
|
content: "\e3d6";
|
|
}
|
|
|
|
.material-icons.filter_7:before {
|
|
content: "\e3d7";
|
|
}
|
|
|
|
.material-icons.filter_8:before {
|
|
content: "\e3d8";
|
|
}
|
|
|
|
.material-icons.filter_9:before {
|
|
content: "\e3d9";
|
|
}
|
|
|
|
.material-icons.filter_9_plus:before {
|
|
content: "\e3da";
|
|
}
|
|
|
|
.material-icons.filter_alt:before {
|
|
content: "\ef4f";
|
|
}
|
|
|
|
.material-icons.filter_alt_off:before {
|
|
content: "\eb32";
|
|
}
|
|
|
|
.material-icons.filter_b_and_w:before {
|
|
content: "\e3db";
|
|
}
|
|
|
|
.material-icons.filter_center_focus:before {
|
|
content: "\e3dc";
|
|
}
|
|
|
|
.material-icons.filter_drama:before {
|
|
content: "\e3dd";
|
|
}
|
|
|
|
.material-icons.filter_frames:before {
|
|
content: "\e3de";
|
|
}
|
|
|
|
.material-icons.filter_hdr:before {
|
|
content: "\e3df";
|
|
}
|
|
|
|
.material-icons.filter_list:before {
|
|
content: "\e152";
|
|
}
|
|
|
|
.material-icons.filter_list_alt:before {
|
|
content: "\e94e";
|
|
}
|
|
|
|
.material-icons.filter_list_off:before {
|
|
content: "\eb57";
|
|
}
|
|
|
|
.material-icons.filter_none:before {
|
|
content: "\e3e0";
|
|
}
|
|
|
|
.material-icons.filter_tilt_shift:before {
|
|
content: "\e3e2";
|
|
}
|
|
|
|
.material-icons.filter_vintage:before {
|
|
content: "\e3e3";
|
|
}
|
|
|
|
.material-icons.find_in_page:before {
|
|
content: "\e880";
|
|
}
|
|
|
|
.material-icons.find_replace:before {
|
|
content: "\e881";
|
|
}
|
|
|
|
.material-icons.fingerprint:before {
|
|
content: "\e90d";
|
|
}
|
|
|
|
.material-icons.fire_extinguisher:before {
|
|
content: "\f1d8";
|
|
}
|
|
|
|
.material-icons.fire_hydrant:before {
|
|
content: "\f1a3";
|
|
}
|
|
|
|
.material-icons.fire_hydrant_alt:before {
|
|
content: "\f8f1";
|
|
}
|
|
|
|
.material-icons.fire_truck:before {
|
|
content: "\f8f2";
|
|
}
|
|
|
|
.material-icons.fireplace:before {
|
|
content: "\ea43";
|
|
}
|
|
|
|
.material-icons.first_page:before {
|
|
content: "\e5dc";
|
|
}
|
|
|
|
.material-icons.fit_screen:before {
|
|
content: "\ea10";
|
|
}
|
|
|
|
.material-icons.fitbit:before {
|
|
content: "\e82b";
|
|
}
|
|
|
|
.material-icons.fitness_center:before {
|
|
content: "\eb43";
|
|
}
|
|
|
|
.material-icons.flag:before {
|
|
content: "\e153";
|
|
}
|
|
|
|
.material-icons.flag_circle:before {
|
|
content: "\eaf8";
|
|
}
|
|
|
|
.material-icons.flaky:before {
|
|
content: "\ef50";
|
|
}
|
|
|
|
.material-icons.flare:before {
|
|
content: "\e3e4";
|
|
}
|
|
|
|
.material-icons.flash_auto:before {
|
|
content: "\e3e5";
|
|
}
|
|
|
|
.material-icons.flash_off:before {
|
|
content: "\e3e6";
|
|
}
|
|
|
|
.material-icons.flash_on:before {
|
|
content: "\e3e7";
|
|
}
|
|
|
|
.material-icons.flashlight_off:before {
|
|
content: "\f00a";
|
|
}
|
|
|
|
.material-icons.flashlight_on:before {
|
|
content: "\f00b";
|
|
}
|
|
|
|
.material-icons.flatware:before {
|
|
content: "\f00c";
|
|
}
|
|
|
|
.material-icons.flight:before {
|
|
content: "\e539";
|
|
}
|
|
|
|
.material-icons.flight_class:before {
|
|
content: "\e7cb";
|
|
}
|
|
|
|
.material-icons.flight_land:before {
|
|
content: "\e904";
|
|
}
|
|
|
|
.material-icons.flight_takeoff:before {
|
|
content: "\e905";
|
|
}
|
|
|
|
.material-icons.flip:before {
|
|
content: "\e3e8";
|
|
}
|
|
|
|
.material-icons.flip_camera_android:before {
|
|
content: "\ea37";
|
|
}
|
|
|
|
.material-icons.flip_camera_ios:before {
|
|
content: "\ea38";
|
|
}
|
|
|
|
.material-icons.flip_to_back:before {
|
|
content: "\e882";
|
|
}
|
|
|
|
.material-icons.flip_to_front:before {
|
|
content: "\e883";
|
|
}
|
|
|
|
.material-icons.flood:before {
|
|
content: "\ebe6";
|
|
}
|
|
|
|
.material-icons.flourescent:before {
|
|
content: "\f00d";
|
|
}
|
|
|
|
.material-icons.flutter_dash:before {
|
|
content: "\e00b";
|
|
}
|
|
|
|
.material-icons.fmd_bad:before {
|
|
content: "\f00e";
|
|
}
|
|
|
|
.material-icons.fmd_good:before {
|
|
content: "\f00f";
|
|
}
|
|
|
|
.material-icons.foggy:before {
|
|
content: "\e818";
|
|
}
|
|
|
|
.material-icons.folder:before {
|
|
content: "\e2c7";
|
|
}
|
|
|
|
.material-icons.folder_copy:before {
|
|
content: "\ebbd";
|
|
}
|
|
|
|
.material-icons.folder_delete:before {
|
|
content: "\eb34";
|
|
}
|
|
|
|
.material-icons.folder_off:before {
|
|
content: "\eb83";
|
|
}
|
|
|
|
.material-icons.folder_open:before {
|
|
content: "\e2c8";
|
|
}
|
|
|
|
.material-icons.folder_shared:before {
|
|
content: "\e2c9";
|
|
}
|
|
|
|
.material-icons.folder_special:before {
|
|
content: "\e617";
|
|
}
|
|
|
|
.material-icons.folder_zip:before {
|
|
content: "\eb2c";
|
|
}
|
|
|
|
.material-icons.follow_the_signs:before {
|
|
content: "\f222";
|
|
}
|
|
|
|
.material-icons.font_download:before {
|
|
content: "\e167";
|
|
}
|
|
|
|
.material-icons.font_download_off:before {
|
|
content: "\e4f9";
|
|
}
|
|
|
|
.material-icons.food_bank:before {
|
|
content: "\f1f2";
|
|
}
|
|
|
|
.material-icons.forest:before {
|
|
content: "\ea99";
|
|
}
|
|
|
|
.material-icons.fork_left:before {
|
|
content: "\eba0";
|
|
}
|
|
|
|
.material-icons.fork_right:before {
|
|
content: "\ebac";
|
|
}
|
|
|
|
.material-icons.format_align_center:before {
|
|
content: "\e234";
|
|
}
|
|
|
|
.material-icons.format_align_justify:before {
|
|
content: "\e235";
|
|
}
|
|
|
|
.material-icons.format_align_left:before {
|
|
content: "\e236";
|
|
}
|
|
|
|
.material-icons.format_align_right:before {
|
|
content: "\e237";
|
|
}
|
|
|
|
.material-icons.format_bold:before {
|
|
content: "\e238";
|
|
}
|
|
|
|
.material-icons.format_clear:before {
|
|
content: "\e239";
|
|
}
|
|
|
|
.material-icons.format_color_fill:before {
|
|
content: "\e23a";
|
|
}
|
|
|
|
.material-icons.format_color_reset:before {
|
|
content: "\e23b";
|
|
}
|
|
|
|
.material-icons.format_color_text:before {
|
|
content: "\e23c";
|
|
}
|
|
|
|
.material-icons.format_indent_decrease:before {
|
|
content: "\e23d";
|
|
}
|
|
|
|
.material-icons.format_indent_increase:before {
|
|
content: "\e23e";
|
|
}
|
|
|
|
.material-icons.format_italic:before {
|
|
content: "\e23f";
|
|
}
|
|
|
|
.material-icons.format_line_spacing:before {
|
|
content: "\e240";
|
|
}
|
|
|
|
.material-icons.format_list_bulleted:before {
|
|
content: "\e241";
|
|
}
|
|
|
|
.material-icons.format_list_numbered:before {
|
|
content: "\e242";
|
|
}
|
|
|
|
.material-icons.format_list_numbered_rtl:before {
|
|
content: "\e267";
|
|
}
|
|
|
|
.material-icons.format_overline:before {
|
|
content: "\eb65";
|
|
}
|
|
|
|
.material-icons.format_paint:before {
|
|
content: "\e243";
|
|
}
|
|
|
|
.material-icons.format_quote:before {
|
|
content: "\e244";
|
|
}
|
|
|
|
.material-icons.format_shapes:before {
|
|
content: "\e25e";
|
|
}
|
|
|
|
.material-icons.format_size:before {
|
|
content: "\e245";
|
|
}
|
|
|
|
.material-icons.format_strikethrough:before {
|
|
content: "\e246";
|
|
}
|
|
|
|
.material-icons.format_textdirection_l_to_r:before {
|
|
content: "\e247";
|
|
}
|
|
|
|
.material-icons.format_textdirection_r_to_l:before {
|
|
content: "\e248";
|
|
}
|
|
|
|
.material-icons.format_underline:before {
|
|
content: "\e249";
|
|
}
|
|
|
|
.material-icons.format_underlined:before {
|
|
content: "\e249";
|
|
}
|
|
|
|
.material-icons.fort:before {
|
|
content: "\eaad";
|
|
}
|
|
|
|
.material-icons.forum:before {
|
|
content: "\e0bf";
|
|
}
|
|
|
|
.material-icons.forward:before {
|
|
content: "\e154";
|
|
}
|
|
|
|
.material-icons.forward_10:before {
|
|
content: "\e056";
|
|
}
|
|
|
|
.material-icons.forward_30:before {
|
|
content: "\e057";
|
|
}
|
|
|
|
.material-icons.forward_5:before {
|
|
content: "\e058";
|
|
}
|
|
|
|
.material-icons.forward_to_inbox:before {
|
|
content: "\f187";
|
|
}
|
|
|
|
.material-icons.foundation:before {
|
|
content: "\f200";
|
|
}
|
|
|
|
.material-icons.free_breakfast:before {
|
|
content: "\eb44";
|
|
}
|
|
|
|
.material-icons.free_cancellation:before {
|
|
content: "\e748";
|
|
}
|
|
|
|
.material-icons.front_hand:before {
|
|
content: "\e769";
|
|
}
|
|
|
|
.material-icons.fullscreen:before {
|
|
content: "\e5d0";
|
|
}
|
|
|
|
.material-icons.fullscreen_exit:before {
|
|
content: "\e5d1";
|
|
}
|
|
|
|
.material-icons.functions:before {
|
|
content: "\e24a";
|
|
}
|
|
|
|
.material-icons.g_mobiledata:before {
|
|
content: "\f010";
|
|
}
|
|
|
|
.material-icons.g_translate:before {
|
|
content: "\e927";
|
|
}
|
|
|
|
.material-icons.gamepad:before {
|
|
content: "\e30f";
|
|
}
|
|
|
|
.material-icons.games:before {
|
|
content: "\e021";
|
|
}
|
|
|
|
.material-icons.garage:before {
|
|
content: "\f011";
|
|
}
|
|
|
|
.material-icons.gas_meter:before {
|
|
content: "\ec19";
|
|
}
|
|
|
|
.material-icons.gavel:before {
|
|
content: "\e90e";
|
|
}
|
|
|
|
.material-icons.generating_tokens:before {
|
|
content: "\e749";
|
|
}
|
|
|
|
.material-icons.gesture:before {
|
|
content: "\e155";
|
|
}
|
|
|
|
.material-icons.get_app:before {
|
|
content: "\e884";
|
|
}
|
|
|
|
.material-icons.gif:before {
|
|
content: "\e908";
|
|
}
|
|
|
|
.material-icons.gif_box:before {
|
|
content: "\e7a3";
|
|
}
|
|
|
|
.material-icons.girl:before {
|
|
content: "\eb68";
|
|
}
|
|
|
|
.material-icons.gite:before {
|
|
content: "\e58b";
|
|
}
|
|
|
|
.material-icons.goat:before {
|
|
content: "\ebff";
|
|
}
|
|
|
|
.material-icons.golf_course:before {
|
|
content: "\eb45";
|
|
}
|
|
|
|
.material-icons.gpp_bad:before {
|
|
content: "\f012";
|
|
}
|
|
|
|
.material-icons.gpp_good:before {
|
|
content: "\f013";
|
|
}
|
|
|
|
.material-icons.gpp_maybe:before {
|
|
content: "\f014";
|
|
}
|
|
|
|
.material-icons.gps_fixed:before {
|
|
content: "\e1b3";
|
|
}
|
|
|
|
.material-icons.gps_not_fixed:before {
|
|
content: "\e1b4";
|
|
}
|
|
|
|
.material-icons.gps_off:before {
|
|
content: "\e1b5";
|
|
}
|
|
|
|
.material-icons.grade:before {
|
|
content: "\e885";
|
|
}
|
|
|
|
.material-icons.gradient:before {
|
|
content: "\e3e9";
|
|
}
|
|
|
|
.material-icons.grading:before {
|
|
content: "\ea4f";
|
|
}
|
|
|
|
.material-icons.grain:before {
|
|
content: "\e3ea";
|
|
}
|
|
|
|
.material-icons.graphic_eq:before {
|
|
content: "\e1b8";
|
|
}
|
|
|
|
.material-icons.grass:before {
|
|
content: "\f205";
|
|
}
|
|
|
|
.material-icons.grid_3x3:before {
|
|
content: "\f015";
|
|
}
|
|
|
|
.material-icons.grid_4x4:before {
|
|
content: "\f016";
|
|
}
|
|
|
|
.material-icons.grid_goldenratio:before {
|
|
content: "\f017";
|
|
}
|
|
|
|
.material-icons.grid_off:before {
|
|
content: "\e3eb";
|
|
}
|
|
|
|
.material-icons.grid_on:before {
|
|
content: "\e3ec";
|
|
}
|
|
|
|
.material-icons.grid_view:before {
|
|
content: "\e9b0";
|
|
}
|
|
|
|
.material-icons.group:before {
|
|
content: "\e7ef";
|
|
}
|
|
|
|
.material-icons.group_add:before {
|
|
content: "\e7f0";
|
|
}
|
|
|
|
.material-icons.group_off:before {
|
|
content: "\e747";
|
|
}
|
|
|
|
.material-icons.group_remove:before {
|
|
content: "\e7ad";
|
|
}
|
|
|
|
.material-icons.group_work:before {
|
|
content: "\e886";
|
|
}
|
|
|
|
.material-icons.groups:before {
|
|
content: "\f233";
|
|
}
|
|
|
|
.material-icons.h_mobiledata:before {
|
|
content: "\f018";
|
|
}
|
|
|
|
.material-icons.h_plus_mobiledata:before {
|
|
content: "\f019";
|
|
}
|
|
|
|
.material-icons.hail:before {
|
|
content: "\e9b1";
|
|
}
|
|
|
|
.material-icons.handshake:before {
|
|
content: "\ebcb";
|
|
}
|
|
|
|
.material-icons.handyman:before {
|
|
content: "\f10b";
|
|
}
|
|
|
|
.material-icons.hardware:before {
|
|
content: "\ea59";
|
|
}
|
|
|
|
.material-icons.hd:before {
|
|
content: "\e052";
|
|
}
|
|
|
|
.material-icons.hdr_auto:before {
|
|
content: "\f01a";
|
|
}
|
|
|
|
.material-icons.hdr_auto_select:before {
|
|
content: "\f01b";
|
|
}
|
|
|
|
.material-icons.hdr_enhanced_select:before {
|
|
content: "\ef51";
|
|
}
|
|
|
|
.material-icons.hdr_off:before {
|
|
content: "\e3ed";
|
|
}
|
|
|
|
.material-icons.hdr_off_select:before {
|
|
content: "\f01c";
|
|
}
|
|
|
|
.material-icons.hdr_on:before {
|
|
content: "\e3ee";
|
|
}
|
|
|
|
.material-icons.hdr_on_select:before {
|
|
content: "\f01d";
|
|
}
|
|
|
|
.material-icons.hdr_plus:before {
|
|
content: "\f01e";
|
|
}
|
|
|
|
.material-icons.hdr_strong:before {
|
|
content: "\e3f1";
|
|
}
|
|
|
|
.material-icons.hdr_weak:before {
|
|
content: "\e3f2";
|
|
}
|
|
|
|
.material-icons.headphones:before {
|
|
content: "\f01f";
|
|
}
|
|
|
|
.material-icons.headphones_battery:before {
|
|
content: "\f020";
|
|
}
|
|
|
|
.material-icons.headset:before {
|
|
content: "\e310";
|
|
}
|
|
|
|
.material-icons.headset_mic:before {
|
|
content: "\e311";
|
|
}
|
|
|
|
.material-icons.headset_off:before {
|
|
content: "\e33a";
|
|
}
|
|
|
|
.material-icons.healing:before {
|
|
content: "\e3f3";
|
|
}
|
|
|
|
.material-icons.health_and_safety:before {
|
|
content: "\e1d5";
|
|
}
|
|
|
|
.material-icons.hearing:before {
|
|
content: "\e023";
|
|
}
|
|
|
|
.material-icons.hearing_disabled:before {
|
|
content: "\f104";
|
|
}
|
|
|
|
.material-icons.heart_broken:before {
|
|
content: "\eac2";
|
|
}
|
|
|
|
.material-icons.heat_pump:before {
|
|
content: "\ec18";
|
|
}
|
|
|
|
.material-icons.height:before {
|
|
content: "\ea16";
|
|
}
|
|
|
|
.material-icons.help:before {
|
|
content: "\e887";
|
|
}
|
|
|
|
.material-icons.help_center:before {
|
|
content: "\f1c0";
|
|
}
|
|
|
|
.material-icons.help_outline:before {
|
|
content: "\e8fd";
|
|
}
|
|
|
|
.material-icons.hevc:before {
|
|
content: "\f021";
|
|
}
|
|
|
|
.material-icons.hexagon:before {
|
|
content: "\eb39";
|
|
}
|
|
|
|
.material-icons.hide_image:before {
|
|
content: "\f022";
|
|
}
|
|
|
|
.material-icons.hide_source:before {
|
|
content: "\f023";
|
|
}
|
|
|
|
.material-icons.high_quality:before {
|
|
content: "\e024";
|
|
}
|
|
|
|
.material-icons.highlight:before {
|
|
content: "\e25f";
|
|
}
|
|
|
|
.material-icons.highlight_alt:before {
|
|
content: "\ef52";
|
|
}
|
|
|
|
.material-icons.highlight_off:before {
|
|
content: "\e888";
|
|
}
|
|
|
|
.material-icons.highlight_remove:before {
|
|
content: "\e888";
|
|
}
|
|
|
|
.material-icons.hiking:before {
|
|
content: "\e50a";
|
|
}
|
|
|
|
.material-icons.history:before {
|
|
content: "\e889";
|
|
}
|
|
|
|
.material-icons.history_edu:before {
|
|
content: "\ea3e";
|
|
}
|
|
|
|
.material-icons.history_toggle_off:before {
|
|
content: "\f17d";
|
|
}
|
|
|
|
.material-icons.hive:before {
|
|
content: "\eaa6";
|
|
}
|
|
|
|
.material-icons.hls:before {
|
|
content: "\eb8a";
|
|
}
|
|
|
|
.material-icons.hls_off:before {
|
|
content: "\eb8c";
|
|
}
|
|
|
|
.material-icons.holiday_village:before {
|
|
content: "\e58a";
|
|
}
|
|
|
|
.material-icons.home:before {
|
|
content: "\e88a";
|
|
}
|
|
|
|
.material-icons.home_filled:before {
|
|
content: "\e9b2";
|
|
}
|
|
|
|
.material-icons.home_max:before {
|
|
content: "\f024";
|
|
}
|
|
|
|
.material-icons.home_mini:before {
|
|
content: "\f025";
|
|
}
|
|
|
|
.material-icons.home_repair_service:before {
|
|
content: "\f100";
|
|
}
|
|
|
|
.material-icons.home_work:before {
|
|
content: "\ea09";
|
|
}
|
|
|
|
.material-icons.horizontal_distribute:before {
|
|
content: "\e014";
|
|
}
|
|
|
|
.material-icons.horizontal_rule:before {
|
|
content: "\f108";
|
|
}
|
|
|
|
.material-icons.horizontal_split:before {
|
|
content: "\e947";
|
|
}
|
|
|
|
.material-icons.hot_tub:before {
|
|
content: "\eb46";
|
|
}
|
|
|
|
.material-icons.hotel:before {
|
|
content: "\e53a";
|
|
}
|
|
|
|
.material-icons.hotel_class:before {
|
|
content: "\e743";
|
|
}
|
|
|
|
.material-icons.hourglass_bottom:before {
|
|
content: "\ea5c";
|
|
}
|
|
|
|
.material-icons.hourglass_disabled:before {
|
|
content: "\ef53";
|
|
}
|
|
|
|
.material-icons.hourglass_empty:before {
|
|
content: "\e88b";
|
|
}
|
|
|
|
.material-icons.hourglass_full:before {
|
|
content: "\e88c";
|
|
}
|
|
|
|
.material-icons.hourglass_top:before {
|
|
content: "\ea5b";
|
|
}
|
|
|
|
.material-icons.house:before {
|
|
content: "\ea44";
|
|
}
|
|
|
|
.material-icons.house_siding:before {
|
|
content: "\f202";
|
|
}
|
|
|
|
.material-icons.houseboat:before {
|
|
content: "\e584";
|
|
}
|
|
|
|
.material-icons.how_to_reg:before {
|
|
content: "\e174";
|
|
}
|
|
|
|
.material-icons.how_to_vote:before {
|
|
content: "\e175";
|
|
}
|
|
|
|
.material-icons.html:before {
|
|
content: "\eb7e";
|
|
}
|
|
|
|
.material-icons.http:before {
|
|
content: "\e902";
|
|
}
|
|
|
|
.material-icons.https:before {
|
|
content: "\e88d";
|
|
}
|
|
|
|
.material-icons.hub:before {
|
|
content: "\e9f4";
|
|
}
|
|
|
|
.material-icons.hvac:before {
|
|
content: "\f10e";
|
|
}
|
|
|
|
.material-icons.ice_skating:before {
|
|
content: "\e50b";
|
|
}
|
|
|
|
.material-icons.icecream:before {
|
|
content: "\ea69";
|
|
}
|
|
|
|
.material-icons.image:before {
|
|
content: "\e3f4";
|
|
}
|
|
|
|
.material-icons.image_aspect_ratio:before {
|
|
content: "\e3f5";
|
|
}
|
|
|
|
.material-icons.image_not_supported:before {
|
|
content: "\f116";
|
|
}
|
|
|
|
.material-icons.image_search:before {
|
|
content: "\e43f";
|
|
}
|
|
|
|
.material-icons.imagesearch_roller:before {
|
|
content: "\e9b4";
|
|
}
|
|
|
|
.material-icons.import_contacts:before {
|
|
content: "\e0e0";
|
|
}
|
|
|
|
.material-icons.import_export:before {
|
|
content: "\e0c3";
|
|
}
|
|
|
|
.material-icons.important_devices:before {
|
|
content: "\e912";
|
|
}
|
|
|
|
.material-icons.inbox:before {
|
|
content: "\e156";
|
|
}
|
|
|
|
.material-icons.incomplete_circle:before {
|
|
content: "\e79b";
|
|
}
|
|
|
|
.material-icons.indeterminate_check_box:before {
|
|
content: "\e909";
|
|
}
|
|
|
|
.material-icons.info:before {
|
|
content: "\e88e";
|
|
}
|
|
|
|
.material-icons.info_outline:before {
|
|
content: "\e88f";
|
|
}
|
|
|
|
.material-icons.input:before {
|
|
content: "\e890";
|
|
}
|
|
|
|
.material-icons.insert_chart:before {
|
|
content: "\e24b";
|
|
}
|
|
|
|
.material-icons.insert_chart_outlined:before {
|
|
content: "\e26a";
|
|
}
|
|
|
|
.material-icons.insert_comment:before {
|
|
content: "\e24c";
|
|
}
|
|
|
|
.material-icons.insert_drive_file:before {
|
|
content: "\e24d";
|
|
}
|
|
|
|
.material-icons.insert_emoticon:before {
|
|
content: "\e24e";
|
|
}
|
|
|
|
.material-icons.insert_invitation:before {
|
|
content: "\e24f";
|
|
}
|
|
|
|
.material-icons.insert_link:before {
|
|
content: "\e250";
|
|
}
|
|
|
|
.material-icons.insert_page_break:before {
|
|
content: "\eaca";
|
|
}
|
|
|
|
.material-icons.insert_photo:before {
|
|
content: "\e251";
|
|
}
|
|
|
|
.material-icons.insights:before {
|
|
content: "\f092";
|
|
}
|
|
|
|
.material-icons.install_desktop:before {
|
|
content: "\eb71";
|
|
}
|
|
|
|
.material-icons.install_mobile:before {
|
|
content: "\eb72";
|
|
}
|
|
|
|
.material-icons.integration_instructions:before {
|
|
content: "\ef54";
|
|
}
|
|
|
|
.material-icons.interests:before {
|
|
content: "\e7c8";
|
|
}
|
|
|
|
.material-icons.interpreter_mode:before {
|
|
content: "\e83b";
|
|
}
|
|
|
|
.material-icons.inventory:before {
|
|
content: "\e179";
|
|
}
|
|
|
|
.material-icons.inventory_2:before {
|
|
content: "\e1a1";
|
|
}
|
|
|
|
.material-icons.invert_colors:before {
|
|
content: "\e891";
|
|
}
|
|
|
|
.material-icons.invert_colors_off:before {
|
|
content: "\e0c4";
|
|
}
|
|
|
|
.material-icons.invert_colors_on:before {
|
|
content: "\e891";
|
|
}
|
|
|
|
.material-icons.ios_share:before {
|
|
content: "\e6b8";
|
|
}
|
|
|
|
.material-icons.iron:before {
|
|
content: "\e583";
|
|
}
|
|
|
|
.material-icons.iso:before {
|
|
content: "\e3f6";
|
|
}
|
|
|
|
.material-icons.javascript:before {
|
|
content: "\eb7c";
|
|
}
|
|
|
|
.material-icons.join_full:before {
|
|
content: "\eaeb";
|
|
}
|
|
|
|
.material-icons.join_inner:before {
|
|
content: "\eaf4";
|
|
}
|
|
|
|
.material-icons.join_left:before {
|
|
content: "\eaf2";
|
|
}
|
|
|
|
.material-icons.join_right:before {
|
|
content: "\eaea";
|
|
}
|
|
|
|
.material-icons.kayaking:before {
|
|
content: "\e50c";
|
|
}
|
|
|
|
.material-icons.kebab_dining:before {
|
|
content: "\e842";
|
|
}
|
|
|
|
.material-icons.key:before {
|
|
content: "\e73c";
|
|
}
|
|
|
|
.material-icons.key_off:before {
|
|
content: "\eb84";
|
|
}
|
|
|
|
.material-icons.keyboard:before {
|
|
content: "\e312";
|
|
}
|
|
|
|
.material-icons.keyboard_alt:before {
|
|
content: "\f028";
|
|
}
|
|
|
|
.material-icons.keyboard_arrow_down:before {
|
|
content: "\e313";
|
|
}
|
|
|
|
.material-icons.keyboard_arrow_left:before {
|
|
content: "\e314";
|
|
}
|
|
|
|
.material-icons.keyboard_arrow_right:before {
|
|
content: "\e315";
|
|
}
|
|
|
|
.material-icons.keyboard_arrow_up:before {
|
|
content: "\e316";
|
|
}
|
|
|
|
.material-icons.keyboard_backspace:before {
|
|
content: "\e317";
|
|
}
|
|
|
|
.material-icons.keyboard_capslock:before {
|
|
content: "\e318";
|
|
}
|
|
|
|
.material-icons.keyboard_command:before {
|
|
content: "\eae0";
|
|
}
|
|
|
|
.material-icons.keyboard_command_key:before {
|
|
content: "\eae7";
|
|
}
|
|
|
|
.material-icons.keyboard_control:before {
|
|
content: "\e5d3";
|
|
}
|
|
|
|
.material-icons.keyboard_control_key:before {
|
|
content: "\eae6";
|
|
}
|
|
|
|
.material-icons.keyboard_double_arrow_down:before {
|
|
content: "\ead0";
|
|
}
|
|
|
|
.material-icons.keyboard_double_arrow_left:before {
|
|
content: "\eac3";
|
|
}
|
|
|
|
.material-icons.keyboard_double_arrow_right:before {
|
|
content: "\eac9";
|
|
}
|
|
|
|
.material-icons.keyboard_double_arrow_up:before {
|
|
content: "\eacf";
|
|
}
|
|
|
|
.material-icons.keyboard_hide:before {
|
|
content: "\e31a";
|
|
}
|
|
|
|
.material-icons.keyboard_option:before {
|
|
content: "\eadf";
|
|
}
|
|
|
|
.material-icons.keyboard_option_key:before {
|
|
content: "\eae8";
|
|
}
|
|
|
|
.material-icons.keyboard_return:before {
|
|
content: "\e31b";
|
|
}
|
|
|
|
.material-icons.keyboard_tab:before {
|
|
content: "\e31c";
|
|
}
|
|
|
|
.material-icons.keyboard_voice:before {
|
|
content: "\e31d";
|
|
}
|
|
|
|
.material-icons.king_bed:before {
|
|
content: "\ea45";
|
|
}
|
|
|
|
.material-icons.kitchen:before {
|
|
content: "\eb47";
|
|
}
|
|
|
|
.material-icons.kitesurfing:before {
|
|
content: "\e50d";
|
|
}
|
|
|
|
.material-icons.label:before {
|
|
content: "\e892";
|
|
}
|
|
|
|
.material-icons.label_important:before {
|
|
content: "\e937";
|
|
}
|
|
|
|
.material-icons.label_important_outline:before {
|
|
content: "\e948";
|
|
}
|
|
|
|
.material-icons.label_off:before {
|
|
content: "\e9b6";
|
|
}
|
|
|
|
.material-icons.label_outline:before {
|
|
content: "\e893";
|
|
}
|
|
|
|
.material-icons.lan:before {
|
|
content: "\eb2f";
|
|
}
|
|
|
|
.material-icons.landscape:before {
|
|
content: "\e3f7";
|
|
}
|
|
|
|
.material-icons.landslide:before {
|
|
content: "\ebd7";
|
|
}
|
|
|
|
.material-icons.language:before {
|
|
content: "\e894";
|
|
}
|
|
|
|
.material-icons.laptop:before {
|
|
content: "\e31e";
|
|
}
|
|
|
|
.material-icons.laptop_chromebook:before {
|
|
content: "\e31f";
|
|
}
|
|
|
|
.material-icons.laptop_mac:before {
|
|
content: "\e320";
|
|
}
|
|
|
|
.material-icons.laptop_windows:before {
|
|
content: "\e321";
|
|
}
|
|
|
|
.material-icons.last_page:before {
|
|
content: "\e5dd";
|
|
}
|
|
|
|
.material-icons.launch:before {
|
|
content: "\e895";
|
|
}
|
|
|
|
.material-icons.layers:before {
|
|
content: "\e53b";
|
|
}
|
|
|
|
.material-icons.layers_clear:before {
|
|
content: "\e53c";
|
|
}
|
|
|
|
.material-icons.leaderboard:before {
|
|
content: "\f20c";
|
|
}
|
|
|
|
.material-icons.leak_add:before {
|
|
content: "\e3f8";
|
|
}
|
|
|
|
.material-icons.leak_remove:before {
|
|
content: "\e3f9";
|
|
}
|
|
|
|
.material-icons.leave_bags_at_home:before {
|
|
content: "\f21b";
|
|
}
|
|
|
|
.material-icons.legend_toggle:before {
|
|
content: "\f11b";
|
|
}
|
|
|
|
.material-icons.lens:before {
|
|
content: "\e3fa";
|
|
}
|
|
|
|
.material-icons.lens_blur:before {
|
|
content: "\f029";
|
|
}
|
|
|
|
.material-icons.library_add:before {
|
|
content: "\e02e";
|
|
}
|
|
|
|
.material-icons.library_add_check:before {
|
|
content: "\e9b7";
|
|
}
|
|
|
|
.material-icons.library_books:before {
|
|
content: "\e02f";
|
|
}
|
|
|
|
.material-icons.library_music:before {
|
|
content: "\e030";
|
|
}
|
|
|
|
.material-icons.light:before {
|
|
content: "\f02a";
|
|
}
|
|
|
|
.material-icons.light_mode:before {
|
|
content: "\e518";
|
|
}
|
|
|
|
.material-icons.lightbulb:before {
|
|
content: "\e0f0";
|
|
}
|
|
|
|
.material-icons.lightbulb_circle:before {
|
|
content: "\ebfe";
|
|
}
|
|
|
|
.material-icons.lightbulb_outline:before {
|
|
content: "\e90f";
|
|
}
|
|
|
|
.material-icons.line_axis:before {
|
|
content: "\ea9a";
|
|
}
|
|
|
|
.material-icons.line_style:before {
|
|
content: "\e919";
|
|
}
|
|
|
|
.material-icons.line_weight:before {
|
|
content: "\e91a";
|
|
}
|
|
|
|
.material-icons.linear_scale:before {
|
|
content: "\e260";
|
|
}
|
|
|
|
.material-icons.link:before {
|
|
content: "\e157";
|
|
}
|
|
|
|
.material-icons.link_off:before {
|
|
content: "\e16f";
|
|
}
|
|
|
|
.material-icons.linked_camera:before {
|
|
content: "\e438";
|
|
}
|
|
|
|
.material-icons.liquor:before {
|
|
content: "\ea60";
|
|
}
|
|
|
|
.material-icons.list:before {
|
|
content: "\e896";
|
|
}
|
|
|
|
.material-icons.list_alt:before {
|
|
content: "\e0ee";
|
|
}
|
|
|
|
.material-icons.live_help:before {
|
|
content: "\e0c6";
|
|
}
|
|
|
|
.material-icons.live_tv:before {
|
|
content: "\e639";
|
|
}
|
|
|
|
.material-icons.living:before {
|
|
content: "\f02b";
|
|
}
|
|
|
|
.material-icons.local_activity:before {
|
|
content: "\e53f";
|
|
}
|
|
|
|
.material-icons.local_airport:before {
|
|
content: "\e53d";
|
|
}
|
|
|
|
.material-icons.local_atm:before {
|
|
content: "\e53e";
|
|
}
|
|
|
|
.material-icons.local_attraction:before {
|
|
content: "\e53f";
|
|
}
|
|
|
|
.material-icons.local_bar:before {
|
|
content: "\e540";
|
|
}
|
|
|
|
.material-icons.local_cafe:before {
|
|
content: "\e541";
|
|
}
|
|
|
|
.material-icons.local_car_wash:before {
|
|
content: "\e542";
|
|
}
|
|
|
|
.material-icons.local_convenience_store:before {
|
|
content: "\e543";
|
|
}
|
|
|
|
.material-icons.local_dining:before {
|
|
content: "\e556";
|
|
}
|
|
|
|
.material-icons.local_drink:before {
|
|
content: "\e544";
|
|
}
|
|
|
|
.material-icons.local_fire_department:before {
|
|
content: "\ef55";
|
|
}
|
|
|
|
.material-icons.local_florist:before {
|
|
content: "\e545";
|
|
}
|
|
|
|
.material-icons.local_gas_station:before {
|
|
content: "\e546";
|
|
}
|
|
|
|
.material-icons.local_grocery_store:before {
|
|
content: "\e547";
|
|
}
|
|
|
|
.material-icons.local_hospital:before {
|
|
content: "\e548";
|
|
}
|
|
|
|
.material-icons.local_hotel:before {
|
|
content: "\e549";
|
|
}
|
|
|
|
.material-icons.local_laundry_service:before {
|
|
content: "\e54a";
|
|
}
|
|
|
|
.material-icons.local_library:before {
|
|
content: "\e54b";
|
|
}
|
|
|
|
.material-icons.local_mall:before {
|
|
content: "\e54c";
|
|
}
|
|
|
|
.material-icons.local_movies:before {
|
|
content: "\e54d";
|
|
}
|
|
|
|
.material-icons.local_offer:before {
|
|
content: "\e54e";
|
|
}
|
|
|
|
.material-icons.local_parking:before {
|
|
content: "\e54f";
|
|
}
|
|
|
|
.material-icons.local_pharmacy:before {
|
|
content: "\e550";
|
|
}
|
|
|
|
.material-icons.local_phone:before {
|
|
content: "\e551";
|
|
}
|
|
|
|
.material-icons.local_pizza:before {
|
|
content: "\e552";
|
|
}
|
|
|
|
.material-icons.local_play:before {
|
|
content: "\e553";
|
|
}
|
|
|
|
.material-icons.local_police:before {
|
|
content: "\ef56";
|
|
}
|
|
|
|
.material-icons.local_post_office:before {
|
|
content: "\e554";
|
|
}
|
|
|
|
.material-icons.local_print_shop:before {
|
|
content: "\e555";
|
|
}
|
|
|
|
.material-icons.local_printshop:before {
|
|
content: "\e555";
|
|
}
|
|
|
|
.material-icons.local_restaurant:before {
|
|
content: "\e556";
|
|
}
|
|
|
|
.material-icons.local_see:before {
|
|
content: "\e557";
|
|
}
|
|
|
|
.material-icons.local_shipping:before {
|
|
content: "\e558";
|
|
}
|
|
|
|
.material-icons.local_taxi:before {
|
|
content: "\e559";
|
|
}
|
|
|
|
.material-icons.location_city:before {
|
|
content: "\e7f1";
|
|
}
|
|
|
|
.material-icons.location_disabled:before {
|
|
content: "\e1b6";
|
|
}
|
|
|
|
.material-icons.location_history:before {
|
|
content: "\e55a";
|
|
}
|
|
|
|
.material-icons.location_off:before {
|
|
content: "\e0c7";
|
|
}
|
|
|
|
.material-icons.location_on:before {
|
|
content: "\e0c8";
|
|
}
|
|
|
|
.material-icons.location_pin:before {
|
|
content: "\f1db";
|
|
}
|
|
|
|
.material-icons.location_searching:before {
|
|
content: "\e1b7";
|
|
}
|
|
|
|
.material-icons.lock:before {
|
|
content: "\e897";
|
|
}
|
|
|
|
.material-icons.lock_clock:before {
|
|
content: "\ef57";
|
|
}
|
|
|
|
.material-icons.lock_open:before {
|
|
content: "\e898";
|
|
}
|
|
|
|
.material-icons.lock_outline:before {
|
|
content: "\e899";
|
|
}
|
|
|
|
.material-icons.lock_person:before {
|
|
content: "\f8f3";
|
|
}
|
|
|
|
.material-icons.lock_reset:before {
|
|
content: "\eade";
|
|
}
|
|
|
|
.material-icons.login:before {
|
|
content: "\ea77";
|
|
}
|
|
|
|
.material-icons.logo_dev:before {
|
|
content: "\ead6";
|
|
}
|
|
|
|
.material-icons.logout:before {
|
|
content: "\e9ba";
|
|
}
|
|
|
|
.material-icons.looks:before {
|
|
content: "\e3fc";
|
|
}
|
|
|
|
.material-icons.looks_3:before {
|
|
content: "\e3fb";
|
|
}
|
|
|
|
.material-icons.looks_4:before {
|
|
content: "\e3fd";
|
|
}
|
|
|
|
.material-icons.looks_5:before {
|
|
content: "\e3fe";
|
|
}
|
|
|
|
.material-icons.looks_6:before {
|
|
content: "\e3ff";
|
|
}
|
|
|
|
.material-icons.looks_one:before {
|
|
content: "\e400";
|
|
}
|
|
|
|
.material-icons.looks_two:before {
|
|
content: "\e401";
|
|
}
|
|
|
|
.material-icons.loop:before {
|
|
content: "\e028";
|
|
}
|
|
|
|
.material-icons.loupe:before {
|
|
content: "\e402";
|
|
}
|
|
|
|
.material-icons.low_priority:before {
|
|
content: "\e16d";
|
|
}
|
|
|
|
.material-icons.loyalty:before {
|
|
content: "\e89a";
|
|
}
|
|
|
|
.material-icons.lte_mobiledata:before {
|
|
content: "\f02c";
|
|
}
|
|
|
|
.material-icons.lte_plus_mobiledata:before {
|
|
content: "\f02d";
|
|
}
|
|
|
|
.material-icons.luggage:before {
|
|
content: "\f235";
|
|
}
|
|
|
|
.material-icons.lunch_dining:before {
|
|
content: "\ea61";
|
|
}
|
|
|
|
.material-icons.lyrics:before {
|
|
content: "\ec0b";
|
|
}
|
|
|
|
.material-icons.mail:before {
|
|
content: "\e158";
|
|
}
|
|
|
|
.material-icons.mail_lock:before {
|
|
content: "\ec0a";
|
|
}
|
|
|
|
.material-icons.mail_outline:before {
|
|
content: "\e0e1";
|
|
}
|
|
|
|
.material-icons.male:before {
|
|
content: "\e58e";
|
|
}
|
|
|
|
.material-icons.man:before {
|
|
content: "\e4eb";
|
|
}
|
|
|
|
.material-icons.manage_accounts:before {
|
|
content: "\f02e";
|
|
}
|
|
|
|
.material-icons.manage_history:before {
|
|
content: "\ebe7";
|
|
}
|
|
|
|
.material-icons.manage_search:before {
|
|
content: "\f02f";
|
|
}
|
|
|
|
.material-icons.map:before {
|
|
content: "\e55b";
|
|
}
|
|
|
|
.material-icons.maps_home_work:before {
|
|
content: "\f030";
|
|
}
|
|
|
|
.material-icons.maps_ugc:before {
|
|
content: "\ef58";
|
|
}
|
|
|
|
.material-icons.margin:before {
|
|
content: "\e9bb";
|
|
}
|
|
|
|
.material-icons.mark_as_unread:before {
|
|
content: "\e9bc";
|
|
}
|
|
|
|
.material-icons.mark_chat_read:before {
|
|
content: "\f18b";
|
|
}
|
|
|
|
.material-icons.mark_chat_unread:before {
|
|
content: "\f189";
|
|
}
|
|
|
|
.material-icons.mark_email_read:before {
|
|
content: "\f18c";
|
|
}
|
|
|
|
.material-icons.mark_email_unread:before {
|
|
content: "\f18a";
|
|
}
|
|
|
|
.material-icons.mark_unread_chat_alt:before {
|
|
content: "\eb9d";
|
|
}
|
|
|
|
.material-icons.markunread:before {
|
|
content: "\e159";
|
|
}
|
|
|
|
.material-icons.markunread_mailbox:before {
|
|
content: "\e89b";
|
|
}
|
|
|
|
.material-icons.masks:before {
|
|
content: "\f218";
|
|
}
|
|
|
|
.material-icons.maximize:before {
|
|
content: "\e930";
|
|
}
|
|
|
|
.material-icons.media_bluetooth_off:before {
|
|
content: "\f031";
|
|
}
|
|
|
|
.material-icons.media_bluetooth_on:before {
|
|
content: "\f032";
|
|
}
|
|
|
|
.material-icons.mediation:before {
|
|
content: "\efa7";
|
|
}
|
|
|
|
.material-icons.medical_information:before {
|
|
content: "\ebed";
|
|
}
|
|
|
|
.material-icons.medical_services:before {
|
|
content: "\f109";
|
|
}
|
|
|
|
.material-icons.medication:before {
|
|
content: "\f033";
|
|
}
|
|
|
|
.material-icons.medication_liquid:before {
|
|
content: "\ea87";
|
|
}
|
|
|
|
.material-icons.meeting_room:before {
|
|
content: "\eb4f";
|
|
}
|
|
|
|
.material-icons.memory:before {
|
|
content: "\e322";
|
|
}
|
|
|
|
.material-icons.menu:before {
|
|
content: "\e5d2";
|
|
}
|
|
|
|
.material-icons.menu_book:before {
|
|
content: "\ea19";
|
|
}
|
|
|
|
.material-icons.menu_open:before {
|
|
content: "\e9bd";
|
|
}
|
|
|
|
.material-icons.merge:before {
|
|
content: "\eb98";
|
|
}
|
|
|
|
.material-icons.merge_type:before {
|
|
content: "\e252";
|
|
}
|
|
|
|
.material-icons.message:before {
|
|
content: "\e0c9";
|
|
}
|
|
|
|
.material-icons.messenger:before {
|
|
content: "\e0ca";
|
|
}
|
|
|
|
.material-icons.messenger_outline:before {
|
|
content: "\e0cb";
|
|
}
|
|
|
|
.material-icons.mic:before {
|
|
content: "\e029";
|
|
}
|
|
|
|
.material-icons.mic_external_off:before {
|
|
content: "\ef59";
|
|
}
|
|
|
|
.material-icons.mic_external_on:before {
|
|
content: "\ef5a";
|
|
}
|
|
|
|
.material-icons.mic_none:before {
|
|
content: "\e02a";
|
|
}
|
|
|
|
.material-icons.mic_off:before {
|
|
content: "\e02b";
|
|
}
|
|
|
|
.material-icons.microwave:before {
|
|
content: "\f204";
|
|
}
|
|
|
|
.material-icons.military_tech:before {
|
|
content: "\ea3f";
|
|
}
|
|
|
|
.material-icons.minimize:before {
|
|
content: "\e931";
|
|
}
|
|
|
|
.material-icons.minor_crash:before {
|
|
content: "\ebf1";
|
|
}
|
|
|
|
.material-icons.miscellaneous_services:before {
|
|
content: "\f10c";
|
|
}
|
|
|
|
.material-icons.missed_video_call:before {
|
|
content: "\e073";
|
|
}
|
|
|
|
.material-icons.mms:before {
|
|
content: "\e618";
|
|
}
|
|
|
|
.material-icons.mobile_friendly:before {
|
|
content: "\e200";
|
|
}
|
|
|
|
.material-icons.mobile_off:before {
|
|
content: "\e201";
|
|
}
|
|
|
|
.material-icons.mobile_screen_share:before {
|
|
content: "\e0e7";
|
|
}
|
|
|
|
.material-icons.mobiledata_off:before {
|
|
content: "\f034";
|
|
}
|
|
|
|
.material-icons.mode:before {
|
|
content: "\f097";
|
|
}
|
|
|
|
.material-icons.mode_comment:before {
|
|
content: "\e253";
|
|
}
|
|
|
|
.material-icons.mode_edit:before {
|
|
content: "\e254";
|
|
}
|
|
|
|
.material-icons.mode_edit_outline:before {
|
|
content: "\f035";
|
|
}
|
|
|
|
.material-icons.mode_fan_off:before {
|
|
content: "\ec17";
|
|
}
|
|
|
|
.material-icons.mode_night:before {
|
|
content: "\f036";
|
|
}
|
|
|
|
.material-icons.mode_of_travel:before {
|
|
content: "\e7ce";
|
|
}
|
|
|
|
.material-icons.mode_standby:before {
|
|
content: "\f037";
|
|
}
|
|
|
|
.material-icons.model_training:before {
|
|
content: "\f0cf";
|
|
}
|
|
|
|
.material-icons.monetization_on:before {
|
|
content: "\e263";
|
|
}
|
|
|
|
.material-icons.money:before {
|
|
content: "\e57d";
|
|
}
|
|
|
|
.material-icons.money_off:before {
|
|
content: "\e25c";
|
|
}
|
|
|
|
.material-icons.money_off_csred:before {
|
|
content: "\f038";
|
|
}
|
|
|
|
.material-icons.monitor:before {
|
|
content: "\ef5b";
|
|
}
|
|
|
|
.material-icons.monitor_heart:before {
|
|
content: "\eaa2";
|
|
}
|
|
|
|
.material-icons.monitor_weight:before {
|
|
content: "\f039";
|
|
}
|
|
|
|
.material-icons.monochrome_photos:before {
|
|
content: "\e403";
|
|
}
|
|
|
|
.material-icons.mood:before {
|
|
content: "\e7f2";
|
|
}
|
|
|
|
.material-icons.mood_bad:before {
|
|
content: "\e7f3";
|
|
}
|
|
|
|
.material-icons.moped:before {
|
|
content: "\eb28";
|
|
}
|
|
|
|
.material-icons.more:before {
|
|
content: "\e619";
|
|
}
|
|
|
|
.material-icons.more_horiz:before {
|
|
content: "\e5d3";
|
|
}
|
|
|
|
.material-icons.more_time:before {
|
|
content: "\ea5d";
|
|
}
|
|
|
|
.material-icons.more_vert:before {
|
|
content: "\e5d4";
|
|
}
|
|
|
|
.material-icons.mosque:before {
|
|
content: "\eab2";
|
|
}
|
|
|
|
.material-icons.motion_photos_auto:before {
|
|
content: "\f03a";
|
|
}
|
|
|
|
.material-icons.motion_photos_off:before {
|
|
content: "\e9c0";
|
|
}
|
|
|
|
.material-icons.motion_photos_on:before {
|
|
content: "\e9c1";
|
|
}
|
|
|
|
.material-icons.motion_photos_pause:before {
|
|
content: "\f227";
|
|
}
|
|
|
|
.material-icons.motion_photos_paused:before {
|
|
content: "\e9c2";
|
|
}
|
|
|
|
.material-icons.motorcycle:before {
|
|
content: "\e91b";
|
|
}
|
|
|
|
.material-icons.mouse:before {
|
|
content: "\e323";
|
|
}
|
|
|
|
.material-icons.move_down:before {
|
|
content: "\eb61";
|
|
}
|
|
|
|
.material-icons.move_to_inbox:before {
|
|
content: "\e168";
|
|
}
|
|
|
|
.material-icons.move_up:before {
|
|
content: "\eb64";
|
|
}
|
|
|
|
.material-icons.movie:before {
|
|
content: "\e02c";
|
|
}
|
|
|
|
.material-icons.movie_creation:before {
|
|
content: "\e404";
|
|
}
|
|
|
|
.material-icons.movie_filter:before {
|
|
content: "\e43a";
|
|
}
|
|
|
|
.material-icons.moving:before {
|
|
content: "\e501";
|
|
}
|
|
|
|
.material-icons.mp:before {
|
|
content: "\e9c3";
|
|
}
|
|
|
|
.material-icons.multiline_chart:before {
|
|
content: "\e6df";
|
|
}
|
|
|
|
.material-icons.multiple_stop:before {
|
|
content: "\f1b9";
|
|
}
|
|
|
|
.material-icons.multitrack_audio:before {
|
|
content: "\e1b8";
|
|
}
|
|
|
|
.material-icons.museum:before {
|
|
content: "\ea36";
|
|
}
|
|
|
|
.material-icons.music_note:before {
|
|
content: "\e405";
|
|
}
|
|
|
|
.material-icons.music_off:before {
|
|
content: "\e440";
|
|
}
|
|
|
|
.material-icons.music_video:before {
|
|
content: "\e063";
|
|
}
|
|
|
|
.material-icons.my_library_add:before {
|
|
content: "\e02e";
|
|
}
|
|
|
|
.material-icons.my_library_books:before {
|
|
content: "\e02f";
|
|
}
|
|
|
|
.material-icons.my_library_music:before {
|
|
content: "\e030";
|
|
}
|
|
|
|
.material-icons.my_location:before {
|
|
content: "\e55c";
|
|
}
|
|
|
|
.material-icons.nat:before {
|
|
content: "\ef5c";
|
|
}
|
|
|
|
.material-icons.nature:before {
|
|
content: "\e406";
|
|
}
|
|
|
|
.material-icons.nature_people:before {
|
|
content: "\e407";
|
|
}
|
|
|
|
.material-icons.navigate_before:before {
|
|
content: "\e408";
|
|
}
|
|
|
|
.material-icons.navigate_next:before {
|
|
content: "\e409";
|
|
}
|
|
|
|
.material-icons.navigation:before {
|
|
content: "\e55d";
|
|
}
|
|
|
|
.material-icons.near_me:before {
|
|
content: "\e569";
|
|
}
|
|
|
|
.material-icons.near_me_disabled:before {
|
|
content: "\f1ef";
|
|
}
|
|
|
|
.material-icons.nearby_error:before {
|
|
content: "\f03b";
|
|
}
|
|
|
|
.material-icons.nearby_off:before {
|
|
content: "\f03c";
|
|
}
|
|
|
|
.material-icons.nest_cam_wired_stand:before {
|
|
content: "\ec16";
|
|
}
|
|
|
|
.material-icons.network_cell:before {
|
|
content: "\e1b9";
|
|
}
|
|
|
|
.material-icons.network_check:before {
|
|
content: "\e640";
|
|
}
|
|
|
|
.material-icons.network_locked:before {
|
|
content: "\e61a";
|
|
}
|
|
|
|
.material-icons.network_ping:before {
|
|
content: "\ebca";
|
|
}
|
|
|
|
.material-icons.network_wifi:before {
|
|
content: "\e1ba";
|
|
}
|
|
|
|
.material-icons.network_wifi_1_bar:before {
|
|
content: "\ebe4";
|
|
}
|
|
|
|
.material-icons.network_wifi_2_bar:before {
|
|
content: "\ebd6";
|
|
}
|
|
|
|
.material-icons.network_wifi_3_bar:before {
|
|
content: "\ebe1";
|
|
}
|
|
|
|
.material-icons.new_label:before {
|
|
content: "\e609";
|
|
}
|
|
|
|
.material-icons.new_releases:before {
|
|
content: "\e031";
|
|
}
|
|
|
|
.material-icons.newspaper:before {
|
|
content: "\eb81";
|
|
}
|
|
|
|
.material-icons.next_plan:before {
|
|
content: "\ef5d";
|
|
}
|
|
|
|
.material-icons.next_week:before {
|
|
content: "\e16a";
|
|
}
|
|
|
|
.material-icons.nfc:before {
|
|
content: "\e1bb";
|
|
}
|
|
|
|
.material-icons.night_shelter:before {
|
|
content: "\f1f1";
|
|
}
|
|
|
|
.material-icons.nightlife:before {
|
|
content: "\ea62";
|
|
}
|
|
|
|
.material-icons.nightlight:before {
|
|
content: "\f03d";
|
|
}
|
|
|
|
.material-icons.nightlight_round:before {
|
|
content: "\ef5e";
|
|
}
|
|
|
|
.material-icons.nights_stay:before {
|
|
content: "\ea46";
|
|
}
|
|
|
|
.material-icons.no_accounts:before {
|
|
content: "\f03e";
|
|
}
|
|
|
|
.material-icons.no_adult_content:before {
|
|
content: "\f8fe";
|
|
}
|
|
|
|
.material-icons.no_backpack:before {
|
|
content: "\f237";
|
|
}
|
|
|
|
.material-icons.no_cell:before {
|
|
content: "\f1a4";
|
|
}
|
|
|
|
.material-icons.no_crash:before {
|
|
content: "\ebf0";
|
|
}
|
|
|
|
.material-icons.no_drinks:before {
|
|
content: "\f1a5";
|
|
}
|
|
|
|
.material-icons.no_encryption:before {
|
|
content: "\e641";
|
|
}
|
|
|
|
.material-icons.no_encryption_gmailerrorred:before {
|
|
content: "\f03f";
|
|
}
|
|
|
|
.material-icons.no_flash:before {
|
|
content: "\f1a6";
|
|
}
|
|
|
|
.material-icons.no_food:before {
|
|
content: "\f1a7";
|
|
}
|
|
|
|
.material-icons.no_luggage:before {
|
|
content: "\f23b";
|
|
}
|
|
|
|
.material-icons.no_meals:before {
|
|
content: "\f1d6";
|
|
}
|
|
|
|
.material-icons.no_meals_ouline:before {
|
|
content: "\f229";
|
|
}
|
|
|
|
.material-icons.no_meeting_room:before {
|
|
content: "\eb4e";
|
|
}
|
|
|
|
.material-icons.no_photography:before {
|
|
content: "\f1a8";
|
|
}
|
|
|
|
.material-icons.no_sim:before {
|
|
content: "\e0cc";
|
|
}
|
|
|
|
.material-icons.no_stroller:before {
|
|
content: "\f1af";
|
|
}
|
|
|
|
.material-icons.no_transfer:before {
|
|
content: "\f1d5";
|
|
}
|
|
|
|
.material-icons.noise_aware:before {
|
|
content: "\ebec";
|
|
}
|
|
|
|
.material-icons.noise_control_off:before {
|
|
content: "\ebf3";
|
|
}
|
|
|
|
.material-icons.nordic_walking:before {
|
|
content: "\e50e";
|
|
}
|
|
|
|
.material-icons.north:before {
|
|
content: "\f1e0";
|
|
}
|
|
|
|
.material-icons.north_east:before {
|
|
content: "\f1e1";
|
|
}
|
|
|
|
.material-icons.north_west:before {
|
|
content: "\f1e2";
|
|
}
|
|
|
|
.material-icons.not_accessible:before {
|
|
content: "\f0fe";
|
|
}
|
|
|
|
.material-icons.not_interested:before {
|
|
content: "\e033";
|
|
}
|
|
|
|
.material-icons.not_listed_location:before {
|
|
content: "\e575";
|
|
}
|
|
|
|
.material-icons.not_started:before {
|
|
content: "\f0d1";
|
|
}
|
|
|
|
.material-icons.note:before {
|
|
content: "\e06f";
|
|
}
|
|
|
|
.material-icons.note_add:before {
|
|
content: "\e89c";
|
|
}
|
|
|
|
.material-icons.note_alt:before {
|
|
content: "\f040";
|
|
}
|
|
|
|
.material-icons.notes:before {
|
|
content: "\e26c";
|
|
}
|
|
|
|
.material-icons.notification_add:before {
|
|
content: "\e399";
|
|
}
|
|
|
|
.material-icons.notification_important:before {
|
|
content: "\e004";
|
|
}
|
|
|
|
.material-icons.notifications:before {
|
|
content: "\e7f4";
|
|
}
|
|
|
|
.material-icons.notifications_active:before {
|
|
content: "\e7f7";
|
|
}
|
|
|
|
.material-icons.notifications_none:before {
|
|
content: "\e7f5";
|
|
}
|
|
|
|
.material-icons.notifications_off:before {
|
|
content: "\e7f6";
|
|
}
|
|
|
|
.material-icons.notifications_on:before {
|
|
content: "\e7f7";
|
|
}
|
|
|
|
.material-icons.notifications_paused:before {
|
|
content: "\e7f8";
|
|
}
|
|
|
|
.material-icons.now_wallpaper:before {
|
|
content: "\e1bc";
|
|
}
|
|
|
|
.material-icons.now_widgets:before {
|
|
content: "\e1bd";
|
|
}
|
|
|
|
.material-icons.numbers:before {
|
|
content: "\eac7";
|
|
}
|
|
|
|
.material-icons.offline_bolt:before {
|
|
content: "\e932";
|
|
}
|
|
|
|
.material-icons.offline_pin:before {
|
|
content: "\e90a";
|
|
}
|
|
|
|
.material-icons.offline_share:before {
|
|
content: "\e9c5";
|
|
}
|
|
|
|
.material-icons.oil_barrel:before {
|
|
content: "\ec15";
|
|
}
|
|
|
|
.material-icons.on_device_training:before {
|
|
content: "\ebfd";
|
|
}
|
|
|
|
.material-icons.ondemand_video:before {
|
|
content: "\e63a";
|
|
}
|
|
|
|
.material-icons.online_prediction:before {
|
|
content: "\f0eb";
|
|
}
|
|
|
|
.material-icons.opacity:before {
|
|
content: "\e91c";
|
|
}
|
|
|
|
.material-icons.open_in_browser:before {
|
|
content: "\e89d";
|
|
}
|
|
|
|
.material-icons.open_in_full:before {
|
|
content: "\f1ce";
|
|
}
|
|
|
|
.material-icons.open_in_new:before {
|
|
content: "\e89e";
|
|
}
|
|
|
|
.material-icons.open_in_new_off:before {
|
|
content: "\e4f6";
|
|
}
|
|
|
|
.material-icons.open_with:before {
|
|
content: "\e89f";
|
|
}
|
|
|
|
.material-icons.other_houses:before {
|
|
content: "\e58c";
|
|
}
|
|
|
|
.material-icons.outbond:before {
|
|
content: "\f228";
|
|
}
|
|
|
|
.material-icons.outbound:before {
|
|
content: "\e1ca";
|
|
}
|
|
|
|
.material-icons.outbox:before {
|
|
content: "\ef5f";
|
|
}
|
|
|
|
.material-icons.outdoor_grill:before {
|
|
content: "\ea47";
|
|
}
|
|
|
|
.material-icons.outgoing_mail:before {
|
|
content: "\f0d2";
|
|
}
|
|
|
|
.material-icons.outlet:before {
|
|
content: "\f1d4";
|
|
}
|
|
|
|
.material-icons.outlined_flag:before {
|
|
content: "\e16e";
|
|
}
|
|
|
|
.material-icons.output:before {
|
|
content: "\ebbe";
|
|
}
|
|
|
|
.material-icons.padding:before {
|
|
content: "\e9c8";
|
|
}
|
|
|
|
.material-icons.pages:before {
|
|
content: "\e7f9";
|
|
}
|
|
|
|
.material-icons.pageview:before {
|
|
content: "\e8a0";
|
|
}
|
|
|
|
.material-icons.paid:before {
|
|
content: "\f041";
|
|
}
|
|
|
|
.material-icons.palette:before {
|
|
content: "\e40a";
|
|
}
|
|
|
|
.material-icons.pan_tool:before {
|
|
content: "\e925";
|
|
}
|
|
|
|
.material-icons.pan_tool_alt:before {
|
|
content: "\ebb9";
|
|
}
|
|
|
|
.material-icons.panorama:before {
|
|
content: "\e40b";
|
|
}
|
|
|
|
.material-icons.panorama_fish_eye:before {
|
|
content: "\e40c";
|
|
}
|
|
|
|
.material-icons.panorama_fisheye:before {
|
|
content: "\e40c";
|
|
}
|
|
|
|
.material-icons.panorama_horizontal:before {
|
|
content: "\e40d";
|
|
}
|
|
|
|
.material-icons.panorama_horizontal_select:before {
|
|
content: "\ef60";
|
|
}
|
|
|
|
.material-icons.panorama_photosphere:before {
|
|
content: "\e9c9";
|
|
}
|
|
|
|
.material-icons.panorama_photosphere_select:before {
|
|
content: "\e9ca";
|
|
}
|
|
|
|
.material-icons.panorama_vertical:before {
|
|
content: "\e40e";
|
|
}
|
|
|
|
.material-icons.panorama_vertical_select:before {
|
|
content: "\ef61";
|
|
}
|
|
|
|
.material-icons.panorama_wide_angle:before {
|
|
content: "\e40f";
|
|
}
|
|
|
|
.material-icons.panorama_wide_angle_select:before {
|
|
content: "\ef62";
|
|
}
|
|
|
|
.material-icons.paragliding:before {
|
|
content: "\e50f";
|
|
}
|
|
|
|
.material-icons.park:before {
|
|
content: "\ea63";
|
|
}
|
|
|
|
.material-icons.party_mode:before {
|
|
content: "\e7fa";
|
|
}
|
|
|
|
.material-icons.password:before {
|
|
content: "\f042";
|
|
}
|
|
|
|
.material-icons.pattern:before {
|
|
content: "\f043";
|
|
}
|
|
|
|
.material-icons.pause:before {
|
|
content: "\e034";
|
|
}
|
|
|
|
.material-icons.pause_circle:before {
|
|
content: "\e1a2";
|
|
}
|
|
|
|
.material-icons.pause_circle_filled:before {
|
|
content: "\e035";
|
|
}
|
|
|
|
.material-icons.pause_circle_outline:before {
|
|
content: "\e036";
|
|
}
|
|
|
|
.material-icons.pause_presentation:before {
|
|
content: "\e0ea";
|
|
}
|
|
|
|
.material-icons.payment:before {
|
|
content: "\e8a1";
|
|
}
|
|
|
|
.material-icons.payments:before {
|
|
content: "\ef63";
|
|
}
|
|
|
|
.material-icons.paypal:before {
|
|
content: "\ea8d";
|
|
}
|
|
|
|
.material-icons.pedal_bike:before {
|
|
content: "\eb29";
|
|
}
|
|
|
|
.material-icons.pending:before {
|
|
content: "\ef64";
|
|
}
|
|
|
|
.material-icons.pending_actions:before {
|
|
content: "\f1bb";
|
|
}
|
|
|
|
.material-icons.pentagon:before {
|
|
content: "\eb50";
|
|
}
|
|
|
|
.material-icons.people:before {
|
|
content: "\e7fb";
|
|
}
|
|
|
|
.material-icons.people_alt:before {
|
|
content: "\ea21";
|
|
}
|
|
|
|
.material-icons.people_outline:before {
|
|
content: "\e7fc";
|
|
}
|
|
|
|
.material-icons.percent:before {
|
|
content: "\eb58";
|
|
}
|
|
|
|
.material-icons.perm_camera_mic:before {
|
|
content: "\e8a2";
|
|
}
|
|
|
|
.material-icons.perm_contact_cal:before {
|
|
content: "\e8a3";
|
|
}
|
|
|
|
.material-icons.perm_contact_calendar:before {
|
|
content: "\e8a3";
|
|
}
|
|
|
|
.material-icons.perm_data_setting:before {
|
|
content: "\e8a4";
|
|
}
|
|
|
|
.material-icons.perm_device_info:before {
|
|
content: "\e8a5";
|
|
}
|
|
|
|
.material-icons.perm_device_information:before {
|
|
content: "\e8a5";
|
|
}
|
|
|
|
.material-icons.perm_identity:before {
|
|
content: "\e8a6";
|
|
}
|
|
|
|
.material-icons.perm_media:before {
|
|
content: "\e8a7";
|
|
}
|
|
|
|
.material-icons.perm_phone_msg:before {
|
|
content: "\e8a8";
|
|
}
|
|
|
|
.material-icons.perm_scan_wifi:before {
|
|
content: "\e8a9";
|
|
}
|
|
|
|
.material-icons.person:before {
|
|
content: "\e7fd";
|
|
}
|
|
|
|
.material-icons.person_add:before {
|
|
content: "\e7fe";
|
|
}
|
|
|
|
.material-icons.person_add_alt:before {
|
|
content: "\ea4d";
|
|
}
|
|
|
|
.material-icons.person_add_alt_1:before {
|
|
content: "\ef65";
|
|
}
|
|
|
|
.material-icons.person_add_disabled:before {
|
|
content: "\e9cb";
|
|
}
|
|
|
|
.material-icons.person_off:before {
|
|
content: "\e510";
|
|
}
|
|
|
|
.material-icons.person_outline:before {
|
|
content: "\e7ff";
|
|
}
|
|
|
|
.material-icons.person_pin:before {
|
|
content: "\e55a";
|
|
}
|
|
|
|
.material-icons.person_pin_circle:before {
|
|
content: "\e56a";
|
|
}
|
|
|
|
.material-icons.person_remove:before {
|
|
content: "\ef66";
|
|
}
|
|
|
|
.material-icons.person_remove_alt_1:before {
|
|
content: "\ef67";
|
|
}
|
|
|
|
.material-icons.person_search:before {
|
|
content: "\f106";
|
|
}
|
|
|
|
.material-icons.personal_injury:before {
|
|
content: "\e6da";
|
|
}
|
|
|
|
.material-icons.personal_video:before {
|
|
content: "\e63b";
|
|
}
|
|
|
|
.material-icons.pest_control:before {
|
|
content: "\f0fa";
|
|
}
|
|
|
|
.material-icons.pest_control_rodent:before {
|
|
content: "\f0fd";
|
|
}
|
|
|
|
.material-icons.pets:before {
|
|
content: "\e91d";
|
|
}
|
|
|
|
.material-icons.phishing:before {
|
|
content: "\ead7";
|
|
}
|
|
|
|
.material-icons.phone:before {
|
|
content: "\e0cd";
|
|
}
|
|
|
|
.material-icons.phone_android:before {
|
|
content: "\e324";
|
|
}
|
|
|
|
.material-icons.phone_bluetooth_speaker:before {
|
|
content: "\e61b";
|
|
}
|
|
|
|
.material-icons.phone_callback:before {
|
|
content: "\e649";
|
|
}
|
|
|
|
.material-icons.phone_disabled:before {
|
|
content: "\e9cc";
|
|
}
|
|
|
|
.material-icons.phone_enabled:before {
|
|
content: "\e9cd";
|
|
}
|
|
|
|
.material-icons.phone_forwarded:before {
|
|
content: "\e61c";
|
|
}
|
|
|
|
.material-icons.phone_in_talk:before {
|
|
content: "\e61d";
|
|
}
|
|
|
|
.material-icons.phone_iphone:before {
|
|
content: "\e325";
|
|
}
|
|
|
|
.material-icons.phone_locked:before {
|
|
content: "\e61e";
|
|
}
|
|
|
|
.material-icons.phone_missed:before {
|
|
content: "\e61f";
|
|
}
|
|
|
|
.material-icons.phone_paused:before {
|
|
content: "\e620";
|
|
}
|
|
|
|
.material-icons.phonelink:before {
|
|
content: "\e326";
|
|
}
|
|
|
|
.material-icons.phonelink_erase:before {
|
|
content: "\e0db";
|
|
}
|
|
|
|
.material-icons.phonelink_lock:before {
|
|
content: "\e0dc";
|
|
}
|
|
|
|
.material-icons.phonelink_off:before {
|
|
content: "\e327";
|
|
}
|
|
|
|
.material-icons.phonelink_ring:before {
|
|
content: "\e0dd";
|
|
}
|
|
|
|
.material-icons.phonelink_setup:before {
|
|
content: "\e0de";
|
|
}
|
|
|
|
.material-icons.photo:before {
|
|
content: "\e410";
|
|
}
|
|
|
|
.material-icons.photo_album:before {
|
|
content: "\e411";
|
|
}
|
|
|
|
.material-icons.photo_camera:before {
|
|
content: "\e412";
|
|
}
|
|
|
|
.material-icons.photo_camera_back:before {
|
|
content: "\ef68";
|
|
}
|
|
|
|
.material-icons.photo_camera_front:before {
|
|
content: "\ef69";
|
|
}
|
|
|
|
.material-icons.photo_filter:before {
|
|
content: "\e43b";
|
|
}
|
|
|
|
.material-icons.photo_library:before {
|
|
content: "\e413";
|
|
}
|
|
|
|
.material-icons.photo_size_select_actual:before {
|
|
content: "\e432";
|
|
}
|
|
|
|
.material-icons.photo_size_select_large:before {
|
|
content: "\e433";
|
|
}
|
|
|
|
.material-icons.photo_size_select_small:before {
|
|
content: "\e434";
|
|
}
|
|
|
|
.material-icons.php:before {
|
|
content: "\eb8f";
|
|
}
|
|
|
|
.material-icons.piano:before {
|
|
content: "\e521";
|
|
}
|
|
|
|
.material-icons.piano_off:before {
|
|
content: "\e520";
|
|
}
|
|
|
|
.material-icons.picture_as_pdf:before {
|
|
content: "\e415";
|
|
}
|
|
|
|
.material-icons.picture_in_picture:before {
|
|
content: "\e8aa";
|
|
}
|
|
|
|
.material-icons.picture_in_picture_alt:before {
|
|
content: "\e911";
|
|
}
|
|
|
|
.material-icons.pie_chart:before {
|
|
content: "\e6c4";
|
|
}
|
|
|
|
.material-icons.pie_chart_outline:before {
|
|
content: "\f044";
|
|
}
|
|
|
|
.material-icons.pie_chart_outlined:before {
|
|
content: "\e6c5";
|
|
}
|
|
|
|
.material-icons.pin:before {
|
|
content: "\f045";
|
|
}
|
|
|
|
.material-icons.pin_drop:before {
|
|
content: "\e55e";
|
|
}
|
|
|
|
.material-icons.pin_end:before {
|
|
content: "\e767";
|
|
}
|
|
|
|
.material-icons.pin_invoke:before {
|
|
content: "\e763";
|
|
}
|
|
|
|
.material-icons.pinch:before {
|
|
content: "\eb38";
|
|
}
|
|
|
|
.material-icons.pivot_table_chart:before {
|
|
content: "\e9ce";
|
|
}
|
|
|
|
.material-icons.pix:before {
|
|
content: "\eaa3";
|
|
}
|
|
|
|
.material-icons.place:before {
|
|
content: "\e55f";
|
|
}
|
|
|
|
.material-icons.plagiarism:before {
|
|
content: "\ea5a";
|
|
}
|
|
|
|
.material-icons.play_arrow:before {
|
|
content: "\e037";
|
|
}
|
|
|
|
.material-icons.play_circle:before {
|
|
content: "\e1c4";
|
|
}
|
|
|
|
.material-icons.play_circle_fill:before {
|
|
content: "\e038";
|
|
}
|
|
|
|
.material-icons.play_circle_filled:before {
|
|
content: "\e038";
|
|
}
|
|
|
|
.material-icons.play_circle_outline:before {
|
|
content: "\e039";
|
|
}
|
|
|
|
.material-icons.play_disabled:before {
|
|
content: "\ef6a";
|
|
}
|
|
|
|
.material-icons.play_for_work:before {
|
|
content: "\e906";
|
|
}
|
|
|
|
.material-icons.play_lesson:before {
|
|
content: "\f047";
|
|
}
|
|
|
|
.material-icons.playlist_add:before {
|
|
content: "\e03b";
|
|
}
|
|
|
|
.material-icons.playlist_add_check:before {
|
|
content: "\e065";
|
|
}
|
|
|
|
.material-icons.playlist_add_check_circle:before {
|
|
content: "\e7e6";
|
|
}
|
|
|
|
.material-icons.playlist_add_circle:before {
|
|
content: "\e7e5";
|
|
}
|
|
|
|
.material-icons.playlist_play:before {
|
|
content: "\e05f";
|
|
}
|
|
|
|
.material-icons.playlist_remove:before {
|
|
content: "\eb80";
|
|
}
|
|
|
|
.material-icons.plumbing:before {
|
|
content: "\f107";
|
|
}
|
|
|
|
.material-icons.plus_one:before {
|
|
content: "\e800";
|
|
}
|
|
|
|
.material-icons.podcasts:before {
|
|
content: "\f048";
|
|
}
|
|
|
|
.material-icons.point_of_sale:before {
|
|
content: "\f17e";
|
|
}
|
|
|
|
.material-icons.policy:before {
|
|
content: "\ea17";
|
|
}
|
|
|
|
.material-icons.poll:before {
|
|
content: "\e801";
|
|
}
|
|
|
|
.material-icons.polyline:before {
|
|
content: "\ebbb";
|
|
}
|
|
|
|
.material-icons.polymer:before {
|
|
content: "\e8ab";
|
|
}
|
|
|
|
.material-icons.pool:before {
|
|
content: "\eb48";
|
|
}
|
|
|
|
.material-icons.portable_wifi_off:before {
|
|
content: "\e0ce";
|
|
}
|
|
|
|
.material-icons.portrait:before {
|
|
content: "\e416";
|
|
}
|
|
|
|
.material-icons.post_add:before {
|
|
content: "\ea20";
|
|
}
|
|
|
|
.material-icons.power:before {
|
|
content: "\e63c";
|
|
}
|
|
|
|
.material-icons.power_input:before {
|
|
content: "\e336";
|
|
}
|
|
|
|
.material-icons.power_off:before {
|
|
content: "\e646";
|
|
}
|
|
|
|
.material-icons.power_settings_new:before {
|
|
content: "\e8ac";
|
|
}
|
|
|
|
.material-icons.precision_manufacturing:before {
|
|
content: "\f049";
|
|
}
|
|
|
|
.material-icons.pregnant_woman:before {
|
|
content: "\e91e";
|
|
}
|
|
|
|
.material-icons.present_to_all:before {
|
|
content: "\e0df";
|
|
}
|
|
|
|
.material-icons.preview:before {
|
|
content: "\f1c5";
|
|
}
|
|
|
|
.material-icons.price_change:before {
|
|
content: "\f04a";
|
|
}
|
|
|
|
.material-icons.price_check:before {
|
|
content: "\f04b";
|
|
}
|
|
|
|
.material-icons.print:before {
|
|
content: "\e8ad";
|
|
}
|
|
|
|
.material-icons.print_disabled:before {
|
|
content: "\e9cf";
|
|
}
|
|
|
|
.material-icons.priority_high:before {
|
|
content: "\e645";
|
|
}
|
|
|
|
.material-icons.privacy_tip:before {
|
|
content: "\f0dc";
|
|
}
|
|
|
|
.material-icons.private_connectivity:before {
|
|
content: "\e744";
|
|
}
|
|
|
|
.material-icons.production_quantity_limits:before {
|
|
content: "\e1d1";
|
|
}
|
|
|
|
.material-icons.propane:before {
|
|
content: "\ec14";
|
|
}
|
|
|
|
.material-icons.propane_tank:before {
|
|
content: "\ec13";
|
|
}
|
|
|
|
.material-icons.psychology:before {
|
|
content: "\ea4a";
|
|
}
|
|
|
|
.material-icons.psychology_alt:before {
|
|
content: "\f8ea";
|
|
}
|
|
|
|
.material-icons.public:before {
|
|
content: "\e80b";
|
|
}
|
|
|
|
.material-icons.public_off:before {
|
|
content: "\f1ca";
|
|
}
|
|
|
|
.material-icons.publish:before {
|
|
content: "\e255";
|
|
}
|
|
|
|
.material-icons.published_with_changes:before {
|
|
content: "\f232";
|
|
}
|
|
|
|
.material-icons.punch_clock:before {
|
|
content: "\eaa8";
|
|
}
|
|
|
|
.material-icons.push_pin:before {
|
|
content: "\f10d";
|
|
}
|
|
|
|
.material-icons.qr_code:before {
|
|
content: "\ef6b";
|
|
}
|
|
|
|
.material-icons.qr_code_2:before {
|
|
content: "\e00a";
|
|
}
|
|
|
|
.material-icons.qr_code_scanner:before {
|
|
content: "\f206";
|
|
}
|
|
|
|
.material-icons.query_builder:before {
|
|
content: "\e8ae";
|
|
}
|
|
|
|
.material-icons.query_stats:before {
|
|
content: "\e4fc";
|
|
}
|
|
|
|
.material-icons.question_answer:before {
|
|
content: "\e8af";
|
|
}
|
|
|
|
.material-icons.question_mark:before {
|
|
content: "\eb8b";
|
|
}
|
|
|
|
.material-icons.queue:before {
|
|
content: "\e03c";
|
|
}
|
|
|
|
.material-icons.queue_music:before {
|
|
content: "\e03d";
|
|
}
|
|
|
|
.material-icons.queue_play_next:before {
|
|
content: "\e066";
|
|
}
|
|
|
|
.material-icons.quick_contacts_dialer:before {
|
|
content: "\e0cf";
|
|
}
|
|
|
|
.material-icons.quick_contacts_mail:before {
|
|
content: "\e0d0";
|
|
}
|
|
|
|
.material-icons.quickreply:before {
|
|
content: "\ef6c";
|
|
}
|
|
|
|
.material-icons.quiz:before {
|
|
content: "\f04c";
|
|
}
|
|
|
|
.material-icons.quora:before {
|
|
content: "\ea98";
|
|
}
|
|
|
|
.material-icons.r_mobiledata:before {
|
|
content: "\f04d";
|
|
}
|
|
|
|
.material-icons.radar:before {
|
|
content: "\f04e";
|
|
}
|
|
|
|
.material-icons.radio:before {
|
|
content: "\e03e";
|
|
}
|
|
|
|
.material-icons.radio_button_checked:before {
|
|
content: "\e837";
|
|
}
|
|
|
|
.material-icons.radio_button_off:before {
|
|
content: "\e836";
|
|
}
|
|
|
|
.material-icons.radio_button_on:before {
|
|
content: "\e837";
|
|
}
|
|
|
|
.material-icons.radio_button_unchecked:before {
|
|
content: "\e836";
|
|
}
|
|
|
|
.material-icons.railway_alert:before {
|
|
content: "\e9d1";
|
|
}
|
|
|
|
.material-icons.ramen_dining:before {
|
|
content: "\ea64";
|
|
}
|
|
|
|
.material-icons.ramp_left:before {
|
|
content: "\eb9c";
|
|
}
|
|
|
|
.material-icons.ramp_right:before {
|
|
content: "\eb96";
|
|
}
|
|
|
|
.material-icons.rate_review:before {
|
|
content: "\e560";
|
|
}
|
|
|
|
.material-icons.raw_off:before {
|
|
content: "\f04f";
|
|
}
|
|
|
|
.material-icons.raw_on:before {
|
|
content: "\f050";
|
|
}
|
|
|
|
.material-icons.read_more:before {
|
|
content: "\ef6d";
|
|
}
|
|
|
|
.material-icons.real_estate_agent:before {
|
|
content: "\e73a";
|
|
}
|
|
|
|
.material-icons.receipt:before {
|
|
content: "\e8b0";
|
|
}
|
|
|
|
.material-icons.receipt_long:before {
|
|
content: "\ef6e";
|
|
}
|
|
|
|
.material-icons.recent_actors:before {
|
|
content: "\e03f";
|
|
}
|
|
|
|
.material-icons.recommend:before {
|
|
content: "\e9d2";
|
|
}
|
|
|
|
.material-icons.record_voice_over:before {
|
|
content: "\e91f";
|
|
}
|
|
|
|
.material-icons.rectangle:before {
|
|
content: "\eb54";
|
|
}
|
|
|
|
.material-icons.recycling:before {
|
|
content: "\e760";
|
|
}
|
|
|
|
.material-icons.reddit:before {
|
|
content: "\eaa0";
|
|
}
|
|
|
|
.material-icons.redeem:before {
|
|
content: "\e8b1";
|
|
}
|
|
|
|
.material-icons.redo:before {
|
|
content: "\e15a";
|
|
}
|
|
|
|
.material-icons.reduce_capacity:before {
|
|
content: "\f21c";
|
|
}
|
|
|
|
.material-icons.refresh:before {
|
|
content: "\e5d5";
|
|
}
|
|
|
|
.material-icons.remember_me:before {
|
|
content: "\f051";
|
|
}
|
|
|
|
.material-icons.remove:before {
|
|
content: "\e15b";
|
|
}
|
|
|
|
.material-icons.remove_circle:before {
|
|
content: "\e15c";
|
|
}
|
|
|
|
.material-icons.remove_circle_outline:before {
|
|
content: "\e15d";
|
|
}
|
|
|
|
.material-icons.remove_done:before {
|
|
content: "\e9d3";
|
|
}
|
|
|
|
.material-icons.remove_from_queue:before {
|
|
content: "\e067";
|
|
}
|
|
|
|
.material-icons.remove_moderator:before {
|
|
content: "\e9d4";
|
|
}
|
|
|
|
.material-icons.remove_red_eye:before {
|
|
content: "\e417";
|
|
}
|
|
|
|
.material-icons.remove_road:before {
|
|
content: "\ebfc";
|
|
}
|
|
|
|
.material-icons.remove_shopping_cart:before {
|
|
content: "\e928";
|
|
}
|
|
|
|
.material-icons.reorder:before {
|
|
content: "\e8fe";
|
|
}
|
|
|
|
.material-icons.repartition:before {
|
|
content: "\f8e8";
|
|
}
|
|
|
|
.material-icons.repeat:before {
|
|
content: "\e040";
|
|
}
|
|
|
|
.material-icons.repeat_on:before {
|
|
content: "\e9d6";
|
|
}
|
|
|
|
.material-icons.repeat_one:before {
|
|
content: "\e041";
|
|
}
|
|
|
|
.material-icons.repeat_one_on:before {
|
|
content: "\e9d7";
|
|
}
|
|
|
|
.material-icons.replay:before {
|
|
content: "\e042";
|
|
}
|
|
|
|
.material-icons.replay_10:before {
|
|
content: "\e059";
|
|
}
|
|
|
|
.material-icons.replay_30:before {
|
|
content: "\e05a";
|
|
}
|
|
|
|
.material-icons.replay_5:before {
|
|
content: "\e05b";
|
|
}
|
|
|
|
.material-icons.replay_circle_filled:before {
|
|
content: "\e9d8";
|
|
}
|
|
|
|
.material-icons.reply:before {
|
|
content: "\e15e";
|
|
}
|
|
|
|
.material-icons.reply_all:before {
|
|
content: "\e15f";
|
|
}
|
|
|
|
.material-icons.report:before {
|
|
content: "\e160";
|
|
}
|
|
|
|
.material-icons.report_gmailerrorred:before {
|
|
content: "\f052";
|
|
}
|
|
|
|
.material-icons.report_off:before {
|
|
content: "\e170";
|
|
}
|
|
|
|
.material-icons.report_problem:before {
|
|
content: "\e8b2";
|
|
}
|
|
|
|
.material-icons.request_page:before {
|
|
content: "\f22c";
|
|
}
|
|
|
|
.material-icons.request_quote:before {
|
|
content: "\f1b6";
|
|
}
|
|
|
|
.material-icons.reset_tv:before {
|
|
content: "\e9d9";
|
|
}
|
|
|
|
.material-icons.restart_alt:before {
|
|
content: "\f053";
|
|
}
|
|
|
|
.material-icons.restaurant:before {
|
|
content: "\e56c";
|
|
}
|
|
|
|
.material-icons.restaurant_menu:before {
|
|
content: "\e561";
|
|
}
|
|
|
|
.material-icons.restore:before {
|
|
content: "\e8b3";
|
|
}
|
|
|
|
.material-icons.restore_from_trash:before {
|
|
content: "\e938";
|
|
}
|
|
|
|
.material-icons.restore_page:before {
|
|
content: "\e929";
|
|
}
|
|
|
|
.material-icons.reviews:before {
|
|
content: "\f054";
|
|
}
|
|
|
|
.material-icons.rice_bowl:before {
|
|
content: "\f1f5";
|
|
}
|
|
|
|
.material-icons.ring_volume:before {
|
|
content: "\e0d1";
|
|
}
|
|
|
|
.material-icons.rocket:before {
|
|
content: "\eba5";
|
|
}
|
|
|
|
.material-icons.rocket_launch:before {
|
|
content: "\eb9b";
|
|
}
|
|
|
|
.material-icons.roller_shades:before {
|
|
content: "\ec12";
|
|
}
|
|
|
|
.material-icons.roller_shades_closed:before {
|
|
content: "\ec11";
|
|
}
|
|
|
|
.material-icons.roller_skating:before {
|
|
content: "\ebcd";
|
|
}
|
|
|
|
.material-icons.roofing:before {
|
|
content: "\f201";
|
|
}
|
|
|
|
.material-icons.room:before {
|
|
content: "\e8b4";
|
|
}
|
|
|
|
.material-icons.room_preferences:before {
|
|
content: "\f1b8";
|
|
}
|
|
|
|
.material-icons.room_service:before {
|
|
content: "\eb49";
|
|
}
|
|
|
|
.material-icons.rotate_90_degrees_ccw:before {
|
|
content: "\e418";
|
|
}
|
|
|
|
.material-icons.rotate_90_degrees_cw:before {
|
|
content: "\eaab";
|
|
}
|
|
|
|
.material-icons.rotate_left:before {
|
|
content: "\e419";
|
|
}
|
|
|
|
.material-icons.rotate_right:before {
|
|
content: "\e41a";
|
|
}
|
|
|
|
.material-icons.roundabout_left:before {
|
|
content: "\eb99";
|
|
}
|
|
|
|
.material-icons.roundabout_right:before {
|
|
content: "\eba3";
|
|
}
|
|
|
|
.material-icons.rounded_corner:before {
|
|
content: "\e920";
|
|
}
|
|
|
|
.material-icons.route:before {
|
|
content: "\eacd";
|
|
}
|
|
|
|
.material-icons.router:before {
|
|
content: "\e328";
|
|
}
|
|
|
|
.material-icons.rowing:before {
|
|
content: "\e921";
|
|
}
|
|
|
|
.material-icons.rss_feed:before {
|
|
content: "\e0e5";
|
|
}
|
|
|
|
.material-icons.rsvp:before {
|
|
content: "\f055";
|
|
}
|
|
|
|
.material-icons.rtt:before {
|
|
content: "\e9ad";
|
|
}
|
|
|
|
.material-icons.rule:before {
|
|
content: "\f1c2";
|
|
}
|
|
|
|
.material-icons.rule_folder:before {
|
|
content: "\f1c9";
|
|
}
|
|
|
|
.material-icons.run_circle:before {
|
|
content: "\ef6f";
|
|
}
|
|
|
|
.material-icons.running_with_errors:before {
|
|
content: "\e51d";
|
|
}
|
|
|
|
.material-icons.rv_hookup:before {
|
|
content: "\e642";
|
|
}
|
|
|
|
.material-icons.safety_check:before {
|
|
content: "\ebef";
|
|
}
|
|
|
|
.material-icons.safety_divider:before {
|
|
content: "\e1cc";
|
|
}
|
|
|
|
.material-icons.sailing:before {
|
|
content: "\e502";
|
|
}
|
|
|
|
.material-icons.sanitizer:before {
|
|
content: "\f21d";
|
|
}
|
|
|
|
.material-icons.satellite:before {
|
|
content: "\e562";
|
|
}
|
|
|
|
.material-icons.satellite_alt:before {
|
|
content: "\eb3a";
|
|
}
|
|
|
|
.material-icons.save:before {
|
|
content: "\e161";
|
|
}
|
|
|
|
.material-icons.save_alt:before {
|
|
content: "\e171";
|
|
}
|
|
|
|
.material-icons.save_as:before {
|
|
content: "\eb60";
|
|
}
|
|
|
|
.material-icons.saved_search:before {
|
|
content: "\ea11";
|
|
}
|
|
|
|
.material-icons.savings:before {
|
|
content: "\e2eb";
|
|
}
|
|
|
|
.material-icons.scale:before {
|
|
content: "\eb5f";
|
|
}
|
|
|
|
.material-icons.scanner:before {
|
|
content: "\e329";
|
|
}
|
|
|
|
.material-icons.scatter_plot:before {
|
|
content: "\e268";
|
|
}
|
|
|
|
.material-icons.schedule:before {
|
|
content: "\e8b5";
|
|
}
|
|
|
|
.material-icons.schedule_send:before {
|
|
content: "\ea0a";
|
|
}
|
|
|
|
.material-icons.schema:before {
|
|
content: "\e4fd";
|
|
}
|
|
|
|
.material-icons.school:before {
|
|
content: "\e80c";
|
|
}
|
|
|
|
.material-icons.science:before {
|
|
content: "\ea4b";
|
|
}
|
|
|
|
.material-icons.score:before {
|
|
content: "\e269";
|
|
}
|
|
|
|
.material-icons.scoreboard:before {
|
|
content: "\ebd0";
|
|
}
|
|
|
|
.material-icons.screen_lock_landscape:before {
|
|
content: "\e1be";
|
|
}
|
|
|
|
.material-icons.screen_lock_portrait:before {
|
|
content: "\e1bf";
|
|
}
|
|
|
|
.material-icons.screen_lock_rotation:before {
|
|
content: "\e1c0";
|
|
}
|
|
|
|
.material-icons.screen_rotation:before {
|
|
content: "\e1c1";
|
|
}
|
|
|
|
.material-icons.screen_rotation_alt:before {
|
|
content: "\ebee";
|
|
}
|
|
|
|
.material-icons.screen_search_desktop:before {
|
|
content: "\ef70";
|
|
}
|
|
|
|
.material-icons.screen_share:before {
|
|
content: "\e0e2";
|
|
}
|
|
|
|
.material-icons.screenshot:before {
|
|
content: "\f056";
|
|
}
|
|
|
|
.material-icons.screenshot_monitor:before {
|
|
content: "\ec08";
|
|
}
|
|
|
|
.material-icons.scuba_diving:before {
|
|
content: "\ebce";
|
|
}
|
|
|
|
.material-icons.sd:before {
|
|
content: "\e9dd";
|
|
}
|
|
|
|
.material-icons.sd_card:before {
|
|
content: "\e623";
|
|
}
|
|
|
|
.material-icons.sd_card_alert:before {
|
|
content: "\f057";
|
|
}
|
|
|
|
.material-icons.sd_storage:before {
|
|
content: "\e1c2";
|
|
}
|
|
|
|
.material-icons.search:before {
|
|
content: "\e8b6";
|
|
}
|
|
|
|
.material-icons.search_off:before {
|
|
content: "\ea76";
|
|
}
|
|
|
|
.material-icons.security:before {
|
|
content: "\e32a";
|
|
}
|
|
|
|
.material-icons.security_update:before {
|
|
content: "\f058";
|
|
}
|
|
|
|
.material-icons.security_update_good:before {
|
|
content: "\f059";
|
|
}
|
|
|
|
.material-icons.security_update_warning:before {
|
|
content: "\f05a";
|
|
}
|
|
|
|
.material-icons.segment:before {
|
|
content: "\e94b";
|
|
}
|
|
|
|
.material-icons.select_all:before {
|
|
content: "\e162";
|
|
}
|
|
|
|
.material-icons.self_improvement:before {
|
|
content: "\ea78";
|
|
}
|
|
|
|
.material-icons.sell:before {
|
|
content: "\f05b";
|
|
}
|
|
|
|
.material-icons.send:before {
|
|
content: "\e163";
|
|
}
|
|
|
|
.material-icons.send_and_archive:before {
|
|
content: "\ea0c";
|
|
}
|
|
|
|
.material-icons.send_time_extension:before {
|
|
content: "\eadb";
|
|
}
|
|
|
|
.material-icons.send_to_mobile:before {
|
|
content: "\f05c";
|
|
}
|
|
|
|
.material-icons.sensor_door:before {
|
|
content: "\f1b5";
|
|
}
|
|
|
|
.material-icons.sensor_occupied:before {
|
|
content: "\ec10";
|
|
}
|
|
|
|
.material-icons.sensor_window:before {
|
|
content: "\f1b4";
|
|
}
|
|
|
|
.material-icons.sensors:before {
|
|
content: "\e51e";
|
|
}
|
|
|
|
.material-icons.sensors_off:before {
|
|
content: "\e51f";
|
|
}
|
|
|
|
.material-icons.sentiment_dissatisfied:before {
|
|
content: "\e811";
|
|
}
|
|
|
|
.material-icons.sentiment_neutral:before {
|
|
content: "\e812";
|
|
}
|
|
|
|
.material-icons.sentiment_satisfied:before {
|
|
content: "\e813";
|
|
}
|
|
|
|
.material-icons.sentiment_satisfied_alt:before {
|
|
content: "\e0ed";
|
|
}
|
|
|
|
.material-icons.sentiment_very_dissatisfied:before {
|
|
content: "\e814";
|
|
}
|
|
|
|
.material-icons.sentiment_very_satisfied:before {
|
|
content: "\e815";
|
|
}
|
|
|
|
.material-icons.set_meal:before {
|
|
content: "\f1ea";
|
|
}
|
|
|
|
.material-icons.settings:before {
|
|
content: "\e8b8";
|
|
}
|
|
|
|
.material-icons.settings_accessibility:before {
|
|
content: "\f05d";
|
|
}
|
|
|
|
.material-icons.settings_applications:before {
|
|
content: "\e8b9";
|
|
}
|
|
|
|
.material-icons.settings_backup_restore:before {
|
|
content: "\e8ba";
|
|
}
|
|
|
|
.material-icons.settings_bluetooth:before {
|
|
content: "\e8bb";
|
|
}
|
|
|
|
.material-icons.settings_brightness:before {
|
|
content: "\e8bd";
|
|
}
|
|
|
|
.material-icons.settings_cell:before {
|
|
content: "\e8bc";
|
|
}
|
|
|
|
.material-icons.settings_display:before {
|
|
content: "\e8bd";
|
|
}
|
|
|
|
.material-icons.settings_ethernet:before {
|
|
content: "\e8be";
|
|
}
|
|
|
|
.material-icons.settings_input_antenna:before {
|
|
content: "\e8bf";
|
|
}
|
|
|
|
.material-icons.settings_input_component:before {
|
|
content: "\e8c0";
|
|
}
|
|
|
|
.material-icons.settings_input_composite:before {
|
|
content: "\e8c1";
|
|
}
|
|
|
|
.material-icons.settings_input_hdmi:before {
|
|
content: "\e8c2";
|
|
}
|
|
|
|
.material-icons.settings_input_svideo:before {
|
|
content: "\e8c3";
|
|
}
|
|
|
|
.material-icons.settings_overscan:before {
|
|
content: "\e8c4";
|
|
}
|
|
|
|
.material-icons.settings_phone:before {
|
|
content: "\e8c5";
|
|
}
|
|
|
|
.material-icons.settings_power:before {
|
|
content: "\e8c6";
|
|
}
|
|
|
|
.material-icons.settings_remote:before {
|
|
content: "\e8c7";
|
|
}
|
|
|
|
.material-icons.settings_suggest:before {
|
|
content: "\f05e";
|
|
}
|
|
|
|
.material-icons.settings_system_daydream:before {
|
|
content: "\e1c3";
|
|
}
|
|
|
|
.material-icons.settings_voice:before {
|
|
content: "\e8c8";
|
|
}
|
|
|
|
.material-icons.severe_cold:before {
|
|
content: "\ebd3";
|
|
}
|
|
|
|
.material-icons.share:before {
|
|
content: "\e80d";
|
|
}
|
|
|
|
.material-icons.share_arrival_time:before {
|
|
content: "\e524";
|
|
}
|
|
|
|
.material-icons.share_location:before {
|
|
content: "\f05f";
|
|
}
|
|
|
|
.material-icons.shield:before {
|
|
content: "\e9e0";
|
|
}
|
|
|
|
.material-icons.shield_moon:before {
|
|
content: "\eaa9";
|
|
}
|
|
|
|
.material-icons.shop:before {
|
|
content: "\e8c9";
|
|
}
|
|
|
|
.material-icons.shop_2:before {
|
|
content: "\e19e";
|
|
}
|
|
|
|
.material-icons.shop_two:before {
|
|
content: "\e8ca";
|
|
}
|
|
|
|
.material-icons.shopify:before {
|
|
content: "\ea9d";
|
|
}
|
|
|
|
.material-icons.shopping_bag:before {
|
|
content: "\f1cc";
|
|
}
|
|
|
|
.material-icons.shopping_basket:before {
|
|
content: "\e8cb";
|
|
}
|
|
|
|
.material-icons.shopping_cart:before {
|
|
content: "\e8cc";
|
|
}
|
|
|
|
.material-icons.shopping_cart_checkout:before {
|
|
content: "\eb88";
|
|
}
|
|
|
|
.material-icons.short_text:before {
|
|
content: "\e261";
|
|
}
|
|
|
|
.material-icons.shortcut:before {
|
|
content: "\f060";
|
|
}
|
|
|
|
.material-icons.show_chart:before {
|
|
content: "\e6e1";
|
|
}
|
|
|
|
.material-icons.shower:before {
|
|
content: "\f061";
|
|
}
|
|
|
|
.material-icons.shuffle:before {
|
|
content: "\e043";
|
|
}
|
|
|
|
.material-icons.shuffle_on:before {
|
|
content: "\e9e1";
|
|
}
|
|
|
|
.material-icons.shutter_speed:before {
|
|
content: "\e43d";
|
|
}
|
|
|
|
.material-icons.sick:before {
|
|
content: "\f220";
|
|
}
|
|
|
|
.material-icons.sign_language:before {
|
|
content: "\ebe5";
|
|
}
|
|
|
|
.material-icons.signal_cellular_0_bar:before {
|
|
content: "\f0a8";
|
|
}
|
|
|
|
.material-icons.signal_cellular_4_bar:before {
|
|
content: "\e1c8";
|
|
}
|
|
|
|
.material-icons.signal_cellular_alt:before {
|
|
content: "\e202";
|
|
}
|
|
|
|
.material-icons.signal_cellular_alt_1_bar:before {
|
|
content: "\ebdf";
|
|
}
|
|
|
|
.material-icons.signal_cellular_alt_2_bar:before {
|
|
content: "\ebe3";
|
|
}
|
|
|
|
.material-icons.signal_cellular_connected_no_internet_0_bar:before {
|
|
content: "\f0ac";
|
|
}
|
|
|
|
.material-icons.signal_cellular_connected_no_internet_4_bar:before {
|
|
content: "\e1cd";
|
|
}
|
|
|
|
.material-icons.signal_cellular_no_sim:before {
|
|
content: "\e1ce";
|
|
}
|
|
|
|
.material-icons.signal_cellular_nodata:before {
|
|
content: "\f062";
|
|
}
|
|
|
|
.material-icons.signal_cellular_null:before {
|
|
content: "\e1cf";
|
|
}
|
|
|
|
.material-icons.signal_cellular_off:before {
|
|
content: "\e1d0";
|
|
}
|
|
|
|
.material-icons.signal_wifi_0_bar:before {
|
|
content: "\f0b0";
|
|
}
|
|
|
|
.material-icons.signal_wifi_4_bar:before {
|
|
content: "\e1d8";
|
|
}
|
|
|
|
.material-icons.signal_wifi_4_bar_lock:before {
|
|
content: "\e1d9";
|
|
}
|
|
|
|
.material-icons.signal_wifi_bad:before {
|
|
content: "\f063";
|
|
}
|
|
|
|
.material-icons.signal_wifi_connected_no_internet_4:before {
|
|
content: "\f064";
|
|
}
|
|
|
|
.material-icons.signal_wifi_off:before {
|
|
content: "\e1da";
|
|
}
|
|
|
|
.material-icons.signal_wifi_statusbar_4_bar:before {
|
|
content: "\f065";
|
|
}
|
|
|
|
.material-icons.signal_wifi_statusbar_connected_no_internet_4:before {
|
|
content: "\f066";
|
|
}
|
|
|
|
.material-icons.signal_wifi_statusbar_null:before {
|
|
content: "\f067";
|
|
}
|
|
|
|
.material-icons.signpost:before {
|
|
content: "\eb91";
|
|
}
|
|
|
|
.material-icons.sim_card:before {
|
|
content: "\e32b";
|
|
}
|
|
|
|
.material-icons.sim_card_alert:before {
|
|
content: "\e624";
|
|
}
|
|
|
|
.material-icons.sim_card_download:before {
|
|
content: "\f068";
|
|
}
|
|
|
|
.material-icons.single_bed:before {
|
|
content: "\ea48";
|
|
}
|
|
|
|
.material-icons.sip:before {
|
|
content: "\f069";
|
|
}
|
|
|
|
.material-icons.skateboarding:before {
|
|
content: "\e511";
|
|
}
|
|
|
|
.material-icons.skip_next:before {
|
|
content: "\e044";
|
|
}
|
|
|
|
.material-icons.skip_previous:before {
|
|
content: "\e045";
|
|
}
|
|
|
|
.material-icons.sledding:before {
|
|
content: "\e512";
|
|
}
|
|
|
|
.material-icons.slideshow:before {
|
|
content: "\e41b";
|
|
}
|
|
|
|
.material-icons.slow_motion_video:before {
|
|
content: "\e068";
|
|
}
|
|
|
|
.material-icons.smart_button:before {
|
|
content: "\f1c1";
|
|
}
|
|
|
|
.material-icons.smart_display:before {
|
|
content: "\f06a";
|
|
}
|
|
|
|
.material-icons.smart_screen:before {
|
|
content: "\f06b";
|
|
}
|
|
|
|
.material-icons.smart_toy:before {
|
|
content: "\f06c";
|
|
}
|
|
|
|
.material-icons.smartphone:before {
|
|
content: "\e32c";
|
|
}
|
|
|
|
.material-icons.smoke_free:before {
|
|
content: "\eb4a";
|
|
}
|
|
|
|
.material-icons.smoking_rooms:before {
|
|
content: "\eb4b";
|
|
}
|
|
|
|
.material-icons.sms:before {
|
|
content: "\e625";
|
|
}
|
|
|
|
.material-icons.sms_failed:before {
|
|
content: "\e626";
|
|
}
|
|
|
|
.material-icons.snapchat:before {
|
|
content: "\ea6e";
|
|
}
|
|
|
|
.material-icons.snippet_folder:before {
|
|
content: "\f1c7";
|
|
}
|
|
|
|
.material-icons.snooze:before {
|
|
content: "\e046";
|
|
}
|
|
|
|
.material-icons.snowboarding:before {
|
|
content: "\e513";
|
|
}
|
|
|
|
.material-icons.snowing:before {
|
|
content: "\e80f";
|
|
}
|
|
|
|
.material-icons.snowmobile:before {
|
|
content: "\e503";
|
|
}
|
|
|
|
.material-icons.snowshoeing:before {
|
|
content: "\e514";
|
|
}
|
|
|
|
.material-icons.soap:before {
|
|
content: "\f1b2";
|
|
}
|
|
|
|
.material-icons.social_distance:before {
|
|
content: "\e1cb";
|
|
}
|
|
|
|
.material-icons.solar_power:before {
|
|
content: "\ec0f";
|
|
}
|
|
|
|
.material-icons.sort:before {
|
|
content: "\e164";
|
|
}
|
|
|
|
.material-icons.sort_by_alpha:before {
|
|
content: "\e053";
|
|
}
|
|
|
|
.material-icons.sos:before {
|
|
content: "\ebf7";
|
|
}
|
|
|
|
.material-icons.soup_kitchen:before {
|
|
content: "\e7d3";
|
|
}
|
|
|
|
.material-icons.source:before {
|
|
content: "\f1c4";
|
|
}
|
|
|
|
.material-icons.south:before {
|
|
content: "\f1e3";
|
|
}
|
|
|
|
.material-icons.south_america:before {
|
|
content: "\e7e4";
|
|
}
|
|
|
|
.material-icons.south_east:before {
|
|
content: "\f1e4";
|
|
}
|
|
|
|
.material-icons.south_west:before {
|
|
content: "\f1e5";
|
|
}
|
|
|
|
.material-icons.spa:before {
|
|
content: "\eb4c";
|
|
}
|
|
|
|
.material-icons.space_bar:before {
|
|
content: "\e256";
|
|
}
|
|
|
|
.material-icons.space_dashboard:before {
|
|
content: "\e66b";
|
|
}
|
|
|
|
.material-icons.spatial_audio:before {
|
|
content: "\ebeb";
|
|
}
|
|
|
|
.material-icons.spatial_audio_off:before {
|
|
content: "\ebe8";
|
|
}
|
|
|
|
.material-icons.spatial_tracking:before {
|
|
content: "\ebea";
|
|
}
|
|
|
|
.material-icons.speaker:before {
|
|
content: "\e32d";
|
|
}
|
|
|
|
.material-icons.speaker_group:before {
|
|
content: "\e32e";
|
|
}
|
|
|
|
.material-icons.speaker_notes:before {
|
|
content: "\e8cd";
|
|
}
|
|
|
|
.material-icons.speaker_notes_off:before {
|
|
content: "\e92a";
|
|
}
|
|
|
|
.material-icons.speaker_phone:before {
|
|
content: "\e0d2";
|
|
}
|
|
|
|
.material-icons.speed:before {
|
|
content: "\e9e4";
|
|
}
|
|
|
|
.material-icons.spellcheck:before {
|
|
content: "\e8ce";
|
|
}
|
|
|
|
.material-icons.splitscreen:before {
|
|
content: "\f06d";
|
|
}
|
|
|
|
.material-icons.spoke:before {
|
|
content: "\e9a7";
|
|
}
|
|
|
|
.material-icons.sports:before {
|
|
content: "\ea30";
|
|
}
|
|
|
|
.material-icons.sports_bar:before {
|
|
content: "\f1f3";
|
|
}
|
|
|
|
.material-icons.sports_baseball:before {
|
|
content: "\ea51";
|
|
}
|
|
|
|
.material-icons.sports_basketball:before {
|
|
content: "\ea26";
|
|
}
|
|
|
|
.material-icons.sports_cricket:before {
|
|
content: "\ea27";
|
|
}
|
|
|
|
.material-icons.sports_esports:before {
|
|
content: "\ea28";
|
|
}
|
|
|
|
.material-icons.sports_football:before {
|
|
content: "\ea29";
|
|
}
|
|
|
|
.material-icons.sports_golf:before {
|
|
content: "\ea2a";
|
|
}
|
|
|
|
.material-icons.sports_gymnastics:before {
|
|
content: "\ebc4";
|
|
}
|
|
|
|
.material-icons.sports_handball:before {
|
|
content: "\ea33";
|
|
}
|
|
|
|
.material-icons.sports_hockey:before {
|
|
content: "\ea2b";
|
|
}
|
|
|
|
.material-icons.sports_kabaddi:before {
|
|
content: "\ea34";
|
|
}
|
|
|
|
.material-icons.sports_martial_arts:before {
|
|
content: "\eae9";
|
|
}
|
|
|
|
.material-icons.sports_mma:before {
|
|
content: "\ea2c";
|
|
}
|
|
|
|
.material-icons.sports_motorsports:before {
|
|
content: "\ea2d";
|
|
}
|
|
|
|
.material-icons.sports_rugby:before {
|
|
content: "\ea2e";
|
|
}
|
|
|
|
.material-icons.sports_score:before {
|
|
content: "\f06e";
|
|
}
|
|
|
|
.material-icons.sports_soccer:before {
|
|
content: "\ea2f";
|
|
}
|
|
|
|
.material-icons.sports_tennis:before {
|
|
content: "\ea32";
|
|
}
|
|
|
|
.material-icons.sports_volleyball:before {
|
|
content: "\ea31";
|
|
}
|
|
|
|
.material-icons.square:before {
|
|
content: "\eb36";
|
|
}
|
|
|
|
.material-icons.square_foot:before {
|
|
content: "\ea49";
|
|
}
|
|
|
|
.material-icons.ssid_chart:before {
|
|
content: "\eb66";
|
|
}
|
|
|
|
.material-icons.stacked_bar_chart:before {
|
|
content: "\e9e6";
|
|
}
|
|
|
|
.material-icons.stacked_line_chart:before {
|
|
content: "\f22b";
|
|
}
|
|
|
|
.material-icons.stadium:before {
|
|
content: "\eb90";
|
|
}
|
|
|
|
.material-icons.stairs:before {
|
|
content: "\f1a9";
|
|
}
|
|
|
|
.material-icons.star:before {
|
|
content: "\e838";
|
|
}
|
|
|
|
.material-icons.star_border:before {
|
|
content: "\e83a";
|
|
}
|
|
|
|
.material-icons.star_border_purple500:before {
|
|
content: "\f099";
|
|
}
|
|
|
|
.material-icons.star_half:before {
|
|
content: "\e839";
|
|
}
|
|
|
|
.material-icons.star_outline:before {
|
|
content: "\f06f";
|
|
}
|
|
|
|
.material-icons.star_purple500:before {
|
|
content: "\f09a";
|
|
}
|
|
|
|
.material-icons.star_rate:before {
|
|
content: "\f0ec";
|
|
}
|
|
|
|
.material-icons.stars:before {
|
|
content: "\e8d0";
|
|
}
|
|
|
|
.material-icons.start:before {
|
|
content: "\e089";
|
|
}
|
|
|
|
.material-icons.stay_current_landscape:before {
|
|
content: "\e0d3";
|
|
}
|
|
|
|
.material-icons.stay_current_portrait:before {
|
|
content: "\e0d4";
|
|
}
|
|
|
|
.material-icons.stay_primary_landscape:before {
|
|
content: "\e0d5";
|
|
}
|
|
|
|
.material-icons.stay_primary_portrait:before {
|
|
content: "\e0d6";
|
|
}
|
|
|
|
.material-icons.sticky_note_2:before {
|
|
content: "\f1fc";
|
|
}
|
|
|
|
.material-icons.stop:before {
|
|
content: "\e047";
|
|
}
|
|
|
|
.material-icons.stop_circle:before {
|
|
content: "\ef71";
|
|
}
|
|
|
|
.material-icons.stop_screen_share:before {
|
|
content: "\e0e3";
|
|
}
|
|
|
|
.material-icons.storage:before {
|
|
content: "\e1db";
|
|
}
|
|
|
|
.material-icons.store:before {
|
|
content: "\e8d1";
|
|
}
|
|
|
|
.material-icons.store_mall_directory:before {
|
|
content: "\e563";
|
|
}
|
|
|
|
.material-icons.storefront:before {
|
|
content: "\ea12";
|
|
}
|
|
|
|
.material-icons.storm:before {
|
|
content: "\f070";
|
|
}
|
|
|
|
.material-icons.straight:before {
|
|
content: "\eb95";
|
|
}
|
|
|
|
.material-icons.straighten:before {
|
|
content: "\e41c";
|
|
}
|
|
|
|
.material-icons.stream:before {
|
|
content: "\e9e9";
|
|
}
|
|
|
|
.material-icons.streetview:before {
|
|
content: "\e56e";
|
|
}
|
|
|
|
.material-icons.strikethrough_s:before {
|
|
content: "\e257";
|
|
}
|
|
|
|
.material-icons.stroller:before {
|
|
content: "\f1ae";
|
|
}
|
|
|
|
.material-icons.style:before {
|
|
content: "\e41d";
|
|
}
|
|
|
|
.material-icons.subdirectory_arrow_left:before {
|
|
content: "\e5d9";
|
|
}
|
|
|
|
.material-icons.subdirectory_arrow_right:before {
|
|
content: "\e5da";
|
|
}
|
|
|
|
.material-icons.subject:before {
|
|
content: "\e8d2";
|
|
}
|
|
|
|
.material-icons.subscript:before {
|
|
content: "\f111";
|
|
}
|
|
|
|
.material-icons.subscriptions:before {
|
|
content: "\e064";
|
|
}
|
|
|
|
.material-icons.subtitles:before {
|
|
content: "\e048";
|
|
}
|
|
|
|
.material-icons.subtitles_off:before {
|
|
content: "\ef72";
|
|
}
|
|
|
|
.material-icons.subway:before {
|
|
content: "\e56f";
|
|
}
|
|
|
|
.material-icons.summarize:before {
|
|
content: "\f071";
|
|
}
|
|
|
|
.material-icons.sunny:before {
|
|
content: "\e81a";
|
|
}
|
|
|
|
.material-icons.sunny_snowing:before {
|
|
content: "\e819";
|
|
}
|
|
|
|
.material-icons.superscript:before {
|
|
content: "\f112";
|
|
}
|
|
|
|
.material-icons.supervised_user_circle:before {
|
|
content: "\e939";
|
|
}
|
|
|
|
.material-icons.supervisor_account:before {
|
|
content: "\e8d3";
|
|
}
|
|
|
|
.material-icons.support:before {
|
|
content: "\ef73";
|
|
}
|
|
|
|
.material-icons.support_agent:before {
|
|
content: "\f0e2";
|
|
}
|
|
|
|
.material-icons.surfing:before {
|
|
content: "\e515";
|
|
}
|
|
|
|
.material-icons.surround_sound:before {
|
|
content: "\e049";
|
|
}
|
|
|
|
.material-icons.swap_calls:before {
|
|
content: "\e0d7";
|
|
}
|
|
|
|
.material-icons.swap_horiz:before {
|
|
content: "\e8d4";
|
|
}
|
|
|
|
.material-icons.swap_horizontal_circle:before {
|
|
content: "\e933";
|
|
}
|
|
|
|
.material-icons.swap_vert:before {
|
|
content: "\e8d5";
|
|
}
|
|
|
|
.material-icons.swap_vert_circle:before {
|
|
content: "\e8d6";
|
|
}
|
|
|
|
.material-icons.swap_vertical_circle:before {
|
|
content: "\e8d6";
|
|
}
|
|
|
|
.material-icons.swipe:before {
|
|
content: "\e9ec";
|
|
}
|
|
|
|
.material-icons.swipe_down:before {
|
|
content: "\eb53";
|
|
}
|
|
|
|
.material-icons.swipe_down_alt:before {
|
|
content: "\eb30";
|
|
}
|
|
|
|
.material-icons.swipe_left:before {
|
|
content: "\eb59";
|
|
}
|
|
|
|
.material-icons.swipe_left_alt:before {
|
|
content: "\eb33";
|
|
}
|
|
|
|
.material-icons.swipe_right:before {
|
|
content: "\eb52";
|
|
}
|
|
|
|
.material-icons.swipe_right_alt:before {
|
|
content: "\eb56";
|
|
}
|
|
|
|
.material-icons.swipe_up:before {
|
|
content: "\eb2e";
|
|
}
|
|
|
|
.material-icons.swipe_up_alt:before {
|
|
content: "\eb35";
|
|
}
|
|
|
|
.material-icons.swipe_vertical:before {
|
|
content: "\eb51";
|
|
}
|
|
|
|
.material-icons.switch_access_shortcut:before {
|
|
content: "\e7e1";
|
|
}
|
|
|
|
.material-icons.switch_access_shortcut_add:before {
|
|
content: "\e7e2";
|
|
}
|
|
|
|
.material-icons.switch_account:before {
|
|
content: "\e9ed";
|
|
}
|
|
|
|
.material-icons.switch_camera:before {
|
|
content: "\e41e";
|
|
}
|
|
|
|
.material-icons.switch_left:before {
|
|
content: "\f1d1";
|
|
}
|
|
|
|
.material-icons.switch_right:before {
|
|
content: "\f1d2";
|
|
}
|
|
|
|
.material-icons.switch_video:before {
|
|
content: "\e41f";
|
|
}
|
|
|
|
.material-icons.synagogue:before {
|
|
content: "\eab0";
|
|
}
|
|
|
|
.material-icons.sync:before {
|
|
content: "\e627";
|
|
}
|
|
|
|
.material-icons.sync_alt:before {
|
|
content: "\ea18";
|
|
}
|
|
|
|
.material-icons.sync_disabled:before {
|
|
content: "\e628";
|
|
}
|
|
|
|
.material-icons.sync_lock:before {
|
|
content: "\eaee";
|
|
}
|
|
|
|
.material-icons.sync_problem:before {
|
|
content: "\e629";
|
|
}
|
|
|
|
.material-icons.system_security_update:before {
|
|
content: "\f072";
|
|
}
|
|
|
|
.material-icons.system_security_update_good:before {
|
|
content: "\f073";
|
|
}
|
|
|
|
.material-icons.system_security_update_warning:before {
|
|
content: "\f074";
|
|
}
|
|
|
|
.material-icons.system_update:before {
|
|
content: "\e62a";
|
|
}
|
|
|
|
.material-icons.system_update_alt:before {
|
|
content: "\e8d7";
|
|
}
|
|
|
|
.material-icons.system_update_tv:before {
|
|
content: "\e8d7";
|
|
}
|
|
|
|
.material-icons.tab:before {
|
|
content: "\e8d8";
|
|
}
|
|
|
|
.material-icons.tab_unselected:before {
|
|
content: "\e8d9";
|
|
}
|
|
|
|
.material-icons.table_bar:before {
|
|
content: "\ead2";
|
|
}
|
|
|
|
.material-icons.table_chart:before {
|
|
content: "\e265";
|
|
}
|
|
|
|
.material-icons.table_restaurant:before {
|
|
content: "\eac6";
|
|
}
|
|
|
|
.material-icons.table_rows:before {
|
|
content: "\f101";
|
|
}
|
|
|
|
.material-icons.table_view:before {
|
|
content: "\f1be";
|
|
}
|
|
|
|
.material-icons.tablet:before {
|
|
content: "\e32f";
|
|
}
|
|
|
|
.material-icons.tablet_android:before {
|
|
content: "\e330";
|
|
}
|
|
|
|
.material-icons.tablet_mac:before {
|
|
content: "\e331";
|
|
}
|
|
|
|
.material-icons.tag:before {
|
|
content: "\e9ef";
|
|
}
|
|
|
|
.material-icons.tag_faces:before {
|
|
content: "\e420";
|
|
}
|
|
|
|
.material-icons.takeout_dining:before {
|
|
content: "\ea74";
|
|
}
|
|
|
|
.material-icons.tap_and_play:before {
|
|
content: "\e62b";
|
|
}
|
|
|
|
.material-icons.tapas:before {
|
|
content: "\f1e9";
|
|
}
|
|
|
|
.material-icons.task:before {
|
|
content: "\f075";
|
|
}
|
|
|
|
.material-icons.task_alt:before {
|
|
content: "\e2e6";
|
|
}
|
|
|
|
.material-icons.taxi_alert:before {
|
|
content: "\ef74";
|
|
}
|
|
|
|
.material-icons.telegram:before {
|
|
content: "\ea6b";
|
|
}
|
|
|
|
.material-icons.temple_buddhist:before {
|
|
content: "\eab3";
|
|
}
|
|
|
|
.material-icons.temple_hindu:before {
|
|
content: "\eaaf";
|
|
}
|
|
|
|
.material-icons.terminal:before {
|
|
content: "\eb8e";
|
|
}
|
|
|
|
.material-icons.terrain:before {
|
|
content: "\e564";
|
|
}
|
|
|
|
.material-icons.text_decrease:before {
|
|
content: "\eadd";
|
|
}
|
|
|
|
.material-icons.text_fields:before {
|
|
content: "\e262";
|
|
}
|
|
|
|
.material-icons.text_format:before {
|
|
content: "\e165";
|
|
}
|
|
|
|
.material-icons.text_increase:before {
|
|
content: "\eae2";
|
|
}
|
|
|
|
.material-icons.text_rotate_up:before {
|
|
content: "\e93a";
|
|
}
|
|
|
|
.material-icons.text_rotate_vertical:before {
|
|
content: "\e93b";
|
|
}
|
|
|
|
.material-icons.text_rotation_angledown:before {
|
|
content: "\e93c";
|
|
}
|
|
|
|
.material-icons.text_rotation_angleup:before {
|
|
content: "\e93d";
|
|
}
|
|
|
|
.material-icons.text_rotation_down:before {
|
|
content: "\e93e";
|
|
}
|
|
|
|
.material-icons.text_rotation_none:before {
|
|
content: "\e93f";
|
|
}
|
|
|
|
.material-icons.text_snippet:before {
|
|
content: "\f1c6";
|
|
}
|
|
|
|
.material-icons.textsms:before {
|
|
content: "\e0d8";
|
|
}
|
|
|
|
.material-icons.texture:before {
|
|
content: "\e421";
|
|
}
|
|
|
|
.material-icons.theater_comedy:before {
|
|
content: "\ea66";
|
|
}
|
|
|
|
.material-icons.theaters:before {
|
|
content: "\e8da";
|
|
}
|
|
|
|
.material-icons.thermostat:before {
|
|
content: "\f076";
|
|
}
|
|
|
|
.material-icons.thermostat_auto:before {
|
|
content: "\f077";
|
|
}
|
|
|
|
.material-icons.thumb_down:before {
|
|
content: "\e8db";
|
|
}
|
|
|
|
.material-icons.thumb_down_alt:before {
|
|
content: "\e816";
|
|
}
|
|
|
|
.material-icons.thumb_down_off_alt:before {
|
|
content: "\e9f2";
|
|
}
|
|
|
|
.material-icons.thumb_up:before {
|
|
content: "\e8dc";
|
|
}
|
|
|
|
.material-icons.thumb_up_alt:before {
|
|
content: "\e817";
|
|
}
|
|
|
|
.material-icons.thumb_up_off_alt:before {
|
|
content: "\e9f3";
|
|
}
|
|
|
|
.material-icons.thumbs_up_down:before {
|
|
content: "\e8dd";
|
|
}
|
|
|
|
.material-icons.thunderstorm:before {
|
|
content: "\ebdb";
|
|
}
|
|
|
|
.material-icons.tiktok:before {
|
|
content: "\ea7e";
|
|
}
|
|
|
|
.material-icons.time_to_leave:before {
|
|
content: "\e62c";
|
|
}
|
|
|
|
.material-icons.timelapse:before {
|
|
content: "\e422";
|
|
}
|
|
|
|
.material-icons.timeline:before {
|
|
content: "\e922";
|
|
}
|
|
|
|
.material-icons.timer:before {
|
|
content: "\e425";
|
|
}
|
|
|
|
.material-icons.timer_10:before {
|
|
content: "\e423";
|
|
}
|
|
|
|
.material-icons.timer_10_select:before {
|
|
content: "\f07a";
|
|
}
|
|
|
|
.material-icons.timer_3:before {
|
|
content: "\e424";
|
|
}
|
|
|
|
.material-icons.timer_3_select:before {
|
|
content: "\f07b";
|
|
}
|
|
|
|
.material-icons.timer_off:before {
|
|
content: "\e426";
|
|
}
|
|
|
|
.material-icons.tips_and_updates:before {
|
|
content: "\e79a";
|
|
}
|
|
|
|
.material-icons.tire_repair:before {
|
|
content: "\ebc8";
|
|
}
|
|
|
|
.material-icons.title:before {
|
|
content: "\e264";
|
|
}
|
|
|
|
.material-icons.toc:before {
|
|
content: "\e8de";
|
|
}
|
|
|
|
.material-icons.today:before {
|
|
content: "\e8df";
|
|
}
|
|
|
|
.material-icons.toggle_off:before {
|
|
content: "\e9f5";
|
|
}
|
|
|
|
.material-icons.toggle_on:before {
|
|
content: "\e9f6";
|
|
}
|
|
|
|
.material-icons.token:before {
|
|
content: "\ea25";
|
|
}
|
|
|
|
.material-icons.toll:before {
|
|
content: "\e8e0";
|
|
}
|
|
|
|
.material-icons.tonality:before {
|
|
content: "\e427";
|
|
}
|
|
|
|
.material-icons.topic:before {
|
|
content: "\f1c8";
|
|
}
|
|
|
|
.material-icons.tornado:before {
|
|
content: "\e199";
|
|
}
|
|
|
|
.material-icons.touch_app:before {
|
|
content: "\e913";
|
|
}
|
|
|
|
.material-icons.tour:before {
|
|
content: "\ef75";
|
|
}
|
|
|
|
.material-icons.toys:before {
|
|
content: "\e332";
|
|
}
|
|
|
|
.material-icons.track_changes:before {
|
|
content: "\e8e1";
|
|
}
|
|
|
|
.material-icons.traffic:before {
|
|
content: "\e565";
|
|
}
|
|
|
|
.material-icons.train:before {
|
|
content: "\e570";
|
|
}
|
|
|
|
.material-icons.tram:before {
|
|
content: "\e571";
|
|
}
|
|
|
|
.material-icons.transcribe:before {
|
|
content: "\f8ec";
|
|
}
|
|
|
|
.material-icons.transfer_within_a_station:before {
|
|
content: "\e572";
|
|
}
|
|
|
|
.material-icons.transform:before {
|
|
content: "\e428";
|
|
}
|
|
|
|
.material-icons.transgender:before {
|
|
content: "\e58d";
|
|
}
|
|
|
|
.material-icons.transit_enterexit:before {
|
|
content: "\e579";
|
|
}
|
|
|
|
.material-icons.translate:before {
|
|
content: "\e8e2";
|
|
}
|
|
|
|
.material-icons.travel_explore:before {
|
|
content: "\e2db";
|
|
}
|
|
|
|
.material-icons.trending_down:before {
|
|
content: "\e8e3";
|
|
}
|
|
|
|
.material-icons.trending_flat:before {
|
|
content: "\e8e4";
|
|
}
|
|
|
|
.material-icons.trending_neutral:before {
|
|
content: "\e8e4";
|
|
}
|
|
|
|
.material-icons.trending_up:before {
|
|
content: "\e8e5";
|
|
}
|
|
|
|
.material-icons.trip_origin:before {
|
|
content: "\e57b";
|
|
}
|
|
|
|
.material-icons.troubleshoot:before {
|
|
content: "\e1d2";
|
|
}
|
|
|
|
.material-icons.try:before {
|
|
content: "\f07c";
|
|
}
|
|
|
|
.material-icons.tsunami:before {
|
|
content: "\ebd8";
|
|
}
|
|
|
|
.material-icons.tty:before {
|
|
content: "\f1aa";
|
|
}
|
|
|
|
.material-icons.tune:before {
|
|
content: "\e429";
|
|
}
|
|
|
|
.material-icons.tungsten:before {
|
|
content: "\f07d";
|
|
}
|
|
|
|
.material-icons.turn_left:before {
|
|
content: "\eba6";
|
|
}
|
|
|
|
.material-icons.turn_right:before {
|
|
content: "\ebab";
|
|
}
|
|
|
|
.material-icons.turn_sharp_left:before {
|
|
content: "\eba7";
|
|
}
|
|
|
|
.material-icons.turn_sharp_right:before {
|
|
content: "\ebaa";
|
|
}
|
|
|
|
.material-icons.turn_slight_left:before {
|
|
content: "\eba4";
|
|
}
|
|
|
|
.material-icons.turn_slight_right:before {
|
|
content: "\eb9a";
|
|
}
|
|
|
|
.material-icons.turned_in:before {
|
|
content: "\e8e6";
|
|
}
|
|
|
|
.material-icons.turned_in_not:before {
|
|
content: "\e8e7";
|
|
}
|
|
|
|
.material-icons.tv:before {
|
|
content: "\e333";
|
|
}
|
|
|
|
.material-icons.tv_off:before {
|
|
content: "\e647";
|
|
}
|
|
|
|
.material-icons.two_wheeler:before {
|
|
content: "\e9f9";
|
|
}
|
|
|
|
.material-icons.type_specimen:before {
|
|
content: "\f8f0";
|
|
}
|
|
|
|
.material-icons.u_turn_left:before {
|
|
content: "\eba1";
|
|
}
|
|
|
|
.material-icons.u_turn_right:before {
|
|
content: "\eba2";
|
|
}
|
|
|
|
.material-icons.umbrella:before {
|
|
content: "\f1ad";
|
|
}
|
|
|
|
.material-icons.unarchive:before {
|
|
content: "\e169";
|
|
}
|
|
|
|
.material-icons.undo:before {
|
|
content: "\e166";
|
|
}
|
|
|
|
.material-icons.unfold_less:before {
|
|
content: "\e5d6";
|
|
}
|
|
|
|
.material-icons.unfold_more:before {
|
|
content: "\e5d7";
|
|
}
|
|
|
|
.material-icons.unpublished:before {
|
|
content: "\f236";
|
|
}
|
|
|
|
.material-icons.unsubscribe:before {
|
|
content: "\e0eb";
|
|
}
|
|
|
|
.material-icons.upcoming:before {
|
|
content: "\f07e";
|
|
}
|
|
|
|
.material-icons.update:before {
|
|
content: "\e923";
|
|
}
|
|
|
|
.material-icons.update_disabled:before {
|
|
content: "\e075";
|
|
}
|
|
|
|
.material-icons.upgrade:before {
|
|
content: "\f0fb";
|
|
}
|
|
|
|
.material-icons.upload:before {
|
|
content: "\f09b";
|
|
}
|
|
|
|
.material-icons.upload_file:before {
|
|
content: "\e9fc";
|
|
}
|
|
|
|
.material-icons.usb:before {
|
|
content: "\e1e0";
|
|
}
|
|
|
|
.material-icons.usb_off:before {
|
|
content: "\e4fa";
|
|
}
|
|
|
|
.material-icons.vaccines:before {
|
|
content: "\e138";
|
|
}
|
|
|
|
.material-icons.vape_free:before {
|
|
content: "\ebc6";
|
|
}
|
|
|
|
.material-icons.vaping_rooms:before {
|
|
content: "\ebcf";
|
|
}
|
|
|
|
.material-icons.verified:before {
|
|
content: "\ef76";
|
|
}
|
|
|
|
.material-icons.verified_user:before {
|
|
content: "\e8e8";
|
|
}
|
|
|
|
.material-icons.vertical_align_bottom:before {
|
|
content: "\e258";
|
|
}
|
|
|
|
.material-icons.vertical_align_center:before {
|
|
content: "\e259";
|
|
}
|
|
|
|
.material-icons.vertical_align_top:before {
|
|
content: "\e25a";
|
|
}
|
|
|
|
.material-icons.vertical_distribute:before {
|
|
content: "\e076";
|
|
}
|
|
|
|
.material-icons.vertical_shades:before {
|
|
content: "\ec0e";
|
|
}
|
|
|
|
.material-icons.vertical_shades_closed:before {
|
|
content: "\ec0d";
|
|
}
|
|
|
|
.material-icons.vertical_split:before {
|
|
content: "\e949";
|
|
}
|
|
|
|
.material-icons.vibration:before {
|
|
content: "\e62d";
|
|
}
|
|
|
|
.material-icons.video_call:before {
|
|
content: "\e070";
|
|
}
|
|
|
|
.material-icons.video_camera_back:before {
|
|
content: "\f07f";
|
|
}
|
|
|
|
.material-icons.video_camera_front:before {
|
|
content: "\f080";
|
|
}
|
|
|
|
.material-icons.video_collection:before {
|
|
content: "\e04a";
|
|
}
|
|
|
|
.material-icons.video_file:before {
|
|
content: "\eb87";
|
|
}
|
|
|
|
.material-icons.video_label:before {
|
|
content: "\e071";
|
|
}
|
|
|
|
.material-icons.video_library:before {
|
|
content: "\e04a";
|
|
}
|
|
|
|
.material-icons.video_settings:before {
|
|
content: "\ea75";
|
|
}
|
|
|
|
.material-icons.video_stable:before {
|
|
content: "\f081";
|
|
}
|
|
|
|
.material-icons.videocam:before {
|
|
content: "\e04b";
|
|
}
|
|
|
|
.material-icons.videocam_off:before {
|
|
content: "\e04c";
|
|
}
|
|
|
|
.material-icons.videogame_asset:before {
|
|
content: "\e338";
|
|
}
|
|
|
|
.material-icons.videogame_asset_off:before {
|
|
content: "\e500";
|
|
}
|
|
|
|
.material-icons.view_agenda:before {
|
|
content: "\e8e9";
|
|
}
|
|
|
|
.material-icons.view_array:before {
|
|
content: "\e8ea";
|
|
}
|
|
|
|
.material-icons.view_carousel:before {
|
|
content: "\e8eb";
|
|
}
|
|
|
|
.material-icons.view_column:before {
|
|
content: "\e8ec";
|
|
}
|
|
|
|
.material-icons.view_comfortable:before {
|
|
content: "\e42a";
|
|
}
|
|
|
|
.material-icons.view_comfy:before {
|
|
content: "\e42a";
|
|
}
|
|
|
|
.material-icons.view_comfy_alt:before {
|
|
content: "\eb73";
|
|
}
|
|
|
|
.material-icons.view_compact:before {
|
|
content: "\e42b";
|
|
}
|
|
|
|
.material-icons.view_compact_alt:before {
|
|
content: "\eb74";
|
|
}
|
|
|
|
.material-icons.view_cozy:before {
|
|
content: "\eb75";
|
|
}
|
|
|
|
.material-icons.view_day:before {
|
|
content: "\e8ed";
|
|
}
|
|
|
|
.material-icons.view_headline:before {
|
|
content: "\e8ee";
|
|
}
|
|
|
|
.material-icons.view_in_ar:before {
|
|
content: "\e9fe";
|
|
}
|
|
|
|
.material-icons.view_kanban:before {
|
|
content: "\eb7f";
|
|
}
|
|
|
|
.material-icons.view_list:before {
|
|
content: "\e8ef";
|
|
}
|
|
|
|
.material-icons.view_module:before {
|
|
content: "\e8f0";
|
|
}
|
|
|
|
.material-icons.view_quilt:before {
|
|
content: "\e8f1";
|
|
}
|
|
|
|
.material-icons.view_sidebar:before {
|
|
content: "\f114";
|
|
}
|
|
|
|
.material-icons.view_stream:before {
|
|
content: "\e8f2";
|
|
}
|
|
|
|
.material-icons.view_timeline:before {
|
|
content: "\eb85";
|
|
}
|
|
|
|
.material-icons.view_week:before {
|
|
content: "\e8f3";
|
|
}
|
|
|
|
.material-icons.vignette:before {
|
|
content: "\e435";
|
|
}
|
|
|
|
.material-icons.villa:before {
|
|
content: "\e586";
|
|
}
|
|
|
|
.material-icons.visibility:before {
|
|
content: "\e8f4";
|
|
}
|
|
|
|
.material-icons.visibility_off:before {
|
|
content: "\e8f5";
|
|
}
|
|
|
|
.material-icons.voice_chat:before {
|
|
content: "\e62e";
|
|
}
|
|
|
|
.material-icons.voice_over_off:before {
|
|
content: "\e94a";
|
|
}
|
|
|
|
.material-icons.voicemail:before {
|
|
content: "\e0d9";
|
|
}
|
|
|
|
.material-icons.volcano:before {
|
|
content: "\ebda";
|
|
}
|
|
|
|
.material-icons.volume_down:before {
|
|
content: "\e04d";
|
|
}
|
|
|
|
.material-icons.volume_down_alt:before {
|
|
content: "\e79c";
|
|
}
|
|
|
|
.material-icons.volume_mute:before {
|
|
content: "\e04e";
|
|
}
|
|
|
|
.material-icons.volume_off:before {
|
|
content: "\e04f";
|
|
}
|
|
|
|
.material-icons.volume_up:before {
|
|
content: "\e050";
|
|
}
|
|
|
|
.material-icons.volunteer_activism:before {
|
|
content: "\ea70";
|
|
}
|
|
|
|
.material-icons.vpn_key:before {
|
|
content: "\e0da";
|
|
}
|
|
|
|
.material-icons.vpn_key_off:before {
|
|
content: "\eb7a";
|
|
}
|
|
|
|
.material-icons.vpn_lock:before {
|
|
content: "\e62f";
|
|
}
|
|
|
|
.material-icons.vrpano:before {
|
|
content: "\f082";
|
|
}
|
|
|
|
.material-icons.wallet:before {
|
|
content: "\f8ff";
|
|
}
|
|
|
|
.material-icons.wallet_giftcard:before {
|
|
content: "\e8f6";
|
|
}
|
|
|
|
.material-icons.wallet_membership:before {
|
|
content: "\e8f7";
|
|
}
|
|
|
|
.material-icons.wallet_travel:before {
|
|
content: "\e8f8";
|
|
}
|
|
|
|
.material-icons.wallpaper:before {
|
|
content: "\e1bc";
|
|
}
|
|
|
|
.material-icons.warehouse:before {
|
|
content: "\ebb8";
|
|
}
|
|
|
|
.material-icons.warning:before {
|
|
content: "\e002";
|
|
}
|
|
|
|
.material-icons.warning_amber:before {
|
|
content: "\f083";
|
|
}
|
|
|
|
.material-icons.wash:before {
|
|
content: "\f1b1";
|
|
}
|
|
|
|
.material-icons.watch:before {
|
|
content: "\e334";
|
|
}
|
|
|
|
.material-icons.watch_later:before {
|
|
content: "\e924";
|
|
}
|
|
|
|
.material-icons.watch_off:before {
|
|
content: "\eae3";
|
|
}
|
|
|
|
.material-icons.water:before {
|
|
content: "\f084";
|
|
}
|
|
|
|
.material-icons.water_damage:before {
|
|
content: "\f203";
|
|
}
|
|
|
|
.material-icons.water_drop:before {
|
|
content: "\e798";
|
|
}
|
|
|
|
.material-icons.waterfall_chart:before {
|
|
content: "\ea00";
|
|
}
|
|
|
|
.material-icons.waves:before {
|
|
content: "\e176";
|
|
}
|
|
|
|
.material-icons.waving_hand:before {
|
|
content: "\e766";
|
|
}
|
|
|
|
.material-icons.wb_auto:before {
|
|
content: "\e42c";
|
|
}
|
|
|
|
.material-icons.wb_cloudy:before {
|
|
content: "\e42d";
|
|
}
|
|
|
|
.material-icons.wb_incandescent:before {
|
|
content: "\e42e";
|
|
}
|
|
|
|
.material-icons.wb_iridescent:before {
|
|
content: "\e436";
|
|
}
|
|
|
|
.material-icons.wb_shade:before {
|
|
content: "\ea01";
|
|
}
|
|
|
|
.material-icons.wb_sunny:before {
|
|
content: "\e430";
|
|
}
|
|
|
|
.material-icons.wb_twighlight:before {
|
|
content: "\ea02";
|
|
}
|
|
|
|
.material-icons.wb_twilight:before {
|
|
content: "\e1c6";
|
|
}
|
|
|
|
.material-icons.wc:before {
|
|
content: "\e63d";
|
|
}
|
|
|
|
.material-icons.web:before {
|
|
content: "\e051";
|
|
}
|
|
|
|
.material-icons.web_asset:before {
|
|
content: "\e069";
|
|
}
|
|
|
|
.material-icons.web_asset_off:before {
|
|
content: "\e4f7";
|
|
}
|
|
|
|
.material-icons.web_stories:before {
|
|
content: "\e595";
|
|
}
|
|
|
|
.material-icons.webhook:before {
|
|
content: "\eb92";
|
|
}
|
|
|
|
.material-icons.wechat:before {
|
|
content: "\ea81";
|
|
}
|
|
|
|
.material-icons.weekend:before {
|
|
content: "\e16b";
|
|
}
|
|
|
|
.material-icons.west:before {
|
|
content: "\f1e6";
|
|
}
|
|
|
|
.material-icons.whatsapp:before {
|
|
content: "\ea9c";
|
|
}
|
|
|
|
.material-icons.whatshot:before {
|
|
content: "\e80e";
|
|
}
|
|
|
|
.material-icons.wheelchair_pickup:before {
|
|
content: "\f1ab";
|
|
}
|
|
|
|
.material-icons.where_to_vote:before {
|
|
content: "\e177";
|
|
}
|
|
|
|
.material-icons.widgets:before {
|
|
content: "\e1bd";
|
|
}
|
|
|
|
.material-icons.width_full:before {
|
|
content: "\f8f5";
|
|
}
|
|
|
|
.material-icons.width_normal:before {
|
|
content: "\f8f6";
|
|
}
|
|
|
|
.material-icons.width_wide:before {
|
|
content: "\f8f7";
|
|
}
|
|
|
|
.material-icons.wifi:before {
|
|
content: "\e63e";
|
|
}
|
|
|
|
.material-icons.wifi_1_bar:before {
|
|
content: "\e4ca";
|
|
}
|
|
|
|
.material-icons.wifi_2_bar:before {
|
|
content: "\e4d9";
|
|
}
|
|
|
|
.material-icons.wifi_calling:before {
|
|
content: "\ef77";
|
|
}
|
|
|
|
.material-icons.wifi_calling_3:before {
|
|
content: "\f085";
|
|
}
|
|
|
|
.material-icons.wifi_channel:before {
|
|
content: "\eb6a";
|
|
}
|
|
|
|
.material-icons.wifi_find:before {
|
|
content: "\eb31";
|
|
}
|
|
|
|
.material-icons.wifi_lock:before {
|
|
content: "\e1e1";
|
|
}
|
|
|
|
.material-icons.wifi_off:before {
|
|
content: "\e648";
|
|
}
|
|
|
|
.material-icons.wifi_password:before {
|
|
content: "\eb6b";
|
|
}
|
|
|
|
.material-icons.wifi_protected_setup:before {
|
|
content: "\f0fc";
|
|
}
|
|
|
|
.material-icons.wifi_tethering:before {
|
|
content: "\e1e2";
|
|
}
|
|
|
|
.material-icons.wifi_tethering_error:before {
|
|
content: "\ead9";
|
|
}
|
|
|
|
.material-icons.wifi_tethering_error_rounded:before {
|
|
content: "\f086";
|
|
}
|
|
|
|
.material-icons.wifi_tethering_off:before {
|
|
content: "\f087";
|
|
}
|
|
|
|
.material-icons.wind_power:before {
|
|
content: "\ec0c";
|
|
}
|
|
|
|
.material-icons.window:before {
|
|
content: "\f088";
|
|
}
|
|
|
|
.material-icons.wine_bar:before {
|
|
content: "\f1e8";
|
|
}
|
|
|
|
.material-icons.woman:before {
|
|
content: "\e13e";
|
|
}
|
|
|
|
.material-icons.woo_commerce:before {
|
|
content: "\ea6d";
|
|
}
|
|
|
|
.material-icons.wordpress:before {
|
|
content: "\ea9f";
|
|
}
|
|
|
|
.material-icons.work:before {
|
|
content: "\e8f9";
|
|
}
|
|
|
|
.material-icons.work_history:before {
|
|
content: "\ec09";
|
|
}
|
|
|
|
.material-icons.work_off:before {
|
|
content: "\e942";
|
|
}
|
|
|
|
.material-icons.work_outline:before {
|
|
content: "\e943";
|
|
}
|
|
|
|
.material-icons.workspace_premium:before {
|
|
content: "\e7af";
|
|
}
|
|
|
|
.material-icons.workspaces:before {
|
|
content: "\e1a0";
|
|
}
|
|
|
|
.material-icons.workspaces_filled:before {
|
|
content: "\ea0d";
|
|
}
|
|
|
|
.material-icons.workspaces_outline:before {
|
|
content: "\ea0f";
|
|
}
|
|
|
|
.material-icons.wrap_text:before {
|
|
content: "\e25b";
|
|
}
|
|
|
|
.material-icons.wrong_location:before {
|
|
content: "\ef78";
|
|
}
|
|
|
|
.material-icons.wysiwyg:before {
|
|
content: "\f1c3";
|
|
}
|
|
|
|
.material-icons.yard:before {
|
|
content: "\f089";
|
|
}
|
|
|
|
.material-icons.youtube_searched_for:before {
|
|
content: "\e8fa";
|
|
}
|
|
|
|
.material-icons.zoom_in:before {
|
|
content: "\e8ff";
|
|
}
|
|
|
|
.material-icons.zoom_in_map:before {
|
|
content: "\eb2d";
|
|
}
|
|
|
|
.material-icons.zoom_out:before {
|
|
content: "\e900";
|
|
}
|
|
|
|
.material-icons.zoom_out_map:before {
|
|
content: "\e56b";
|
|
}
|
|
|
|
/*# sourceMappingURL=material-design-icons.css.map */
|
|
/*!
|
|
* Weather Icons Lite v1.6.1
|
|
* Weather themed icons for Bootstrap
|
|
* Author - Paul Reed
|
|
* Maintained at https://github.com/Paul-Reed/weather-icons-lite
|
|
* Description - A lighweight version of Weather Icons
|
|
* Credit to Erik Flowers - erik@helloerik.com
|
|
*
|
|
*/
|
|
|
|
@font-face {
|
|
font-family: 'weather-icons-lite';
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
src: url('../fonts/weather-icons-lite.woff2') format('woff2'),
|
|
url('../fonts/weather-icons-lite.woff') format('woff'),
|
|
url('../fonts/weather-icons-lite.ttf') format('truetype'),
|
|
url('../fonts/weather-icons-lite.eot') format('embedded-opentype');
|
|
}
|
|
|
|
.wi {
|
|
display: inline-block;
|
|
font-family: 'weather-icons-lite';
|
|
font-style: normal;
|
|
font-weight: normal;
|
|
line-height: 1;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
.wi-lg {
|
|
font-size: 1.33333em;
|
|
line-height: 0.75em;
|
|
vertical-align: -.0667em;
|
|
}
|
|
|
|
.wi-xs {
|
|
font-size: .75em;
|
|
}
|
|
|
|
.wi-sm {
|
|
font-size: .875em;
|
|
}
|
|
|
|
.wi-1x {
|
|
font-size: 1em;
|
|
}
|
|
|
|
.wi-2x {
|
|
font-size: 2em;
|
|
}
|
|
|
|
.wi-3x {
|
|
font-size: 3em;
|
|
}
|
|
|
|
.wi-4x {
|
|
font-size: 4em;
|
|
}
|
|
|
|
.wi-5x {
|
|
font-size: 5em;
|
|
}
|
|
|
|
.wi-6x {
|
|
font-size: 6em;
|
|
}
|
|
|
|
.wi-7x {
|
|
font-size: 7em;
|
|
}
|
|
|
|
.wi-8x {
|
|
font-size: 8em;
|
|
}
|
|
|
|
.wi-9x {
|
|
font-size: 9em;
|
|
}
|
|
|
|
.wi-10x {
|
|
font-size: 10em;
|
|
}
|
|
|
|
.wi-fw {
|
|
text-align: center;
|
|
width: 1.4em;
|
|
}
|
|
|
|
.wi-rotate-0,
|
|
.wi-rotate-N,
|
|
.wi-towards-N,
|
|
.wi-from-S {
|
|
-webkit-transform: rotate(0deg);
|
|
-ms-transform: rotate(0deg);
|
|
transform: rotate(0deg);
|
|
}
|
|
|
|
.wi-rotate-23,
|
|
.wi-rotate-NNE,
|
|
.wi-towards-NNE,
|
|
.wi-from-SSW {
|
|
-webkit-transform: rotate(23deg);
|
|
-ms-transform: rotate(23deg);
|
|
transform: rotate(23deg);
|
|
}
|
|
|
|
.wi-rotate-45,
|
|
.wi-rotate-NE,
|
|
.wi-towards-NE,
|
|
.wi-from-SW {
|
|
-webkit-transform: rotate(45deg);
|
|
-ms-transform: rotate(45deg);
|
|
transform: rotate(45deg);
|
|
}
|
|
|
|
.wi-rotate-68,
|
|
.wi-rotate-ENE,
|
|
.wi-towards-ENE,
|
|
.wi-from-WSW {
|
|
-webkit-transform: rotate(68deg);
|
|
-ms-transform: rotate(68deg);
|
|
transform: rotate(68deg);
|
|
}
|
|
|
|
.wi-rotate-90,
|
|
.wi-rotate-E,
|
|
.wi-towards-E,
|
|
.wi-from-W {
|
|
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
|
|
-webkit-transform: rotate(90deg);
|
|
-ms-transform: rotate(90deg);
|
|
transform: rotate(90deg);
|
|
}
|
|
|
|
.wi-rotate-113,
|
|
.wi-rotate-ESE,
|
|
.wi-towards-ESE,
|
|
.wi-from-WNW {
|
|
-webkit-transform: rotate(113deg);
|
|
-ms-transform: rotate(113deg);
|
|
transform: rotate(113deg);
|
|
}
|
|
|
|
.wi-rotate-135,
|
|
.wi-rotate-SE,
|
|
.wi-towards-SE,
|
|
.wi-from-NW {
|
|
-webkit-transform: rotate(135deg);
|
|
-ms-transform: rotate(135deg);
|
|
transform: rotate(135deg);
|
|
}
|
|
|
|
.wi-rotate-158,
|
|
.wi-rotate-SSE,
|
|
.wi-towards-SSE,
|
|
.wi-from-NNW {
|
|
-webkit-transform: rotate(158deg);
|
|
-ms-transform: rotate(158deg);
|
|
transform: rotate(158deg);
|
|
}
|
|
|
|
.wi-rotate-180,
|
|
.wi-rotate-S,
|
|
.wi-towards-S,
|
|
.wi-from-N {
|
|
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
|
|
-webkit-transform: rotate(180deg);
|
|
-ms-transform: rotate(180deg);
|
|
transform: rotate(180deg);
|
|
}
|
|
|
|
.wi-rotate-203,
|
|
.wi-rotate-SSW,
|
|
.wi-towards-SSW,
|
|
.wi-from-NNE {
|
|
-webkit-transform: rotate(203deg);
|
|
-ms-transform: rotate(203deg);
|
|
transform: rotate(203deg);
|
|
}
|
|
|
|
.wi-rotate-225,
|
|
.wi-rotate-SW,
|
|
.wi-towards-SW,
|
|
.wi-from-NE {
|
|
-webkit-transform: rotate(225deg);
|
|
-ms-transform: rotate(225deg);
|
|
transform: rotate(225deg);
|
|
}
|
|
|
|
.wi-rotate-248,
|
|
.wi-rotate-WSW,
|
|
.wi-towards-WSW,
|
|
.wi-from-ENE {
|
|
-webkit-transform: rotate(248deg);
|
|
-ms-transform: rotate(248deg);
|
|
transform: rotate(248deg);
|
|
}
|
|
|
|
.wi-rotate-270,
|
|
.wi-rotate-W,
|
|
.wi-towards-W,
|
|
.wi-from-E {
|
|
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
|
|
-webkit-transform: rotate(270deg);
|
|
-ms-transform: rotate(270deg);
|
|
transform: rotate(270deg);
|
|
}
|
|
|
|
.wi-rotate-293,
|
|
.wi-rotate-WNW,
|
|
.wi-towards-WNW,
|
|
.wi-from-ESE {
|
|
-webkit-transform: rotate(293deg);
|
|
-ms-transform: rotate(293deg);
|
|
transform: rotate(293deg);
|
|
}
|
|
|
|
.wi-rotate-315,
|
|
.wi-rotate-NW,
|
|
.wi-towards-NW,
|
|
.wi-from-SE {
|
|
-webkit-transform: rotate(315deg);
|
|
-ms-transform: rotate(315deg);
|
|
transform: rotate(315deg);
|
|
}
|
|
|
|
.wi-rotate-338,
|
|
.wi-rotate-NNW,
|
|
.wi-towards-NNW,
|
|
.wi-from-SSE {
|
|
-webkit-transform: rotate(338deg);
|
|
-ms-transform: rotate(338deg);
|
|
transform: rotate(338deg);
|
|
}
|
|
|
|
.wi-flip-horizontal {
|
|
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0,
|
|
mirror=1);
|
|
-webkit-transform: scale(-1, 1);
|
|
-ms-transform: scale(-1, 1);
|
|
transform: scale(-1, 1);
|
|
}
|
|
|
|
.wi-flip-vertical {
|
|
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
|
|
-webkit-transform: scale(1, -1);
|
|
-ms-transform: scale(1, -1);
|
|
transform: scale(1, -1);
|
|
}
|
|
|
|
.wi-arrow:before {
|
|
content: "\f0d2";
|
|
}
|
|
|
|
.wi-direction:before {
|
|
content: "\f0d1";
|
|
}
|
|
|
|
.wi-darksky-clear-day:before {
|
|
content: "\f00d";
|
|
}
|
|
|
|
.wi-darksky-clear-night:before {
|
|
content: "\f02e";
|
|
}
|
|
|
|
.wi-darksky-rain:before {
|
|
content: "\f019";
|
|
}
|
|
|
|
.wi-darksky-snow:before {
|
|
content: "\f01b";
|
|
}
|
|
|
|
.wi-darksky-sleet:before {
|
|
content: "\f0b5";
|
|
}
|
|
|
|
.wi-darksky-wind:before {
|
|
content: "\f050";
|
|
}
|
|
|
|
.wi-darksky-fog:before {
|
|
content: "\f014";
|
|
}
|
|
|
|
.wi-darksky-cloudy:before {
|
|
content: "\f013";
|
|
}
|
|
|
|
.wi-darksky-partly-cloudy-day:before {
|
|
content: "\f002";
|
|
}
|
|
|
|
.wi-darksky-partly-cloudy-night:before {
|
|
content: "\f086";
|
|
}
|
|
|
|
.wi-darksky-hail:before {
|
|
content: "\f015";
|
|
}
|
|
|
|
.wi-darksky-thunderstorm:before {
|
|
content: "\f01e";
|
|
}
|
|
|
|
.wi-darksky-tornado:before {
|
|
content: "\f056";
|
|
}
|
|
|
|
.wi-owm-01d:before {
|
|
content: "\f00d";
|
|
}
|
|
|
|
.wi-owm-02d:before {
|
|
content: "\f00c";
|
|
}
|
|
|
|
.wi-owm-03d:before {
|
|
content: "\f002";
|
|
}
|
|
|
|
.wi-owm-04d:before {
|
|
content: "\f013";
|
|
}
|
|
|
|
.wi-owm-09d:before {
|
|
content: "\f017";
|
|
}
|
|
|
|
.wi-owm-10d:before {
|
|
content: "\f019";
|
|
}
|
|
|
|
.wi-owm-11d:before {
|
|
content: "\f01e";
|
|
}
|
|
|
|
.wi-owm-13d:before {
|
|
content: "\f01b";
|
|
}
|
|
|
|
.wi-owm-50d:before {
|
|
content: "\f014";
|
|
}
|
|
|
|
.wi-owm-01n:before {
|
|
content: "\f02e";
|
|
}
|
|
|
|
.wi-owm-02n:before {
|
|
content: "\f081";
|
|
}
|
|
|
|
.wi-owm-03n:before {
|
|
content: "\f07e";
|
|
}
|
|
|
|
.wi-owm-04n:before {
|
|
content: "\f086";
|
|
}
|
|
|
|
.wi-owm-09n:before {
|
|
content: "\f026";
|
|
}
|
|
|
|
.wi-owm-10n:before {
|
|
content: "\f028";
|
|
}
|
|
|
|
.wi-owm-11n:before {
|
|
content: "\f02c";
|
|
}
|
|
|
|
.wi-owm-13n:before {
|
|
content: "\f02a";
|
|
}
|
|
|
|
.wi-owm-50n:before {
|
|
content: "\f04a";
|
|
}
|
|
|
|
.wi-wu-chanceflurries:before {
|
|
content: "\f064";
|
|
}
|
|
|
|
.wi-wu-chancerain:before {
|
|
content: "\f019";
|
|
}
|
|
|
|
.wi-wu-chancesleet:before {
|
|
content: "\f0b5";
|
|
}
|
|
|
|
.wi-wu-chancesnow:before {
|
|
content: "\f01b";
|
|
}
|
|
|
|
.wi-wu-chancetstorms:before {
|
|
content: "\f01e";
|
|
}
|
|
|
|
.wi-wu-clear:before {
|
|
content: "\f00d";
|
|
}
|
|
|
|
.wi-wu-cloudy:before {
|
|
content: "\f002";
|
|
}
|
|
|
|
.wi-wu-flurries:before {
|
|
content: "\f064";
|
|
}
|
|
|
|
.wi-wu-fog:before {
|
|
content: "\f014";
|
|
}
|
|
|
|
.wi-wu-hazy:before {
|
|
content: "\f0b6";
|
|
}
|
|
|
|
.wi-wu-mostlycloudy:before {
|
|
content: "\f002";
|
|
}
|
|
|
|
.wi-wu-mostlysunny:before {
|
|
content: "\f00c";
|
|
}
|
|
|
|
.wi-wu-partlycloudy:before {
|
|
content: "\f002";
|
|
}
|
|
|
|
.wi-wu-partlysunny:before {
|
|
content: "\f002";
|
|
}
|
|
|
|
.wi-wu-rain:before {
|
|
content: "\f01a";
|
|
}
|
|
|
|
.wi-wu-sleet:before {
|
|
content: "\f0b5";
|
|
}
|
|
|
|
.wi-wu-snow:before {
|
|
content: "\f01b";
|
|
}
|
|
|
|
.wi-wu-sunny:before {
|
|
content: "\f00d";
|
|
}
|
|
|
|
.wi-wu-tstorms:before {
|
|
content: "\f01e";
|
|
}
|
|
|
|
.wi-wu-nt_chanceflurries:before {
|
|
content: "\f067";
|
|
}
|
|
|
|
.wi-wu-nt_chancerain:before {
|
|
content: "\f028";
|
|
}
|
|
|
|
.wi-wu-nt_chancesleet:before {
|
|
content: "\f0b4";
|
|
}
|
|
|
|
.wi-wu-nt_chancesnow:before {
|
|
content: "\f02a";
|
|
}
|
|
|
|
.wi-wu-nt_chancetstorms:before {
|
|
content: "\f02d";
|
|
}
|
|
|
|
.wi-wu-nt_clear:before {
|
|
content: "\f02e";
|
|
}
|
|
|
|
.wi-wu-nt_flurries:before {
|
|
content: "\f067";
|
|
}
|
|
|
|
.wi-wu-nt_fog:before {
|
|
content: "\f04a";
|
|
}
|
|
|
|
.wi-wu-nt_hazy:before {
|
|
content: "\f07e";
|
|
}
|
|
|
|
.wi-wu-nt_mostlycloudy:before {
|
|
content: "\f081";
|
|
}
|
|
|
|
.wi-wu-nt_mostlysunny:before {
|
|
content: "\f02e";
|
|
}
|
|
|
|
.wi-wu-nt_partlycloudy:before {
|
|
content: "\f081";
|
|
}
|
|
|
|
.wi-wu-nt_partlysunny:before {
|
|
content: "\f086";
|
|
}
|
|
|
|
.wi-wu-nt_rain:before {
|
|
content: "\f028";
|
|
}
|
|
|
|
.wi-wu-nt_sleet:before {
|
|
content: "\f0b4";
|
|
}
|
|
|
|
.wi-wu-nt_snow:before {
|
|
content: "\f02a";
|
|
}
|
|
|
|
.wi-wu-nt_sunny:before {
|
|
content: "\f02e";
|
|
}
|
|
|
|
.wi-wu-nt_tstorms:before {
|
|
content: "\f02d";
|
|
}
|
|
|
|
.wi-wu-nt_cloudy:before {
|
|
content: "\f031";
|
|
}
|
|
|
|
.wi-moon-wax-cres-dark:before {
|
|
content: "\f0de";
|
|
}
|
|
|
|
.wi-moon-first-quart-dark:before {
|
|
content: "\f0df";
|
|
}
|
|
|
|
.wi-moon-wax-gibb-dark:before {
|
|
content: "\f0e0";
|
|
}
|
|
|
|
.wi-moon-full-dark:before {
|
|
content: "\f0e1";
|
|
}
|
|
|
|
.wi-moon-wan-gibb-dark:before {
|
|
content: "\f0da";
|
|
}
|
|
|
|
.wi-moon-third-quart-dark:before {
|
|
content: "\f0db";
|
|
}
|
|
|
|
.wi-moon-wan-cres-dark:before {
|
|
content: "\f0dc";
|
|
}
|
|
|
|
.wi-moon-new-dark:before {
|
|
content: "\f0dd";
|
|
}
|
|
|
|
.wi-moon-wax-cres:before {
|
|
content: "\f0da";
|
|
}
|
|
|
|
.wi-moon-first-quart:before {
|
|
content: "\f0db";
|
|
}
|
|
|
|
.wi-moon-wax-gibb:before {
|
|
content: "\f0dc";
|
|
}
|
|
|
|
.wi-moon-full:before {
|
|
content: "\f0dd";
|
|
}
|
|
|
|
.wi-moon-wan-gibb:before {
|
|
content: "\f0de";
|
|
}
|
|
|
|
.wi-moon-third-quart:before {
|
|
content: "\f0df";
|
|
}
|
|
|
|
.wi-moon-wan-cres:before {
|
|
content: "\f0e0";
|
|
}
|
|
|
|
.wi-moon-new:before {
|
|
content: "\f0e1";
|
|
}
|
|
/*!
|
|
* angularjs-color-picker v3.4.8
|
|
* https://github.com/ruhley/angular-color-picker/
|
|
*
|
|
* Copyright 2017 ruhley
|
|
*
|
|
* 2017-10-06 09:52:03
|
|
*
|
|
*/
|
|
|
|
.color-picker-wrapper {
|
|
position: relative;
|
|
}
|
|
|
|
.color-picker-wrapper .color-picker-input-wrapper {
|
|
display: table;
|
|
position: relative;
|
|
}
|
|
|
|
.color-picker-wrapper .input-group {
|
|
position: relative;
|
|
border-collapse: separate;
|
|
}
|
|
|
|
.color-picker-wrapper .input-group .color-picker-input,
|
|
.color-picker-wrapper .input-group .input-group-addon {
|
|
display: table-cell;
|
|
}
|
|
|
|
.color-picker-wrapper .input-group .color-picker-input {
|
|
position: relative;
|
|
z-index: 2;
|
|
float: left;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.color-picker-wrapper .input-group .input-group-addon {
|
|
padding: 6px 12px;
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
line-height: 1;
|
|
color: #555;
|
|
text-align: center;
|
|
background-color: #eee;
|
|
border: 1px solid #ccc;
|
|
}
|
|
|
|
.color-picker-wrapper .input-group .input-group-addon:first-child {
|
|
border-right-width: 0;
|
|
}
|
|
|
|
.color-picker-wrapper .input-group .input-group-addon:last-child {
|
|
border-left-width: 0;
|
|
}
|
|
|
|
.color-picker-wrapper .input-group .color-picker-input-swatch {
|
|
padding-left: 12px;
|
|
}
|
|
|
|
.color-picker-wrapper .color-picker-input-swatch {
|
|
padding-left: 36px;
|
|
}
|
|
|
|
.color-picker-wrapper .color-picker-swatch {
|
|
cursor: pointer;
|
|
z-index: 3;
|
|
}
|
|
|
|
.color-picker-wrapper .color-picker-swatch:not(.input-group-addon) {
|
|
position: absolute;
|
|
top: 3px;
|
|
width: 28px;
|
|
height: 70%;
|
|
box-sizing: border-box;
|
|
border-radius: 3px;
|
|
vertical-align: middle;
|
|
background-position: -80px 0;
|
|
border: solid 1px #ccc;
|
|
padding: 0;
|
|
margin: 0;
|
|
display: inline-block;
|
|
}
|
|
|
|
.color-picker-wrapper .color-picker-swatch:not(.input-group-addon).color-picker-swatch-left {
|
|
left: 3px;
|
|
}
|
|
|
|
.color-picker-wrapper .color-picker-swatch:not(.input-group-addon).color-picker-swatch-right {
|
|
right: 3px;
|
|
}
|
|
|
|
.color-picker-wrapper .color-picker-panel {
|
|
position: absolute;
|
|
background: #fff;
|
|
border: solid 1px #ccc;
|
|
box-shadow: 0 0 20px rgba(0,0,0,.5);
|
|
z-index: 99999;
|
|
width: 150px;
|
|
table-layout: fixed;
|
|
border: 1px solid #fff;
|
|
padding-right: 1px;
|
|
box-sizing: content-box;
|
|
}
|
|
|
|
.color-picker-wrapper .color-picker-panel .color-picker-grid-wrapper {
|
|
display: table;
|
|
width: 100%;
|
|
}
|
|
|
|
.color-picker-wrapper .color-picker-panel .color-picker-grid-wrapper .color-picker-row {
|
|
display: table-row;
|
|
}
|
|
|
|
.color-picker-wrapper .color-picker-panel .color-picker-grid-wrapper .color-picker-row .color-picker-overlay {
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 150px;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: 2;
|
|
}
|
|
|
|
.color-picker-wrapper .color-picker-panel .color-picker-grid-wrapper .color-picker-row .color-picker-grid,
|
|
.color-picker-wrapper .color-picker-panel .color-picker-grid-wrapper .color-picker-row .color-picker-hue,
|
|
.color-picker-wrapper .color-picker-panel .color-picker-grid-wrapper .color-picker-row .color-picker-lightness,
|
|
.color-picker-wrapper .color-picker-panel .color-picker-grid-wrapper .color-picker-row .color-picker-opacity,
|
|
.color-picker-wrapper .color-picker-panel .color-picker-grid-wrapper .color-picker-row .color-picker-saturation {
|
|
background-image: linear-gradient(45deg,grey 25%,transparent 25%),linear-gradient(-45deg,grey 25%,transparent 25%),linear-gradient(45deg,transparent 75%,grey 75%),linear-gradient(-45deg,transparent 75%,grey 75%);
|
|
background-size: 10px 10px;
|
|
background-position: 0 0,0 5px,5px -5px,-5px 0;
|
|
}
|
|
|
|
.color-picker-wrapper .color-picker-panel .color-picker-grid-wrapper .color-picker-row .color-picker-hue,
|
|
.color-picker-wrapper .color-picker-panel .color-picker-grid-wrapper .color-picker-row .color-picker-lightness,
|
|
.color-picker-wrapper .color-picker-panel .color-picker-grid-wrapper .color-picker-row .color-picker-opacity,
|
|
.color-picker-wrapper .color-picker-panel .color-picker-grid-wrapper .color-picker-row .color-picker-saturation {
|
|
display: table-cell;
|
|
position: relative;
|
|
left: 1px;
|
|
width: 20px;
|
|
background-color: #fff;
|
|
cursor: row-resize;
|
|
}
|
|
|
|
.color-picker-wrapper .color-picker-panel .color-picker-grid-wrapper .color-picker-row .color-picker-slider {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 18px;
|
|
height: 2px;
|
|
background: #fff;
|
|
border: solid 1px #000;
|
|
box-sizing: content-box;
|
|
margin-top: -1px;
|
|
z-index: 3;
|
|
}
|
|
|
|
.color-picker-wrapper .color-picker-panel .color-picker-grid-wrapper .color-picker-row .color-picker-grid {
|
|
display: table-cell;
|
|
position: relative;
|
|
width: 150px;
|
|
height: 150px;
|
|
cursor: crosshair;
|
|
}
|
|
|
|
.color-picker-wrapper .color-picker-panel .color-picker-grid-wrapper .color-picker-row .color-picker-grid .color-picker-grid-inner {
|
|
width: 150px;
|
|
height: 150px;
|
|
z-index: 9;
|
|
}
|
|
|
|
.color-picker-wrapper .color-picker-panel .color-picker-grid-wrapper .color-picker-row .color-picker-grid .color-picker-overlay {
|
|
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJYAAACWCAMAAAAL34HQAAAC9FBMVEUDAwMTExMFBQUGBgYMDAwICAgFBQUDAwMGBgYDAwMPDw8SEhIYGBgLCwsTExMfHx8GBgYcHBwGBgYmJiYcHBwfHx8XFxcJCQkODg4fHx8RERExMTEmJiYGBgYuLi4ZGRlDQ0MqKioICAgcHBxFRUUUFBQKCgooKCgzMzMnJycbGxsTExM8PDwvLy8xMTErKysLCwtNTU1CQkI5OTkUFBQlJSVmZmZeXl4mJiYfHx81NTVKSkoPDw9FRUVjY2NYWFhLS0srKys6OjpISEhQUFBsbGxEREQLCwsNDQ3a2to4ODhBQUE7OzsMDAwXFxchISFSUlJnZ2d4eHhlZWUzMzOampo+Pj4tLS1ISEhtbW1SUlJ0dHQQEBAwMDAhISFWVlZaWlpWVlZiYmJLS0snJyf09PQfHx+Xl5dHR0dPT08+Pj5qamrOzs5QUFBXV1dUVFR6enonJyddXV1xcXE2NjYWFhY8PDxKSkrNzc1/f3+hoaFfX1+KioqAgIB3d3esrKyYmJiKiookJCS7u7uhoaE6OjqLi4ssLCy8vLx6enpubm6Hh4eioqKFhYXp6enCwsKMjIzBwcGRkZHu7u44ODhycnLFxcVra2uioqLc3Nzl5eV4eHjl5eWSkpK+vr7h4eEzMzOSkpK7u7shISHW1taurq5aWlrPz89vb2/y8vJlZWWBgYHKyspeXl64uLh+fn4YGBg2NjbZ2dl6enrMzMy8vLyTk5POzs5xcXG/v79PT09paWmEhISbm5urq6u3t7djY2Pl5eXh4eFaWlqLi4u1tbW5ubl/f3/Q0NCCgoKTk5Ovr69KSkp1dXWpqanZ2dmvr6+ysrJMTEyenp719fWbm5tUVFSYmJjz8/ODg4PZ2dn19fWzs7NjY2Nra2uHh4enp6eIiIijo6PU1NSnp6eWlpbKysqpqal3d3ff39+KiorCwsLS0tLg4OC+vr7r6+uqqqry8vLj4+OWlpatra3r6+v39/fu7u75+fnv7+/5+fkBAQFzkre4AAAA+3RSTlP97ePc/P3u+Onz8/z79+Hz0+rL++D89bvl19jr8sL6wPndsq7m0anI0uPLyfry27Oh8O7oZ+n42tCl+x98o+jk+r7y2+Wxv5mGpr/O4JBcR6/AvI6b89iltO7Z5HF2kc7A8c7MiPKavHeIhuB2waL61H37n8m0qpfkyKqy9/j56OC/Ovbkki8sh66AsfbrZeXf0uvos9X21L6A93TB0MKyao5IvMSvfvX6jqIQj/Dm41Bd5u/Unay/xlpqYticw7Zv1kiWn9kenp2M+ZtOkG33ffZbg6LPQkjVaNSyyjRUVpF+0ipZdbP4RTjOqmKQbqDZfuhjOFPDxfhv3SDpqyEAABolSURBVHgBdNKxaipbGMVx38sn8EHs5jk8VtNMZRgYGNJIrGwOllqIVU4jJCSkihwiOIqDxmh1/2vW3pfBy11r7al/fNr5aaX/c+tT4rzevm/fr98x79/vIev3dcx4PQ45jo8h1+M1Jr2m6Tk9xyzOC7JdbGM+t59Nlp/L5fJp+RTSYt1+buz/TKhcUG2T20ahiq6zqjlb5t6ryFPTO1b/pt18rZbqdneptetYJJNqmElGRVcbRpWzUS2STZFllNqHZBOoV9a4mFmGWaZBii7LooqGpGl6PadG+QfUg7SIp2odC5VfZElkU6PKjFJkUi6YLv+inMP6gOnw3z9WJMUAU4xSpLr/Wznta8lkF6IsQ5VlUXXBdXECClXeqJyxYaiqIxsdR1empFeb6O7MDJNKvYMZpQnVhdWPrqyfCYUpC6i5THOb8vdcW+fFel0UB24lFK3GlYLJKjdJQ3bp7qwuZkFVLrZl09P29KkOPpcnqSIKVrfTRjlWzV2hlPySI5PqvVgX6wMwpTdWkR1FG1UjJ6VJmjBUMbPFjMGiUpW4iFyDJR08DbrLbvdJ7fSVh4d+9hBR9WvNZNKl9PIcFSlySISPSKDkquK9RtW14l4jrpVcIaVslwA673Z49NSyiVE61gmSXEZpXKtRNTVLKqPIhedTEf+EuVEFKki9ChXTpaiT6FY6VrKL15oxbkXLUi5uVXIux7C7axmV0YeszuqgqufAYAlkFSLq9IpeTy5gPlXblaj+BdXAQkRKVYHEZAKlLLsDGtORSbEKkoLKyTVI0eUccGFSKrVaaaOJUHZpRKq9BsuxKsAcuZS2q4PKMEyOTUa9zfO3nN3fqrCJrdyRO5mAMsmqvSqUXb7Wpnw5UX0GLzaZ1b6WU6vRJRkkq9RHtVAVqwxbYWIixSYJI3u62+/3vNk+ojChKlmgRdiHz6X84lr3KpGmDNQbyxksq9jveCuyMoo3oZxKxzIqqITCRJXNbLPZ2IWKIPoaDF4+Bh+sq1oVWH+MUqb1fDoF9abmVmEChuvxd1H8RkbNok0iajLkmyTDZLgfAguR6nm2YbMS2ItqFe9LMlTQPhC5kfWnbjqf1kJpupXy+IZIKL2G1Jj+9lZ/TQLFsRwuBWmoDxw98rx/foaFKiSqZKIfXzbRAPvVCajGNeUZBQmX82gZl3oEpQmlriybMLuGWlANhbIKEd1sWFAxTC8DnmTAmkhkllBKzZv+wxYdrDSPhlEc9w69ndCl36LuSjfDgNAhMNKNiAwNLkrNShiodIqBfkRKk4AtQuHb5Abmf877mBGZc5436x8nQwYUHJvsIn+AOika66xfeA5TcslEGGr7a7vVR1spA0p1ZAL1obmMUh2x5DJKHVCh4oUJlWAnqqnOJ7nUO1rcFdy1t3K2yAYVU0klV//+3vQ/m+Yn/bDLqsGltciwVpCEopkue1u8Lf5MNYmlxFJAnc9/cwWuO6uui2udAon84m22m5hLJFB9/940nF0KJlA7+m0tJbaaw8osCpUil0xkUJ1VXKQouLRWqLaoBAuW06sEklFN80HDJRW0UImVUPN/5n9RTHNUGaZMJonCtJDpqyql4AdKJJJQa7Po/6Pk6hsnUGRHce3Gu/FX1pwKxQ0opsqo8kinkk1PjzNIvMFVcJ+BpLbblhdb0WpzdGMsTjCzDh9UJgUWvRpfBQsXESqbv80zw4LkYHKFSi0lChYl62K9xmRWy1ItBVTxNnb1PecE6gAKEzWLP4gLklxizaVKMlwimaWKtEAUnT3OQKE6zc6z8gyuLEqh7LouUDGUTiZ1Q48EV8Dqvm4oLBXUYac6V+rYDRaRaB4mkybcdDHlRJqKpIOER7XpVl0r2qqViqlaTJXe0VuBojVJKkiYPlVfUIpcFwNq2GqiLiYcWyUUj6mQWVVqKg5XiUl/kCOtSipgQqFSnfqopaSqm2VTYxJMMexFLpMIayXUb2pGOasooMk0ZaY6pZpS3IKit+tYK5nMqiJhsqvmUkDVVAF0eNm9cOGyClaoEgnRkCnnhOmb6lawUH1zVapMqZ1QamR54JZCOaBQXaVGLjA5GW/CUoItZBq2mqnPs9k+sSJMpQRptB4ZFKYcU84dq+7odl1ddxSTe1gCo0ylc4y6FOphfMFSnGATbsLFUqF6Vq3i9vtS/aoybESBjdqVWq2AWZVXXdVJday77gaUnlyhej28/qeil5cBu5ApEiiz7lMDRfdhok/lE6oIotFIpNFKrFWbt6u8ojmvyzurGEqkG255I5TzukS1jLkuZaJSPYgV+WHUD3o/uU+qZ6v2zwmVxnqyioZKlUwmok+Vr4zKNZVgzk0nFSyaZKiWry+qXTq7HlgrkYQSKVB2aSqyn+6RfaIwQfJWvxulCLVacSTHJBUo3UCyKVQxllFLu4yKwHq4sIr+SxYdqya2RlEcz0P5HAZG0t3UmtvapVHJaTQDtxVCwDQWtxhic4rAiDCKWFhEON00YxOYykeY/39/bgnMWus79Y99Hkq+PYgymw0jmkqWqIprupyqmnorTkUCZRKl6fOpqFG2srrsAdXhcH0ARs8qrpWk/zAVkCZrILlEGX8gqum9KiMqb2VLdi+73S+6+/W0u5hWoJ6CtdJUAulwvZBkUL1yLVV5KpusPNXm9PP0k52WZxinUsWtbKLqYNUv39cvVBTHChV9emKT4lohcgcbsgXzYIvrV1X2KlUpShRvsDltTngYt0qUJWdT9/6+tojq9XcKKV0E1UTUBBRdyTIFdXg7GDyoAuXMVareH769Rwd2M2Cqimt5Oi6jU1wlwrr3VFQNClONx613a0AZXBNI6Sp5s28HujjQyPUiSJ7r6mwCxNKFCdhpcDKqluwYx5qyYjqjiB+vxbHMCyobpqxZsRVThYgiE8W9AnVNjaxQiTKDQVGB2lDDqU7HyNSWdD0Vq7uiIIFiJZIi+4QR7pUoWZRwrLfFOa/WyEKUGbxDEibKmjAt3bI5ThvLoVCRUGVStaPbHd3vKJvsVeW15jZVouzFdWGVW5VoSlWibKSZqnJdG7moPt1qu95iYph0TUrNfDJfhcpm/r6VrPCkKV2aqkF1qhKFChflVA0tKMse68e1j2oqqv1WlNGUqPk8VJ6qx5u9LdhipquNq/3a/vwTP94/yMDGqSBpqo7HiibKfEZ1R916JOpsghQje7cvKtqZdDqyrLCe5+rRRQ/XDFeboaLtYCXqvaC+2iCpqjQNRZWk6VnSqO4CGokiXMpmBJkOA0XnnXmJqF5P1KyHSdQMVDumrCXrw0IigapKS47DpkpUqJ4bTM+ghD26OkxEFItb9T1Wn3Yst5p3/oK5gBGOxWsbVW1Y55wPRZMEalgdmyElgJoGEotbmUduVbK14y0bYwLU7+9ReSsTsDTZCKgIJkgsXa0L62vJoKjMsBoOuZZths8NlcRGIzaKa1FlYzeGVFSalHX6iApMlTOq0pW09gUGimsVk41TMXIDClXVDIfFBYmRUWkmULpQbeP1+0yYKpuqu7vO3fyOoWKibKZVUOH65xUWopLKYaKeqkQZHN/F9Rk1Go/g4CJ9JqwkTelSZXs2Iut2xlC5dqvFULWuUkX03JTP8EaSEZSo388jRn77+WJVjb+oingqXqr+79gfnR93bM65vFZx/du7tbezaGvWcu0/TNGxiupqFMXxeahbOmVgSs1xKuNhuKS4xyLEKoQozBSWAQkEq/sCaXLBJoWdnY/iU9z/3nshWWvls/2x9RJYQYrOSUI57AyJPZ/PnyfBVePiXqlVJmdRMjBQprr/+sUg3UFFMP3Z/oNKMhvXeoVrScWU73B1tn+77zOk6DPCpWrqrjTl41h8YUq8wxAbuBTzSIUpXLst91L+2mLh8XuhyjKuFbcicSsGyHqmLuJa5hGsZj91nVJQmEChSqKohDKTo/Qn8rgLEp9gcvkTyf7L+BPDpHSoAHWfHS+mMyb/njRMdc33Y0t1LVclKSQz0QRU5H4fqI6lYDIVqC2ziPRyca43UzHFQA9cpurOwCKYbl4uBcuT2tJIggsVI8PALDK5qvjDU1FXRVDJlZks22aQSJZxLZkenw9M5FOob1wWRAwTT32rFZGkirrJqoSruNsQhYrNTXsfLgrIanv7DBTBZfU4SbmdbzZSPx0mFRXKTIpgzTAUQ1Hci8JI1B6H7ardLPvdfr/dZzwZLkTqm1BkhqKtTNZIHabSV0/1lFpZMqHRsWhjqKaQ685TFVVl98JEWZDCRAyGiikzllSH7nzo2q6F1ra3VirBylKqiUqV4ErSVaI0nIqayb5A3SkBJdUJFaOSZVY/F4P1CBRB5IV0OLeguFV7u41BKm8lq3nLeiphTaiIuWiyok3SMFRNYfUQXAqu0+7ErJCYIpUCKwLnceAB1TJQnGo0FaOYakSBMhcwgmg1JSvCnVahCtQgFyRf5EQhIct3+WmfezGpcxYcRkC17YESYOYaIdnKEVAEkk1xFTNa07CIm3Sq4h0PHyKq5Ce51MV+schsYqESjLQdaxVuhQgVJJtQcslEFUfJRJeMvtNqWYUMFSM7Bmx/ykO1YNaMioVI8TspcPg8pdXSe6deDZZMUWVpDRV7Z5Xt9A4qkkeVRb6wYbLnI/tYwJLJegR2NJR1purHclP2PSoPpst0WV3wzF2AvqSCROwHlFS4qjU0uegsnAqYs3At3gJ1tJqLtldI7VWqzbgpNxtEuIKEybtC9kKtvhqKCxNzEaAlM5SZ6BrU2pqzcOlWVPnIKCyp6NFUV0TH8erFxKUAjT2yyKXHdOFW3r/plzVcbPm1nAWVggnZGhMPqLU3//2ihQxUXEsiTPR6vKLio6DIuOl5+3BdLixQPI4imADZ5yb7JPJPKLZeAwsZJki/Wf4RXXhJ9sG1AmXfy2Sqq4H+54qOUVvXoigMZ0bqYlxE6uTgYLgPDJIcsI0FaoRalx6FHp5CmlSZ4Pv//fa9B+5aS9spP05+m+iMaQaVuT0hEc71BkgYD8UoIf2btv7N3YVZIgwSLj5cDtX7GVX8D8lLikJlDQ9lM5ien89/Z46R9I+qNFFNJlXLr6Xvf9H+zaqimuIzZ6fIvKMSZbzxWn+bjCgXmT/nmQ/Xk8mykasrJrZce1iSQsUHiR3vjJ9MqBjBJk1bsuK1zMP+PP6QhiQNYfKxZvKkeFgmUO6iarkuiw+19MygulthfsfAdWGKBkyTLSksUbLiDo/PzwckUPlYaZpv8+0537hFdWH/kzh9yHqWEcXMMVyso9OxO0+apvP5EC5b8iIp88M3POQMQ9x5mEtEobptaJwLFWU1LaanS0FFM93x3nWY6LGbpuNEAjYdztF3aw4HWOkyww+FpokAK7SN3fBpCpSL6LosGVHgzFpQqBwmM/GLK2SgJlGhsv71UlRwbIg0CWKmhhQuQYz6UnpsMfW0Xdo+etd1b+8r7SzhHDVZAwmYBZY0ZLBMQRkzOzzWgSI1KHOxGVWOSAoRW93arqpYt6aMTG5ykTSJMiZYX4Y7fA0sUw91jSlgGyssUUUlarws4zKyttXlhEGKiCK4SLpsUbFoJlh60lRctWWQCCYbEcQpERWq1rWZNep7GU22CtvWbSdKd362mGRJyqh6HdhrsowqB6jhI6fN6eJnR+uEJarASkIGCk8FCpXdhmw3hWra7Q7Ydnb3Isog+gLEQvRaFxVtRNlTo6i5nE5uPI2iTOs8acque0nVWlXAqqrqqu22ClGieCtgFE0pr2Ug/VYhsvV3HWncpgFGT41v5VSNLExGlKaPdt/uXWS1VVSTqnUrzRhMlni0GVmaLBGVKmHSABFIBk8DSRQk6yIfqD5a7n4EFdUEai9KE4ds2Zb9LSsoWYJcRhecbz7afDe6GPGx/qOD7nHTV7cojDOLWyJhZNAtCE4aUiUWrgK1i3ToPwCkyB4RdeZ4nsf7ZWPOx1prv25/sihOFKNwjtwJ1+nP15/TF3/r9PWUF2s02ZjZ3037wknWE+rXBsp82BJJiTLHb0BWFSh+lSjOPkiWzVO9vFdTSYUtii11iwLSxFCRNCWKdN+s+2bHe8OlyTMpirQTjCXIOoKr2lf7d64kYfWd9UN/aaIYKJ/LR2dFdaLY1NNR0/HkCsqLDrT1dw0vbftSWk0u9s4osoDZCCS6XxST72/UXdiH/SgqRAHrEHVHIgoVzeAZTgMi5tO2LcegcfnDMntHZwHFFoio+S29kF8u0nUXSgB59gjNnFjUDFFGREETRQJWtbfqVrWVm7vqaQVVT1toYhFIP5BEfVD+jyY+JE0kUZOot4r64ZGWtSxTlSGruJGXp566r0tFeYtE8ZvoBMtgyqQqZb3tITGfYXD/AbsxSXZkBUVqYYgmVv6tRxKUpCbbrbs1Eh4+XG+ZHs4fte2HLZ0CZ8P8hOl2y1M2srEax7EeIRlfWZFkXX8u1/KnrqxrLo2TxLNujlQaXa97XGtRmYFRXVbdZjNsWivGh4giIzMVLmYzybray5XHl7s0tmOUTSCGSBck2nORrd16A7Ob7SZQudsjo80Ul5uzAqXGeU3DHllHI8LO/q1Anem2wCCVgBoon5YBvFE2Z7mE0VVds3tWC02ZJvrvpEhP0TAKzObvSljU6CmmzfKWHSmilSVjvVqxcrKeVfMkKmVn6mMjW+t2M1KaMku71LXUxKtrtUTFqKtTlqzP6ydrvNL1Z/OK6tW9QvKKKdLHhIHyyEEXOwTsECTqc+N4REVXSyuppC7PIkwWCit9pT6QOMrO0VmwnHdut2V8DtvdYXcgG47XLzhVkJ6jyMf9PQs4zuQXzieNSCKKAuWZXdTfVFwHXIetvZMQRafRe/7nWVE8/2TRFGm6d04L0ht7eztP3b2F6pFD/q2IqMj/lzHCw4ppueJZaaNszpolTc95u/ccJqPrLy7IYNVRIAqi+QYRpBVBF73QNm8x4UFwNfj/HzWnypvp6Km61S4P0h81rM6IKrYqKj9qZQnt7KVEoXqNF63p7/RnQmmaVCesLAax1rkowUx+5vfMvWcnSYpGLOUtvKVbSbEaMAIjglhnrWlyz/vvdRDN63W8tBV+1MzM9CWhmRPvKBEpvG50UYLYFXsRtKYzFbsd9jqsxMjN7/DipDMQVOq9P2rrnFCSVLLH+ypVusKPYsl4fowXK/KYbuBz0ACxQE6DMswqh9f8mnWVFFmTWX2RshZgaGCpUV5j52Dke1z+0zZt2xFi00XoGDDiIvKJwHCRIvRNTym2JFTYMKpSZVRGvMypxz6qkJHOleETKjNU1FBalOXys8AjVk9OKeMEueQ1lyCcqKYjFFi0tpDSHrznXZwg9vSCRe9C7OWmJc2UfJNJ0Qo+UFPHPFpMXuTGA5crB8XqSWXipd9gE/0i6TBjeEKJeiAVqWFlmlyabDUGyk1r2pTKsO3bsB/7cfAQeEY5Kz05Ra1S1GZtWlqGVim9XzQFO4s1TXFHpdI8tmBXd3VgZPT0UBgIXcjvQPgQv9WrpS1C9Ew8uc2pz3cahZbq5fvWCh2wFDwVGqAkcJLU81flYOEAKeJHbpA1qeftoc2qQxvHYpwJqfhAa69WTDjdvcA2zkJ5qhJCjrBU4iTkSQzpezVCm77JHEOrW+Qhq8rdpzoRi0UrbVRGN/pPei7TXjSUhBPPPzbIHNdRKAqiDImjNxiDrC8+O3DYSe9/YV114KFL4xrqPrIjvqg7gba/2/bRcJAfn8/6WVfPH1kbBRRIZyLSweXcBV4piuZZ5CeNWEA1JCIDtK3b5quCJmnlqjS/KHZeCSQH/w9WbAYgTE6s0sFy19oMzAcaatfVUDcmu75SMldSflJSo2GCTJE8PJ6UDL871kbuUM43VadWJuqlpqSTbCQ60M4U96fx8AgylP7VUEoXYCZnWuHxVTQyyuYA546EwGGt6gQVxTNyyqjsvnENv8MTLHAmes6KQcp5yjmLi63wVYaidCQR5spkILmkUcvDZD+iGpthgmrsTNTs0J0IG2ltTDVL+1RKrmBvFxgvlc2U3AOKhgHLVLh08HyXkSTORaD11VGD31WWfPqkEZEEWHoLACXCBImqNKqxm6wtomCkcyfqleZeKAYzUV8VjtZkyExolHdCvVx0pYILMLCaZpnDL5p3MB8G9RTzs0xEicE07ysZUCxWoPIEiclQ9MCa7dkNysfJzDIveVl0TyiltQkmhpXvGgRFh3Hw7NKHuRpYB5AScFo0RpnbOIzb777JOGz0QyDByEgEGSqom6WJIrQ48nI+UIRSsOcL3cMZqJB6/Hg/GpDTFOmebboTJ0IBFoEiGeoJA5f9rxgy2I0bBmKoEtiSpayu/f//9KXUM2vZSrV1gQIlOZyRc8jDlo+WzaEwTJsAiS7w3iqY5XVYuerHL3cV7P1Rioa62jg9GnBIKx/qGdar+5SZBpWXSNpIULGAsja7ePDGIBAPKB9UHKligKeFogcWu/S7s9EmUnzyUFNe7EEGgys756816Mv7xDgv5Y+KwEVZZLy22EZf9P+jfHyy+PQZTURwuPIo+JuqvhW5dSW4dhgFc3CpiWfjsDY386nkm4X1BRCmkF+QFFz5XiqjJyo0lzs2a5mMMOgOBpugBiRWgASIt6qNhKZqaXhado1m4pbV3dREuQUUyh2mIAu/kCmggcyPqXJFMXPLOWpa8dAfMjT4CDQuVuxYC4O/i2+1LrbkhbJM2RKrdTSYFImr336azB0aD/9YbSKfzFxVk+UEYhKpXndIyFjuQXEAOpWCMR4pMc25ddWbU3cTZ9ZynTZSyo8F1qB1WX+ntC5pherY0Oj0VnkxNEdXvpwAzxTCag7iiznzTimJ1iDaaILC4WLRsO3ExRHWv1JSbraS+2bEnirvmHTfsUKP/FCJoVijUkrBvojHLicoiM07oJUMGuGeUxLPRDDJSidy6VvoQD5H7eSfaPcE8yRvK7uV0HyKs7/+n34CHR2uy7vpg7IAAAAASUVORK5CYII=);
|
|
pointer-events: none;
|
|
}
|
|
|
|
.color-picker-wrapper .color-picker-panel .color-picker-grid-wrapper .color-picker-row .color-picker-grid .color-picker-picker {
|
|
position: absolute;
|
|
top: 70px;
|
|
left: 70px;
|
|
width: 12px;
|
|
height: 12px;
|
|
border: solid 1px #000;
|
|
border-radius: 10px;
|
|
margin-top: -6px;
|
|
margin-left: -6px;
|
|
background: 0 0;
|
|
box-sizing: content-box;
|
|
z-index: 99;
|
|
}
|
|
|
|
.color-picker-wrapper .color-picker-panel .color-picker-grid-wrapper .color-picker-row .color-picker-grid .color-picker-picker>div {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 8px;
|
|
height: 8px;
|
|
border-radius: 8px;
|
|
border: solid 2px #fff;
|
|
box-sizing: content-box;
|
|
}
|
|
|
|
.color-picker-wrapper .color-picker-panel .color-picker-actions .color-picker-action {
|
|
width: calc(33.3333% - 6px);
|
|
margin: 3px;
|
|
}
|
|
|
|
.color-picker-wrapper .color-picker-panel.color-picker-show-inline {
|
|
position: relative;
|
|
}
|
|
|
|
.color-picker-wrapper .color-picker-panel.color-picker-show-hue.color-picker-show-saturation.color-picker-show-lightness.color-picker-show-alpha {
|
|
width: 230px;
|
|
}
|
|
|
|
.color-picker-wrapper .color-picker-panel.color-picker-show-hue.color-picker-show-saturation.color-picker-show-lightness {
|
|
width: 210px;
|
|
}
|
|
|
|
.color-picker-wrapper .color-picker-panel.color-picker-show-hue.color-picker-show-saturation.color-picker-show-alpha {
|
|
width: 210px;
|
|
}
|
|
|
|
.color-picker-wrapper .color-picker-panel.color-picker-show-hue.color-picker-show-lightness.color-picker-show-alpha {
|
|
width: 210px;
|
|
}
|
|
|
|
.color-picker-wrapper .color-picker-panel.color-picker-show-hue.color-picker-show-saturation {
|
|
width: 190px;
|
|
}
|
|
|
|
.color-picker-wrapper .color-picker-panel.color-picker-show-hue.color-picker-show-lightness {
|
|
width: 190px;
|
|
}
|
|
|
|
.color-picker-wrapper .color-picker-panel.color-picker-show-hue.color-picker-show-alpha {
|
|
width: 190px;
|
|
}
|
|
|
|
.color-picker-wrapper .color-picker-panel.color-picker-show-saturation.color-picker-show-alpha {
|
|
width: 190px;
|
|
}
|
|
|
|
.color-picker-wrapper .color-picker-panel.color-picker-show-saturation.color-picker-show-lightness {
|
|
width: 190px;
|
|
}
|
|
|
|
.color-picker-wrapper .color-picker-panel.color-picker-show-saturation.color-picker-show-lightness.color-picker-show-alpha {
|
|
width: 210px;
|
|
}
|
|
|
|
.color-picker-wrapper .color-picker-panel.color-picker-show-lightness.color-picker-show-alpha {
|
|
width: 190px;
|
|
}
|
|
|
|
.color-picker-wrapper .color-picker-panel.color-picker-show-hue {
|
|
width: 170px;
|
|
}
|
|
|
|
.color-picker-wrapper .color-picker-panel.color-picker-show-saturation {
|
|
width: 170px;
|
|
}
|
|
|
|
.color-picker-wrapper .color-picker-panel.color-picker-show-lightness {
|
|
width: 170px;
|
|
}
|
|
|
|
.color-picker-wrapper .color-picker-panel.color-picker-show-alpha {
|
|
width: 170px;
|
|
}
|
|
|
|
.color-picker-wrapper .color-picker-panel.color-picker-panel-bottom {
|
|
top: auto;
|
|
}
|
|
|
|
.color-picker-wrapper .color-picker-panel.color-picker-panel-top {
|
|
bottom: 100%;
|
|
}
|
|
|
|
.color-picker-wrapper .color-picker-panel.color-picker-panel-left {
|
|
left: 0;
|
|
}
|
|
|
|
.color-picker-wrapper .color-picker-panel.color-picker-panel-right {
|
|
right: 0;
|
|
}
|
|
|
|
.color-picker-wrapper .color-picker-panel.color-picker-panel-round .color-picker-grid-wrapper .color-picker-row .color-picker-grid .color-picker-overlay {
|
|
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJYAAACWCAMAAAAL34HQAAAC/VBMVEVHcEx/YZRsq11jnYp2lXKEZYmShGCagIB+f3yAfX5up19rZqKRT5xcopqkW2qAfHxdaqmYl1R6S6xVaLKrR4x+QLOMAspUU7utVFSmX1lWp6ixRl4yBP1CL92BAPJCTMz0AH97uEi9PUtet1ulQ5pYLNJTv15JU8M9AvZXAOnLLzywL6VXtHQ8RNWhl07ENkN8u0S3nD2sAM6QM7RoPcGvOptOurU8H+ktLO6DKMF3AORRuo5L1E0vP+aJ5ACiAMiatDpMzVZ5HMpH+ilqxUWAANmyqzVRorSIzyheB+BG/yhLxYBeOMd9/gBJfr3STCidILi0FrND5EjBJ56/hDnUALnUJjWQAOOYqkS6ArflAI1SAPxFz9HAAMlLxLfNGpS4ZEC8AMBnD9mA3RtvzDvJKW7QAaqeyh9cAPJoAPnRlide4DBHncXaHy/CtCSlANxCBe/sAJM9y/HBMnOWwS+zlUT1BxNx+ADEojCsuCvPIWVO8SzaFlrrAEeYAOyVANZD7D46cNTTrR1zAO2C8ADuBh1C+6rCWjhSx1RE3rgzXd8+td/gFirjVxjnDiPJUzBl0TtB56Y/9XpA5G8tW+/qAG3pAMDJezBGvMzSAMW7ANexb0a5Ono/pNU4h9ziCVJD2to3l+WFxzTWEIBIzZNJ20frbQ5BdMg/7WF+APzcAJbFwQ8xcOg9wOdE9vaY9gDScydE15lAkc612ADaRSFV5jHgAnRH0LdC4JFb6yTaix2Z1Q9y5RngtwIyh/ApSfr0AFw0nflF0nc4qu/fsxBB/I1p2DDEyQDiALAoJvnbaB+r0gJC4Oau5QD0ADlC2221whlD6+9D+sT1eQDoALTriQU5uvr0WQVA/m4sZ/pt7wuf4AD0AKUwgfk/2PlA64XRyQD1NAte/gRD58jjeRVB8LXsowBD8NXRANHrUBGV7gDnMxb1lgBB9jtA8pjjlhHtLhL1tQDpvADI1gBE+t3fNx0//kvgyQA/9luxAOdY9hdRIP33AM3H6gD21QDrnpHAAAAA/HRSTlMAOlc9MC47AyQaSEZQT0UOVk1fZ1xvqHZiVGBx+bvqm/dkg21opHuI7NKnh2KtXJZ3e9F9gXZ/y96KynWmy8u4gpea7oO5jXCjwfmJk/l9s5WhwpWLzLbab6/a+K/cj6l+xLC0lKC5r+TxrLmMxKvk3unkkJZp++qaoLHcw+b0x9Gpudvc7fOQi7u+vtLW36KgzeTD3+X0np3n8G+ArrvVwcyKu5mz5ZPV+8jG0ND6+bCtn+TDxtCivdDAvsPY4PP29KLfyPWs1dfyxM3U8/eyu+j09+bm9fb29Nba9vT20uT498/T3+Xh+Ojp3fXk4dPr9+j09c/29eb65VLGWq2zAAAbp0lEQVR4AbTSsariaBwF8C0uZLSReQSbLQf2BcKCU12w2VdIYSFMtYNFGgufxNbCIlhIcrtBiyBYJ01IGbDQgIFAwp7zHROvbKWj5/y/7zZX+PH/8sdjsSzzp9ftzh1nNrxkyS5njj/vdnvt/706Lcni/aU/jyYNSCiqmmTx/OsXq/33l6N4dfpBlA6HKfsZpl5SLavY75utvRamN3n7HqQpPDgs5tak7ESrdqO/3177mpbZU5Qqza4mlw4zdZnhBaHaIbyrqgr7Hf78ZajuJm1RDDgYXtkkmxBlXBjK0Fb279dXwIRap0pLapJxMkyTHatUHMAWgj0dVd6gWEzr0vxfpuSEbZ8L4+faX9+akHKizNgZTqYyMaZ15WyeE/bteR+/ped7f09RoMp0UqYlVJxIKoxCWJyhOxxvh/G8FpbrKa3nrKqzgQcgzCAtSwxQaKRSM2lQs5gqljDPy+DCUMUUVfWj84SF8f0G7whhg8GAKKhwGhQPaUqsmngsAljewIq8zn8+YWGdFU3oIJXJJFKVGYvYMzvG2EI1MgUuhq6iXnR+9wG1KoSbGtyoGhQOQJFt02WThQqlyoUBSgsrfj7+kNz0mCK9Hsu4ZeQKpNiqIRF1VYWSmSRekicJUQWmqH889JBSva20KK6KKpBcToSuozUmClCgApxPCdkYDUMPs0WvMrl+vT3m0gNKJdSBKHpciDjBGqrAxgCGtiZcuAXzWMCgAiopksKkPn17wIVf/Nl+VIblKmuXMESmQNcV5XNCtskWqu1nWC5X/dcDqt73K+pQHg5YlFRrJWAVuRyM7ftmkBC41oVupWKIkqt3z8KosqZGdSaKdeGiSlkFGFVxnMABzMcwlIUsURyuizEqDHOs619w3bWrKUgGZUwKUVOYVpgAE4w5YwcmFPHVNnJpX0IZ1yk5FafiiMp1167OeMGzUR0uu5pOjUohiKaxTIzf0pQ9G+4X4UIuJpELLLqOd7i4K6D0gIwL1dSlaXolMbgdtg1NzsgfOaP9SCq6wsUCNKI+WLOuExZ2p6v3z9mozvyqtCqoDEoZr8bKBqaNs8E4CkAYXD5qVHt/sSdsi2GSj+SDr0jYsf6PUfp3UeSM4zheJGC2SPrUga1SeP0WI4gMKZ/q/gAhoGBlwOnEylK0SC/MIWydRrA51JQKy8B0NstUJsNeIZZ5f3/snHFZuffn0frFV9VV+xZXrRZO9r/CRLCGEqqhoTxE3a2QfLENkwcMFZ/HPfcC9vdaryUwVUm4voHFRccniVudDMWheK+o0O3yaOsoLd7GMaT4d1vVXmQOI/sdV+4ihY3sZ7ytusf0GyxR0bBChb9CcFLaVVNF8icwp7nqyrXWc9GXlaGsD7ddovr1ZL2qxOUsmZBApVueNond9f9ElrjMYdr6ceUwy1x/iOuW6vtzpTKUFYbBTSwV0gMiKdZPzKtKZKB4PZ2oRvvHESiGye5VfCleipcjK34Q1w3W4pSL6vyPzV12qJCG1FSgJqi2hmrHk3Zs6+sSGzST7Xuo9iNcj+JyWCGu4kVdpbDeV+1A5afzWV1DLwQeQXKUbOK1mZnmrN/vywdaX2BJDxcpDJep1nYuVRXH4wuv876LP1Z+yoGdgeE6D8/DxTDgoq6oBHVtaiOS5u2+TWEJMAKVcC5ouBS2rmDFqtCO0q2/1x0mdlbUYohKClpqQXp4mBgLEs9JHIvvOSg+UiLTkHGu3giYumhVMnMdxUV37x5rlkt6Ky4FTGYopipcrmq0G21HyeZ8LHeZzFkWMP0hpXK1KgvLWEsA7/yEudxKroVJUcFDZChC1fiKarqqQvEi1mLOctioN5LWI1OVnAtY5ud6OtrPeK2q3eWWqXCJLCzsWMa6VLExa7abzeZcnruieWQuWzJQl1fBRFaWRQkrO2ageHe1Ny6knx01ZQtHWeklqtEQlZukuY0XNTHJosqVtBJgg+pe5lquS1TqyiRQ7E8Qb1Tf5do0F5W4aLYIszDzv5VlpxLTuDnmVF69WY/qqOoRCawV8aF+qyWsQW+Aq2Ou5VdYxr04Vwbr6eknGNes2SbfiGrKtRZTTELipWGXpjtXNchUoC5Jzfq8DozHyaxWnweMg8FCxRt1Xs+1LK2MXHV8hnH9f0fFBDVV1Ewmt7pUTQTVGNOlinmRzeJiLWswUFiHAeNaS1wKy3juIv71V6zDRlW45FYHcQlqls52otpVtxJU21X35vHeytw1aAlKBqwDzFzlsnwun02VPUmfKparfhTVZrpBpa7FQVG7sEMFSlUPpiJU97J6/Z699tFG0cfoQ8RzGDKpg4vERahKdT1/ypi6fr46178byk11OCwOB/kFSVSK+iykCmUm2S++/7iof5dG8zUM42Iy8Qeo2CVOFQ9MISHuNtOkWjicKVKkEZlCgrVg6XD+AQ2BiSKnyIDNFGHLwYAwYcvANkE46BaWizghDIKkiP3e1/0+8VXv7zvWH64nTPGXYpj0Vy49XL+GauraA/bHnnJpP/6QSqxQketlrAwqaqHSDQUDRS2p9PUVC1W4hHr3DCVTsWhZERhDJhXvpYvJpQHDRS3trxu95chl1lxvqnqQ6m+pREKlwfqtb1TEkujfoORhxaI+w6Ty836V6iMos1AxUHZFLY0rkgvXX4M5syLWkVmo5EqGCpdUfZ2wn6oUy6p3Mv0ik2HTpS7LtP/wbwuYVJbhOhcrYL+LFbVubnLkClbn6E/BHh7+FGtq6v2v51b9//f7UqWpqGUTC1CszGdYWgyUVHq42nvtvb1zPbkGkStcN79zxXOzvAWp9EA9/I1L61GrZ1fEqv5WlQpUqDDxSsXiLK9cjFcufyx/PNAzzDNrq/3fNjBcYsk1+DGwy7vxFp5irR2hItaDbwhKD1W3z0ARqwoqbYVodlYfJqlm/ZcXrgNUoPTsUq5pL2CDAarWj5ZQP8ml5Z9yPRzJpScVtaTCBStOqEerKrFeqfQZxVDxmGAHliUwVFu42oaBOlcsw2C1xPrpWq1prOyRBwrXqV5Pk6obtaqoxHpXfaaaLZVmS24VpNVZfVJFMooJdRAsw9pbbUYsZKAGLbvM8t6IBOv9tVUJDNSpUKolFCpGK1geptK/Suo0Na3qLeqPPv5A8w40BUOlz7n4ccnVxuVY5FKt1k8GqxGsplmghg+nuHpJLbn6uDpCdarVpFUFFCrdL1CLvNXFVVTJn/JqorJLvQzDFb1AwTo3atDSVAvV7c1tSyRt5QiWJpVrnfbI1Y1aHb1qh1awKvqs8gWZTXrMOE2uCIbLuXZR2ZUscTGuqEUtwRYca+3aruFwmNTyEXEJ5VgdVBoomQKFSqZYoPSlwdJeZ2e4XteqOdeFYqGy65ZceaG4Ia6hYHKdaj1exOp2OvzgvUqVVBVYmlG8WG41PsvC5V5n+txrV6zGVrvRbp+0z0+ACRUwq+y6vYC1MoQFClW4HMsqhokTVipWGcWWwpRbzOnj8a3mpocExTujl1CwtoSCdeJaA2At716o8c1Yrp8r+nHNX7Ph9ZChEqvZa3Zxdbr6ZXFEt6qkrbhgisos5jKAsvqHzrJwOZdqiQVMtRoNcp2fiFVDdXHRupCqJZVqsXn9uJaEUq6hckWsJq6uJ5NVsKSqSFV5qcoEKptdzAYMlVcoF8rlfOI62z3bNYtcjRNcqOxqPVLrXq6xXQWx6pNrL2rd4aJWE1W4hOJJBUqzagmUXjaTy2anHyzTloElrrxUZweqFS5UGrku5NJc6165xrBqYt1N4oij4fBOKsWaqr53I1YdV6qSySqxMjk9SjGpwhV3LNh1IJZgUsnV0KJWjUmlWo+PqiXW2Kx7/a81MitRJbAms+o7rDqq96g0brg2W5IrLpiR5NWe90prabuG2aVYNeXSHEsqXKqFa7wyszS51htdSzUa3lkVR0QlV73zDCXVmmP5gppSZUIz78/NQJlV8O8rjyt+XA3vhBll1qOmWPfUYsszmQmua7mkkuuueUes782uWVLV62IFTCh9UxawqWl+Puvvda9CgVxn+ahFLqka7RTGkiPCAvZpeeb9BJdVI6F8Q7s8u6p1saxaq4AqLeHKoEpRLGzhWpbqqVY+cr2u5VyPzCyjbm/XZ75+m2hSadSKXD4iLmqhwmWVY6lWhvmCoVqYwrJv7DJMrkJBudJaCWzzda17uca4DgV7nNmBNZqMolaodpoRS6qqjmjWh8qaVSVU6QXDtMBskytYObnSXG9BrTfWA7VR26jVti+2n9fSVOvT9sxILM2xEtfXZrhYnb0n11OtJU2stFWgPFi4gAmlM0YtsXYFW49aJ8jkota+XZ/FOlassVjjGVTUsutSKNX6imoHFSckFrWIhapkV4Y9tXo23xFV1PIV+c2/lYpayrW5KdbGBrXItf+4r1ifQ8Vmvn0T7GoyuhqNLqMWqp2dhBW5NFjA1vhpZZJaLFQrCytauMhlF78uzmgXseQSzGd0re3atnKpFbXGuG4Pb2FNzJJKrEuZpEprpSipPiS10iOCCpVNfImLI75RreWopbmWYMSilmJJRa19u+4/Hx+Pjw/Hh0ktuVBdoeKKyIgl1xc9WC9qLRlmVbiilWeWXZGLWuGySrWUC5hdgnFDxdIN5To8/CQXLMGutNHV5aVcrrWjK1LrS93zb+vDhzVyGRVHfCNUqpqzCpdryWSVXPlC1JJpN1BinbgWsfZRyTVWrLRWmkswuXbkmuYySxNLrcIVtZhZRs3NGRZX1KJWxHqbf6ute5uNzQ2uuL3hI+671jFLa0n1jVyXV6DIFa4vX0BxRKvIFTfMxBHnpzfEpVkVLNeasoC51m6C0v6hy45ZGsv3MI7noBkcPKMhKnLHYkACgnKZ4uK8hdvZCFMNY5UuNkkXYpFiGiPTBSxiYrBIYxqLlMGQdgjY2K1vZJv9Ps/5+/dkmH3O2a0/fH9HdtFDzbWIda5aVsVaWlCxW08oYmlWwRIs1lpZt6toFjOLYLlaLLpAwdKyWEvf/LlqMcdaquVZRS2jQq38DR0r98knq6tFAPGI+VrFNdcyioVYe47FT6JgIZZZ8YjLtaxaquVcYl1/r32vxVrxiFktJlZwebGWYrlW/tvady7fEBdDZReqK1S5b+sl1nIsFmOJVcvdUK4SLKmotVKMuQQzKqrebRQDKrDeVHbFWkax5Vq4nl6e6k/1X3Vc49vxbee208lqMVrVvtRwsXDEEizDioplVlTFWIYxwbajy6w/1mKB5VrEeslcsMawbmGBunmrBcuxYi1UK3z0Ca6Qi4m0FOtdspGASlVrO9zQ+70WMyrWCixcT3VqOdZYsTqwblDFWieZawvWxw/Khcoffd7lSeVaSVbLKsf687cVXeHbWvxYwPrlWPW6XGOmI37ruBau2nWNWXUCa+sjsFI4onOxV1dUGaUvi1gptbhhXtX43LBrGeVcF6HWz8I3WKxeVy6OiEojFqoHw1wLFHOtErnWlStZTVbtEkw0o6ziP9QJKrn4tshVMay33wMmV/Wwetg8bH792vraOm+dXw1+Xl3gUqwF/xt4K1bdrHFduTrjDrluUMkVcqkWqP9ntUqhlmDulV/Rs8modFuqPaMci1yoVAsUr2oNrq4GoPRtLch1XvjyEllW4dK+KdcDucIRayfZFV9zrWtJAsyKN1RgbSRsI8XFDdWq4iP2etkRq66Fi1qt1vkgq0UsclFrv7ASbzjmcSx241xy1R6yWie4lMu1fEZ6JcqVBYsPS2xisFC5lmOh6jWCixPycMNzsQa4xLJqsVH4AOq5/vx7LVRZLatwieVauJCt08tfPSv+tqQoVdYqRcUVaVURi0+rwT5X2WGzKRWxWlIpFlvItVHYrMMybD4fz8fjoXK5FiymWqBqjnWyBUyqeEaCofgTSqo0zVCwrKKWY1XjF9/UFz9ANfg5uPANtc1CYfzy/GxVvW4XsKFZ7NqwUa0GiwEjFzAWYIl7BVrC6xm2FKsSb8g4oWsxYimXXKq1cK2rQqFwrVix1tCqTl+sh5tQSy5f8TWXYeshWHDl/vFX5VjbKaqKVMd7xz3W0BGrjQx1SCqjtAvth1mfYX1Qref58xyXYLBQ9W/6dmkjXCGXVKwUWXlZ7JSkSUQ5FirFQhVqMcNayjXgjLAMW2j/gbUmlV1iDckFDBe52gGFamQVtRixlmBJHpbaxBNZ+VhWGdX0Wl6sFY64VuBXuvXg8obzoHKurJZcZkXYksswlvBYtZGup1HF587yqhysxataUgXX42JxsalfgHeM0mOVlqna5GqT62E0GjnXrlTBpUVXkKV2gcq3Uqze8XFPLt+w+u+1HqVatApifUQ1e57Ns3FERi4GS1MsXAeG7VoVZXmaQCFUbLXtVpU9VOwoxmra1bprtSatwcS1uq+w7E93m1bNZvNZrNUfGtV/aLfbqsWodWDWbgYrlXlKpVSqNDz6V15VNkoXpFaGOn2NddZs3jXvgmvQFap78SjV43tQvuIMl1TT+XAaWFq7ryu2R94BuQ5Q0QuYZQHmxyS/nk1BpVHrqNcwrHpaPauiakoFajJRrq5UdnFDs2qvtaZvLqZeDBYwf112MbvKeoDx2lVO48rbfsIBM9VR7wjV6WkDFaxm8+xOtVqZqtvNXNp+YK2B8mBNxbo3TLGAWeVcB2ZFWEZDpqccaOXsdSzPKqGscivH0hFdy6yoolYRkjfPUOQCNpzC6t+HIzLDdEPBdg+s0uNepcyV8v6NR49LlaOJcUAeq2AZhUmqyUSu7qTLHruONXj7E/pbLXY/5JHrMnONeD/xwLLLufKXZOiE0jBVQPHuhBMe6Tk6PTpl+rAYJzRsAkwurkgus/xzaNZ7mf6aTWdSDYPr0i7vU/uTXcy9rNrh3draMSs3QpkllUuZxSjFe6ZYLK8ahFqefw6D6wGVnqlrTe/vVevysn/Zvgwu9TqgVx62u2OYguW2A2one44r/4uq5Vh3Z1HFrAqwaogl1kpQBdcwuHhw/de1/mHTDnlUR8MojsvJzU2uuLtMsoIEQ1ZsUO1mqahBV5RMEMU0rHh9PwIWzbWbbMY1o5Gw6/oBMCTMJ1mz//M+fQIlnPO0Zswvp8jxvVC5a8T9REffeX2PReQoQAlnKEyKxlJAkfa9PbSHwxqQ/bQmsL7BcdfL3/9+ElygVLL72MVs5VJj5BItNRg1GSSOFyLd7zTB5VPRe1UdpBIK1uFHlE3+oYcXV2mur7AkOwLbSyXXX5jobEvNpJIUFnUXh4cAsheoxIpJedgq2FaMBWqNCpSxfKw+Rxvrcy+VXD6Xu3wtXAOZwzzAEismldhWy7dlXXN1YKsACtWascSSaoLqx70J4X+fyuUo1/5j7yoy281mmmvWuwqhuBSWHkjpiCPGSeJUBNcQpd5QPLiiqqGgJpNfoAxcR1C6PTBz5dDMtQXWuwqTAaOCcSNvYrVoKV35W/lWSvV2myq0oSVrqYhQMQdTPcx1Ya6L5sKFapff5nKXUMWvqlieaEqpx1CZo6TSVFUdFMay9CjGmkTYz0AeXB9SXZjrDpZLNhbMXbbYEAYKUpoNZJikMhcqUtV1FQRrB2s1uJqnY4n1FRRBRVDlxkKFy/eamorgSovUk4DK0ixJcGWJRGpJ9AF9qypYTNX1qoiKrm9iPbq2Ut1gchGDjW8uZAVngYamb8KLwMKUlVLpWZZLpVqGZagctWq7dt3RJrqiqn5QGevLQJVTg6HizCWVXG6iLrMktMy4HsVQhqppsKxAoeo62yqirrCe/WO6fvXmOl32p34vssOVo7LBJAM29S9JMmvmsjI+pUdbaaqKT8hJJVdUdV2zPkvVoLra7/2JaweJSjXfz/M5exFcYyabjWWiqLhiWjzAFsaSyFWATBVjU61Ct6JSrc9RdUV1vb4/VflnPJ04ZMCiTCquDzBVsEJdeDNVr3IxmOpVKNuKbpgKmI1Fzg0sVLCaL6Z4/hmlAjU/MRcqarBoUqWywMJj1SllhMn2ioiCeq0sYRO4ldLFYKKm8k/43LU7Wcxlsj/uB/tzNra9PIupOI5SSrpcaCi5XLWppNqsglTRde7OqEAp9ctzlcKf8v97uWMUt/EwCuDbDJNAILAMTuPxNmuQWm+CEsMiGFDhbofFiMGokCu5kk8gF76DwbqB9yTjPqUPoCsYqdj3vmd5/2YHnDHOvPdJaTLix2czU+n/H4uRC9W++M3v37sk1gl2xIvTecQ8mSqUKtWuxPqu7JR/zrxD9o6mLWowuYIWpkxBM5tkGpJQoWii6gklKpQKGadkaVdEsczNuVfuaqjYr6wlkCu4D1oX2p8e2ulPH6YPnamR3JAUhqFUIUjcVapdraVql9XcnX9B8RNRHLm0L8RgI6BaGVCtCwXMoREV8qIsTLktyxhJoHpeG2q1W62g+nJORddv2zbOvph7ljD1mA5GjVpUyCpclQIRCpVQK2RH1d9nVWTd/nnqmgumcGHsCU2wCK5OhArFYVLWkhD2DBZd6+8rwHbNrnm+Pa9iPsLVNZa3/eoRdmSNOGAh05GJlAjtRBFRrEgWmQZAjdOE24KJqpWFqh97sZr7CrrbbtdUW48qNJgHgU8YaxuzRCOIMLwBxAkPlQqzMFU6GJsqWTPcFT/DZvyDKrmgoos1lWA+KhijlUFmKoWqA2qBDhaDQaomljU/Q+zKttW0qte4GMEoQwDzLSP2mIiNRJNrEYG0ACrEokKYBsmAH2C7K6qY16no+iiX1/WQOcbia2EuLJJrGA1Jokgm3rAqDJLShVAl1gUqpd9VPMEOLgwj2HB06JAq3kzFYWAKTSWUWEJVaNM8UvXafGr3tT2F+S/DDq6hSFIx/1NV60qqL5cdgVJ7Ly3MlQ1ZJ4u2UqFSyVUm5bqkaoU2q7tLj2a5cb9gLczHACbVKWwhWawO2JxN8qTMaZKqomp8Q9Vlrl/kcheWoYAhS193RxazrkoosliqDFU1T3z85YcR1XNDsUzm0ZXh8jOIlpjhcokLEy+pQhmYYpAULqtkqrJimup3PvvinP6mcGAcyATz5WJjZSFYTlmCQrUuOVI9vb/CQVd11zLpTryJuSAyVLak65hYVSA6plS4Kw5Whcde4ViwvlgeXTNckim0uTLBclUq1mKox/ZYsCssLGjXhUIml0xy9di4t4x71riAqXgBlX7Qqq7hcmBwcWbebJbNMk6PFYtjrLyXF3EB1z4v9vl+X3KqfZXcXfW8RT6pnhuLyVTIUKpmuBCZAJKKFYoF6sNPOTmwDiaCWWZwIT3dem0KDFwFkhfFvtgTxqTXRjmw/hGlysQeYSApRJHElH9dH+XC3te+I3PS28w2vU2xAQttXdgWMvj1/c9CCXbLv5Sfp61Lsg27AQwuylqUTOEfN/rJNziGtR5lk8lGbV0gbYhSC5risNYxrG94aG394GdQIbg5KTBI/K1+d8v//abn6eqfuv48nS43J4k70bcaW2IuJf0L+L3oUNPhVQ0AAAAASUVORK5CYII=);
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.color-picker-wrapper .color-picker-panel.color-picker-panel-round .color-picker-grid-wrapper .color-picker-row .color-picker-grid .color-picker-grid-inner {
|
|
background-color: #fff;
|
|
}
|
|
|
|
.color-picker-wrapper .color-picker-hidden {
|
|
display: none;
|
|
}
|
|
|
|
.color-picker-wrapper.color-picker-disabled .color-picker-grid,
|
|
.color-picker-wrapper.color-picker-disabled .color-picker-hue,
|
|
.color-picker-wrapper.color-picker-disabled .color-picker-input,
|
|
.color-picker-wrapper.color-picker-disabled .color-picker-opacity,
|
|
.color-picker-wrapper.color-picker-disabled .color-picker-swatch {
|
|
cursor: not-allowed!important;
|
|
}
|
|
|
|
.color-picker-wrapper.color-picker-swatch-only .color-picker-input {
|
|
padding-left: 33px;
|
|
padding-right: 0;
|
|
width: 35px;
|
|
}
|
|
|
|
.color-picker-wrapper.color-picker-swatch-only .input-group .input-group-addon {
|
|
width: 35px;
|
|
height: 100%;
|
|
border-right: 1px solid #ccc;
|
|
}
|
|
|
|
.color-picker-wrapper.color-picker-swatch-only .input-group .input-group-addon:first-child {
|
|
border-right-width: 1px;
|
|
}
|
|
|
|
.color-picker-wrapper.color-picker-swatch-only .input-group .input-group-addon:last-child {
|
|
border-left-width: 1px;
|
|
}
|
|
|
|
.color-picker-wrapper.color-picker-swatch-only .input-group .color-picker-input {
|
|
padding: 0;
|
|
width: 1px;
|
|
opacity: 0;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.color-picker-wrapper.color-picker-swatch-only .input-group .color-picker-input:focus {
|
|
outline: 0;
|
|
}
|
|
|
|
.color-picker-wrapper.color-picker-closed .color-picker-panel {
|
|
display: none;
|
|
}
|
|
|
|
.color-picker-wrapper.color-picker-horizontal .color-picker-panel {
|
|
width: 150px!important;
|
|
}
|
|
|
|
.color-picker-wrapper.color-picker-horizontal .color-picker-panel .color-picker-grid-wrapper .color-picker-row {
|
|
display: block;
|
|
}
|
|
|
|
.color-picker-wrapper.color-picker-horizontal .color-picker-panel .color-picker-grid-wrapper .color-picker-row .color-picker-grid {
|
|
display: block;
|
|
}
|
|
|
|
.color-picker-wrapper.color-picker-horizontal .color-picker-panel .color-picker-grid-wrapper .color-picker-row .color-picker-hue,
|
|
.color-picker-wrapper.color-picker-horizontal .color-picker-panel .color-picker-grid-wrapper .color-picker-row .color-picker-lightness,
|
|
.color-picker-wrapper.color-picker-horizontal .color-picker-panel .color-picker-grid-wrapper .color-picker-row .color-picker-opacity,
|
|
.color-picker-wrapper.color-picker-horizontal .color-picker-panel .color-picker-grid-wrapper .color-picker-row .color-picker-saturation {
|
|
cursor: col-resize;
|
|
display: block;
|
|
left: 0;
|
|
width: 150px;
|
|
height: 20px;
|
|
}
|
|
|
|
.color-picker-wrapper.color-picker-horizontal .color-picker-panel .color-picker-grid-wrapper .color-picker-row .color-picker-hue .color-picker-overlay,
|
|
.color-picker-wrapper.color-picker-horizontal .color-picker-panel .color-picker-grid-wrapper .color-picker-row .color-picker-lightness .color-picker-overlay,
|
|
.color-picker-wrapper.color-picker-horizontal .color-picker-panel .color-picker-grid-wrapper .color-picker-row .color-picker-opacity .color-picker-overlay,
|
|
.color-picker-wrapper.color-picker-horizontal .color-picker-panel .color-picker-grid-wrapper .color-picker-row .color-picker-saturation .color-picker-overlay {
|
|
height: 20px;
|
|
}
|
|
|
|
.color-picker-wrapper.color-picker-horizontal .color-picker-panel .color-picker-grid-wrapper .color-picker-row .color-picker-hue .color-picker-slider,
|
|
.color-picker-wrapper.color-picker-horizontal .color-picker-panel .color-picker-grid-wrapper .color-picker-row .color-picker-lightness .color-picker-slider,
|
|
.color-picker-wrapper.color-picker-horizontal .color-picker-panel .color-picker-grid-wrapper .color-picker-row .color-picker-opacity .color-picker-slider,
|
|
.color-picker-wrapper.color-picker-horizontal .color-picker-panel .color-picker-grid-wrapper .color-picker-row .color-picker-saturation .color-picker-slider {
|
|
width: 2px;
|
|
height: 18px;
|
|
margin-top: 0;
|
|
}
|
|
.nr-dashboard-button {
|
|
background: none;
|
|
}
|
|
|
|
.nr-dashboard-button .md-button {
|
|
box-shadow: none;
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 0px;
|
|
min-width: 0px;
|
|
min-height: 0px;
|
|
}
|
|
|
|
md-card .nr-dashboard-button {
|
|
padding: 2px;
|
|
}
|
|
|
|
.nr-dashboard-button i {
|
|
vertical-align: middle;
|
|
width: unset;
|
|
}
|
|
|
|
.nr-dashboard-button .fa-2x {
|
|
vertical-align: middle;
|
|
padding-bottom: 2px;
|
|
}
|
|
|
|
.nr-dashboard-button .fa-3x {
|
|
vertical-align: middle;
|
|
padding-bottom: 1px;
|
|
}
|
|
p.nr-dashboard-chart-title {
|
|
padding: 10px 10px 4px 10px;
|
|
margin: 0px 0px 0px 0px;
|
|
text-align: center;
|
|
z-index: 1;
|
|
min-height: 10px;
|
|
}
|
|
|
|
p.blank-label {
|
|
color: #c3c3c3;
|
|
left: 50%;
|
|
top: 50%;
|
|
-webkit-transform: translate(-50%, -50%);
|
|
-moz-transform: translate(-50%, -50%);
|
|
transform: translate(-50%, -50%);
|
|
position: absolute;
|
|
z-index: 2;
|
|
}
|
|
|
|
.nr-dashboard-chart-container {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
canvas.chart.chart-line {
|
|
/* full height - label_padding - label_height - nr-dashboard-chart_padding */
|
|
height: calc(100% + 22px) !important;
|
|
width: calc(100%) !important;
|
|
}
|
|
|
|
.nr-dashboard-chart {
|
|
/* full height - label_padding - label_height - nr-dashboard-chart_padding */
|
|
height: calc(100% - 55px);
|
|
width: calc(100% - 10px);
|
|
padding: 5px;
|
|
}
|
|
|
|
.nr-dashboard-chart-nolabel {
|
|
/* full height - label_padding - nr-dashboard-chart_padding */
|
|
height: calc(100% - 40px);
|
|
}
|
|
/*
|
|
overwrite the default md-errors-spacer min-height
|
|
reason: https://github.com/angular/material/issues/6214
|
|
*/
|
|
|
|
.nr-dashboard-colour-picker p {
|
|
padding: 0 0 0 12px;
|
|
}
|
|
|
|
.color-picker-wrapper {
|
|
padding-right: 12px;
|
|
}
|
|
|
|
.color-picker-wrapper.color-picker-open {
|
|
border-width: 0;
|
|
}
|
|
|
|
.color-picker-wrapper.color-picker-swatch-only.color-picker-open {
|
|
width: 32px;
|
|
border-width: 0px;
|
|
}
|
|
|
|
.color-picker-wrapper.color-picker-swatch-only.color-picker-open .color-picker-panel.color-picker-panel-right.color-picker-show-inline {
|
|
right: 121px;
|
|
}
|
|
|
|
.color-picker-wrapper.color-picker-swatch-only.color-picker-open .color-picker-panel.color-picker-panel-right.color-picker-show-inline.color-picker-show-lightness {
|
|
right: 141px;
|
|
}
|
|
|
|
.color-picker-wrapper.color-picker-swatch-only.color-picker-open .color-picker-panel.color-picker-panel-right.color-picker-show-inline.color-picker-show-alpha {
|
|
right: 141px;
|
|
}
|
|
|
|
.color-picker-wrapper.color-picker-swatch-only.color-picker-open .color-picker-panel.color-picker-panel-right.color-picker-show-inline.color-picker-show-hue {
|
|
right: 141px;
|
|
}
|
|
|
|
.color-picker-wrapper.color-picker-swatch-only.color-picker-open .color-picker-panel.color-picker-panel-right.color-picker-show-inline.color-picker-show-hue.color-picker-show-alpha {
|
|
right: 161px;
|
|
}
|
|
|
|
.color-picker-wrapper.color-picker-swatch-only.color-picker-open .color-picker-panel.color-picker-panel-right.color-picker-show-inline.color-picker-show-hue.color-picker-show-lightness {
|
|
right: 161px;
|
|
}
|
|
|
|
.color-picker-wrapper.color-picker-swatch-only.color-picker-open .color-picker-panel.color-picker-panel-right.color-picker-show-inline.color-picker-show-alpha.color-picker-show-lightness {
|
|
right: 161px;
|
|
}
|
|
|
|
.color-picker-wrapper.color-picker-swatch-only.color-picker-open .color-picker-panel.color-picker-panel-right.color-picker-show-inline.color-picker-show-hue.color-picker-show-alpha.color-picker-show-lightness {
|
|
right: 181px;
|
|
}
|
|
|
|
.color-picker-wrapper .input-group .input-group-addon {
|
|
padding: 12px 12px;
|
|
border-width: 0px;
|
|
}
|
|
|
|
.color-picker-wrapper.color-picker-swatch-only .input-group .input-group-addon {
|
|
width: 0px;
|
|
}
|
|
|
|
.color-picker-wrapper.color-picker-swatch-only .input-group .input-group-addon:last-child {
|
|
border-left-width: 0px;
|
|
}
|
|
|
|
.color-picker-wrapper .input-group .input-group-addon:last-child {
|
|
border-width: 0px;
|
|
width: 1px;
|
|
}
|
|
|
|
.color-picker-wrapper .input-group .color-picker-input {
|
|
position: relative;
|
|
width: 122px;
|
|
height: 20px;
|
|
text-indent: 6px;
|
|
text-align: center;
|
|
font-size: smaller;
|
|
padding-right: 4px;
|
|
}
|
|
|
|
.color-picker-input-wrapper.input-group > span {
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.color-picker-wrapper .color-picker-swatch:not(.input-group-addon).color-picker-swatch-right {
|
|
/* right: -1px; */
|
|
}
|
|
|
|
.color-picker-input-wrapper {
|
|
width: 100%;
|
|
}
|
|
|
|
.color-picker-input-wrapper > input {
|
|
width: 164px;
|
|
height: 22px;
|
|
text-indent: 6px;
|
|
font-size: smaller;
|
|
border-width: 0px;
|
|
}
|
|
|
|
.color-picker-wrapper .color-picker-input-wrapper {
|
|
display: flex;
|
|
}
|
|
|
|
/* color-picker {
|
|
z-index:2;
|
|
} */
|
|
.nr-dashboard-date-picker {
|
|
padding: 0 0px;
|
|
width: 100%;
|
|
margin-top: 8px;
|
|
margin-right: 0px;
|
|
}
|
|
|
|
.nr-dashboard-date-picker-label {
|
|
margin-left: 8px;
|
|
}
|
|
|
|
.md-button.md-icon-button {
|
|
margin: 0 0px;
|
|
}
|
|
|
|
.md-icon-button+.md-datepicker-input-container {
|
|
/* margin-left: 12px; */
|
|
}
|
|
|
|
.md-icon-button+.md-datepicker-input-container {
|
|
width: calc(100% - 55px);
|
|
margin-left: 0px;
|
|
}
|
|
|
|
._md-datepicker-floating-label>md-datepicker .md-datepicker-button {
|
|
float: left;
|
|
margin-top: -15px;
|
|
}
|
|
|
|
.nr-dashboard-date-picker .md-datepicker-triangle-button.md-button.md-icon-button {
|
|
height: 40px;
|
|
width: 40px;
|
|
top: -5px;
|
|
}
|
|
.nr-dashboard-dropdown md-input-container {
|
|
width: 100%;
|
|
height: 90%;
|
|
padding-left: 8px;
|
|
padding-right: 4px;
|
|
margin: 0px;
|
|
margin-right: 4px;
|
|
}
|
|
|
|
.nr-dashboard-dropdown md-input-container>md-select {
|
|
overflow: hidden;
|
|
/* margin-left: 4px !important; */
|
|
margin-top: 6px;
|
|
}
|
|
|
|
.nr-dashboard-theme .nr-dashboard-dropdown md-select-value {
|
|
min-width: 16px;
|
|
}
|
|
|
|
.nr-dashboard-theme .nr-dashboard-dropdown .md-select-value .md-select-icon {
|
|
margin: 0px;
|
|
width: 12px;
|
|
}
|
|
|
|
.nr-dashboard-dropdown .layout-row>.flex-100 {
|
|
flex: 1 1 50%;
|
|
max-width: 100%;
|
|
max-height: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.nr-dashboard-dropdown p.label {
|
|
margin: 0px;
|
|
line-height: 34px;
|
|
margin-right: 4px;
|
|
margin-top: 3px;
|
|
padding-right: 2px;
|
|
white-space: normal;
|
|
overflow: hidden;
|
|
min-width: 20%;
|
|
}
|
|
|
|
.nr-dashboard-dropdown-header {
|
|
padding-top: 6px;
|
|
padding-left: 6px;
|
|
padding-right: 8px;
|
|
height: 34px;
|
|
cursor: pointer;
|
|
position: relative;
|
|
display: flex;
|
|
align-items: center;
|
|
width: auto;
|
|
}
|
|
|
|
.nr-dashboard-dropdown-header input {
|
|
padding-left: 8px;
|
|
}
|
|
|
|
.nr-dashboard-dropdown-header ng-md-icon {
|
|
right: 0px;
|
|
left: inherit;
|
|
}
|
|
.nr-dashboard-gauge text {
|
|
/* font-weight: 500;*/
|
|
}
|
|
.nr-dashboard-numeric {
|
|
padding: 0 0 0 12px;
|
|
}
|
|
|
|
.nr-dashboard-numeric .value {
|
|
font-weight: bold;
|
|
text-align: center;
|
|
border: 0px;
|
|
}
|
|
|
|
.nr-dashboard-numeric .md-button {
|
|
margin: 0;
|
|
}
|
|
.nr-dashboard-slider {
|
|
padding: 0 12px;
|
|
}
|
|
|
|
.nr-dashboard-slider-v {
|
|
flex-direction: column;
|
|
padding: 0;
|
|
font-size: small;
|
|
}
|
|
|
|
.nr-dashboard-slider p.label {
|
|
margin-right: 15px;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.nr-dashboard-slider p.label-v {
|
|
margin-top: 6px;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
padding-bottom: 4px;
|
|
}
|
|
|
|
md-slider[md-vertical] .md-slider-wrapper {
|
|
width: unset;
|
|
}
|
|
|
|
.nr-dashboard-switch:focus {
|
|
outline: 0px;
|
|
}
|
|
|
|
.nr-dashboard-switch:hover {
|
|
cursor: -webkit-grab;
|
|
cursor: grab;
|
|
}
|
|
|
|
.nr-dashboard-switch p {
|
|
padding: 0 0 0 12px;
|
|
}
|
|
|
|
.nr-dashboard-switch md-switch {
|
|
padding: 0 8px 0 8px;
|
|
}
|
|
|
|
.nr-dashboard-switch md-switch:hover {
|
|
cursor: -webkit-grab;
|
|
cursor: grab;
|
|
}
|
|
|
|
.nr-dashboard-switch md-switch.center {
|
|
margin: 0px auto;
|
|
}
|
|
|
|
.nr-dashboard-switch ui-icon {
|
|
padding: 0 8px;
|
|
}
|
|
|
|
.nr-dashboard-switch ui-icon.center {
|
|
margin: 0px auto;
|
|
}
|
|
/*
|
|
overwrite the default md-errors-spacer min-height
|
|
reason: https://github.com/angular/material/issues/6214
|
|
*/
|
|
|
|
.nr-dashboard-textinput md-input-container {
|
|
padding: 0px 12px;
|
|
margin: 15px 0px;
|
|
transition: 0.3s margin;
|
|
-webkit-transition: 0.3s margin;
|
|
}
|
|
|
|
.nr-dashboard-textinput md-input-container .md-input {
|
|
padding-top: 1px;
|
|
}
|
|
|
|
.nr-dashboard-textinput input {
|
|
border-bottom-width: 1px;
|
|
padding-left: 8px;
|
|
}
|
|
|
|
.nr-dashboard-textinput input[type="color"] {
|
|
border: none;
|
|
}
|
|
|
|
.nr-dashboard-textinput md-input-container .md-errors-spacer {
|
|
min-height: 0;
|
|
}
|
|
|
|
.nr-dashboard-textinput md-input-container .md-placeholder,
|
|
.nr-dashboard-textinput md-input-container label:not(.md-no-float):not(.md-container-ignore) {
|
|
padding-left: 12px;
|
|
margin-bottom: 3px;
|
|
}
|
|
|
|
.nr-dashboard-textinput md-input-container.md-input-focused.has-label label:not(.md-no-float):not(.md-container-ignore),
|
|
.nr-dashboard-textinput md-input-container.md-input-has-value.has-label label:not(.md-no-float):not(.md-container-ignore) {
|
|
margin-bottom: -2px;
|
|
}
|
|
|
|
.nr-dashboard-textinput md-input-container.md-input-focused.has-label,
|
|
.nr-dashboard-textinput md-input-container.md-input-has-value.has-label {
|
|
margin: 15px 0px 5px;
|
|
}
|
|
.nr-dashboard-text {
|
|
padding: 0 12px;
|
|
}
|
|
|
|
.nr-dashboard-text p {
|
|
margin-top: 0.1em;
|
|
margin-bottom: 0.1em;
|
|
margin-left: 0;
|
|
margin-right: 0.25em;
|
|
}
|
|
|
|
.nr-dashboard-text .value {
|
|
font-weight: bold;
|
|
}
|
|
.nr-dashboard-template {
|
|
overflow-y: auto;
|
|
vertical-align: inherit;
|
|
}
|
|
|
|
.nr-dashboard-template p {
|
|
margin: 0.2em 0;
|
|
}
|
|
|
|
.nr-dashboard-template h4 {
|
|
margin: 0.2em 0;
|
|
}
|
|
|
|
.nr-dashboard-template h3 {
|
|
margin: 0.2em 0;
|
|
}
|
|
|
|
.nr-dashboard-template h2 {
|
|
margin: 0.3em 0;
|
|
}
|
|
|
|
.nr-dashboard-template h1 {
|
|
margin: 0.4em 0;
|
|
}
|
|
.nr-dashboard-form {
|
|
display: inline-block;
|
|
width: 100%;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.nr-dashboard-form form {
|
|
padding: 0px 6px 0px 6px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.nr-dashboard-form .formlabel {
|
|
font-size: large;
|
|
font-weight: 500;
|
|
margin-top: 12px;
|
|
margin-bottom: 6px;
|
|
padding: 0 6px;
|
|
width: 100%;
|
|
}
|
|
|
|
.nr-dashboard-form .formElement {
|
|
width: calc(100% - 12px);
|
|
margin-left: 6px;
|
|
margin-right: 6px;
|
|
}
|
|
|
|
.nr-dashboard-form .formElementSplit {
|
|
width: calc(50% - 12px);
|
|
margin-left: 6px;
|
|
margin-right: 6px;
|
|
}
|
|
|
|
.nr-dashboard-form .form-control {
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
margin-top: -20px;
|
|
}
|
|
|
|
.nr-dashboard-form .form-control-single {
|
|
justify-content: space-around;
|
|
}
|
|
|
|
.nr-dashboard-form .form-control-single > .nr-dashboard-form-button {
|
|
width: 100%;
|
|
}
|
|
|
|
.nr-dashboard-form .form-control-no-label {
|
|
margin-top: -10px;
|
|
}
|
|
|
|
.nr-dashboard-form md-input-container {
|
|
display: inline-block;
|
|
margin-top: 0px;
|
|
margin-bottom: 0px;
|
|
padding-top: 1px;
|
|
padding-bottom: 1px;
|
|
}
|
|
|
|
md-input-container label:not(.md-container-ignore) {
|
|
position: absolute;
|
|
bottom: 94%;
|
|
left: 0;
|
|
right: auto;
|
|
}
|
|
|
|
.nr-dashboard-form form md-input-container input {
|
|
margin-top: 2px;
|
|
}
|
|
|
|
.nr-dashboard-form md-input-container.md-input-focused label:not(.md-no-float),
|
|
md-input-container.md-input-has-placeholder label:not(.md-no-float),
|
|
md-input-container.md-input-has-value label:not(.md-no-float) {
|
|
-webkit-transform: translate3d(0,10px,0) scale(.75);
|
|
transform: translate3d(0,10px,0) scale(.75);
|
|
-webkit-transition: width .4s cubic-bezier(.25,.8,.25,1),-webkit-transform .4s cubic-bezier(.25,.8,.25,1);
|
|
transition: width .4s cubic-bezier(.25,.8,.25,1),-webkit-transform .4s cubic-bezier(.25,.8,.25,1);
|
|
transition: transform .4s cubic-bezier(.25,.8,.25,1),width .4s cubic-bezier(.25,.8,.25,1);
|
|
transition: transform .4s cubic-bezier(.25,.8,.25,1),width .4s cubic-bezier(.25,.8,.25,1),-webkit-transform .4s cubic-bezier(.25,.8,.25,1);
|
|
}
|
|
|
|
.nr-dashboard-form md-datepicker {
|
|
padding-bottom: 10px;
|
|
}
|
|
|
|
.nr-dashboard-form md-switch {
|
|
margin-top: 0px;
|
|
margin-bottom: 0px;
|
|
}
|
|
|
|
.nr-dashboard-form input[type="checkbox"] {
|
|
margin-top: 0px;
|
|
margin-bottom: 0px;
|
|
}
|
|
|
|
.nr-dashboard-form md-input-container .md-errors-spacer {
|
|
float: right;
|
|
min-height: 0px;
|
|
min-width: 1px;
|
|
}
|
|
|
|
.nr-dashboard-form-button {
|
|
width: 50%;
|
|
margin-bottom: 0px;
|
|
margin-top: 0px;
|
|
min-height: 28px;
|
|
}
|
|
|
|
.nr-dashboard-form form md-input-container md-checkbox .md-label {
|
|
position: unset;
|
|
top: unset;
|
|
}
|
|
.masonry-container {
|
|
position: relative;
|
|
width: 100%;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.masonry-container > * {
|
|
position: absolute;
|
|
opacity: 0;
|
|
}
|
|
|
|
.masonry-container > .visible {
|
|
opacity: 1;
|
|
}
|
|
|
|
.nr-dashboard-cardpanel {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.nr-dashboard-cardpanel > p {
|
|
max-height: 32px;
|
|
min-height: 32px;
|
|
margin-left: 12px;
|
|
margin-top: 10px;
|
|
margin-bottom: 12px;
|
|
font-weight: 500;
|
|
font-size: larger;
|
|
}
|
|
|
|
.nr-dashboard-cardcarat:focus {
|
|
outline: 0;
|
|
}
|
|
|
|
.nr-dashboard-cardcarat {
|
|
float: right;
|
|
vertical-align: baseline;
|
|
margin-right: 12px;
|
|
}
|
|
|
|
.nr-dashboard-cardcontainer {
|
|
position: relative;
|
|
}
|
|
|
|
.nr-dashboard-cardcontainer > * {
|
|
margin: 0 !important;
|
|
position: absolute;
|
|
opacity: 0;
|
|
}
|
|
|
|
.nr-dashboard-cardcontainer > .visible {
|
|
opacity: 1;
|
|
}
|