/*!
 * Copyright (c) Handsoncode sp. z o.o.
 * 
 * This Handsontable Pro is a commercial software distributed by Handsoncode sp. z o. o., a limited liability
 * company registered under the laws of Poland, with its registered office in Gdynia, Poland, at 96/98 Aleja Zwycięstwa,
 * postal code 81-451, entered into the Entrepreneurs Register of the National Court Register under number 0000538651,
 * share capital: PLN 62,800.00., hereinafter referred to as "HANDSONCODE".
 * 
 * By installing, copying, or otherwise using this software, you agree to be bound by the terms
 * of its General Software License Terms ("Terms") outlined in a file "handsontable-pro-general-terms.pdf"
 * available in the main directory of the software repository.
 * This software is copyrighted and protected by copyright laws and international treaties.
 * 
 * You shall obtain a commercial license for this software at handsontable.com.
 * 
 * YOU EXPRESSLY ACKNOWLEDGE AND AGREE THAT USE OF THE SOFTWARE IS AT YOUR OWN RISK AND THAT THE SOFTWARE
 * IS PROVIDED "AS IS" WITHOUT ANY WARRANTIES OR CONDITIONS WHATSOEVER. HANDSONCODE EXPRESSLY DISCLAIMS ANY WARRANTY,
 * EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGMENT. HANDSONCODE DOES NOT WARRANT THAT THE SOFTWARE AND ITS FUNCTIONALITY,
 * RELIABILITY AND PERFORMANCE WILL MEET YOUR REQUIREMENTS OR THAT THE OPERATION OF THE SOFTWARE WILL BE
 * UNINTERRUPTED OR ERROR FREE.
 * 
 * Version: 1.18.1
 * Release date: 20/03/2018 (built at 20/03/2018 10:43:43)
 */
/**
 * Fix for bootstrap styles
 */
.handsontable .table th, .handsontable .table td {
  border-top: none;
}

.handsontable tr {
  background: #fff;
}

.handsontable td {
  background-color: inherit;
}

.handsontable .table caption + thead tr:first-child th,
.handsontable .table caption + thead tr:first-child td,
.handsontable .table colgroup + thead tr:first-child th,
.handsontable .table colgroup + thead tr:first-child td,
.handsontable .table thead:first-child tr:first-child th,
.handsontable .table thead:first-child tr:first-child td {
  border-top: 1px solid #CCCCCC;
}

/* table-bordered */
.handsontable .table-bordered {
  border: 0;
  border-collapse: separate;
}

.handsontable .table-bordered th,
.handsontable .table-bordered td {
  border-left: none;
}

.handsontable .table-bordered th:first-child,
.handsontable .table-bordered td:first-child {
  border-left: 1px solid #CCCCCC;
}

.handsontable .table > tbody > tr > td,
.handsontable .table > tbody > tr > th,
.handsontable .table > tfoot > tr > td,
.handsontable .table > tfoot > tr > th,
.handsontable .table > thead > tr > td,
.handsontable .table > thead > tr > th {
  line-height: 21px;
  padding: 0 4px;
}

.col-lg-1.handsontable, .col-lg-10.handsontable, .col-lg-11.handsontable, .col-lg-12.handsontable,
.col-lg-2.handsontable, .col-lg-3.handsontable, .col-lg-4.handsontable, .col-lg-5.handsontable, .col-lg-6.handsontable, .col-lg-7.handsontable, .col-lg-8.handsontable, .col-lg-9.handsontable,
.col-md-1.handsontable, .col-md-10.handsontable, .col-md-11.handsontable, .col-md-12.handsontable,
.col-md-2.handsontable, .col-md-3.handsontable, .col-md-4.handsontable, .col-md-5.handsontable, .col-md-6.handsontable, .col-md-7.handsontable, .col-md-8.handsontable, .col-md-9.handsontable
.col-sm-1.handsontable, .col-sm-10.handsontable, .col-sm-11.handsontable, .col-sm-12.handsontable,
.col-sm-2.handsontable, .col-sm-3.handsontable, .col-sm-4.handsontable, .col-sm-5.handsontable, .col-sm-6.handsontable, .col-sm-7.handsontable, .col-sm-8.handsontable, .col-sm-9.handsontable
.col-xs-1.handsontable, .col-xs-10.handsontable, .col-xs-11.handsontable, .col-xs-12.handsontable,
.col-xs-2.handsontable, .col-xs-3.handsontable, .col-xs-4.handsontable, .col-xs-5.handsontable, .col-xs-6.handsontable, .col-xs-7.handsontable, .col-xs-8.handsontable, .col-xs-9.handsontable {
  padding-left: 0;
  padding-right: 0;
}

.handsontable .table-striped > tbody > tr:nth-of-type(even) {
  background-color: #FFF;
}
.handsontable {
  position: relative;
}

.handsontable .hide{
  display: none;
}
.handsontable .relative {
  position: relative;
}

.handsontable.htAutoSize {
  visibility: hidden;
  left: -99000px;
  position: absolute;
  top: -99000px;
}

.handsontable .wtHider {
  width: 0;
}

.handsontable .wtSpreader {
  position: relative;
  width: 0; /*must be 0, otherwise blank space appears in scroll demo after scrolling max to the right */
  height: auto;
}

.handsontable table,
.handsontable tbody,
.handsontable thead,
.handsontable td,
.handsontable th,
.handsontable input,
.handsontable textarea,
.handsontable div {
  box-sizing: content-box;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
}

.handsontable input,
.handsontable textarea {
  min-height: initial;
}

.handsontable table.htCore {
  border-collapse: separate;
  /* it must be separate, otherwise there are offset miscalculations in WebKit: http://stackoverflow.com/questions/2655987/border-collapse-differences-in-ff-and-webkit */
  /* this actually only changes appearance of user selection - does not make text unselectable */
  /* -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  -ms-user-select: none;
  user-select: none; */ /* no browser supports unprefixed version */
  border-spacing: 0;
  margin: 0;
  border-width: 0;
  table-layout: fixed;
  width: 0;
  outline-width: 0;
  /* reset bootstrap table style. for more info see: https://github.com/handsontable/handsontable/issues/224 */
  max-width: none;
  max-height: none;
}

.handsontable col {
  width: 50px;
}

.handsontable col.rowHeader {
  width: 50px;
}

.handsontable th,
.handsontable td {
  border-top-width: 0;
  border-left-width: 0;
  border-right: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
  height: 22px;
  empty-cells: show;
  line-height: 21px;
  padding: 0 4px 0 4px;
  /* top, bottom padding different than 0 is handled poorly by FF with HTML5 doctype */
  background-color: #FFF;
  vertical-align: top;
  overflow: hidden;
  outline-width: 0;
  white-space: pre-line;
  /* preserve new line character in cell */
  background-clip: padding-box;
}

.handsontable td.htInvalid {
  background-color: #ff4c42 !important; /*gives priority over td.area selection background*/
}

.handsontable td.htNoWrap {
  white-space: nowrap;
}

.handsontable th:last-child {
  /*Foundation framework fix*/
  border-right: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
}

.handsontable tr:first-child th.htNoFrame,
.handsontable th:first-child.htNoFrame,
.handsontable th.htNoFrame {
  border-left-width: 0;
  background-color: white;
  border-color: #FFF;
}

.handsontable th:first-child,
.handsontable th:nth-child(2),
.handsontable td:first-of-type,
.handsontable .htNoFrame + th,
.handsontable .htNoFrame + td {
  border-left: 1px solid #CCC;
}

.handsontable.htRowHeaders thead tr th:nth-child(2) {
  border-left: 1px solid #CCC;
}

.handsontable tr:first-child th,
.handsontable tr:first-child td {
  border-top: 1px solid #CCC;
}

.ht_master:not(.innerBorderLeft):not(.emptyColumns) ~ .handsontable tbody tr th,
.ht_master:not(.innerBorderLeft):not(.emptyColumns) ~ .handsontable:not(.ht_clone_top) thead tr th:first-child {
  border-right-width: 0;
}

.ht_master:not(.innerBorderTop) thead tr:last-child th,
.ht_master:not(.innerBorderTop) ~ .handsontable thead tr:last-child th,
.ht_master:not(.innerBorderTop) thead tr.lastChild th,
.ht_master:not(.innerBorderTop) ~ .handsontable thead tr.lastChild th {
  border-bottom-width: 0;
}

.handsontable th {
  background-color: #f3f3f3;
  color: #222;
  text-align: center;
  font-weight: normal;
  white-space: nowrap;
}

.handsontable thead th {
  padding: 0;
}

.handsontable th.active {
  background-color: #CCC;
}
.handsontable thead th .relative {
  padding: 2px 4px;
}

/* selection */
.handsontable tbody th.ht__highlight,
.handsontable thead th.ht__highlight {
  background-color: #dcdcdc;
}
.handsontable.ht__selection--columns thead th.ht__highlight,
.handsontable.ht__selection--rows tbody th.ht__highlight {
  background-color: #8eb0e7;
  color: #000;
}

#hot-display-license-info {
  font-size: 9px;
  color: #323232 ;
  padding: 5px 0 3px 0;
  font-family: Helvetica, Arial, sans-serif;
  text-align: left;
}

/* plugins */

/* row + column resizer*/
.handsontable .manualColumnResizer {
  position: fixed;
  top: 0;
  cursor: col-resize;
  z-index: 110;
  width: 5px;
  height: 25px;
}

.handsontable .manualRowResizer {
  position: fixed;
  left: 0;
  cursor: row-resize;
  z-index: 110;
  height: 5px;
  width: 50px;
}

.handsontable .manualColumnResizer:hover,
.handsontable .manualColumnResizer.active,
.handsontable .manualRowResizer:hover,
.handsontable .manualRowResizer.active {
  background-color: #AAB;
}

.handsontable .manualColumnResizerGuide {
  position: fixed;
  right: 0;
  top: 0;
  background-color: #AAB;
  display: none;
  width: 0;
  border-right: 1px dashed #777;
  margin-left: 5px;
}

.handsontable .manualRowResizerGuide {
  position: fixed;
  left: 0;
  bottom: 0;
  background-color: #AAB;
  display: none;
  height: 0;
  border-bottom: 1px dashed #777;
  margin-top: 5px;
}

.handsontable .manualColumnResizerGuide.active,
.handsontable .manualRowResizerGuide.active {
  display: block;
  z-index: 199;
}

.handsontable .columnSorting {
  position: relative;
}

.handsontable .columnSorting:hover {
  text-decoration: underline;
  cursor: pointer;
}

.handsontable .columnSorting.ascending::after {
  content: '\25B2';
  color: #5f5f5f;
  position: absolute;
  right: -15px;
}

.handsontable .columnSorting.descending::after {
  content: '\25BC';
  color: #5f5f5f;
  position: absolute;
  right: -15px;
}

/* border line */

.handsontable .wtBorder {
  position: absolute;
  font-size: 0;
}
.handsontable .wtBorder.hidden{
  display:none !important;
}

.handsontable td.area,
.handsontable td.area-1,
.handsontable td.area-2,
.handsontable td.area-3,
.handsontable td.area-4,
.handsontable td.area-5,
.handsontable td.area-6,
.handsontable td.area-7 {
  position: relative;
}

.handsontable td.area:before,
.handsontable td.area-1:before,
.handsontable td.area-2:before,
.handsontable td.area-3:before,
.handsontable td.area-4:before,
.handsontable td.area-5:before,
.handsontable td.area-6:before,
.handsontable td.area-7:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  bottom: -100%\9; /* Fix for IE9 to spread the ":before" pseudo element to 100% height of the parent element */
  background: #005eff;
}

/* Fix for IE10 and IE11 to spread the ":before" pseudo element to 100% height of the parent element */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .handsontable td.area:before,
  .handsontable td.area-1:before,
  .handsontable td.area-2:before,
  .handsontable td.area-3:before,
  .handsontable td.area-4:before,
  .handsontable td.area-5:before,
  .handsontable td.area-6:before,
  .handsontable td.area-7:before {
    bottom: -100%;
  }
}

.handsontable td.area:before {
  opacity: 0.1;
}
.handsontable td.area-1:before {
  opacity: 0.2;
}
.handsontable td.area-2:before {
  opacity: 0.27;
}
.handsontable td.area-3:before {
  opacity: 0.35;
}
.handsontable td.area-4:before {
  opacity: 0.41;
}
.handsontable td.area-5:before {
  opacity: 0.47;
}
.handsontable td.area-6:before {
  opacity: 0.54;
}
.handsontable td.area-7:before {
  opacity: 0.58;
}

/* fill handle */

.handsontable .wtBorder.corner {
  font-size: 0;
  cursor: crosshair;
}

.handsontable .htBorder.htFillBorder {
  background: red;
  width: 1px;
  height: 1px;
}

.handsontableInput {
  border:none;
  outline-width: 0;
  margin: 0 ;
  padding: 1px 5px 0 5px;
  font-family: inherit;
  line-height: 21px;
  font-size: inherit;
  box-shadow: 0 0 0 2px #5292F7 inset;
  resize: none;
  /*below are needed to overwrite stuff added by jQuery UI Bootstrap theme*/
  display: block;
  color: #000;
  border-radius: 0;
  background-color: #FFF;
  /*overwrite styles potentionally made by a framework*/
}

.handsontableInputHolder {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
}

.htSelectEditor {
  -webkit-appearance: menulist-button !important;
  position: absolute;
  width: auto;
}

/*
TextRenderer readOnly cell
*/

.handsontable .htDimmed {
  color: #777;
}

.handsontable .htSubmenu {
  position: relative;
}

.handsontable .htSubmenu :after{
  content: '\25B6';
  color: #777;
  position: absolute;
  right: 5px;
}


/*
TextRenderer horizontal alignment
*/
.handsontable .htLeft{
  text-align: left;
}
.handsontable .htCenter{
  text-align: center;
}
.handsontable .htRight{
  text-align: right;
}
.handsontable .htJustify{
  text-align: justify;
}
/*
TextRenderer vertical alignment
*/
.handsontable .htTop{
  vertical-align: top;
}
.handsontable .htMiddle{
  vertical-align: middle;
}
.handsontable .htBottom{
  vertical-align: bottom;
}

/*
TextRenderer placeholder value
*/

.handsontable .htPlaceholder {
  color: #999;
}

/*
AutocompleteRenderer down arrow
*/

.handsontable .htAutocompleteArrow {
  float: right;
  font-size: 10px;
  color: #EEE;
  cursor: default;
  width: 16px;
  text-align: center;
}

.handsontable td .htAutocompleteArrow:hover {
  color: #777;
}

.handsontable td.area .htAutocompleteArrow {
  color: #d3d3d3;
}

/*
CheckboxRenderer
*/
.handsontable .htCheckboxRendererInput {
  display: inline-block;
  vertical-align: middle;
}
.handsontable .htCheckboxRendererInput.noValue {
  opacity: 0.5;
}
.handsontable .htCheckboxRendererLabel {
  cursor: pointer;
  display: inline-block;
  width: 100%;
}

@-webkit-keyframes opacity-hide {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    /*display: none;*/
  }
}
@keyframes opacity-hide {
  from {
    /*display: block;*/
    opacity: 1;
  }
  to {
    opacity: 0;
    /*display: none;*/
  }
}

@-webkit-keyframes opacity-show {
  from {
    opacity: 0;
    /*display: none;*/
  }
  to {
    opacity: 1;
    /*display: block;*/
  }
}
@keyframes opacity-show {
  from {
    opacity: 0;
    /*display: none;*/
  }
  to {
    opacity: 1;
    /*display: block;*/
  }
}

/**
 * Handsontable in Handsontable
 */

.handsontable .handsontable.ht_clone_top .wtHider {
  padding: 0 0 5px 0;
}

/**
* Autocomplete Editor
*/
.handsontable .autocompleteEditor.handsontable {
  padding-right: 17px;
}
.handsontable .autocompleteEditor.handsontable.htMacScroll {
  padding-right: 15px;
}


/**
 * Handsontable listbox theme
 */

.handsontable.listbox {
  margin: 0;
}

.handsontable.listbox .ht_master table {
  border: 1px solid #ccc;
  border-collapse: separate;
  background: white;
}

.handsontable.listbox th,
.handsontable.listbox tr:first-child th,
.handsontable.listbox tr:last-child th,
.handsontable.listbox tr:first-child td,
.handsontable.listbox td {
  border-color: transparent;
}

.handsontable.listbox th,
.handsontable.listbox td {
  white-space: nowrap;
  text-overflow: ellipsis;
}

.handsontable.listbox td.htDimmed {
  cursor: default;
  color: inherit;
  font-style: inherit;
}

.handsontable.listbox .wtBorder {
  visibility: hidden;
}

.handsontable.listbox tr td.current,
.handsontable.listbox tr:hover td {
  background: #eee;
}

.ht_clone_top {
  z-index: 101;
}

.ht_clone_left {
  z-index: 102;
}

.ht_clone_top_left_corner,
.ht_clone_bottom_left_corner {
  z-index: 103;
}

.ht_clone_debug {
  z-index: 103;
}

.handsontable td.htSearchResult {
  background: #fcedd9;
  color: #583707;
}

/*
Cell borders
*/
.htBordered{
  /*box-sizing: border-box !important;*/
  border-width: 1px;
}
.htBordered.htTopBorderSolid {
  border-top-style: solid;
  border-top-color: #000;
}
.htBordered.htRightBorderSolid {
  border-right-style: solid;
  border-right-color: #000;
}
.htBordered.htBottomBorderSolid {
  border-bottom-style: solid;
  border-bottom-color: #000;
}
.htBordered.htLeftBorderSolid {
  border-left-style: solid;
  border-left-color: #000;
}

.handsontable tbody tr th:nth-last-child(2) {
  border-right: 1px solid #CCC;
}

.handsontable thead tr:nth-last-child(2) th.htGroupIndicatorContainer {
  border-bottom: 1px solid #CCC;
  padding-bottom: 5px;
}


.ht_clone_top_left_corner thead tr th:nth-last-child(2) {
  border-right: 1px solid #CCC;
}

.htCollapseButton {
  width: 10px;
  height: 10px;
  line-height: 10px;
  text-align: center;
  border-radius: 5px;
  border: 1px solid #f3f3f3;
  -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  margin-bottom: 3px;
  position: relative;
}

.htCollapseButton:after {
  content: "";
  height: 300%;
  width: 1px;
  display: block;
  background: #ccc;
  margin-left: 4px;
  position: absolute;
  /*top: -300%;*/
  bottom: 10px;
}


thead .htCollapseButton {
  right: 5px;
  position: absolute;
  top: 5px;
  background: #fff;
}

thead .htCollapseButton:after {
  height: 1px;
  width: 700%;
  right: 10px;
  top: 4px;
}

.handsontable tr th .htExpandButton {
  position: absolute;
  width: 10px;
  height: 10px;
  line-height: 10px;
  text-align: center;
  border-radius: 5px;
  border: 1px solid #f3f3f3;
  -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  top: 0;
  display: none;
}

.handsontable thead tr th .htExpandButton {
  /*left: 5px;*/
  top: 5px;
}

.handsontable tr th .htExpandButton.clickable {
  display: block;
}

.collapsibleIndicator {
  position: absolute;
  top: 50%;
  transform: translate(0% ,-50%);
  right: 5px;
  border: 1px solid #A6A6A6;
  line-height: 10px;
  color: #222;
  border-radius: 10px;
  font-size: 10px;
  width: 10px;
  height: 10px;
  cursor: pointer;
  -webkit-box-shadow: 0 0 0 6px rgba(238,238,238,1);
  -moz-box-shadow: 0 0 0 6px rgba(238,238,238,1);
  box-shadow: 0 0 0 6px rgba(238,238,238,1);
  background: #eee;
}

.handsontable col.hidden {
  width: 0 !important;
}

.handsontable table tr th.lightRightBorder {
  border-right: 1px solid #E6E6E6;
}

.handsontable tr.hidden,
.handsontable tr.hidden td,
.handsontable tr.hidden th {
  display: none;
}

.ht_master,
.ht_clone_left,
.ht_clone_top,
.ht_clone_bottom {
  overflow: hidden;
}

.ht_master .wtHolder {
  overflow: auto;
}

.ht_clone_left .wtHolder {
  overflow-x: hidden;
  overflow-y: auto;
}

.ht_clone_top .wtHolder,
.ht_clone_bottom .wtHolder {
  overflow-x: auto;
  overflow-y: hidden;
}


/*WalkontableDebugOverlay*/

.wtDebugHidden {
  display: none;
}

.wtDebugVisible {
  display: block;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-name: wtFadeInFromNone;
  animation-duration: 0.5s;
  animation-name: wtFadeInFromNone;
}

@keyframes wtFadeInFromNone {
  0% {
    display: none;
    opacity: 0;
  }

  1% {
    display: block;
    opacity: 0;
  }

  100% {
    display: block;
    opacity: 1;
  }
}

@-webkit-keyframes wtFadeInFromNone {
  0% {
    display: none;
    opacity: 0;
  }

  1% {
    display: block;
    opacity: 0;
  }

  100% {
    display: block;
    opacity: 1;
  }
}
/*

 Handsontable Mobile Text Editor stylesheet

 */

.handsontable.mobile,
.handsontable.mobile .wtHolder {
  -webkit-touch-callout:none;
  -webkit-user-select:none;
  -khtml-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
  user-select:none;
  -webkit-tap-highlight-color:rgba(0,0,0,0);
  -webkit-overflow-scrolling: touch;
}

.htMobileEditorContainer {
  display: none;
  position: absolute;
  top: 0;
  width: 70%;
  height: 54pt;
  background: #f8f8f8;
  border-radius: 20px;
  border: 1px solid #ebebeb;
  z-index: 999;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-text-size-adjust: none;
}

.topLeftSelectionHandle:not(.ht_master .topLeftSelectionHandle),
.topLeftSelectionHandle-HitArea:not(.ht_master .topLeftSelectionHandle-HitArea) {
  z-index: 9999;
}

/* Initial left/top coordinates - overwritten when actual position is set */
.topLeftSelectionHandle,
.topLeftSelectionHandle-HitArea,
.bottomRightSelectionHandle,
.bottomRightSelectionHandle-HitArea {
  left: -10000px;
  top: -10000px;
}

.htMobileEditorContainer.active {
  display: block;
}

.htMobileEditorContainer .inputs {
  position: absolute;
  right: 210pt;
  bottom: 10pt;
  top: 10pt;
  left: 14px;
  height: 34pt;
}

.htMobileEditorContainer .inputs textarea {
  font-size: 13pt;
  border: 1px solid #a1a1a1;
  -webkit-appearance: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  position: absolute;
  left: 14px;
  right: 14px;
  top: 0;
  bottom: 0;
  padding: 7pt;
}

.htMobileEditorContainer .cellPointer {
  position: absolute;
  top: -13pt;
  height: 0;
  width: 0;
  left: 30px;

  border-left: 13pt solid transparent;
  border-right: 13pt solid transparent;
  border-bottom: 13pt solid #ebebeb;
}

.htMobileEditorContainer .cellPointer.hidden {
  display: none;
}

.htMobileEditorContainer .cellPointer:before {
  content: '';
  display: block;
  position: absolute;
  top: 2px;
  height: 0;
  width: 0;
  left: -13pt;

  border-left: 13pt solid transparent;
  border-right: 13pt solid transparent;
  border-bottom: 13pt solid #f8f8f8;
}

.htMobileEditorContainer .moveHandle {
  position: absolute;
  top: 10pt;
  left: 5px;
  width: 30px;
  bottom: 0px;
  cursor: move;
  z-index: 9999;
}

.htMobileEditorContainer .moveHandle:after {
  content: "..\A..\A..\A..";
  white-space: pre;
  line-height: 10px;
  font-size: 20pt;
  display: inline-block;
  margin-top: -8px;
  color: #ebebeb;
}

.htMobileEditorContainer .positionControls {
  width: 205pt;
  position: absolute;
  right: 5pt;
  top: 0;
  bottom: 0;
}

.htMobileEditorContainer .positionControls > div {
  width: 50pt;
  height: 100%;
  float: left;
}

.htMobileEditorContainer .positionControls > div:after {
  content: " ";
  display: block;
  width: 15pt;
  height: 15pt;
  text-align: center;
  line-height: 50pt;
}

.htMobileEditorContainer .leftButton:after,
.htMobileEditorContainer .rightButton:after,
.htMobileEditorContainer .upButton:after,
.htMobileEditorContainer .downButton:after {
  transform-origin: 5pt 5pt;
  -webkit-transform-origin: 5pt 5pt;
  margin: 21pt 0 0 21pt;
}

.htMobileEditorContainer .leftButton:after {
  border-top: 2px solid #288ffe;
  border-left: 2px solid #288ffe;
  -webkit-transform: rotate(-45deg);
  /*margin-top: 17pt;*/
  /*margin-left: 20pt;*/
}
.htMobileEditorContainer .leftButton:active:after {
  border-color: #cfcfcf;
}

.htMobileEditorContainer .rightButton:after {
  border-top: 2px solid #288ffe;
  border-left: 2px solid #288ffe;
  -webkit-transform: rotate(135deg);
  /*margin-top: 17pt;*/
  /*margin-left: 10pt;*/
}
.htMobileEditorContainer .rightButton:active:after {
  border-color: #cfcfcf;
}

.htMobileEditorContainer .upButton:after {
  /*border-top: 2px solid #cfcfcf;*/
  border-top: 2px solid #288ffe;
  border-left: 2px solid #288ffe;
  -webkit-transform: rotate(45deg);
  /*margin-top: 22pt;*/
  /*margin-left: 15pt;*/
}
.htMobileEditorContainer .upButton:active:after {
  border-color: #cfcfcf;
}

.htMobileEditorContainer .downButton:after {
  border-top: 2px solid #288ffe;
  border-left: 2px solid #288ffe;
  -webkit-transform: rotate(225deg);
  /*margin-top: 15pt;*/
  /*margin-left: 15pt;*/
}
.htMobileEditorContainer .downButton:active:after {
  border-color: #cfcfcf;
}

.handsontable.hide-tween {
  -webkit-animation: opacity-hide 0.3s;
  animation: opacity-hide 0.3s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}

.handsontable.show-tween {
  -webkit-animation: opacity-show 0.3s;
  animation: opacity-show 0.3s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}
@charset "UTF-8";

/*!
 * Pikaday
 * Copyright © 2014 David Bushell | BSD & MIT license | http://dbushell.com/
 */

.pika-single {
    z-index: 9999;
    display: block;
    position: relative;
    color: #333;
    background: #fff;
    border: 1px solid #ccc;
    border-bottom-color: #bbb;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/*
clear child float (pika-lendar), using the famous micro clearfix hack
http://nicolasgallagher.com/micro-clearfix-hack/
*/
.pika-single:before,
.pika-single:after {
    content: " ";
    display: table;
}
.pika-single:after { clear: both }
.pika-single { *zoom: 1 }

.pika-single.is-hidden {
    display: none;
}

.pika-single.is-bound {
    position: absolute;
    box-shadow: 0 5px 15px -5px rgba(0,0,0,.5);
}

.pika-lendar {
    float: left;
    width: 240px;
    margin: 8px;
}

.pika-title {
    position: relative;
    text-align: center;
}

.pika-label {
    display: inline-block;
    *display: inline;
    position: relative;
    z-index: 9999;
    overflow: hidden;
    margin: 0;
    padding: 5px 3px;
    font-size: 14px;
    line-height: 20px;
    font-weight: bold;
    background-color: #fff;
}
.pika-title select {
    cursor: pointer;
    position: absolute;
    z-index: 9998;
    margin: 0;
    left: 0;
    top: 5px;
    filter: alpha(opacity=0);
    opacity: 0;
}

.pika-prev,
.pika-next {
    display: block;
    cursor: pointer;
    position: relative;
    outline: none;
    border: 0;
    padding: 0;
    width: 20px;
    height: 30px;
    /* hide text using text-indent trick, using width value (it's enough) */
    text-indent: 20px;
    white-space: nowrap;
    overflow: hidden;
    background-color: transparent;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 75% 75%;
    opacity: .5;
    *position: absolute;
    *top: 0;
}

.pika-prev:hover,
.pika-next:hover {
    opacity: 1;
}

.pika-prev,
.is-rtl .pika-next {
    float: left;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAUklEQVR42u3VMQoAIBADQf8Pgj+OD9hG2CtONJB2ymQkKe0HbwAP0xucDiQWARITIDEBEnMgMQ8S8+AqBIl6kKgHiXqQqAeJepBo/z38J/U0uAHlaBkBl9I4GwAAAABJRU5ErkJggg==');
    *left: 0;
}

.pika-next,
.is-rtl .pika-prev {
    float: right;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAU0lEQVR42u3VOwoAMAgE0dwfAnNjU26bYkBCFGwfiL9VVWoO+BJ4Gf3gtsEKKoFBNTCoCAYVwaAiGNQGMUHMkjGbgjk2mIONuXo0nC8XnCf1JXgArVIZAQh5TKYAAAAASUVORK5CYII=');
    *right: 0;
}

.pika-prev.is-disabled,
.pika-next.is-disabled {
    cursor: default;
    opacity: .2;
}

.pika-select {
    display: inline-block;
    *display: inline;
}

.pika-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border: 0;
}

.pika-table th,
.pika-table td {
    width: 14.285714285714286%;
    padding: 0;
}

.pika-table th {
    color: #999;
    font-size: 12px;
    line-height: 25px;
    font-weight: bold;
    text-align: center;
}

.pika-button {
    cursor: pointer;
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    outline: none;
    border: 0;
    margin: 0;
    width: 100%;
    padding: 5px;
    color: #666;
    font-size: 12px;
    line-height: 15px;
    text-align: right;
    background: #f5f5f5;
}

.pika-week {
    font-size: 11px;
    color: #999;
}

.is-today .pika-button {
    color: #33aaff;
    font-weight: bold;
}

.is-selected .pika-button {
    color: #fff;
    font-weight: bold;
    background: #33aaff;
    box-shadow: inset 0 1px 3px #178fe5;
    border-radius: 3px;
}

.is-inrange .pika-button {
    background: #D5E9F7;
}

.is-startrange .pika-button {
    color: #fff;
    background: #6CB31D;
    box-shadow: none;
    border-radius: 3px;
}

.is-endrange .pika-button {
    color: #fff;
    background: #33aaff;
    box-shadow: none;
    border-radius: 3px;
}

.is-disabled .pika-button,
.is-outside-current-month .pika-button {
    pointer-events: none;
    cursor: default;
    color: #999;
    opacity: .3;
}

.pika-button:hover {
    color: #fff;
    background: #ff8000;
    box-shadow: none;
    border-radius: 3px;
}

/* styling for abbr */
.pika-table abbr {
    border-bottom: none;
    cursor: help;
}

.htCommentCell {
    position: relative;
}

.htCommentCell:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    border-left: 6px solid transparent;
    border-top: 6px solid black;
}

.htComments {
    display: none;
    z-index: 1059;
    position: absolute;
}

.htCommentTextArea {
    box-shadow: rgba(0, 0, 0, 0.117647) 0 1px 3px, rgba(0, 0, 0, 0.239216) 0 1px 2px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: none;
    border-left: 3px solid #ccc;
    background-color: #fff;
    width: 215px;
    height: 90px;
    font-size: 12px;
    padding: 5px;
    outline: 0px !important;
    -webkit-appearance: none;
}

.htCommentTextArea:focus {
    box-shadow: rgba(0, 0, 0, 0.117647) 0 1px 3px, rgba(0, 0, 0, 0.239216) 0 1px 2px, inset 0 0 0 1px #5292f7;
    border-left: 3px solid #5292f7;
}
/*!
 * Handsontable ContextMenu
 */

.htContextMenu {
  display: none;
  position: absolute;
  z-index: 1060; /* needs to be higher than 1050 - z-index for Twitter Bootstrap modal (#1569) */
}

.htContextMenu .ht_clone_top,
.htContextMenu .ht_clone_left,
.htContextMenu .ht_clone_corner,
.htContextMenu .ht_clone_debug {
  display: none;
}

.htContextMenu table.htCore {
  border: 1px solid #ccc;
  border-bottom-width: 2px;
  border-right-width: 2px;
}

.htContextMenu .wtBorder {
  visibility: hidden;
}

.htContextMenu table tbody tr td {
  background: white;
  border-width: 0;
  padding: 4px 6px 0 6px;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.htContextMenu table tbody tr td:first-child {
  border: 0;
}

.htContextMenu table tbody tr td.htDimmed {
  font-style: normal;
  color: #323232;
}

.htContextMenu table tbody tr td.current,
.htContextMenu table tbody tr td.zeroclipboard-is-hover {
  background: #f3f3f3;
}

.htContextMenu table tbody tr td.htSeparator {
  border-top: 1px solid #bbb;
  height: 0;
  padding: 0;
  cursor: default;
}

.htContextMenu table tbody tr td.htDisabled {
  color: #999;
  cursor: default;
}

.htContextMenu table tbody tr td.htDisabled:hover {
  background: #fff;
  color: #999;
  cursor: default;
}

.htContextMenu table tbody tr.htHidden {
  display: none;
}

.htContextMenu table tbody tr td .htItemWrapper {
  margin-left: 10px;
  margin-right: 6px;
}

.htContextMenu table tbody tr td div span.selected {
  margin-top: -2px;
  position: absolute;
  left: 4px;
}

.htContextMenu .ht_master .wtHolder {
  overflow: hidden;
}
textarea#HandsontableCopyPaste {
  position: fixed !important;
  top: 0 !important;
  right: 100% !important;
  overflow: hidden;
  opacity: 0;
  outline: 0 none !important;
}
.htRowHeaders .ht_master.innerBorderLeft ~ .ht_clone_top_left_corner th:nth-child(2),
.htRowHeaders .ht_master.innerBorderLeft ~ .ht_clone_left td:first-of-type {
  border-left: 0 none;
}
.handsontable .wtHider {
  position: relative;
}
.handsontable.ht__manualColumnMove.after-selection--columns thead th.ht__highlight {
  cursor: move;
  cursor: -moz-grab;
  cursor: -webkit-grab;
  cursor: grab;
}
.handsontable.ht__manualColumnMove.on-moving--columns,
.handsontable.ht__manualColumnMove.on-moving--columns thead th.ht__highlight {
  cursor: move;
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.handsontable.ht__manualColumnMove.on-moving--columns .manualColumnResizer {
  display: none;
}
.handsontable .ht__manualColumnMove--guideline,
.handsontable .ht__manualColumnMove--backlight {
  position: absolute;
  height: 100%;
  display: none;
}
.handsontable .ht__manualColumnMove--guideline {
  background: #757575;
  width: 2px;
  top: 0;
  margin-left: -1px;
  z-index: 105;
}
.handsontable .ht__manualColumnMove--backlight {
  background: #343434;
  background: rgba(52, 52, 52, 0.25);
  display: none;
  z-index: 105;
  pointer-events: none;
}
.handsontable.on-moving--columns.show-ui .ht__manualColumnMove--guideline,
.handsontable.on-moving--columns .ht__manualColumnMove--backlight {
  display: block;
}
.handsontable .wtHider {
  position: relative;
}
.handsontable.ht__manualRowMove.after-selection--rows tbody th.ht__highlight {
  cursor: move;
  cursor: -moz-grab;
  cursor: -webkit-grab;
  cursor: grab;
}
.handsontable.ht__manualRowMove.on-moving--rows,
.handsontable.ht__manualRowMove.on-moving--rows tbody th.ht__highlight {
  cursor: move;
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.handsontable.ht__manualRowMove.on-moving--rows .manualRowResizer {
  display: none;
}
.handsontable .ht__manualRowMove--guideline,
.handsontable .ht__manualRowMove--backlight {
  position: absolute;
  width: 100%;
  display: none;
}
.handsontable .ht__manualRowMove--guideline {
  background: #757575;
  height: 2px;
  left: 0;
  margin-top: -1px;
  z-index: 105;
}
.handsontable .ht__manualRowMove--backlight {
  background: #343434;
  background: rgba(52, 52, 52, 0.25);
  display: none;
  z-index: 105;
  pointer-events: none;
}
.handsontable.on-moving--rows.show-ui .ht__manualRowMove--guideline,
.handsontable.on-moving--rows .ht__manualRowMove--backlight {
  display: block;
}
.handsontable.ht__selection--rows tbody td[rowspan][class*="area"][class*="highlight"]:before,
.handsontable.ht__selection--columns tbody td[colspan][class*="area"][class*="highlight"]:before {
    background: inherit;
}
/*!
 * Handsontable DropdownMenu
 */
.handsontable .changeType {
  background: #eee;
  border-radius: 2px;
  border: 1px solid #bbb;
  color: #bbb;
  font-size: 9px;
  line-height: 9px;
  padding: 2px;
  margin: 3px 1px 0 5px;
  float: right;
}
.handsontable .changeType:before {
  content: '\25BC     ';
}

.handsontable .changeType:hover {
  border: 1px solid #777;
  color: #777;
  cursor: pointer;
}

.htDropdownMenu {
  display: none;
  position: absolute;
  z-index: 1060; /* needs to be higher than 1050 - z-index for Twitter Bootstrap modal (#1569) */
}

.htDropdownMenu .ht_clone_top,
.htDropdownMenu .ht_clone_left,
.htDropdownMenu .ht_clone_corner,
.htDropdownMenu .ht_clone_debug {
  display: none;
}

.htDropdownMenu table.htCore {
  border: 1px solid #bbb;
  border-bottom-width: 2px;
  border-right-width: 2px;
}

.htDropdownMenu .wtBorder {
  visibility: hidden;
}

.htDropdownMenu table tbody tr td {
  background: white;
  border-width: 0;
  padding: 4px 6px 0 6px;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.htDropdownMenu table tbody tr td:first-child {
  border: 0;
}

.htDropdownMenu table tbody tr td.htDimmed {
  font-style: normal;
  color: #323232;
}

.htDropdownMenu table tbody tr td.current,
.htDropdownMenu table tbody tr td.zeroclipboard-is-hover {
  background: #e9e9e9;
}

.htDropdownMenu table tbody tr td.htSeparator {
  border-top: 1px solid #bbb;
  height: 0;
  padding: 0;
  cursor: default;
}

.htDropdownMenu table tbody tr td.htDisabled {
  color: #999;
}

.htDropdownMenu table tbody tr td.htDisabled:hover {
  background: #fff;
  color: #999;
  cursor: default;
}

.htDropdownMenu table tbody tr.htHidden {
  display: none;
}

.htDropdownMenu table tbody tr td .htItemWrapper {
  margin-left: 10px;
  margin-right: 6px;
}

.htDropdownMenu table tbody tr td div span.selected {
  margin-top: -2px;
  position: absolute;
  left: 4px;
}

.htDropdownMenu .ht_master .wtHolder {
  overflow: hidden;
}
/*!
 * Handsontable Filters
 */

/* Conditions menu */
.htFiltersConditionsMenu {
  display: none;
  position: absolute;
  z-index: 1070;
}

.htFiltersConditionsMenu .ht_clone_top,
.htFiltersConditionsMenu .ht_clone_left,
.htFiltersConditionsMenu .ht_clone_corner,
.htFiltersConditionsMenu .ht_clone_debug {
  display: none;
}

.htFiltersConditionsMenu table.htCore {
  border: 1px solid #bbb;
  border-bottom-width: 2px;
  border-right-width: 2px;
}

.htFiltersConditionsMenu .wtBorder {
  visibility: hidden;
}

.htFiltersConditionsMenu table tbody tr td {
  background: white;
  border-width: 0;
  padding: 4px 6px 0 6px;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.htFiltersConditionsMenu table tbody tr td:first-child {
  border: 0;
}

.htFiltersConditionsMenu table tbody tr td.htDimmed {
  font-style: normal;
  color: #323232;
}

.htFiltersConditionsMenu table tbody tr td.current,
.htFiltersConditionsMenu table tbody tr td.zeroclipboard-is-hover {
  background: #e9e9e9;
}

.htFiltersConditionsMenu table tbody tr td.htSeparator {
  border-top: 1px solid #bbb;
  height: 0;
  padding: 0;
}

.htFiltersConditionsMenu table tbody tr td.htDisabled {
  color: #999;
}

.htFiltersConditionsMenu table tbody tr td.htDisabled:hover {
  background: #fff;
  color: #999;
  cursor: default;
}

.htFiltersConditionsMenu table tbody tr td .htItemWrapper {
  margin-left: 10px;
  margin-right: 6px;
}

.htFiltersConditionsMenu table tbody tr td div span.selected {
  margin-top: -2px;
  position: absolute;
  left: 4px;
}

.htFiltersConditionsMenu .ht_master .wtHolder {
  overflow: hidden;
}

.handsontable .htMenuFiltering {
  border-bottom: 1px dotted #ccc;
  height: 135px;
  overflow: hidden;
}

.handsontable .ht_master table td.htCustomMenuRenderer {
  background-color: #fff;
  cursor: auto;
}

/* Menu label */
.handsontable .htFiltersMenuLabel {
  font-size: 12px;
}

/* Component action bar */
.handsontable .htFiltersMenuActionBar {
  text-align: center;
}

/* Component filter by conditional */
.handsontable .htFiltersMenuCondition.border {
  border-bottom: 1px dotted #ccc !important;
}
.handsontable .htFiltersMenuCondition .htUIInput {
  padding: 0 0 5px 0;
}
.handsontable .htFiltersMenuCondition .htUIInput input {
  width: 177px;
  padding: 4px;
}

/* Component filter by value */
.handsontable .htFiltersMenuValue {
  border-bottom: 1px dotted #ccc !important;
}
.handsontable .htFiltersMenuValue .htUIMultipleSelectSearch {
  padding: 0;
}
.handsontable .htFiltersMenuValue .htUIMultipleSelectSearch input {
  width: 177px;
  padding: 4px;
}

.htUIMultipleSelect .ht_master .wtHolder {
  overflow-y: scroll;
}

.handsontable .htFiltersActive .changeType {
  border: 1px solid #509272;
  color: #18804e;
  background-color: #d2e0d9;
}

.handsontable .htUIClearAll, .handsontable .htUISelectAll {
  display: inline-block;
  margin-left: 10px;
}
.handsontable .htUIClearAll a, .handsontable .htUISelectAll a {
  color: #3283D8;
  font-size: 12px;
}
.handsontable .htUISelectionControls {
  text-align: right;
}

.handsontable .htCheckboxRendererInput {
  margin: 0 5px 0 0;
  vertical-align: middle;
  height: 1em;
}


/* UI elements */
/* Input */
.handsontable .htUIInput {
  padding: 3px 0 7px 0;
  position: relative;
  text-align: center;
}
.handsontable .htUIInput input {
  border-radius: 2px;
  border: 1px solid #d2d1d1;
}
.handsontable .htUIInput input:focus {
  outline: 0;
}
.handsontable .htUIInputIcon {
  position: absolute;
}

/* Button */
.handsontable .htUIInput.htUIButton {
  cursor: pointer;
  display: inline-block;
  padding: 3px 4px 7px 4px;
  width: 60px;
}
.handsontable .htUIInput.htUIButton input {
  background-color: #eee;
  color: #000;
  cursor: pointer;
  font-family: arial, sans-serif;
  font-size: 11px;
  font-weight: bold;
  height: 19px;
  width: 42px;
}
.handsontable .htUIInput.htUIButton input:hover {
  border-color: #b9b9b9;
}

.handsontable .htUIInput.htUIButtonOK input {
  background-color: #0f9d58;
  border-color: #18804e;
  color: #fff;
}
.handsontable .htUIInput.htUIButtonOK input:hover {
  border-color: #1a6f46;
}

/* Select */
.handsontable .htUISelect {
  cursor: pointer;
  margin-bottom: 7px;
  position: relative;
}
.handsontable .htUISelectCaption {
  background-color: #e8e8e8;
  border-radius: 2px;
  border: 1px solid #d2d1d1;
  font-family: arial, sans-serif;
  font-size: 11px;
  font-weight: bold;
  padding: 3px 0 3px 10px;
}
.handsontable .htUISelectCaption:hover {
  background-color: #e8e8e8;
  border: 1px solid #b9b9b9;
}
.handsontable .htUISelectDropdown:after {
  content: '\25B2';
  font-size: 7px;
  position: absolute;
  right: 10px;
  top: 0;
}
.handsontable .htUISelectDropdown:before {
  content: '\25BC';
  font-size: 7px;
  position: absolute;
  right: 10px;
  top: 8px;
}

/* SelectMultiple */
.handsontable .htUIMultipleSelect .handsontable .htCore {
  border: none;
}
.handsontable .htUIMultipleSelect .handsontable .htCore td:hover {
  background-color: #F5F5F5;
}

.handsontable .htUIMultipleSelectSearch input {
  border-radius: 2px;
  border: 1px solid #d2d1d1;
  padding: 3px;
}

.handsontable .htUIRadio {
  display: inline-block;
  margin: 0 5px 0px 0;
  height: 100%;
}

.handsontable .htUIRadio > input[type=radio] {
  margin-right: 0.5ex;
}

.handsontable .htFiltersMenuOperators {
  padding-bottom: 5px;
}
.handsontable.ganttChart tr:first-child th div.relative {
  padding-right: 21px;
}
.handsontable.ganttChart .colHeader {
  display: block;
}
.handsontable.ganttChart td.rangeBar {
  background: #48b703;
  border-right-width: 0;
  position: relative;
  -webkit-box-shadow: inset 0 3px 0 #ffffff;
  -moz-box-shadow: inset 0 3px 0 #ffffff;
  box-shadow: inset 0 3px 0 #ffffff;
}
.handsontable.ganttChart td.rangeBar.last {
  border-right-width: 1px;
}
.handsontable.ganttChart td.rangeBar.area {
  background: #7EC481;
}
.handsontable.ganttChart td.rangeBar.partial {
  background: #8edf5a;
}
.handsontable.ganttChart td.rangeBar.area.partial {
  background: #A1D8AD;
}
.handsontable thead th.hiddenHeader:not(:first-of-type) {
  display: none;
}
.handsontable th.ht_nestingLevels {
    text-align: left;
    padding-left: 7px;
}

.handsontable th div.ht_nestingLevels {
    display: inline-block;
    position: absolute;
    left: 11px;
}

.handsontable.innerBorderLeft th div.ht_nestingLevels,
.handsontable.innerBorderLeft ~ .handsontable th div.ht_nestingLevels {
    right: 10px;
}

.handsontable th span.ht_nestingLevel {
    display: inline-block;
}

.handsontable th span.ht_nestingLevel_empty {
    display: inline-block;
    width: 10px;
    height: 1px;
    float: left;
}

.handsontable th span.ht_nestingLevel::after {
    content: "\2510";
    font-size: 9px;
    display: inline-block;
    position: relative;
    bottom: 3px;
}


.handsontable th div.ht_nestingButton {
    display: inline-block;
    position: absolute;
    right: -2px;
    cursor: pointer;
}

.handsontable th div.ht_nestingButton.ht_nestingExpand::after {
    content: "+";
}

.handsontable th div.ht_nestingButton.ht_nestingCollapse::after {
    content: "-";
}

.handsontable.innerBorderLeft th div.ht_nestingButton,
.handsontable.innerBorderLeft ~ .handsontable th div.ht_nestingButton {
    right: 0;
}/*
 * Handsontable HiddenColumns
 */
.handsontable th.beforeHiddenColumn {
  position: relative;
}

.handsontable th.beforeHiddenColumn::after,
.handsontable th.afterHiddenColumn::before {
  color: #bbb;
  position: absolute;
  top: 50%;
  font-size: 5pt;
  transform: translateY(-50%);
}

.handsontable th.afterHiddenColumn {
  position: relative;
}
.handsontable th.beforeHiddenColumn::after {
  right: 1px;
  content: '\25C0';
}
.handsontable th.afterHiddenColumn::before {
  left: 1px;
  content: '\25B6';
}

.handsontable td.firstVisibleColumn,
.handsontable th.firstVisibleColumn {
  border-left: 1px solid #CCC;
}
/*!
 * Handsontable HiddenRows
 */
.handsontable th.beforeHiddenRow::before,
.handsontable th.afterHiddenRow::after {
  color: #bbb;
  font-size: 6pt;
  line-height: 6pt;
  position: absolute;
  left: 2px;
}

.handsontable th.beforeHiddenRow,
.handsontable th.afterHiddenRow {
  position: relative;
}

.handsontable th.beforeHiddenRow::before {
  content: '\25B2';
  bottom: 2px;
}

.handsontable th.afterHiddenRow::after {
  content: '\25BC';
  top: 2px;
}
.handsontable.ht__selection--rows tbody th.beforeHiddenRow.ht__highlight:before,
.handsontable.ht__selection--rows tbody th.afterHiddenRow.ht__highlight:after {
  color: #eee;
}
.handsontable td.afterHiddenRow.firstVisibleRow,
.handsontable th.afterHiddenRow.firstVisibleRow {
  border-top: 1px solid #CCC;
}
md-backdrop.md-edit-dialog-backdrop{z-index:80}md-edit-dialog{display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;position:fixed;z-index:81;background-color:#f9f9f9;border-radius:2px;cursor:default}md-edit-dialog>.md-content{padding:16px 24px 0}md-edit-dialog>.md-content .md-title{color:rgba(0,0,0,.87);margin-bottom:8px}md-edit-dialog>.md-content md-input-container{margin:0;font-size:13px}md-edit-dialog>.md-content md-input-container input{float:none}md-edit-dialog>.md-content md-input-container .md-errors-spacer{min-height:auto;min-width:auto;color:rgba(0,0,0,.54)}md-edit-dialog>.md-content md-input-container .md-errors-spacer .md-char-counter{padding:5px 2px 5px 0}md-edit-dialog>.md-content md-input-container [ng-message]{padding:5px 0 5px 2px}md-edit-dialog>.md-actions{margin:0 16px 8px}md-edit-dialog>.md-actions .md-button{margin:0;min-width:0}md-edit-dialog>.md-actions .md-button+.md-button{margin-left:8px}.md-table-pagination{display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-flex-wrap:wrap-reverse;-ms-flex-wrap:wrap-reverse;flex-wrap:wrap-reverse;box-sizing:border-box;padding:0 24px;font-size:12px;color:rgba(0,0,0,.54);border-top:1px solid rgba(0,0,0,.12)}.md-table-pagination,.md-table-pagination md-select{-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end}.md-table-pagination md-select{min-width:64px}.md-table-pagination md-select:not([disabled]):focus .md-select-value{color:rgba(0,0,0,.54)}.md-table-pagination md-select .md-select-value{-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto}.md-table-pagination md-select .md-select-value span.md-select-icon{-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;text-align:center;margin-right:-6px!important}.md-table-pagination md-select .md-select-value span.md-select-icon:after{top:auto;-webkit-transform:scaleY(.5) scaleX(1);transform:scaleY(.5) scaleX(1)}.md-table-pagination>*{display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-ms-flex-align:center;align-items:center;height:56px}.md-table-pagination>.buttons:not(:first-child),.md-table-pagination>.limit-select:not(:first-child){margin-left:32px}.md-table-pagination>.buttons{margin-right:-16px}.md-table-pagination>.buttons>.md-button.md-icon-button{margin:0}.md-table-pagination>.buttons>.label+.md-button.md-icon-button{margin-left:20px}md-select.md-table-select{margin:0}md-select.md-table-select>.md-select-value{padding:0;min-width:0;min-height:24px;border-bottom:0!important}md-select.md-table-select>.md-select-value>span{display:block;height:auto;-webkit-transform:none!important;transform:none!important}md-select.md-table-select>.md-select-value>span>.md-text{display:inherit;height:inherit;-webkit-transform:inherit;transform:inherit}md-select.md-table-select>.md-select-value>span.md-select-icon{display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-ms-flex-align:center;align-items:center;height:24px;margin:0}md-select.md-table-select>.md-select-value>span.md-select-icon:after{top:auto}.md-select-menu-container.md-pagination-select,.md-select-menu-container.md-table-select{margin-left:-2px;border-radius:2px}.md-select-menu-container.md-pagination-select md-content,.md-select-menu-container.md-pagination-select md-select-menu,.md-select-menu-container.md-table-select md-content,.md-select-menu-container.md-table-select md-select-menu{border-radius:inherit}.md-select-menu-container.md-pagination-select md-content,.md-select-menu-container.md-table-select md-content{padding:0}.md-select-menu-container.md-table-select .md-text{font-size:13px}.md-select-menu-container.md-pagination-select .md-text{font-size:12px}md-toolbar.md-table-toolbar{box-shadow:none}md-toolbar.md-table-toolbar.md-default-theme:not(.md-menu-toolbar).md-default,md-toolbar.md-table-toolbar:not(.md-menu-toolbar).md-default{background-color:#fff;color:rgba(0,0,0,.87)}md-toolbar.md-table-toolbar.md-default-theme:not(.md-menu-toolbar).md-default .md-button,md-toolbar.md-table-toolbar:not(.md-menu-toolbar).md-default .md-button{color:rgba(0,0,0,.87)}@media only screen and (max-width:959px) and (min-width:0) and (orientation:landscape){md-toolbar.md-table-toolbar .md-toolbar-tools{height:64px;max-height:none}}md-toolbar.md-table-toolbar .md-toolbar-tools{padding:0 24px}md-toolbar.md-table-toolbar .md-toolbar-tools md-icon{color:rgba(0,0,0,.54)}md-toolbar.md-table-toolbar .md-toolbar-tools>.md-button.md-icon-button{margin:0}md-toolbar.md-table-toolbar .md-toolbar-tools>.md-button.md-icon-button:first-child{margin-left:-12px}md-toolbar.md-table-toolbar .md-toolbar-tools>.md-button.md-icon-button:last-child{margin-right:-12px}md-card>md-table-container:first-child,md-card>md-toolbar.md-table-toolbar:first-child{border-top-left-radius:2px;border-top-right-radius:2px}md-card>md-table-container:last-child,md-card>md-toolbar.md-table-toolbar:last-child{border-bottom-left-radius:2px;border-bottom-right-radius:2px}md-table-container{display:block;max-width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}table.md-table{width:100%;border-spacing:0;overflow:hidden}table.md-table thead.md-head>tr.md-row{height:56px}table.md-table tbody.md-body>tr.md-row,table.md-table tfoot.md-foot>tr.md-row{height:48px}table.md-table thead.md-head+.md-table-progress md-progress-linear{top:-3px}table.md-table .md-table-progress th{padding:0}table.md-table .md-table-progress th md-progress-linear{height:0;transition:opacity 1s}table.md-table .md-table-progress th md-progress-linear.ng-hide{opacity:0}table.md-table .md-table-progress th md-progress-linear>.md-container{height:3px;top:0;transition:none}table.md-table .md-table-progress th md-progress-linear>.md-container>.md-bar{height:3px}table.md-table th.md-column{color:rgba(0,0,0,.54);font-size:12px;font-weight:700;white-space:nowrap}table.md-table th.md-column.md-sort{cursor:pointer}table.md-table th.md-column md-icon{height:16px;width:16px;font-size:16px!important;line-height:16px!important}table.md-table th.md-column md-icon.md-sort-icon{color:rgba(0,0,0,.26);opacity:0;transition:-webkit-transform .25s,opacity .25s;transition:transform .25s,opacity .25s}table.md-table th.md-column md-icon.md-sort-icon.md-asc{-webkit-transform:rotate(0deg);transform:rotate(0deg)}table.md-table th.md-column md-icon.md-sort-icon.md-desc{-webkit-transform:rotate(180deg);transform:rotate(180deg)}table.md-table th.md-column md-icon:not(:first-child){margin-left:8px}table.md-table th.md-column md-icon:not(:last-child){margin-right:8px}table.md-table th.md-column.md-active,table.md-table th.md-column.md-active md-icon{color:rgba(0,0,0,.87)}table.md-table th.md-column.md-active md-icon.md-sort-icon,table.md-table th.md-column:hover md-icon.md-sort-icon{opacity:1}table.md-table tr.md-row[data-ng-repeat].ng-leave,table.md-table tr.md-row[ng-repeat].ng-leave,table.md-table tr.md-row[ng\:repeat].ng-leave,table.md-table tr.md-row[x-ng-repeat].ng-leave{display:none}table.md-table.md-row-select tbody.md-body>tr.md-row{transition:background-color .2s}table.md-table.md-row-select tbody.md-body>tr.md-row:not([disabled]):hover{background-color:#eee!important}table.md-table.md-row-select tbody.md-body>tr.md-row.md-selected{background-color:#f5f5f5}table.md-table.md-row-select td.md-cell:first-child,table.md-table.md-row-select th.md-column:first-child{width:20px;padding:0 0 0 24px}table.md-table.md-row-select td.md-cell:nth-child(2),table.md-table.md-row-select th.md-column:nth-child(2){padding:0 24px}table.md-table.md-row-select td.md-cell:nth-child(n+3):nth-last-child(n+2),table.md-table.md-row-select th.md-column:nth-child(n+3):nth-last-child(n+2){padding:0 56px 0 0}table.md-table:not(.md-row-select) td.md-cell:first-child,table.md-table:not(.md-row-select) th.md-column:first-child{padding:0 24px}table.md-table:not(.md-row-select) td.md-cell:nth-child(n+2):nth-last-child(n+2),table.md-table:not(.md-row-select) th.md-column:nth-child(n+2):nth-last-child(n+2){padding:0 56px 0 0}table.md-table td.md-cell,table.md-table th.md-column{vertical-align:middle;text-align:left}table.md-table td.md-cell>*,table.md-table th.md-column>*{vertical-align:middle}table.md-table td.md-cell:last-child,table.md-table th.md-column:last-child{padding:0 24px 0 0}table.md-table td.md-cell.md-clickable,table.md-table th.md-column.md-clickable{cursor:pointer}table.md-table td.md-cell.md-clickable:focus,table.md-table th.md-column.md-clickable:focus{outline:none}table.md-table td.md-cell.md-numeric,table.md-table th.md-column.md-numeric{text-align:right}table.md-table td.md-cell md-checkbox,table.md-table th.md-column md-checkbox{margin:0;width:20px}table.md-table td.md-cell{color:rgba(0,0,0,.87);font-size:13px;border-top:1px solid rgba(0,0,0,.12)}table.md-table td.md-cell.md-numeric md-select{-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end}table.md-table td.md-cell.md-numeric md-select .md-select-value{-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto}table.md-table td.md-cell.md-placeholder{color:rgba(0,0,0,.26)}table.md-table td.md-cell md-select>.md-select-value>span.md-select-icon{-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end;color:rgba(0,0,0,.54);width:18px;text-align:right}table.md-table td.md-cell md-select>.md-select-value>span.md-select-icon:after{-webkit-transform:scaleY(.4) scaleX(.8);transform:scaleY(.4) scaleX(.8)}.cmix-task-dialog__close{font-size:1.1em}#cmix-task-dialog__close{background-color:#fff!important}.cmix-task-list md-toolbar{padding-left:1.5em}.cmix-task-list tr.task-row:hover{background-color:#f5f5f5;cursor:pointer}.cmix-task-list table.task{font-size:1em}.cmix-task-list table tr td a{text-decoration:underline}.cmix-task-list__filter-label{font-weight:700;margin-left:10px}.cmix-task-dialog__loader{position:absolute;height:100%;width:100%;display:inline-block;z-index:9999999;background-color:hsla(0,0%,100%,.55)}.cmix-task-dialog__loader md-progress-circular{position:absolute;top:50%;right:50%;margin-top:-35px;margin-right:-35px}.cmix-task-create .froala-editor,.cmix-task-detail .froala-editor{overflow-y:auto;min-height:150px;-webkit-box-shadow:0 0 3px rgba(0,0,0,.12),0 0 1px 1px rgba(0,0,0,.16);-moz-box-shadow:0 0 3px rgba(0,0,0,.12),0 0 1px 1px rgba(0,0,0,.16);box-shadow:0 0 3px rgba(0,0,0,.12),0 0 1px 1px rgba(0,0,0,.16);margin-bottom:5px}.cmix-task-detail .comment-content .froala-editor{min-height:50px}.cmix-task-detail .comment-detail{border-left:3px solid gray;padding-left:1em;padding-right:1em;margin-bottom:1.5em}.cmix-task-detail .comment-detail.active-user{border-color:#60a845}.cmix-task-detail .comment-detail p{margin:0 0 .5em}.cmix-task-detail .comment-content{margin-top:.5rem}.cmix-task-detail .comment-user{font-weight:600}.cmix-task-detail .comment-created{text-align:right;font-style:italic;font-size:.8em}.cmix-task-detail .comment-edit-controls .md-button{margin-right:0;margin-bottom:0}.cmix-task-icon{font-size:1.5em;margin:0 8px;cursor:pointer}.cmix-task-notification__count{font-size:.7em}.cmix-task-icon{text-shadow:0 2px 5px rgba(0,0,0,.16),0 2px 10px rgba(0,0,0,.12)}.cmix-task-icon:hover{text-shadow:0 5px 11px rgba(0,0,0,.18),0 4px 15px rgba(0,0,0,.15)}.cmix-large-icon{font-size:1.5em}.cmix-pill,.cmix-task-notification div{display:inline-block}.cmix-pill{font-size:.9em;text-transform:uppercase;border-radius:3em;padding:.3em .55em;vertical-align:middle}.cmix-task-status__OPEN{background-color:#ddd}.cmix-task-status__COMPLETE{background-color:#60a845;color:#fff}.cmix-task-status__DECLINED{background-color:#f9d546}.cmix-task-create md-input-container,.cmix-task-detail md-input-container,.cmix-task-list md-input-container{margin:0}.cmix-task-list md-checkbox,.cmix-task-list md-select{margin:0 0 0 2em}.cmix-task-list>md-toolbar{font-size:13px}.cmix-task-list__refresh-btn{margin:0;min-width:35px}@media print{.cmix-task-list-print,.cmix-task-list-print *{visibility:visible}}.cmix-tasks-dialog .md-primary.md-button{background-color:#52c1a3!important}.cmix-tasks-dialog .md-secondary.md-button{background-color:#fff!important}#sat-tasks.dialog-container{--main-bg-color:#fff;--text-color:rgba(0,0,0,.87);--icons-color:#22232d;--close-button-color:#585863;--close-button-color-hover:#df4e71;--checkbox-selected-background-color:#0075ff;--checkbox-non-selected-border-color:#767676;--checkbox-tick-color:#fff;--separator-border-color:#dde1e7;--subtitle-color:rgba(34,35,45,.7);--task-color:#3ea8dd;--status-open:#dde1e7;--status-complete:#52c1a3;--status-declined:#df4e71;--list-hover-color:#fafafa;--button-border-color:#dde1e7;--add-new-task-color:#3ea8dd;font-family:open-sans,Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif;font-weight:400;align-items:center;width:calc(100% - 110px);max-width:918px}#sat-tasks.dialog-container .dialog-toolbar{background-color:var(--main-bg-color);color:var(--text-color);padding:0}#sat-tasks .dialog-header{border-bottom:1px solid var(--separator-border-color);padding:16px;display:flex;align-items:center;width:100%}#sat-tasks .dialog-toolbar{min-height:unset}#sat-tasks .dialog-title{font-size:16px;font-weight:400;display:inline-block;line-height:1.2;vertical-align:middle;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;flex-grow:1;margin:0}#sat-tasks .theme-cmix md-dialog .dialog-title{color:var(--text-color);line-height:1.184;font-weight:500}#sat-tasks .dialog-header .dialog-close-btn{color:var(--close-button-color);font-size:16px;margin:0;line-height:1.2;min-height:20px;min-width:auto}#sat-tasks .dialog-toolbar .dialog-header .dialog-close-btn .dialog-close-icon{color:var(--close-button-color);line-height:1.2;height:unset;min-height:unset}#sat-tasks .dialog-toolbar .dialog-header .dialog-close-btn:hover{background-color:unset}#sat-tasks .dialog-toolbar .dialog-header .dialog-close-btn:hover .dialog-close-icon{color:var(--close-button-color-hover)}#sat-tasks.dialog-container .dialog-content{box-sizing:border-box;width:100%;padding:16px}#sat-tasks .dialog-list .list-top-controls{background-color:var(--main-bg-color);color:var(--text-color);display:flex;flex-direction:row;justify-content:space-between;align-items:baseline;min-height:unset;font-size:14px;padding:0;height:unset}#sat-tasks md-toolbar:not(.md-menu-toolbar){border:none}#sat-tasks .list-top-controls .list-text{font-weight:700}#sat-tasks .list-input-container{margin:0;padding:0}#sat-tasks .list-select .md-select-value{border:1px solid #0000001f;border-radius:4px;padding:6px 16px;box-shadow:0 1px 1px 0 rgb(0 0 0/10%)}#sat-tasks .md-select-menu-container{--selected-option:rgba(0,0,0,.12);--hover-option:rgba(0,0,0,.04);margin-left:15px;width:110px}#sat-tasks md-select-menu._md{border-radius:4px}#sat-tasks .md-select-menu-container md-content._md{padding-top:0;padding-bottom:0;min-width:unset}#sat-tasks .ng-bindingmd-select-menu-container md-option{min-width:unset}#sat-tasks .md-select-menu-container md-option{width:auto}#sat-tasks .theme-cmix md-select-menu md-content md-option[selected]:focus,#sat-tasks md-select-menu._md md-content._md md-option[aria-selected=true],#sat-tasks md-select-menu._md md-content._md md-option[aria-selected=true]:hover{background-color:var(--selected-option);color:var(--text-color)}#sat-tasks md-select-menu._md md-content._md md-option[aria-selected=false]:hover{background-color:var(--hover-option)}#sat-tasks .md-select-menu-container md-option{height:42px;width:95px}#sat-tasks .list-checkbox{margin:0}#sat-tasks .md-ripple{display:none}#sat-tasks cmix-task-list md-checkbox .md-icon{scale:.7}#sat-tasks cmix-task-list md-checkbox .md-label{margin-left:20px;margin-right:14px}#sat-tasks .list-checkbox.md-checked .md-icon{background-color:var(--checkbox-selected-background-color)}#sat-tasks .list-checkbox.md-checked .md-icon:after{border-color:#fff}#sat-tasks .list-anchor .list-icon:before{color:var(--icons-color)}#sat-tasks .list-top-controls .list-button{padding:0;margin:0}#sat-tasks .list-button.md-button{border:1px solid var(--button-border-color);border-radius:4px;text-transform:none;padding:0 14px}#sat-tasks .list-button.md-button:before{content:"+";color:var(--add-new-task-color);font-size:18px;font-weight:600;position:relative;top:1px}#sat-tasks .list-tasks{margin-top:8px}#sat-tasks .list-table{border-collapse:collapse;border-spacing:0}#sat-tasks .list-table .list-titles{border-bottom:2px solid var(--separator-border-color)}#sat-tasks .list-tasks .list-subtitle{color:var(--subtitle-color);padding:0;font-size:12px;font-weight:400;text-align:left;box-sizing:border-box}#sat-tasks .list-tasks-row{cursor:pointer}#sat-tasks .list-tasks-row .list-tasks-data{font-size:14px;padding:16px;box-sizing:border-box;border-top:1px solid var(--separator-border-color);border-left:none;border-right:none}#sat-tasks .list-tasks-row .list-tasks-data .task-title{color:var(--task-color);font-weight:700}#sat-tasks .list-tasks-row .list-tasks-data .task-title:hover{text-decoration:underline}#sat-tasks .list-tasks-row:hover{background-color:var(--list-hover-color)}#sat-tasks .list-tasks-data:last-of-type{text-align:right}#sat-tasks .list-status{text-transform:uppercase;line-height:24px;padding:2px 12px;border-radius:3em}#sat-tasks .list-status.OPEN{background-color:var(--status-open)}#sat-tasks .list-status.COMPLETE{background-color:var(--status-complete);color:#fff}#sat-tasks .list-status.DECLINED{background-color:var(--status-declined);color:#fff}
/*# sourceMappingURL=cmix-tasks.standalone.min.css.map*//**
 * gridster.js - v0.2.1 - 2013-10-28 * http://gridster.net
 * Copyright (c) 2013 ducksboard; Licensed MIT
 */
.gridster {
  position: relative;
  margin: auto;
  height: 0;
}
.gridster > ul {
  margin: 0;
  list-style: none;
  padding: 0;
}
.gridster-item {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  list-style: none;
  z-index: 2;
  position: absolute;
  display: none;
}
.gridster-loaded {
  -webkit-transition: height .3s;
  -moz-transition: height .3s;
  -o-transition: height .3s;
  transition: height .3s;
}
.gridster-loaded .gridster-item {
  display: block;
  position: absolute;
  -webkit-transition: opacity .3s, left .3s, top .3s, width .3s, height .3s;
  -moz-transition: opacity .3s, left .3s, top .3s, width .3s, height .3s;
  -o-transition: opacity .3s, left .3s, top .3s, width .3s, height .3s;
  transition: opacity .3s, left .3s, top .3s, width .3s, height .3s;
  -webkit-transition-delay: 50ms;
  -moz-transition-delay: 50ms;
  -o-transition-delay: 50ms;
  transition-delay: 50ms;
}
.gridster-loaded .gridster-preview-holder {
  display: none;
  z-index: 1;
  position: absolute;
  background-color: #ddd;
  border-color: #fff;
  opacity: 0.2;
}
.gridster-loaded .gridster-item.gridster-item-moving,
.gridster-loaded .gridster-preview-holder {
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
}
.gridster-mobile {
  height: auto !important;
}
.gridster-mobile .gridster-item {
  height: auto;
  position: static;
  float: none;
}
.gridster-item.ng-leave.ng-leave-active {
  opacity: 0;
}
.gridster-item.ng-enter {
  opacity: 1;
}
.gridster-item-moving {
  z-index: 3;
}
/* RESIZE */
.gridster-item-resizable-handler {
  position: absolute;
  font-size: 1px;
  display: block;
  z-index: 5;
}
.handle-se {
  cursor: se-resize;
  width: 0;
  height: 0;
  right: 1px;
  bottom: 1px;
  border-style: solid;
  border-width: 0 0 12px 12px;
  border-color: transparent;
}
.handle-ne {
  cursor: ne-resize;
  width: 12px;
  height: 12px;
  right: 1px;
  top: 1px;
}
.handle-nw {
  cursor: nw-resize;
  width: 12px;
  height: 12px;
  left: 1px;
  top: 1px;
}
.handle-sw {
  cursor: sw-resize;
  width: 12px;
  height: 12px;
  left: 1px;
  bottom: 1px;
}
.handle-e {
  cursor: e-resize;
  width: 12px;
  bottom: 0;
  right: 1px;
  top: 0;
}
.handle-s {
  cursor: s-resize;
  height: 12px;
  right: 0;
  bottom: 1px;
  left: 0;
}
.handle-n {
  cursor: n-resize;
  height: 12px;
  right: 0;
  top: 1px;
  left: 0;
}
.handle-w {
  cursor: w-resize;
  width: 12px;
  left: 1px;
  top: 0;
  bottom: 0;
}
.gridster .gridster-item:hover .gridster-box {
  border: 1.5px solid #B3B2B3;
}
.gridster .gridster-item:hover .handle-se {
  border-color: transparent transparent #ccc;
}
/*
 * Toastr
 * Version 2.0.1
 * Copyright 2012 John Papa and Hans Fjallemark.  
 * All Rights Reserved.  
 * Use, reproduction, distribution, and modification of this code is subject to the terms and 
 * conditions of the MIT license, available at http://www.opensource.org/licenses/mit-license.php
 *
 * Author: John Papa and Hans Fjallemark
 * Project: https://github.com/CodeSeven/toastr
 */
.toast-title {
  font-weight: bold;
}
.toast-message {
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
.toast-message a,
.toast-message label {
  color: #ffffff;
}
.toast-message a:hover {
  color: #cccccc;
  text-decoration: none;
}

.toast-close-button {
  position: relative;
  right: -0.3em;
  top: -0.3em;
  float: right;
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  -webkit-text-shadow: 0 1px 0 #ffffff;
  text-shadow: 0 1px 0 #ffffff;
  opacity: 0.8;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  filter: alpha(opacity=80);
}
.toast-close-button:hover,
.toast-close-button:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.4;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
  filter: alpha(opacity=40);
}

/*Additional properties for button version
 iOS requires the button element instead of an anchor tag.
 If you want the anchor version, it requires `href="#"`.*/
button.toast-close-button {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}
.toast-top-full-width {
  top: 0;
  right: 0;
  width: 100%;
}
.toast-bottom-full-width {
  bottom: 0;
  right: 0;
  width: 100%;
}
.toast-top-left {
  top: 12px;
  left: 12px;
}
.toast-top-center {
  top: 12px;
}
.toast-top-right {
  top: 12px;
  right: 12px;
}
.toast-bottom-right {
  right: 12px;
  bottom: 12px;
}
.toast-bottom-center {
  bottom: 12px;
}
.toast-bottom-left {
  bottom: 12px;
  left: 12px;
}
.toast-center {
  top: 45%;
}
#toast-container {
  position: fixed;
  z-index: 999999;
  /*overrides*/

}
#toast-container.toast-center,
#toast-container.toast-top-center,
#toast-container.toast-bottom-center{
  width: 100%;
  pointer-events: none;
}
#toast-container.toast-center > div,
#toast-container.toast-top-center > div,
#toast-container.toast-bottom-center > div{
  margin: auto;
  pointer-events: auto;
}
#toast-container.toast-center > button,
#toast-container.toast-top-center > button,
#toast-container.toast-bottom-center > button{
  pointer-events: auto;
}
#toast-container * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
#toast-container > div {
  margin: 0 0 6px;
  padding: 15px 15px 15px 50px;
  width: 300px;
  -moz-border-radius: 3px 3px 3px 3px;
  -webkit-border-radius: 3px 3px 3px 3px;
  border-radius: 3px 3px 3px 3px;
  background-position: 15px center;
  background-repeat: no-repeat;
  -moz-box-shadow: 0 0 12px #999999;
  -webkit-box-shadow: 0 0 12px #999999;
  box-shadow: 0 0 12px #999999;
  color: #ffffff;
  opacity: 0.8;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  filter: alpha(opacity=80);
}
#toast-container > :hover {
  -moz-box-shadow: 0 0 12px #000000;
  -webkit-box-shadow: 0 0 12px #000000;
  box-shadow: 0 0 12px #000000;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  filter: alpha(opacity=100);
  cursor: pointer;
}
#toast-container > .toast-info {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=") !important;
}
#toast-container > .toast-wait {
  background-image: url("data:image/gif;base64,R0lGODlhIAAgAIQAAAQCBISGhMzKzERCROTm5CQiJKyurHx+fPz+/ExOTOzu7Dw+PIyOjCwqLFRWVAwKDIyKjMzOzOzq7CQmJLy6vFRSVPTy9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQJCQAXACwAAAAAIAAgAAAF3eAljmRpnmh6VRSVqLDpIDTixOdUlFSNUDhSQUAT7ES9GnD0SFQAKWItMqr4bqKHVPDI+WiTkaOFFVlrFe83rDrT0qeIjwrT0iLdU0GOiBxhAA4VeSk6QYeIOAsQEAuJKgw+EI8nA18IA48JBAQvFxCXDI8SNAQikV+iiaQIpheWX5mJmxKeF6g0qpQmA4yOu8C7EwYWCgZswRcTFj4KyMAGlwYxDwcHhCXMXxYxBzQHKNo+3DDeCOAn0V/TddbYJA0K48gAEAFQicMWFsfwNA3JSgAIAAFfwIMIL4QAACH5BAkJABoALAAAAAAgACAAhAQCBIyKjERCRMzOzCQiJPTy9DQyNGRmZMTCxOTm5CwqLHx+fBQWFJyenNTW1Pz6/Dw6PGxubAwKDIyOjNTS1CQmJCwuLPz+/Dw+PHRydAAAAAAAAAAAAAAAAAAAAAAAAAXboCaOZGmeaKoxWcSosMkk15W8cZ7VdZaXkcEgQtrxfD9RhHchima1GwlCGUBSFCaFxMrgRtnLFhWujWHhs2nJc8KoVlWGQnEn7/i8XgOwWAB7JwoONQ4KgSQAZRcOgHgSCwsSIhZMNRZ5CzULIgaWF5h4mhecfIQ8jXmQkiODhYeIiRYGjrG2PxgBARi3IhNMAbcCnwI5BAQpAZ8TIwK6vCQVDwUVKL+WzAANTA210g/VJ8OWxQefByQE4dZMzBoInwh4zrtgn2p725YNthUFTNRuGYB3AYGBHCEAACH5BAkJAB0ALAAAAAAgACAAhAQCBISChFRWVMzKzCQiJOTm5GxqbCwuLJSWlPz6/NTW1AwODJSSlGRmZCwqLOzu7HR2dDQ2NAQGBISGhFxaXNTS1CQmJOzq7GxubDQyNKSmpPz+/Nza3AAAAAAAAAAAAAXfYCeOZGmeaKqurHBdAiuP17Zdc0lMAVHWt9yI8LA9fCPB4xEjARoNSWpis01kBpshFahurqzsZosiGpErScMAUO0maKF8Tq/bTQCIQgFp30cQXhB1BHEcXhx0FgkJFiOHVYlzi42AgoRxeRx8fn+en3UABwedKgsBAwMBCygOCjYKDisLFV4VrCUAtVUKpSZdXl8mB8EbByQWcQPFAyYZxccdB7sV0cvBzbmvvG0LBV4FrFTBYCWuNhyyHRTFFB20trh4BxmdYl4YIqepq0IRxRE+IfDCAFQHARo0NGERAgAh+QQJCQAgACwAAAAAIAAgAIUEAgSEgoRMTkzMyswcHhzk5uR0cnQUFhRcXlwsKiz09vQMCgyMiozU1tQkJiR8fnxkZmT8/vwEBgSEhoRcWlzU0tQkIiT08vR0dnQcGhxkYmQ0MjT8+vwMDgyMjozc2twAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG+UCQcEgsGo/IpHLJXDweC6Z0+IhEHlOjRGIMWLHZoUZx0RQlAajxkFFKFFYFl5m5KNpIySU+X2bIBEoQZBBZGQdMElFhjI2Oj5AgHQEDAw8dQxYeDBaNHRVWVhWYCXsRFwmMXqFWEyAerB6MA6xWA6+xs7URt6VWqIwTu64gDh4eDp6goaORQ5OVAZjO1EgEGhB4RwAYDQ0YAEwIcBEKFEgYrBhLBORxgUYfrB9LELuF8fNDAAaVBuEg7NXCVyRdqHVCGLBiIIQAB1Yc4BXh9uEbwAXuyi2iQI7DuSwHdiFqCEGDtizLRFUDsaGAlQIbVoJYIEDAIiZBAAAh+QQJCQAbACwAAAAAIAAgAIQEAgSMioxcWlz08vQcHhysqqwMDgx8enwsKiykoqRkZmT8+vzEwsQMCgyUlpQkJiS0srQEBgSMjoxcXlz09vQkIiSsrqwUEhQ0MjRsamz8/vwAAAAAAAAAAAAAAAAAAAAF7+AmjmRpnmiqruz2PG0sIssCj4CQJAIgj4/abRNJaI6agu9kCAQaphdJgEQKUIFjgGWsahJYLdf7RTWfLKr3+jsBClVlG5Xb9eb4fImgUBBKDVB4ExRHFGwbGRQLGXMEhUgUfw2QC4IyCmSNDQtHlm2ZXgoiGQsUjW0EnUgLfyKBeYSeiHojfH61uS0GBisVEgEVLRcWRxAXKAgDRwMILMVIECgSVRIrBmS9JtRI1iMVBweuGxerSNolyszOIhjLGs0jEFXSKA8SEkMbcEgWIxfzNBxrw6AKgxIGkM05UOWALhERHJhysOThBgAVWYQAACH5BAkJABkALAAAAAAgACAAhAQGBIyKjERCRMzOzCwuLGRiZPz6/OTm5AwODLSytFRSVNTW1Dw6PHx6fAwKDJSSlERGRNTS1DQyNGxqbPz+/BQSFLy6vFRWVNza3AAAAAAAAAAAAAAAAAAAAAAAAAAAAAXqYCaO5FgFwxBUZeu61ULNFMa+eBvQdJD/owFvFhkBBAwHsBQZUooZyWF2YOQkBNJu6ANMaQeli0AxSEwymi0DcUJeEgPlbEJFAghRe/h+Eeg/Dl9UYks5DF9VhksOAgKFi5GSSwh5kzgVCXIJNxknD5aSCTwJIw8zD5MITpanFKmSCHI8NxUPoJejNKWXLZkznL0vCJ3CxsckDpA/ChYJFzkTBgYTSxc80C4OswbLLhY8Fi/bMwYAJVgl4DTiL9LUJADrFuci1zTZLwD1IwU8BSQuWLCQb1EDHg2QiSDALYvCDAISJLDy8FIIACH5BAkJAB4ALAAAAAAgACAAhAQGBISGhFRSVNTW1CQiJKyqrGRmZOzu7CwuLIyOjGxubPz6/BQSFGRiZOTi5CwqLLy6vDQ2NIyKjFRWVCQmJKyurGxqbPT29DQyNJSSlHRydPz+/BQWFOzq7AAAAAAAAAXhoCeOJElYClGubOs117YtjWuvxCLLi3qbhc6h4FPsdorfiNI5dige43GT9AAkHUcCwCpMNxVP7tgTJY4J1uF7EBl0M8Ooueuo2SOCIkVa11kVX2E2EmgsFH4yBz4uAAkdHVstBAUHQ4xKmZqbnJ2bAhAQAiURGJ4eE0cTIxgzpp0QRxCsrp6xO7MjpaepO6unKxOhv8DFxsfIJBwaChw2DAkZDEocDjIOzi0ZMhlKUjIaLtsb3T8aR+EtDBkJ0yQUBQVQI9XX2ZsDMgMlyxr3mzE2XEgmotCGAARFIHiQ0FMIACH5BAkJABgALAAAAAAgACAAhAQCBISGhDw+POTi5CwuLLS2tPTy9BQSFJyenGRiZDQ2NIyOjLy+vPz6/BweHIyKjFRSVOzq7DQyNLy6vBQWFHRydDw6PPz+/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXXICaOZHkcZaquIjVd10SxtFrAcFGrVhBYIwoON9uNAsOA6DCEFTEKBEKxEjQvAtELNxkpGrAGNfW4Plpb2QgxRKjKzfPoVGLj3CnLNUv7hscpSDhKOxJSgDwPP0ZGAACMjAQFDQYFBJA0BAZDBpeYGBQVFUU3TV2YFAMwAzNgTQ2PkBVDFRiuQ7CYszi1pUOnkKmrM5qcnqiiTwQTDQ2Wn9DR0tPUfRKQEBEREDQSFw3XRhEwEd3f4TvjF+XWKgJ8JNnb0QkwCdUlCzAL+CQODAwc9BtIMAQAOw==") !important;
}
#toast-container > .toast-error {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=") !important;
}
#toast-container > .toast-success {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==") !important;
}
#toast-container > .toast-warning {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=") !important;
}
#toast-container.toast-top-full-width > div,
#toast-container.toast-bottom-full-width > div {
  width: 96%;
  margin: auto;
}
.toast {
  background-color: #030303;
}
.toast-success {
  background-color: #51a351;
}
.toast-error {
  background-color: #bd362f;
}
.toast-info {
  background-color: #2f96b4;
}
.toast-wait {
  background-color: #2f96b4;
}
.toast-warning {
  background-color: #f89406;
}
/*Responsive Design*/
@media all and (max-width: 240px) {
  #toast-container > div {
    padding: 8px 8px 8px 50px;
    width: 11em;
  }
  #toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
}
  }
@media all and (min-width: 241px) and (max-width: 480px) {
  #toast-container  > div {
    padding: 8px 8px 8px 50px;
    width: 18em;
  }
  #toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
}
}
@media all and (min-width: 481px) and (max-width: 768px) {
  #toast-container > div {
    padding: 15px 15px 15px 50px;
    width: 25em;
  }
}

 /*
  * AngularJS-Toaster
  * Version 0.3
 */
:not(.no-enter)#toast-container > div.ng-enter,
:not(.no-leave)#toast-container > div.ng-leave
{ 
    -webkit-transition: 1000ms cubic-bezier(0.250, 0.250, 0.750, 0.750) all;
    -moz-transition: 1000ms cubic-bezier(0.250, 0.250, 0.750, 0.750) all;
    -ms-transition: 1000ms cubic-bezier(0.250, 0.250, 0.750, 0.750) all;
    -o-transition: 1000ms cubic-bezier(0.250, 0.250, 0.750, 0.750) all;
    transition: 1000ms cubic-bezier(0.250, 0.250, 0.750, 0.750) all;
} 

:not(.no-enter)#toast-container > div.ng-enter.ng-enter-active, 
:not(.no-leave)#toast-container > div.ng-leave {
    opacity: 0.8;
}

:not(.no-leave)#toast-container > div.ng-leave.ng-leave-active,
:not(.no-enter)#toast-container > div.ng-enter {
    opacity: 0;
}
/* BASICS */

.CodeMirror {
  /* Set height, width, borders, and global font properties here */
  font-family: monospace;
  height: 300px;
  color: black;
}

/* PADDING */

.CodeMirror-lines {
  padding: 4px 0; /* Vertical padding around content */
}
.CodeMirror pre {
  padding: 0 4px; /* Horizontal padding of content */
}

.CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
  background-color: white; /* The little square between H and V scrollbars */
}

/* GUTTER */

.CodeMirror-gutters {
  border-right: 1px solid #ddd;
  background-color: #f7f7f7;
  white-space: nowrap;
}
.CodeMirror-linenumbers {}
.CodeMirror-linenumber {
  padding: 0 3px 0 5px;
  min-width: 20px;
  text-align: right;
  color: #999;
  white-space: nowrap;
}

.CodeMirror-guttermarker { color: black; }
.CodeMirror-guttermarker-subtle { color: #999; }

/* CURSOR */

.CodeMirror-cursor {
  border-left: 1px solid black;
  border-right: none;
  width: 0;
}
/* Shown when moving in bi-directional text */
.CodeMirror div.CodeMirror-secondarycursor {
  border-left: 1px solid silver;
}
.cm-fat-cursor .CodeMirror-cursor {
  width: auto;
  border: 0 !important;
  background: #7e7;
}
.cm-fat-cursor div.CodeMirror-cursors {
  z-index: 1;
}

.cm-animate-fat-cursor {
  width: auto;
  border: 0;
  -webkit-animation: blink 1.06s steps(1) infinite;
  -moz-animation: blink 1.06s steps(1) infinite;
  animation: blink 1.06s steps(1) infinite;
  background-color: #7e7;
}
@-moz-keyframes blink {
  0% {}
  50% { background-color: transparent; }
  100% {}
}
@-webkit-keyframes blink {
  0% {}
  50% { background-color: transparent; }
  100% {}
}
@keyframes blink {
  0% {}
  50% { background-color: transparent; }
  100% {}
}

/* Can style cursor different in overwrite (non-insert) mode */
.CodeMirror-overwrite .CodeMirror-cursor {}

.cm-tab { display: inline-block; text-decoration: inherit; }

.CodeMirror-ruler {
  border-left: 1px solid #ccc;
  position: absolute;
}

/* DEFAULT THEME */

.cm-s-default .cm-header {color: blue;}
.cm-s-default .cm-quote {color: #090;}
.cm-negative {color: #d44;}
.cm-positive {color: #292;}
.cm-header, .cm-strong {font-weight: bold;}
.cm-em {font-style: italic;}
.cm-link {text-decoration: underline;}
.cm-strikethrough {text-decoration: line-through;}

.cm-s-default .cm-keyword {color: #708;}
.cm-s-default .cm-atom {color: #219;}
.cm-s-default .cm-number {color: #164;}
.cm-s-default .cm-def {color: #00f;}
.cm-s-default .cm-variable,
.cm-s-default .cm-punctuation,
.cm-s-default .cm-property,
.cm-s-default .cm-operator {}
.cm-s-default .cm-variable-2 {color: #05a;}
.cm-s-default .cm-variable-3 {color: #085;}
.cm-s-default .cm-comment {color: #a50;}
.cm-s-default .cm-string {color: #a11;}
.cm-s-default .cm-string-2 {color: #f50;}
.cm-s-default .cm-meta {color: #555;}
.cm-s-default .cm-qualifier {color: #555;}
.cm-s-default .cm-builtin {color: #30a;}
.cm-s-default .cm-bracket {color: #997;}
.cm-s-default .cm-tag {color: #170;}
.cm-s-default .cm-attribute {color: #00c;}
.cm-s-default .cm-hr {color: #999;}
.cm-s-default .cm-link {color: #00c;}

.cm-s-default .cm-error {color: #f00;}
.cm-invalidchar {color: #f00;}

.CodeMirror-composing { border-bottom: 2px solid; }

/* Default styles for common addons */

div.CodeMirror span.CodeMirror-matchingbracket {color: #0f0;}
div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #f22;}
.CodeMirror-matchingtag { background: rgba(255, 150, 0, .3); }
.CodeMirror-activeline-background {background: #e8f2ff;}

/* STOP */

/* The rest of this file contains styles related to the mechanics of
   the editor. You probably shouldn't touch them. */

.CodeMirror {
  position: relative;
  overflow: hidden;
  background: white;
}

.CodeMirror-scroll {
  overflow: scroll !important; /* Things will break if this is overridden */
  /* 30px is the magic margin used to hide the element's real scrollbars */
  /* See overflow: hidden in .CodeMirror */
  margin-bottom: -30px; margin-right: -30px;
  padding-bottom: 30px;
  height: 100%;
  outline: none; /* Prevent dragging from highlighting the element */
  position: relative;
}
.CodeMirror-sizer {
  position: relative;
  border-right: 30px solid transparent;
}

/* The fake, visible scrollbars. Used to force redraw during scrolling
   before actual scrolling happens, thus preventing shaking and
   flickering artifacts. */
.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
  position: absolute;
  z-index: 6;
  display: none;
}
.CodeMirror-vscrollbar {
  right: 0; top: 0;
  overflow-x: hidden;
  overflow-y: scroll;
}
.CodeMirror-hscrollbar {
  bottom: 0; left: 0;
  overflow-y: hidden;
  overflow-x: scroll;
}
.CodeMirror-scrollbar-filler {
  right: 0; bottom: 0;
}
.CodeMirror-gutter-filler {
  left: 0; bottom: 0;
}

.CodeMirror-gutters {
  position: absolute; left: 0; top: 0;
  min-height: 100%;
  z-index: 3;
}
.CodeMirror-gutter {
  white-space: normal;
  height: 100%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: -30px;
  /* Hack to make IE7 behave */
  *zoom:1;
  *display:inline;
}
.CodeMirror-gutter-wrapper {
  position: absolute;
  z-index: 4;
  background: none !important;
  border: none !important;
}
.CodeMirror-gutter-background {
  position: absolute;
  top: 0; bottom: 0;
  z-index: 4;
}
.CodeMirror-gutter-elt {
  position: absolute;
  cursor: default;
  z-index: 4;
}
.CodeMirror-gutter-wrapper {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.CodeMirror-lines {
  cursor: text;
  min-height: 1px; /* prevents collapsing before first draw */
}
.CodeMirror pre {
  /* Reset some styles that the rest of the page might have set */
  -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0;
  border-width: 0;
  background: transparent;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  white-space: pre;
  word-wrap: normal;
  line-height: inherit;
  color: inherit;
  z-index: 2;
  position: relative;
  overflow: visible;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-variant-ligatures: none;
  font-variant-ligatures: none;
}
.CodeMirror-wrap pre {
  word-wrap: break-word;
  white-space: pre-wrap;
  word-break: normal;
}

.CodeMirror-linebackground {
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 0;
}

.CodeMirror-linewidget {
  position: relative;
  z-index: 2;
  overflow: auto;
}

.CodeMirror-widget {}

.CodeMirror-code {
  outline: none;
}

/* Force content-box sizing for the elements where we expect it */
.CodeMirror-scroll,
.CodeMirror-sizer,
.CodeMirror-gutter,
.CodeMirror-gutters,
.CodeMirror-linenumber {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.CodeMirror-measure {
  position: absolute;
  width: 100%;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

.CodeMirror-cursor { position: absolute; }
.CodeMirror-measure pre { position: static; }

div.CodeMirror-cursors {
  visibility: hidden;
  position: relative;
  z-index: 3;
}
div.CodeMirror-dragcursors {
  visibility: visible;
}

.CodeMirror-focused div.CodeMirror-cursors {
  visibility: visible;
}

.CodeMirror-selected { background: #d9d9d9; }
.CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; }
.CodeMirror-crosshair { cursor: crosshair; }
.CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection { background: #d7d4f0; }
.CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection { background: #d7d4f0; }

.cm-searching {
  background: #ffa;
  background: rgba(255, 255, 0, .4);
}

/* IE7 hack to prevent it from returning funny offsetTops on the spans */
.CodeMirror span { *vertical-align: text-bottom; }

/* Used to force a border model for a node */
.cm-force-border { padding-right: .1px; }

@media print {
  /* Hide the cursor when printing */
  .CodeMirror div.CodeMirror-cursors {
    visibility: hidden;
  }
}

/* See issue #2901 */
.cm-tab-wrap-hack:after { content: ''; }

/* Help users use markselection to safely style text background */
span.CodeMirror-selectedtext { background: none; }
.CodeMirror-hints {
  position: absolute;
  z-index: 10;
  overflow: hidden;
  list-style: none;

  margin: 0;
  padding: 2px;

  -webkit-box-shadow: 2px 3px 5px rgba(0,0,0,.2);
  -moz-box-shadow: 2px 3px 5px rgba(0,0,0,.2);
  box-shadow: 2px 3px 5px rgba(0,0,0,.2);
  border-radius: 3px;
  border: 1px solid silver;

  background: white;
  font-size: 90%;
  font-family: monospace;

  max-height: 20em;
  overflow-y: auto;
}

.CodeMirror-hint {
  margin: 0;
  padding: 0 4px;
  border-radius: 2px;
  max-width: 19em;
  overflow: hidden;
  white-space: pre;
  color: black;
  cursor: pointer;
}

li.CodeMirror-hint-active {
  background: #08f;
  color: white;
}
/*

    Name:       yeti
    Author:     Michael Kaminsky (http://github.com/mkaminsky11)

    Original yeti color scheme by Jesse Weed (https://github.com/jesseweed/yeti-syntax)

*/


.cm-s-yeti.CodeMirror {
  background-color: #ECEAE8 !important;
  color: #d1c9c0 !important;
  border: none;
}

.cm-s-yeti .CodeMirror-gutters {
  color: #adaba6;
  background-color: #E5E1DB;
  border: none;
}
.cm-s-yeti .CodeMirror-cursor { border-left: solid thin #d1c9c0; }
.cm-s-yeti .CodeMirror-linenumber { color: #adaba6; }
.cm-s-yeti.CodeMirror-focused div.CodeMirror-selected { background: #DCD8D2; }
.cm-s-yeti .CodeMirror-line::selection, .cm-s-yeti .CodeMirror-line > span::selection, .cm-s-yeti .CodeMirror-line > span > span::selection { background: #DCD8D2; }
.cm-s-yeti .CodeMirror-line::-moz-selection, .cm-s-yeti .CodeMirror-line > span::-moz-selection, .cm-s-yeti .CodeMirror-line > span > span::-moz-selection { background: #DCD8D2; }
.cm-s-yeti span.cm-comment { color: #d4c8be; }
.cm-s-yeti span.cm-string, .cm-s-yeti span.cm-string-2 { color: #96c0d8; }
.cm-s-yeti span.cm-number { color: #a074c4; }
.cm-s-yeti span.cm-variable { color: #55b5db; }
.cm-s-yeti span.cm-variable-2 { color: #a074c4; }
.cm-s-yeti span.cm-def { color: #55b5db; }
.cm-s-yeti span.cm-operator { color: #9fb96e; }
.cm-s-yeti span.cm-keyword { color: #9fb96e; }
.cm-s-yeti span.cm-atom { color: #a074c4; }
.cm-s-yeti span.cm-meta { color: #96c0d8; }
.cm-s-yeti span.cm-tag { color: #96c0d8; }
.cm-s-yeti span.cm-attribute { color: #9fb96e; }
.cm-s-yeti span.cm-qualifier { color: #96c0d8; }
.cm-s-yeti span.cm-property { color: #a074c4; }
.cm-s-yeti span.cm-builtin { color: #a074c4; }
.cm-s-yeti span.cm-variable-3 { color: #96c0d8; }
.cm-s-yeti .CodeMirror-activeline-background { background: #E7E4E0; }
.cm-s-yeti .CodeMirror-matchingbracket { text-decoration: underline; }
.colorpicker-visible,
.colorpicker-visible .dropdown-menu {
  display: block !important;
}
colorpicker-saturation {
  display: block;
  width: 100px;
  height: 100px;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAAACXBIWXMAAAsTAAALEwEAmpwYAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAgY0hSTQAAeiUAAICDAAD5/wAAgOkAAHUwAADqYAAAOpgAABdvkl/FRgAAFJhJREFUeAGMU+/q4kAMzFYf4LgP96a+q4c+gSIqxf/r5maWDoTgz15gmM0kW5uMLa21v2b2G6jAG2iEzqUU6q5c/OlMuHtL/ULNd5TP6EJ1RP7NuXvKE397jmbg7MrzHI748T1UA3eopyGQV2qK1+vVHo/Hm1itVm0J7Q+afwGMmgeRphf7Noh6lCeuHJAvm/X8rAQNlw2VScoj6863OQjl2ZB3qkeu5Lh0RJ3qynuNjJA21FppQAHa8/l83263No5jOxwOttlsbL1e2xIXXpMZzzRsXoTw34bQgLiQbKh6M9SXDBSypn4XGOSkGUO1cJdn1Yh4/qYVgctmGSwXyARNcOSFRuBMHvA1GMzwy+Vix+PRdrvdYrvd2vl87oZYDCxBL9B/jEyopghzlNjL0DlB+gAoPNXyOfa3oA9puXonyVHzdH+g9MEISa5z0qUNkwkm6MJkxALg8mlMAxvNwBfhYLvf7w50vl6vBV9H2e/3BjYateQDY8gM5bmWovygdyEb87k/G5Zz9c/2zfEQFysO5nDJ6mMel91Z//pwFpygIWIaMXE3AoYssPBCI/B12DiONMT5VZxOJ0f+j/MyWo5chYGowfn/j03lNXBpl85Up8d46u6DChBMvKv2UePrrAsChtdLTi73oEBjFDYpmIp/KSgRhRw357sXuHLknRgI8d90F8QL761oI8iQeJqvUOGnAoEkgNblF13iiJASZCwhLkG+v7/Halvt5+enr7x+02lZOwKymJ7jMAXK32RxaXnNxfXzCOkCxTO2I3NiR0i9gAjQLLoVHkKG8pCi0UT4Q0h5xUFIlBJEYmg+1yg6TrUq+YfEWKK0lWsSS8+DkNvCWtvJXu0UbDyH/NYjoDHFybPd/cPeficiW5LvkVdBNY4UoIqOQMwPBXm9vUYIVCj3GkXCCo1tRS//uMhYoVG3q46HaBQtamESTs/+0o92hOTaBbqjBwpu8reCuzAP4rkXpQBzQwbhZxD7jNYEAS4CI2Rg4hLitPUor2hGh6j4hQ5FfWt8LQF+SwyJIpGUV05nu56VHqJhR8ybb+Q+/dnPYZYSigIICvY3xfYxCckz/qazprjDiFJ+5DWVwscaMpSDgkleI2uutaKk5kPFNTqO8pBDlBQZEqKvoJXp7+lxzx7Cuoqp2M7zlrm5JbH/9oZ/GLdzBGf9FNmmvPi+h2FXnm8L5WhdCMJNyr1D6yvKP1rFQYgSjWpteE0JMraEME8ykpzo/0/+wcg5yGHMooegQYIRyXU1i52tCSfn9oSQFH+Fe4jypxs3RHA+xNCcNUZ+BXRg7iu0lhgDAesisSfE6UA0iudz9sNHKChek5eBX9a+FwKkKQ+Nd6JljkLX6B4x2L8hhHOsVdhR4iHEEe1LeWJCSI2tCo9AU3OIKHGgbupv6NvyRciGgMzPPLP5LmhPdKTx8qgSWIXxVkZx8QJihmCvPP8nE6IRXniKT9GThhKF0QkZal3KQYcLgn+s8YwWJiNnLVL4mOz1b+4piM8/+YYb8xNlLoASXqC7c9DCOokhl4RAKgSkCNM9wklBOPL4BIJoblQggsb8Km9W/IlIJkKrPN4xEETPwtS3hczrp8//pxmzpoUIBfeSO8r8/OE59wgTIsnIb4yBj7Cft6pYI8Sbh5TBD749IANSlKPgJQQmrr0uUfjbCnlV/V9OCfLpDc9b0nw4x3bznAbWFAyfUeBLEIhA3uaCKifFyUBg8pg+Ro8nOCVOintKoy0xj5bFvhNCQMAfoUqgc8UwMRot8dWy/qPcDHQk5XkgOPD97//Gl/xC2kKlkhl2V4pMQmAON+22E+4XgIzMKYMSmp7S0ymTcpYEYM6eVjKlJV25HgYguZ6lD1hR4S4byoxRwMUQjm87MYVxrW19nCqbgTD4kSEde7FlxcF4tKDCPu41lBUKa7tjgGuHJuPCwpBPdcONuVTiMEMgbPpugJE0+GIRusL+yD9qGhrP05ClFHfOuppZeV4ZkgyJdJc3dkxh0+8YDBpbsyuxrXYzV4VfmJLFwxdAEq7azIj9Yw9AuUCjEL3I7pD1xgo0BPv5Y2U9MCBvegpGxq9/vK7BftOQssP3ueL+HfJwLkAqVLlgPH9CF7phgMoKj/X8EjiNCtGQHzFU9mM7gsR8W/5wkuZ9ZUKBcYuWdE3qU2YYqLIllfo5aog2m2haKnlsvP30YUHO+3f9Yu2GrNpW2rYV8id2bM/9KxBPc/QgZQT9AlotQRtgSls1pIDADvo+3hL0bXBU0yxqG4Fx2ZshdXSBaEjZYtIdh/uxQDOrpMV/Biatjj8nzRgq8p0Ud6w9fAwwe+9mSJPWUMWzPG+A21ZWG45nhoQp1RdaBZ1WYDteUQ4gffvH1jomTHlkxk9GTDi5AS0YAODxMoRjMiqsjq/MyqvFFJX9buv6+18Y8mwDyFRH7Dj+T1rBtYivRV1v9mHtiKhfD10QrRFdsxor9Z4bgChAtF22fLsv1sfsGL4B0grazi9DygpagZ0A2s2WBMBmLn0de15D11KG5WSAvh20rB92fEIVwk0jdV2qPdyWr4mYuw75NMua7FFtmZxbkN7qi4DSFgaqQjc75GwDwbgBMkMMAPfD6cR1wpl1o7GftDhMMSPaFmm05+Tv/HWW9aQXbMfiBAZ4cNLdnz6hyAyj7ki9oQYYqdYd4h405JRwXs4DhLKozKhzG65449eQ4i5nX2LKXYjCVDcWF58Y0uJvj2EpY2VN79NzjHlVF8E1M2JZxOzW62rIEhhlywoAMMhrS8dFBJhgMJx5aRxg/fv9rSW9WN7LeQxZPn4bo6ExYgppsWNkQIt2pOAU8DAK8Oh/yK7ECM8pCAboJDTRFNsJQ3ZkBdtFXgV+A5qAEasl4sk2WxjOzn9PY6sZ1ZxJD/p9FMwoc1pjLNhEbLd2eX2Kpv6Y+aSCn8OUxhqyGBOwS9fxUiwDPIXfZw2JeNs+hS2/2R6r2Lfv+S/ivt3PG7eHh3S/52EDDD0j5h9rStliJiQLc5/fW9wP0PNcfB77nmVpX6Js2WaOQwb9OrXLJ9UMz7UmuJaAQj7fjxi6V97wIGftsqVMwcGZN2ZTL30fr7IYkL4xpG/9Y9bV677pUYXfrHk5tzuvoS1aRPX9ScV+3+Mn1FU7YMR6GT8LEP38xs2OyzVZRjIz9mWrIV2lTYo6LLk3BKXGKCM47jycKCb4zb4GzBi0g3Ec0a9OsBVQQsp+YwTjo+Mr9C/MQluIJmIkYYvvzpL2RhuiKT1uttTrK+q74p8siUsR64/nlS3XedcfZgY6kfUsv/FOUZfOlwGTfjyPCxjrRDbCvMLr4vCc9kN26pBR7H8KuW0wHZrkYCzj2+z5WbPCoZM2rISeEwop48KRZdhiPtmYLXNSyZs91YAeH06dow/Vpg3o+W9a/hbgPI5jTnvdx5YxZUbrCY1V7De22qProHXrDL/9B8dlHIuM3QQqUxL7d/pLyyqrzKlV6/2O/F/GBXP6ochjYdiKvQ4saA1ddlTvY/bEkY9Wa1iLkEN2JVavOhxHRlvqMF/XAnEVOJgXy3fAhCgY0N8bC0Nnpl8Lw/bt2LnCnsENO6o5r7bMcn2hONzQswSK2WVbphBy2kcjGqqWNRJQfU6ALwFgHTlo41pWWaE+O4V2zuhYZ1jYinTnvVmcC0Oclck+MgTH1jZU9Ty/VWaUIS42JwFPpkiWyDiZafZDygiJTseTIrc/g5v1qYQ6kgVnT48A+bztNN774MD2U8kDphjxaP18nyGzZBGUh7Y9L1uGvIp6Mq3EePVl7Xxf2/pE9gWI2KTFX2J3xx8Z0jWvnv+VhaG6tr8vkccerdTfdvhaXzTlLUM8t6HNIa9a4DfuDYgCWEaUCQ5jBcz2YI43lgqsrRi21F+pRThPhW5NvqLDK0Nw5E7RV7DKjDreX69/ZVY14wGQ8+HN733OxHGci9MKTBlkMNCSMqJA/udFzgg5IWqXKW9pbwvDu9VxFIjREGtHAS1w7rs4bcXtpIEV1t7H9QdgfmPIGrTmKDAW+gmIFHxNaRl3iCKEvYcsjuPAgTEzQ5zO2SHY3q+FX98oqti8casANPRxL19nx34JWZ9XQJ4r+uOLpmwxZxGyZF8Bcb9lf+dUR0zZgjwCigMKmGltbXG/SzZmUzQlxzMzGCdcmVUDEH3OijXp7k5StNVSh7xnV6Nju98+MaTMaMjK+b7xCy2gD1vk+G54eVxM6PEzM2TLqjJk3IdR/4iG7RSF+y1klQk4jqGvb/h4n6TBQwHZ77GYE0alLzZOTOl1+ShiFvUyBYRJIvSC1PFPfYemMoW+EpWXtaznArCLitWSnX6BKnPOLkTWIT/3vB3SEFemqF+m0Bh7ZIoY13m7IfmhfyxNzsu90j/f65Bn5hSoMSHIvPE+nptWAKesbWRY6xJax/NG30AnvS4AAPkVEOuDmHBk3KJ+dsewIt41+3t8+kqRB85Sy82QAmZmpGrfGnfqejZrKlP8Rv+GIZ0nnWi/Ys74kWzs6Ly7INTfYvA4CshcGL6wpSJ8I1/GtLCs9ji0lQG+vgzBOkmInRh2a0Y1If0DYPmr5vTPwIv9hCWPXyBcjUGL+n+PhWEdL9Rhi390Wv2lxeHRjGZbYR0Os7DWgb0f15VVzPd5XVcgClAZ41se8uE/3efT7Eq7oQXk7xpSB3NcrfAYzGmFLUAL1MwYtabPjBeYXhcAAGolA3vSjJkZ88Zdx6+/pzrEaf35x9XeODgANYTlPox167cOfmJMAbnv4+1QGNA6pAwpg8qInhdAPa4GFTjrKQi5XSAsjrsf0qWSb3sjm+M4vQz5fNEaA1TGTMxo9vVu2wIATgWozlfavegXZJ7h/+3dYY7cOA7F8VQnu/e/5u4dtnqRwThD/KA/ywU0Jl9GQGCZkl0yHx9JSW4nGPRxKXuA8RzG/BygfJchBtujW5Ipzso9R5HGA998fC7MCMX2kYyrC+mrwd9z7+n5ZIMM9bODV8kYUjuEoeTPAyPemVxq0feB+cJ/xJYuKj3qFoL3r0khi4uHLEvLJwitTGlA4pz734whA7A+ElO05MEer2vLt9hPRgoQcVQmBUM6oNf7VxPlOXudyl7AYEI3Yk0z4TOYxXyEVDliCvOZp+NH8cmAEXNmevVk1p7fpr89MZyKP1l9xZIXzPmIdPmkkLlrqEL8bpbu8XUBJOTT+psdPAvPMV1LAnOlvgkIfyPoPsjxMxquUV2ncX/do65KmSvOriY70XSF2OecL0A7Yf08eYKMJeiHuFq7hE+A2V3WUGgE7sEKGHFjTuNKwAfp8HPGLRUA4N+GAv8QaOkqr91Yl9E+ActMDb059ktX92PIolQB+Hx9Ta9voeB8y/4A9mmCqjyzMvY5PhjHMchf7REHZNH15xSTIfafLss/R2hABEKmtPK5VwPszNms7xOwLB8VM5RrqZbprier+Ei/cncBZYzxQkCaIdv+uUvr9Mm3ViKmPIwBk0GAL7N0mRFjWh6z/+d0oRrAVGTMMSZwMwP9dOvW6077IcWUufB3cjnXUspxM2l+YvZwf2PHtFI+vEm/YMbhvGIJ/SI7Q4kyJGJVsk9mjIniD7Os27GEPjLiaLE323Nyimu85GXtMhM3kvs3F8BPsr+NISPNpR0WhKuaxvkSkIeu5PpW1rWqSrvnMqn+nvE4TxkymeA5zOnzcZnn34whtD281rb511sX+5mTPGVmrWWZP1vPd31Xix+gvMGcEwO9RycRvdFm7DH1TMB1VbqnQ1enDMYUWfNwtRelN1Nc32KVuIBA3qlxj6GMpZlhPYB4VIzyt4JhFyN+nXs/FH8vy5p7HlMZIjwyiGNGtCluDOrElNXKG+gEeAcw5j4HVygTbBf4qfTt/V7rP+YX5a7B+S1FFxFBvSeMs06/zfVk3f0Zf98gbJJge9WV6bKW9hP7vG8EeHcMUYxKOLkvY4D+WoDGMQO9TAt31oC2mysDAqhwaWBmf5iTACADEPZDZMJunYJG8NU9IburyOhztPgyjOt4igUE+3xW2SCYm7IFPQJ6z9SvclKKD6tchS0uyz4F/gocYDcjPLaRnTBIVzaex+Mp/pxiyXMAknvq5bZOR/vLBhX0oH8r/v6xx6d27x8FAgU3a2RixRCSooshjxUQPyV+zGooKD+PBUSwLmVfAWa09bOgZ9zQAwZMr/AcR1n10mWlHzaoNrv6WAogdazY9iXHUalOt+8FsJ8nt49rHYAMlxWAzBRYBWbATdkAVIujr22vLNd4Z+Z253pdh8quMQuMCp4NHUcA5PjWieDAjqByANJ1gRV0AcQ0yfioe6Rpldm2M6d/WuVHW7isUJ5lUV4yQ5mgC2y4SYGq/t5vjU8b4xmDynxo/TIi6iX7fgRk/ueQbrSMPY+rbrawAlfgFLA1nylSAHRbbjDj/n36ehk8ZBPome5eRZfV8w/lo+hK7Huso1TqgDkskvoat+L/X3QsGoDM2tHouKDcJmPWeT9kobMvXc+dwrkOhtJeK/Nm/XEXaCx01ssAWtc99rUOAJ6Uu/srhrQyWgn2g4K6GOvZL5TBwwSA742/x7ijZF3F7tfNUi7Lh5grvwbisoxwYReZamaf9VC8cWhVsAuV4Y5oYyaNcdAuoPa1TcPQZX3v/y16+N55kyFTGQIxNLcDpwIvFKe7cU7keHd2VMxrhR+Y+WXnx+xsrPbm4Mf+eTMn1mYGaFrjptDj/ZmkmjaXVWv19slxkTXJynCvnIdL8zdZOnn83A9ZFSTAB4VsSpGmyipunCjuGN9liwzZs8ddwQVEyzeyuGPYD7APuOS6o7aO9xWo/P3fbrnF8e5y2+7Lnamvyg8GKNeKog2m2NaW+SjwLCQhlr5/M6DamjnNlAbJLKtBaQZU226Ru2KbCe+Ph6Tk3THb/v5zaRQ7yz4M6usa1HywJU50n+7bgb4Z0sC2XIa8P56+JvvuWHTaa6kgbLn7ELvV9bU76A0+hpTKuh3PoryDwKvrflwx5F/1IMaK9wrK+h3ltf/+bb8d5d8/XdZ//txS/N9hxfdvGNg/ZQT1//4fih7V/hdi/qwAAAAASUVORK5CYII=");
  background-size: contain;
  cursor: crosshair;
  float: left;
}
colorpicker-saturation i {
  display: block;
  height: 7px;
  width: 7px;
  border: 1px solid #000;
  border-radius: 5px;
  position: absolute;
  top: 0;
  left: 0;
  margin: -4px 0 0 -4px;
}
colorpicker-saturation i::after {
  content: '';
  display: block;
  height: 7px;
  width: 7px;
  border: 1px solid #fff;
  border-radius: 5px;
}
colorpicker-hue,
colorpicker-alpha {
  width: 15px;
  height: 100px;
  float: left;
  cursor: row-resize;
  margin-left: 4px;
  margin-bottom: 4px;
}
colorpicker-hue i,
colorpicker-alpha i {
  display: block;
  height: 2px;
  background: #000;
  border-top: 1px solid #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin-top: -1px;
}
colorpicker-hue {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAABkCAMAAABw8qpSAAABLFBMVEUA/z8AuP//JAAA/33/3AAA/1ABAv8A/7r/AH7/jgD2AP8A//j/AEHmAP/XAP/HAP+4AP//ALyoAP+aAP+JAP97AP9rAP9cAP9MAP8+AP8tAP8fAP8PAP8ATv//AG7/cAD/vgD/APoAmv//ADH/AKwB/wMA5//4Eg4AL///AOr/UQD/nwAA/27/7AAA/+kAe/8Ayf8A/5sA/zEA/6z/ABEAEP8A/17/MgAA/9n/ACL/gAD/AJ0AXP8Aqv//AMoA/yHqFBb/zAD/AGD/ANsA9//1/wDk/wDV/wDF/wC3/wD/AI2m/wD/FACY/wCI/wB5/wBp/wD/YgBb/wBK/wA8/wAs/wAd/wAN/wAAPv8A/xH/AFAAi///rQAA/8r/+gAA1///QwAAH/8Abf8A/43c/JNGAAAAiUlEQVR4AQXBg2EDAAAAsMy2bds2ttp2+/8PTby79mDLsKJPq/oFPdk24dWXAxsGjRg1ZtykKdNmzJozb8GiJct63WjYl7fiWdOZkk0vOpyr2fVtyKl7FX2uXGjpcuxWDy69KdiRk5WRlpIUFxMVERLw78+vH1Unun1YV3ZkwKM1CYfq7nQK22sD03ITV2Aqp0IAAAAASUVORK5CYII=");
  background-size: contain;
}
colorpicker-alpha {
  display: none;
}
colorpicker-alpha,
.colorpicker-color {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAABkCAMAAACIElGlAAADAFBMVEUAAADT09PT09P////T09P////e3t7q6urT09Px8fHT09P////////T09PT09P////////T09PT09P////////////T09PT09P////////////T09P////T09PT09PT09P////T09PT09P////////////////T09P////T09PT09P////T09PT09PT09PT09PT09PT09P////T09P////T09PT09P////////////T09P////T09P////////////T09PT09P////T09P////////////////////T09P////////T09PT09P////////////////////////T09PT09P////////////////////////T09PT09P////T09PT09P////////T09P////////////T09P////////T09P////T09P////T09P////T09PT09PT09PT09P////T09PT09PT09PT09PT09PT09P////T09P////T09PT09P////////////T09PT09PT09P////T09PT09PT09PT09PT09PT09PT09P////////////////T09PT09P////////////T09P////////T09P////T09PT09PT09P////////T09P////////T09P////T09PT09P////////////////T09PT09PT09PT09P////T09PT09PT09PT09PT09PT09PT09P////T09P////T09PT09PT09PT09PT09P////////////////////////////////////T09P////T09P////T09P////T09PT09P////////////T09P////T09P////T09P////////////T09PT09P////////////////T09PT09P////T09P////T09PT09P////T09P////T09PT09P////T09PT09PT09PT09P////T09PT09P////////////T09PT09P////T09P////////T09MQsm1FAAABAHRSTlMAgJN8/vcDAfcCnJyGaZmZlomGk4yJOmM/eTxs8wY0YDFC7HNdLx18n5/7aUvzCcW9+qKiK8P0ZiltRwfdw/n8Px3WduJjItj78ss5PDHUNELbwP5wplA2FglEVwvkqNarCs4Z7b2sDLgQ0xNdyLrr0eLLUeW1Vs5TWQLwjPI3ZvQGdvxFyFrAeevaLCLvGd0kpRskGyf4qK605xKvFrGyDRHnBYMEkJaDkIBvB/gpH99O6CrbIC4nH3Lg2SXp4A7Qul/GDEgPSlMQ6LjqFU0SjyCCj5V/gnBN7xglL3O70WBU7gjFFEfft0sPTo1ndRipwXr2yRemWRVENq+ytbGuxGaWGQAAAnpJREFUeNpNxmdcDHAAxvEHOWXvmXX23ntv2XvvMg/Z44x0KaRBSnfcKSqlnYZKp1QqGpT20KZh783/eePj+3vzw3/q/AM9iURPTy6XS+RwcXNzcZMQTE1dTE3bE7y9S0u9xxD600rCGtpI2ErOsbGxzoiMrIqscnaOi4vDdnp4XYSrguwxQSb7KpMllycnl2MFaTSaTxrY5NrY5BoKb2BnZ2doZ29vb2OPSdSd4Bcc7OcXGhqamgqrYCsrq+mEiEtC3gUBDg55Dg53IkQYSYG+gb6+GEqB5wV0o5D8/JAQdKK5hA40n3BS+L6c0JJmE+ZQW8JEak1YQJ0Jq+jbaQEPnotGE+IrK+Pj+xKqU6pTUrIDAgKysZ+WEY5QQkJxcQIO0WrCUbL4YmFhgZ3UlVAUHR1d1JEwjVoRRpDJKxMTE/ShBoRR1I6whLyyvLyyUFAQFhbWhTCFFArFawXOCu/bEHpQLYKnZ0aGZw2CR1qah0dmpqurK+pTU0ILakJoTi+PC7j5RHTrqQg1qRkh3T3d3b0xoSE1ItSleoSe1IswmIYQPl8UlhLWkaOj41tHbKENBLX6j1qt/KFUKnFN+Onk9NvJCQdJpfqlUqGiIjExcRthN91/JsJmGkhYRO/OCBhHwwgxMWUxZQMIu8j8o7m5OfbRLMJh2kTYQ1FRhYVR2EHzCOtpMmEG3SUsJEvLoKAg2Prb2tqOJYSH+/uH33shwlTaS1hLBwhX6AYX2tuiRwStVntOa5yUZJwEqbREKjUi5Bjl5BhZW1uXWOMYGRBOnNDX1zfoxz1FwwkfSJfgo6vr41P7soBBNJ7Qm2YSzHTMzMwmEHRoMf0Fm5mYOUrzNBYAAAAASUVORK5CYII=");
  background-size: 10px 100%;
}
.colorpicker {
  top: 0;
  left: 0;
  z-index: 99999;
  display: none;
}
.colorpicker colorpicker-hue,
.colorpicker colorpicker-alpha,
.colorpicker colorpicker-saturation {
  position: relative;
}
.colorpicker input {
  width: 100px;
  font-size: 11px;
  color: #000;
  background-color: #fff;
}
.colorpicker.alpha {
  min-width: 140px;
}
.colorpicker.alpha colorpicker-alpha {
  display: block;
}
.colorpicker.dropdown {
  position: absolute;
}
.colorpicker.colorpicker-fixed-position {
  position: fixed;
}
.colorpicker .dropdown-menu::after,
.colorpicker .dropdown-menu::before {
  content: '';
  display: inline-block;
  position: absolute;
}
.colorpicker .dropdown-menu::after {
  clear: both;
  border: 6px solid transparent;
  top: -5px;
  left: 7px;
}
.colorpicker .dropdown-menu::before {
  border: 7px solid transparent;
  top: -6px;
  left: 6px;
}
.colorpicker .dropdown-menu {
  position: static;
  top: 0;
  left: 0;
  min-width: 129px;
  padding: 4px;
  margin-top: 0;
}
.colorpicker-position-top .dropdown-menu::after {
  border-top: 6px solid #fff;
  border-bottom: 0;
  top: auto;
  bottom: -5px;
}
.colorpicker-position-top .dropdown-menu::before {
  border-top: 7px solid rgba(0, 0, 0, 0.2);
  border-bottom: 0;
  top: auto;
  bottom: -6px;
}
.colorpicker-position-right .dropdown-menu::after {
  border-right: 6px solid #fff;
  border-left: 0;
  top: 11px;
  left: -5px;
}
.colorpicker-position-right .dropdown-menu::before {
  border-right: 7px solid rgba(0, 0, 0, 0.2);
  border-left: 0;
  top: 10px;
  left: -6px;
}
.colorpicker-position-bottom .dropdown-menu::after {
  border-bottom: 6px solid #fff;
  border-top: 0;
}
.colorpicker-position-bottom .dropdown-menu::before {
  border-bottom: 7px solid rgba(0, 0, 0, 0.2);
  border-top: 0;
}
.colorpicker-position-left .dropdown-menu::after {
  border-left: 6px solid #fff;
  border-right: 0;
  top: 11px;
  left: auto;
  right: -5px;
}
.colorpicker-position-left .dropdown-menu::before {
  border-left: 7px solid rgba(0, 0, 0, 0.2);
  border-right: 0;
  top: 10px;
  left: auto;
  right: -6px;
}
colorpicker-preview {
  display: block;
  height: 10px;
  margin: 5px 0 3px 0;
  clear: both;
  background-position: 0 100%;
}
.angular-ui-tree {
}

.angular-ui-tree-empty {
    border: 1px dashed #bbb;
    min-height: 100px;
    background-color: #e5e5e5;
    background-image: -webkit-linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff), -webkit-linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff);
    background-image: -moz-linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff), -moz-linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff);
    background-image: linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff), linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff);
    background-size: 60px 60px;
    background-position: 0 0, 30px 30px;
    pointer-events: none;
}

.angular-ui-tree-nodes {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
}

.angular-ui-tree-nodes .angular-ui-tree-nodes {
    padding-left: 20px;
}

.angular-ui-tree-node, .angular-ui-tree-placeholder {
    position: relative;
    margin: 0;
    padding: 0;
    min-height: 20px;
    line-height: 20px;
}

.angular-ui-tree-hidden {
    display: none;
}

.angular-ui-tree-placeholder {
    margin: 10px;
    padding: 0;
    min-height: 30px;
}

.angular-ui-tree-handle {
    cursor: move;
    text-decoration: none;
    font-weight: bold;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    min-height: 20px;
    line-height: 20px;
}

.angular-ui-tree-drag {
    position: absolute;
    pointer-events: none;
    z-index: 999;
    opacity: .8;
}

.angular-ui-tree-drag .tree-node-content {
    margin-top: 0;
}
/*!
 * froala_editor v2.7.3 (https://www.froala.com/wysiwyg-editor)
 * License https://froala.com/wysiwyg-editor/terms/
 * Copyright 2014-2017 Froala Labs
 */

.clearfix::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
}
.hide-by-clipping {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.fr-element,
.fr-element:focus {
  outline: 0px solid transparent;
}
.fr-box.fr-basic .fr-element {
  color: #000000;
  padding: 16px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  overflow-x: auto;
  min-height: 52px;
}
.fr-box.fr-basic.fr-rtl .fr-element {
  text-align: right;
}
.fr-element {
  background: transparent;
  position: relative;
  z-index: 2;
  -webkit-user-select: auto;
}
.fr-element a {
  user-select: auto;
  -o-user-select: auto;
  -moz-user-select: auto;
  -khtml-user-select: auto;
  -webkit-user-select: auto;
  -ms-user-select: auto;
}
.fr-element.fr-disabled {
  user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
.fr-element [contenteditable="false"] {
  user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
.fr-element [contenteditable="true"] {
  outline: 0px solid transparent;
  user-select: text;
  -o-user-select: text;
  -moz-user-select: text;
  -khtml-user-select: text;
  -webkit-user-select: text;
  -ms-user-select: text;
}
.fr-box a.fr-floating-btn {
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  height: 32px;
  width: 32px;
  background: #ffffff;
  color: #1e88e5;
  -webkit-transition: background 0.2s ease 0s, color 0.2s ease 0s, transform 0.2s ease 0s;
  -moz-transition: background 0.2s ease 0s, color 0.2s ease 0s, transform 0.2s ease 0s;
  -ms-transition: background 0.2s ease 0s, color 0.2s ease 0s, transform 0.2s ease 0s;
  -o-transition: background 0.2s ease 0s, color 0.2s ease 0s, transform 0.2s ease 0s;
  outline: none;
  left: 0;
  top: 0;
  line-height: 32px;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  text-align: center;
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: none;
}
.fr-box a.fr-floating-btn svg {
  -webkit-transition: transform 0.2s ease 0s;
  -moz-transition: transform 0.2s ease 0s;
  -ms-transition: transform 0.2s ease 0s;
  -o-transition: transform 0.2s ease 0s;
  fill: #1e88e5;
}
.fr-box a.fr-floating-btn i {
  font-size: 14px;
  line-height: 32px;
}
.fr-box a.fr-floating-btn.fr-btn + .fr-btn {
  margin-left: 10px;
}
.fr-box a.fr-floating-btn:hover {
  background: #ebebeb;
  cursor: pointer;
}
.fr-box a.fr-floating-btn:hover svg {
  fill: #1e88e5;
}
.fr-box .fr-visible a.fr-floating-btn {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}
iframe.fr-iframe {
  width: 100%;
  border: none;
  position: relative;
  display: block;
  z-index: 2;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.fr-wrapper {
  position: relative;
  z-index: 1;
}
.fr-wrapper::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
}
.fr-wrapper .fr-placeholder {
  position: absolute;
  font-size: 12px;
  color: #aaaaaa;
  z-index: 1;
  display: none;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}
.fr-wrapper.show-placeholder .fr-placeholder {
  display: block;
}
.fr-wrapper ::-moz-selection {
  background: #b5d6fd;
  color: #000000;
}
.fr-wrapper ::selection {
  background: #b5d6fd;
  color: #000000;
}
.fr-box.fr-basic .fr-wrapper {
  background: #ffffff;
  border: 0px;
  border-top: 0;
  top: 0;
  left: 0;
}
.fr-box.fr-basic.fr-top .fr-wrapper {
  border-top: 0;
  border-radius: 0 0 2px 2px;
  -moz-border-radius: 0 0 2px 2px;
  -webkit-border-radius: 0 0 2px 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
}
.fr-box.fr-basic.fr-bottom .fr-wrapper {
  border-bottom: 0;
  border-radius: 2px 2px 0 0;
  -moz-border-radius: 2px 2px 0 0;
  -webkit-border-radius: 2px 2px 0 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.12), 0 -1px 1px 1px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.12), 0 -1px 1px 1px rgba(0, 0, 0, 0.16);
  box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.12), 0 -1px 1px 1px rgba(0, 0, 0, 0.16);
}
.fr-tooltip {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 8px;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 2px 2px 1px rgba(0, 0, 0, 0.14);
  -moz-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 2px 2px 1px rgba(0, 0, 0, 0.14);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 2px 2px 1px rgba(0, 0, 0, 0.14);
  background: #222222;
  color: #ffffff;
  font-size: 11px;
  line-height: 22px;
  font-family: Arial, Helvetica, sans-serif;
  -webkit-transition: opacity 0.2s ease 0s;
  -moz-transition: opacity 0.2s ease 0s;
  -ms-transition: opacity 0.2s ease 0s;
  -o-transition: opacity 0.2s ease 0s;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  left: -3000px;
  user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  z-index: 2147483647;
  text-rendering: optimizelegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.fr-tooltip.fr-visible {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
.fr-toolbar .fr-command.fr-btn,
.fr-popup .fr-command.fr-btn {
  background: transparent;
  color: #222222;
  -moz-outline: 0;
  outline: 0;
  border: 0;
  line-height: 1;
  cursor: pointer;
  text-align: left;
  margin: 0px 2px;
  -webkit-transition: background 0.2s ease 0s;
  -moz-transition: background 0.2s ease 0s;
  -ms-transition: background 0.2s ease 0s;
  -o-transition: background 0.2s ease 0s;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  z-index: 2;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
  user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  float: left;
  padding: 0;
  width: 38px;
  height: 38px;
}
.fr-toolbar .fr-command.fr-btn::-moz-focus-inner,
.fr-popup .fr-command.fr-btn::-moz-focus-inner {
  border: 0;
  padding: 0;
}
.fr-toolbar .fr-command.fr-btn.fr-btn-text,
.fr-popup .fr-command.fr-btn.fr-btn-text {
  width: auto;
}
.fr-toolbar .fr-command.fr-btn i,
.fr-popup .fr-command.fr-btn i {
  display: block;
  font-size: 14px;
  width: 14px;
  margin: 12px 12px;
  text-align: center;
  float: none;
}
.fr-toolbar .fr-command.fr-btn span.fr-sr-only,
.fr-popup .fr-command.fr-btn span.fr-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.fr-toolbar .fr-command.fr-btn span,
.fr-popup .fr-command.fr-btn span {
  font-size: 14px;
  display: block;
  line-height: 17px;
  min-width: 34px;
  float: left;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  height: 17px;
  font-weight: bold;
  padding: 0 2px;
}
.fr-toolbar .fr-command.fr-btn img,
.fr-popup .fr-command.fr-btn img {
  margin: 12px 12px;
  width: 14px;
}
.fr-toolbar .fr-command.fr-btn.fr-active,
.fr-popup .fr-command.fr-btn.fr-active {
  color: #1e88e5;
  background: transparent;
}
.fr-toolbar .fr-command.fr-btn.fr-dropdown.fr-selection,
.fr-popup .fr-command.fr-btn.fr-dropdown.fr-selection {
  width: auto;
}
.fr-toolbar .fr-command.fr-btn.fr-dropdown.fr-selection span,
.fr-popup .fr-command.fr-btn.fr-dropdown.fr-selection span {
  font-weight: normal;
}
.fr-toolbar .fr-command.fr-btn.fr-dropdown i,
.fr-popup .fr-command.fr-btn.fr-dropdown i,
.fr-toolbar .fr-command.fr-btn.fr-dropdown span,
.fr-popup .fr-command.fr-btn.fr-dropdown span,
.fr-toolbar .fr-command.fr-btn.fr-dropdown img,
.fr-popup .fr-command.fr-btn.fr-dropdown img {
  margin-left: 8px;
  margin-right: 16px;
}
.fr-toolbar .fr-command.fr-btn.fr-dropdown.fr-active,
.fr-popup .fr-command.fr-btn.fr-dropdown.fr-active {
  color: #222222;
  background: #d6d6d6;
}
.fr-toolbar .fr-command.fr-btn.fr-dropdown.fr-active:hover,
.fr-popup .fr-command.fr-btn.fr-dropdown.fr-active:hover,
.fr-toolbar .fr-command.fr-btn.fr-dropdown.fr-active:focus,
.fr-popup .fr-command.fr-btn.fr-dropdown.fr-active:focus {
  background: #d6d6d6 !important;
  color: #222222 !important;
}
.fr-toolbar .fr-command.fr-btn.fr-dropdown.fr-active:hover::after,
.fr-popup .fr-command.fr-btn.fr-dropdown.fr-active:hover::after,
.fr-toolbar .fr-command.fr-btn.fr-dropdown.fr-active:focus::after,
.fr-popup .fr-command.fr-btn.fr-dropdown.fr-active:focus::after {
  border-top-color: #222222 !important;
}
.fr-toolbar .fr-command.fr-btn.fr-dropdown::after,
.fr-popup .fr-command.fr-btn.fr-dropdown::after {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #222222;
  right: 4px;
  top: 17px;
  content: "";
}
.fr-toolbar .fr-command.fr-btn.fr-disabled,
.fr-popup .fr-command.fr-btn.fr-disabled {
  color: #bdbdbd;
  cursor: default;
}
.fr-toolbar .fr-command.fr-btn.fr-disabled::after,
.fr-popup .fr-command.fr-btn.fr-disabled::after {
  border-top-color: #bdbdbd !important;
}
.fr-toolbar .fr-command.fr-btn.fr-hidden,
.fr-popup .fr-command.fr-btn.fr-hidden {
  display: none;
}
.fr-toolbar.fr-disabled .fr-btn,
.fr-popup.fr-disabled .fr-btn,
.fr-toolbar.fr-disabled .fr-btn.fr-active,
.fr-popup.fr-disabled .fr-btn.fr-active {
  color: #bdbdbd;
}
.fr-toolbar.fr-disabled .fr-btn.fr-dropdown::after,
.fr-popup.fr-disabled .fr-btn.fr-dropdown::after,
.fr-toolbar.fr-disabled .fr-btn.fr-active.fr-dropdown::after,
.fr-popup.fr-disabled .fr-btn.fr-active.fr-dropdown::after {
  border-top-color: #bdbdbd;
}
.fr-toolbar.fr-rtl .fr-command.fr-btn,
.fr-popup.fr-rtl .fr-command.fr-btn {
  float: right;
}
.fr-toolbar.fr-inline .fr-command.fr-btn:not(.fr-hidden) {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  float: none;
}
.fr-desktop .fr-command:hover,
.fr-desktop .fr-command:focus {
  outline: 0;
  color: #222222;
  background: #ebebeb;
}
.fr-desktop .fr-command:hover::after,
.fr-desktop .fr-command:focus::after {
  border-top-color: #222222 !important;
}
.fr-desktop .fr-command.fr-selected {
  color: #222222;
  background: #d6d6d6;
}
.fr-desktop .fr-command.fr-active:hover,
.fr-desktop .fr-command.fr-active:focus {
  color: #1e88e5;
  background: #ebebeb;
}
.fr-desktop .fr-command.fr-active.fr-selected {
  color: #1e88e5;
  background: #d6d6d6;
}
.fr-desktop .fr-command.fr-disabled:hover,
.fr-desktop .fr-command.fr-disabled:focus,
.fr-desktop .fr-command.fr-disabled.fr-selected {
  background: transparent;
}
.fr-desktop.fr-disabled .fr-command:hover,
.fr-desktop.fr-disabled .fr-command:focus,
.fr-desktop.fr-disabled .fr-command.fr-selected {
  background: transparent;
}
.fr-toolbar.fr-mobile .fr-command.fr-blink,
.fr-popup.fr-mobile .fr-command.fr-blink {
  background: transparent;
}
.fr-command.fr-btn + .fr-dropdown-menu {
  display: inline-block;
  position: absolute;
  right: auto;
  bottom: auto;
  height: auto;
  z-index: 4;
  -webkit-overflow-scrolling: touch;
  overflow: hidden;
  zoom: 1;
  border-radius: 0 0 2px 2px;
  -moz-border-radius: 0 0 2px 2px;
  -webkit-border-radius: 0 0 2px 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.fr-command.fr-btn + .fr-dropdown-menu.test-height .fr-dropdown-wrapper {
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  height: auto;
  max-height: 275px;
}
.fr-command.fr-btn + .fr-dropdown-menu .fr-dropdown-wrapper {
  background: #ffffff;
  padding: 0;
  margin: auto;
  display: inline-block;
  text-align: left;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: max-height 0.2s ease 0s;
  -moz-transition: max-height 0.2s ease 0s;
  -ms-transition: max-height 0.2s ease 0s;
  -o-transition: max-height 0.2s ease 0s;
  margin-top: 0;
  float: left;
  max-height: 0;
  height: 0;
  margin-top: 0 !important;
}
.fr-command.fr-btn + .fr-dropdown-menu .fr-dropdown-wrapper .fr-dropdown-content {
  overflow: auto;
  position: relative;
  max-height: 275px;
}
.fr-command.fr-btn + .fr-dropdown-menu .fr-dropdown-wrapper .fr-dropdown-content ul.fr-dropdown-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.fr-command.fr-btn + .fr-dropdown-menu .fr-dropdown-wrapper .fr-dropdown-content ul.fr-dropdown-list li {
  padding: 0;
  margin: 0;
  font-size: 15px;
}
.fr-command.fr-btn + .fr-dropdown-menu .fr-dropdown-wrapper .fr-dropdown-content ul.fr-dropdown-list li a {
  padding: 0 24px;
  line-height: 200%;
  display: block;
  cursor: pointer;
  white-space: nowrap;
  color: inherit;
  text-decoration: none;
}
.fr-command.fr-btn + .fr-dropdown-menu .fr-dropdown-wrapper .fr-dropdown-content ul.fr-dropdown-list li a.fr-active {
  background: #d6d6d6;
}
.fr-command.fr-btn + .fr-dropdown-menu .fr-dropdown-wrapper .fr-dropdown-content ul.fr-dropdown-list li a.fr-disabled {
  color: #bdbdbd;
  cursor: default;
}
.fr-command.fr-btn:not(.fr-active) + .fr-dropdown-menu {
  left: -3000px !important;
}
.fr-command.fr-btn.fr-active + .fr-dropdown-menu {
  display: inline-block;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 2px 2px 1px rgba(0, 0, 0, 0.14);
  -moz-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 2px 2px 1px rgba(0, 0, 0, 0.14);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 2px 2px 1px rgba(0, 0, 0, 0.14);
}
.fr-command.fr-btn.fr-active + .fr-dropdown-menu .fr-dropdown-wrapper {
  height: auto;
  max-height: 275px;
}
.fr-bottom > .fr-command.fr-btn + .fr-dropdown-menu {
  border-radius: 2px 2px 0 0;
  -moz-border-radius: 2px 2px 0 0;
  -webkit-border-radius: 2px 2px 0 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.fr-toolbar.fr-rtl .fr-dropdown-wrapper,
.fr-popup.fr-rtl .fr-dropdown-wrapper {
  text-align: right !important;
}
body.prevent-scroll {
  overflow: hidden;
}
body.prevent-scroll.fr-mobile {
  position: fixed;
  -webkit-overflow-scrolling: touch;
}
.fr-modal {
  color: #222222;
  font-family: Arial, Helvetica, sans-serif;
  position: fixed;
  overflow-x: auto;
  overflow-y: scroll;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  z-index: 2147483640;
  text-rendering: optimizelegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  line-height: 1.2;
}
.fr-modal.fr-middle .fr-modal-wrapper {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  position: absolute;
}
.fr-modal .fr-modal-wrapper {
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  margin: 20px auto;
  display: inline-block;
  background: #ffffff;
  min-width: 300px;
  -webkit-box-shadow: 0 5px 8px rgba(0, 0, 0, 0.19), 0 4px 3px 1px rgba(0, 0, 0, 0.14);
  -moz-box-shadow: 0 5px 8px rgba(0, 0, 0, 0.19), 0 4px 3px 1px rgba(0, 0, 0, 0.14);
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.19), 0 4px 3px 1px rgba(0, 0, 0, 0.14);
  border: 0px;
  border-top: 5px solid #222222;
  overflow: hidden;
  width: 90%;
  position: relative;
}
@media (min-width: 768px) and (max-width: 991px) {
  .fr-modal .fr-modal-wrapper {
    margin: 30px auto;
    width: 70%;
  }
}
@media (min-width: 992px) {
  .fr-modal .fr-modal-wrapper {
    margin: 50px auto;
    width: 600px;
  }
}
.fr-modal .fr-modal-wrapper .fr-modal-head {
  background: #ffffff;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 2px 2px 1px rgba(0, 0, 0, 0.14);
  -moz-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 2px 2px 1px rgba(0, 0, 0, 0.14);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 2px 2px 1px rgba(0, 0, 0, 0.14);
  border-bottom: 0px;
  overflow: hidden;
  position: absolute;
  width: 100%;
  min-height: 42px;
  z-index: 3;
  -webkit-transition: height 0.2s ease 0s;
  -moz-transition: height 0.2s ease 0s;
  -ms-transition: height 0.2s ease 0s;
  -o-transition: height 0.2s ease 0s;
}
.fr-modal .fr-modal-wrapper .fr-modal-head i {
  padding: 12px;
  width: 20px;
  font-size: 16px;
  cursor: pointer;
  line-height: 18px;
  color: #222222;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.fr-modal .fr-modal-wrapper .fr-modal-head i.fr-modal-close {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transition: color 0.2s ease 0s;
  -moz-transition: color 0.2s ease 0s;
  -ms-transition: color 0.2s ease 0s;
  -o-transition: color 0.2s ease 0s;
}
.fr-modal .fr-modal-wrapper .fr-modal-head h4 {
  font-size: 18px;
  padding: 12px 10px;
  margin: 0;
  font-weight: 400;
  line-height: 18px;
  display: inline-block;
  float: left;
}
.fr-modal .fr-modal-wrapper div.fr-modal-body {
  height: 100%;
  min-height: 150px;
  overflow-y: scroll;
  padding-bottom: 10px;
}
.fr-modal .fr-modal-wrapper div.fr-modal-body:focus {
  outline: 0;
}
.fr-modal .fr-modal-wrapper div.fr-modal-body button.fr-command {
  height: 36px;
  line-height: 1;
  color: #1e88e5;
  padding: 10px;
  cursor: pointer;
  text-decoration: none;
  border: none;
  background: none;
  font-size: 16px;
  outline: none;
  -webkit-transition: background 0.2s ease 0s;
  -moz-transition: background 0.2s ease 0s;
  -ms-transition: background 0.2s ease 0s;
  -o-transition: background 0.2s ease 0s;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.fr-modal .fr-modal-wrapper div.fr-modal-body button.fr-command + button {
  margin-left: 24px;
}
.fr-modal .fr-modal-wrapper div.fr-modal-body button.fr-command:hover,
.fr-modal .fr-modal-wrapper div.fr-modal-body button.fr-command:focus {
  background: #ebebeb;
  color: #1e88e5;
}
.fr-modal .fr-modal-wrapper div.fr-modal-body button.fr-command:active {
  background: #d6d6d6;
  color: #1e88e5;
}
.fr-modal .fr-modal-wrapper div.fr-modal-body button::-moz-focus-inner {
  border: 0;
}
.fr-desktop .fr-modal-wrapper .fr-modal-head i:hover {
  background: #ebebeb;
}
.fr-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000000;
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  z-index: 2147483639;
}
.fr-popup {
  position: absolute;
  display: none;
  color: #222222;
  background: #ffffff;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  font-family: Arial, Helvetica, sans-serif;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  margin-top: 10px;
  z-index: 2147483635;
  text-align: left;
  border: 0px;
  border-top: 5px solid #222222;
  text-rendering: optimizelegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.2;
}
.fr-popup .fr-input-focus {
  background: #f5f5f5;
}
.fr-popup.fr-above {
  margin-top: -10px;
  border-top: 0;
  border-bottom: 5px solid #222222;
  -webkit-box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.12), 0 -1px 1px 1px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.12), 0 -1px 1px 1px rgba(0, 0, 0, 0.16);
  box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.12), 0 -1px 1px 1px rgba(0, 0, 0, 0.16);
}
.fr-popup.fr-active {
  display: block;
}
.fr-popup.fr-hidden {
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
.fr-popup .fr-hs {
  display: block !important;
}
.fr-popup .fr-hs.fr-hidden {
  display: none !important;
}
.fr-popup .fr-input-line {
  position: relative;
  padding: 8px 0;
}
.fr-popup .fr-input-line input[type="text"],
.fr-popup .fr-input-line textarea {
  width: 100%;
  margin: 0px 0 1px 0;
  border: none;
  border-bottom: solid 1px #bdbdbd;
  color: #222222;
  font-size: 14px;
  padding: 6px 0 2px;
  background: rgba(0, 0, 0, 0);
  position: relative;
  z-index: 2;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.fr-popup .fr-input-line input[type="text"]:focus,
.fr-popup .fr-input-line textarea:focus {
  border-bottom: solid 2px #1e88e5;
  margin-bottom: 0px;
}
.fr-popup .fr-input-line input + label,
.fr-popup .fr-input-line textarea + label {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 12px;
  color: rgba(0, 0, 0, 0);
  -webkit-transition: color 0.2s ease 0s;
  -moz-transition: color 0.2s ease 0s;
  -ms-transition: color 0.2s ease 0s;
  -o-transition: color 0.2s ease 0s;
  z-index: 3;
  width: 100%;
  display: block;
  background: #ffffff;
}
.fr-popup .fr-input-line input.fr-not-empty:focus + label,
.fr-popup .fr-input-line textarea.fr-not-empty:focus + label {
  color: #1e88e5;
}
.fr-popup .fr-input-line input.fr-not-empty + label,
.fr-popup .fr-input-line textarea.fr-not-empty + label {
  color: #808080;
}
.fr-popup input,
.fr-popup textarea {
  user-select: text;
  -o-user-select: text;
  -moz-user-select: text;
  -khtml-user-select: text;
  -webkit-user-select: text;
  -ms-user-select: text;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  outline: none;
}
.fr-popup textarea {
  resize: none;
}
.fr-popup .fr-buttons {
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  padding: 0 2px;
  white-space: nowrap;
  line-height: 0;
  border-bottom: 0px;
}
.fr-popup .fr-buttons::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
}
.fr-popup .fr-buttons .fr-btn {
  display: inline-block;
  float: none;
}
.fr-popup .fr-buttons .fr-btn i {
  float: left;
}
.fr-popup .fr-buttons .fr-separator {
  display: inline-block;
  float: none;
}
.fr-popup .fr-layer {
  width: 225px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 10px;
  display: none;
}
@media (min-width: 768px) {
  .fr-popup .fr-layer {
    width: 300px;
  }
}
.fr-popup .fr-layer.fr-active {
  display: inline-block;
}
.fr-popup .fr-action-buttons {
  z-index: 7;
  height: 36px;
  text-align: right;
}
.fr-popup .fr-action-buttons button.fr-command {
  height: 36px;
  line-height: 1;
  color: #1e88e5;
  padding: 10px;
  cursor: pointer;
  text-decoration: none;
  border: none;
  background: none;
  font-size: 16px;
  outline: none;
  -webkit-transition: background 0.2s ease 0s;
  -moz-transition: background 0.2s ease 0s;
  -ms-transition: background 0.2s ease 0s;
  -o-transition: background 0.2s ease 0s;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.fr-popup .fr-action-buttons button.fr-command + button {
  margin-left: 24px;
}
.fr-popup .fr-action-buttons button.fr-command:hover,
.fr-popup .fr-action-buttons button.fr-command:focus {
  background: #ebebeb;
  color: #1e88e5;
}
.fr-popup .fr-action-buttons button.fr-command:active {
  background: #d6d6d6;
  color: #1e88e5;
}
.fr-popup .fr-action-buttons button::-moz-focus-inner {
  border: 0;
}
.fr-popup .fr-checkbox {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  line-height: 1;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  vertical-align: middle;
}
.fr-popup .fr-checkbox svg {
  margin-left: 2px;
  margin-top: 2px;
  display: none;
  width: 10px;
  height: 10px;
}
.fr-popup .fr-checkbox span {
  border: solid 1px #222222;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  width: 16px;
  height: 16px;
  display: inline-block;
  position: relative;
  z-index: 1;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: background 0.2s ease 0s, border-color 0.2s ease 0s;
  -moz-transition: background 0.2s ease 0s, border-color 0.2s ease 0s;
  -ms-transition: background 0.2s ease 0s, border-color 0.2s ease 0s;
  -o-transition: background 0.2s ease 0s, border-color 0.2s ease 0s;
}
.fr-popup .fr-checkbox input {
  position: absolute;
  z-index: 2;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  border: 0 none;
  cursor: pointer;
  height: 16px;
  margin: 0;
  padding: 0;
  width: 16px;
  top: 1px;
  left: 1px;
}
.fr-popup .fr-checkbox input:checked + span {
  background: #1e88e5;
  border-color: #1e88e5;
}
.fr-popup .fr-checkbox input:checked + span svg {
  display: block;
}
.fr-popup .fr-checkbox input:focus + span {
  border-color: #1e88e5;
}
.fr-popup .fr-checkbox-line {
  font-size: 14px;
  line-height: 1.4px;
  margin-top: 10px;
}
.fr-popup .fr-checkbox-line label {
  cursor: pointer;
  margin: 0 5px;
  vertical-align: middle;
}
.fr-popup.fr-rtl {
  direction: rtl;
  text-align: right;
}
.fr-popup.fr-rtl .fr-action-buttons {
  text-align: left;
}
.fr-popup.fr-rtl .fr-input-line input + label,
.fr-popup.fr-rtl .fr-input-line textarea + label {
  left: auto;
  right: 0;
}
.fr-popup.fr-rtl .fr-buttons .fr-separator.fr-vs {
  float: right;
}
.fr-popup .fr-arrow {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #222222;
  position: absolute;
  top: -9px;
  left: 50%;
  margin-left: -5px;
  display: inline-block;
}
.fr-popup.fr-above .fr-arrow {
  top: auto;
  bottom: -9px;
  border-bottom: 0;
  border-top: 5px solid #222222;
}
.fr-text-edit-layer {
  width: 250px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block !important;
}
.fr-toolbar {
  color: #222222;
  background: #ffffff;
  position: relative;
  z-index: 4;
  font-family: Arial, Helvetica, sans-serif;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  padding: 0 2px;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  text-align: left;
  border: 0px;
  border-top: 5px solid #222222;
  text-rendering: optimizelegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.2;
}
.fr-toolbar::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
}
.fr-toolbar.fr-rtl {
  text-align: right;
}
.fr-toolbar.fr-inline {
  display: none;
  white-space: nowrap;
  position: absolute;
  margin-top: 10px;
}
.fr-toolbar.fr-inline .fr-arrow {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #222222;
  position: absolute;
  top: -9px;
  left: 50%;
  margin-left: -5px;
  display: inline-block;
}
.fr-toolbar.fr-inline.fr-above {
  margin-top: -10px;
  -webkit-box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.12), 0 -1px 1px 1px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.12), 0 -1px 1px 1px rgba(0, 0, 0, 0.16);
  box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.12), 0 -1px 1px 1px rgba(0, 0, 0, 0.16);
  border-bottom: 5px solid #222222;
  border-top: 0;
}
.fr-toolbar.fr-inline.fr-above .fr-arrow {
  top: auto;
  bottom: -9px;
  border-bottom: 0;
  border-top-color: inherit;
  border-top-style: solid;
  border-top-width: 5px;
}
.fr-toolbar.fr-top {
  top: 0;
  border-radius: 2px 2px 0 0;
  -moz-border-radius: 2px 2px 0 0;
  -webkit-border-radius: 2px 2px 0 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
}
.fr-toolbar.fr-bottom {
  bottom: 0;
  border-radius: 0 0 2px 2px;
  -moz-border-radius: 0 0 2px 2px;
  -webkit-border-radius: 0 0 2px 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
}
.fr-separator {
  background: #ebebeb;
  display: block;
  vertical-align: top;
  float: left;
}
.fr-separator + .fr-separator {
  display: none;
}
.fr-separator.fr-vs {
  height: 34px;
  width: 1px;
  margin: 2px;
}
.fr-separator.fr-hs {
  clear: both;
  height: 1px;
  width: calc(100% - (2 * 2px));
  margin: 0 2px;
}
.fr-separator.fr-hidden {
  display: none !important;
}
.fr-rtl .fr-separator {
  float: right;
}
.fr-toolbar.fr-inline .fr-separator.fr-hs {
  float: none;
}
.fr-toolbar.fr-inline .fr-separator.fr-vs {
  float: none;
  display: inline-block;
}
.fr-visibility-helper {
  display: none;
  margin-left: 0px !important;
}
@media (min-width: 768px) {
  .fr-visibility-helper {
    margin-left: 1px !important;
  }
}
@media (min-width: 992px) {
  .fr-visibility-helper {
    margin-left: 2px !important;
  }
}
@media (min-width: 1200px) {
  .fr-visibility-helper {
    margin-left: 3px !important;
  }
}
.fr-opacity-0 {
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
.fr-box {
  position: relative;
}
/**
 * Postion sticky hacks.
 */
.fr-sticky {
  position: -webkit-sticky;
  position: -moz-sticky;
  position: -ms-sticky;
  position: -o-sticky;
  position: sticky;
}
.fr-sticky-off {
  position: relative;
}
.fr-sticky-on {
  position: fixed;
}
.fr-sticky-on.fr-sticky-ios {
  position: absolute;
  left: 0;
  right: 0;
  width: auto !important;
}
.fr-sticky-dummy {
  display: none;
}
.fr-sticky-on + .fr-sticky-dummy,
.fr-sticky-box > .fr-sticky-dummy {
  display: block;
}
span.fr-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
/*!
 * froala_editor v2.7.3 (https://www.froala.com/wysiwyg-editor)
 * License https://froala.com/wysiwyg-editor/terms/
 * Copyright 2014-2017 Froala Labs
 */

.clearfix::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
}
.hide-by-clipping {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.fr-element,
.fr-element:focus {
  outline: 0px solid transparent;
}
.fr-box.fr-basic .fr-element {
  color: #000000;
  padding: 16px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  overflow-x: auto;
  min-height: 52px;
}
.fr-box.fr-basic.fr-rtl .fr-element {
  text-align: right;
}
.fr-element {
  background: transparent;
  position: relative;
  z-index: 2;
  -webkit-user-select: auto;
}
.fr-element a {
  user-select: auto;
  -o-user-select: auto;
  -moz-user-select: auto;
  -khtml-user-select: auto;
  -webkit-user-select: auto;
  -ms-user-select: auto;
}
.fr-element.fr-disabled {
  user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
.fr-element [contenteditable="false"] {
  user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
.fr-element [contenteditable="true"] {
  outline: 0px solid transparent;
  user-select: text;
  -o-user-select: text;
  -moz-user-select: text;
  -khtml-user-select: text;
  -webkit-user-select: text;
  -ms-user-select: text;
}
.fr-box a.fr-floating-btn {
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  height: 32px;
  width: 32px;
  background: #ffffff;
  color: #1e88e5;
  -webkit-transition: background 0.2s ease 0s, color 0.2s ease 0s, transform 0.2s ease 0s;
  -moz-transition: background 0.2s ease 0s, color 0.2s ease 0s, transform 0.2s ease 0s;
  -ms-transition: background 0.2s ease 0s, color 0.2s ease 0s, transform 0.2s ease 0s;
  -o-transition: background 0.2s ease 0s, color 0.2s ease 0s, transform 0.2s ease 0s;
  outline: none;
  left: 0;
  top: 0;
  line-height: 32px;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  text-align: center;
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: none;
}
.fr-box a.fr-floating-btn svg {
  -webkit-transition: transform 0.2s ease 0s;
  -moz-transition: transform 0.2s ease 0s;
  -ms-transition: transform 0.2s ease 0s;
  -o-transition: transform 0.2s ease 0s;
  fill: #1e88e5;
}
.fr-box a.fr-floating-btn i {
  font-size: 14px;
  line-height: 32px;
}
.fr-box a.fr-floating-btn.fr-btn + .fr-btn {
  margin-left: 10px;
}
.fr-box a.fr-floating-btn:hover {
  background: #ebebeb;
  cursor: pointer;
}
.fr-box a.fr-floating-btn:hover svg {
  fill: #1e88e5;
}
.fr-box .fr-visible a.fr-floating-btn {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}
iframe.fr-iframe {
  width: 100%;
  border: none;
  position: relative;
  display: block;
  z-index: 2;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.fr-wrapper {
  position: relative;
  z-index: 1;
}
.fr-wrapper::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
}
.fr-wrapper .fr-placeholder {
  position: absolute;
  font-size: 12px;
  color: #aaaaaa;
  z-index: 1;
  display: none;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}
.fr-wrapper.show-placeholder .fr-placeholder {
  display: block;
}
.fr-wrapper ::-moz-selection {
  background: #b5d6fd;
  color: #000000;
}
.fr-wrapper ::selection {
  background: #b5d6fd;
  color: #000000;
}
.fr-box.fr-basic .fr-wrapper {
  background: #ffffff;
  border: 0px;
  border-top: 0;
  top: 0;
  left: 0;
}
.fr-box.fr-basic.fr-top .fr-wrapper {
  border-top: 0;
  border-radius: 0 0 2px 2px;
  -moz-border-radius: 0 0 2px 2px;
  -webkit-border-radius: 0 0 2px 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
}
.fr-box.fr-basic.fr-bottom .fr-wrapper {
  border-bottom: 0;
  border-radius: 2px 2px 0 0;
  -moz-border-radius: 2px 2px 0 0;
  -webkit-border-radius: 2px 2px 0 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.12), 0 -1px 1px 1px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.12), 0 -1px 1px 1px rgba(0, 0, 0, 0.16);
  box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.12), 0 -1px 1px 1px rgba(0, 0, 0, 0.16);
}
.fr-tooltip {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 8px;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 2px 2px 1px rgba(0, 0, 0, 0.14);
  -moz-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 2px 2px 1px rgba(0, 0, 0, 0.14);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 2px 2px 1px rgba(0, 0, 0, 0.14);
  background: #222222;
  color: #ffffff;
  font-size: 11px;
  line-height: 22px;
  font-family: Arial, Helvetica, sans-serif;
  -webkit-transition: opacity 0.2s ease 0s;
  -moz-transition: opacity 0.2s ease 0s;
  -ms-transition: opacity 0.2s ease 0s;
  -o-transition: opacity 0.2s ease 0s;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  left: -3000px;
  user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  z-index: 2147483647;
  text-rendering: optimizelegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.fr-tooltip.fr-visible {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
.fr-toolbar .fr-command.fr-btn,
.fr-popup .fr-command.fr-btn {
  background: transparent;
  color: #222222;
  -moz-outline: 0;
  outline: 0;
  border: 0;
  line-height: 1;
  cursor: pointer;
  text-align: left;
  margin: 0px 2px;
  -webkit-transition: background 0.2s ease 0s;
  -moz-transition: background 0.2s ease 0s;
  -ms-transition: background 0.2s ease 0s;
  -o-transition: background 0.2s ease 0s;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  z-index: 2;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
  user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  float: left;
  padding: 0;
  width: 38px;
  height: 38px;
}
.fr-toolbar .fr-command.fr-btn::-moz-focus-inner,
.fr-popup .fr-command.fr-btn::-moz-focus-inner {
  border: 0;
  padding: 0;
}
.fr-toolbar .fr-command.fr-btn.fr-btn-text,
.fr-popup .fr-command.fr-btn.fr-btn-text {
  width: auto;
}
.fr-toolbar .fr-command.fr-btn i,
.fr-popup .fr-command.fr-btn i {
  display: block;
  font-size: 14px;
  width: 14px;
  margin: 12px 12px;
  text-align: center;
  float: none;
}
.fr-toolbar .fr-command.fr-btn span.fr-sr-only,
.fr-popup .fr-command.fr-btn span.fr-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.fr-toolbar .fr-command.fr-btn span,
.fr-popup .fr-command.fr-btn span {
  font-size: 14px;
  display: block;
  line-height: 17px;
  min-width: 34px;
  float: left;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  height: 17px;
  font-weight: bold;
  padding: 0 2px;
}
.fr-toolbar .fr-command.fr-btn img,
.fr-popup .fr-command.fr-btn img {
  margin: 12px 12px;
  width: 14px;
}
.fr-toolbar .fr-command.fr-btn.fr-active,
.fr-popup .fr-command.fr-btn.fr-active {
  color: #1e88e5;
  background: transparent;
}
.fr-toolbar .fr-command.fr-btn.fr-dropdown.fr-selection,
.fr-popup .fr-command.fr-btn.fr-dropdown.fr-selection {
  width: auto;
}
.fr-toolbar .fr-command.fr-btn.fr-dropdown.fr-selection span,
.fr-popup .fr-command.fr-btn.fr-dropdown.fr-selection span {
  font-weight: normal;
}
.fr-toolbar .fr-command.fr-btn.fr-dropdown i,
.fr-popup .fr-command.fr-btn.fr-dropdown i,
.fr-toolbar .fr-command.fr-btn.fr-dropdown span,
.fr-popup .fr-command.fr-btn.fr-dropdown span,
.fr-toolbar .fr-command.fr-btn.fr-dropdown img,
.fr-popup .fr-command.fr-btn.fr-dropdown img {
  margin-left: 8px;
  margin-right: 16px;
}
.fr-toolbar .fr-command.fr-btn.fr-dropdown.fr-active,
.fr-popup .fr-command.fr-btn.fr-dropdown.fr-active {
  color: #222222;
  background: #d6d6d6;
}
.fr-toolbar .fr-command.fr-btn.fr-dropdown.fr-active:hover,
.fr-popup .fr-command.fr-btn.fr-dropdown.fr-active:hover,
.fr-toolbar .fr-command.fr-btn.fr-dropdown.fr-active:focus,
.fr-popup .fr-command.fr-btn.fr-dropdown.fr-active:focus {
  background: #d6d6d6 !important;
  color: #222222 !important;
}
.fr-toolbar .fr-command.fr-btn.fr-dropdown.fr-active:hover::after,
.fr-popup .fr-command.fr-btn.fr-dropdown.fr-active:hover::after,
.fr-toolbar .fr-command.fr-btn.fr-dropdown.fr-active:focus::after,
.fr-popup .fr-command.fr-btn.fr-dropdown.fr-active:focus::after {
  border-top-color: #222222 !important;
}
.fr-toolbar .fr-command.fr-btn.fr-dropdown::after,
.fr-popup .fr-command.fr-btn.fr-dropdown::after {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #222222;
  right: 4px;
  top: 17px;
  content: "";
}
.fr-toolbar .fr-command.fr-btn.fr-disabled,
.fr-popup .fr-command.fr-btn.fr-disabled {
  color: #bdbdbd;
  cursor: default;
}
.fr-toolbar .fr-command.fr-btn.fr-disabled::after,
.fr-popup .fr-command.fr-btn.fr-disabled::after {
  border-top-color: #bdbdbd !important;
}
.fr-toolbar .fr-command.fr-btn.fr-hidden,
.fr-popup .fr-command.fr-btn.fr-hidden {
  display: none;
}
.fr-toolbar.fr-disabled .fr-btn,
.fr-popup.fr-disabled .fr-btn,
.fr-toolbar.fr-disabled .fr-btn.fr-active,
.fr-popup.fr-disabled .fr-btn.fr-active {
  color: #bdbdbd;
}
.fr-toolbar.fr-disabled .fr-btn.fr-dropdown::after,
.fr-popup.fr-disabled .fr-btn.fr-dropdown::after,
.fr-toolbar.fr-disabled .fr-btn.fr-active.fr-dropdown::after,
.fr-popup.fr-disabled .fr-btn.fr-active.fr-dropdown::after {
  border-top-color: #bdbdbd;
}
.fr-toolbar.fr-rtl .fr-command.fr-btn,
.fr-popup.fr-rtl .fr-command.fr-btn {
  float: right;
}
.fr-toolbar.fr-inline .fr-command.fr-btn:not(.fr-hidden) {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  float: none;
}
.fr-desktop .fr-command:hover,
.fr-desktop .fr-command:focus {
  outline: 0;
  color: #222222;
  background: #ebebeb;
}
.fr-desktop .fr-command:hover::after,
.fr-desktop .fr-command:focus::after {
  border-top-color: #222222 !important;
}
.fr-desktop .fr-command.fr-selected {
  color: #222222;
  background: #d6d6d6;
}
.fr-desktop .fr-command.fr-active:hover,
.fr-desktop .fr-command.fr-active:focus {
  color: #1e88e5;
  background: #ebebeb;
}
.fr-desktop .fr-command.fr-active.fr-selected {
  color: #1e88e5;
  background: #d6d6d6;
}
.fr-desktop .fr-command.fr-disabled:hover,
.fr-desktop .fr-command.fr-disabled:focus,
.fr-desktop .fr-command.fr-disabled.fr-selected {
  background: transparent;
}
.fr-desktop.fr-disabled .fr-command:hover,
.fr-desktop.fr-disabled .fr-command:focus,
.fr-desktop.fr-disabled .fr-command.fr-selected {
  background: transparent;
}
.fr-toolbar.fr-mobile .fr-command.fr-blink,
.fr-popup.fr-mobile .fr-command.fr-blink {
  background: transparent;
}
.fr-command.fr-btn + .fr-dropdown-menu {
  display: inline-block;
  position: absolute;
  right: auto;
  bottom: auto;
  height: auto;
  z-index: 4;
  -webkit-overflow-scrolling: touch;
  overflow: hidden;
  zoom: 1;
  border-radius: 0 0 2px 2px;
  -moz-border-radius: 0 0 2px 2px;
  -webkit-border-radius: 0 0 2px 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.fr-command.fr-btn + .fr-dropdown-menu.test-height .fr-dropdown-wrapper {
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  height: auto;
  max-height: 275px;
}
.fr-command.fr-btn + .fr-dropdown-menu .fr-dropdown-wrapper {
  background: #ffffff;
  padding: 0;
  margin: auto;
  display: inline-block;
  text-align: left;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: max-height 0.2s ease 0s;
  -moz-transition: max-height 0.2s ease 0s;
  -ms-transition: max-height 0.2s ease 0s;
  -o-transition: max-height 0.2s ease 0s;
  margin-top: 0;
  float: left;
  max-height: 0;
  height: 0;
  margin-top: 0 !important;
}
.fr-command.fr-btn + .fr-dropdown-menu .fr-dropdown-wrapper .fr-dropdown-content {
  overflow: auto;
  position: relative;
  max-height: 275px;
}
.fr-command.fr-btn + .fr-dropdown-menu .fr-dropdown-wrapper .fr-dropdown-content ul.fr-dropdown-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.fr-command.fr-btn + .fr-dropdown-menu .fr-dropdown-wrapper .fr-dropdown-content ul.fr-dropdown-list li {
  padding: 0;
  margin: 0;
  font-size: 15px;
}
.fr-command.fr-btn + .fr-dropdown-menu .fr-dropdown-wrapper .fr-dropdown-content ul.fr-dropdown-list li a {
  padding: 0 24px;
  line-height: 200%;
  display: block;
  cursor: pointer;
  white-space: nowrap;
  color: inherit;
  text-decoration: none;
}
.fr-command.fr-btn + .fr-dropdown-menu .fr-dropdown-wrapper .fr-dropdown-content ul.fr-dropdown-list li a.fr-active {
  background: #d6d6d6;
}
.fr-command.fr-btn + .fr-dropdown-menu .fr-dropdown-wrapper .fr-dropdown-content ul.fr-dropdown-list li a.fr-disabled {
  color: #bdbdbd;
  cursor: default;
}
.fr-command.fr-btn:not(.fr-active) + .fr-dropdown-menu {
  left: -3000px !important;
}
.fr-command.fr-btn.fr-active + .fr-dropdown-menu {
  display: inline-block;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 2px 2px 1px rgba(0, 0, 0, 0.14);
  -moz-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 2px 2px 1px rgba(0, 0, 0, 0.14);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 2px 2px 1px rgba(0, 0, 0, 0.14);
}
.fr-command.fr-btn.fr-active + .fr-dropdown-menu .fr-dropdown-wrapper {
  height: auto;
  max-height: 275px;
}
.fr-bottom > .fr-command.fr-btn + .fr-dropdown-menu {
  border-radius: 2px 2px 0 0;
  -moz-border-radius: 2px 2px 0 0;
  -webkit-border-radius: 2px 2px 0 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.fr-toolbar.fr-rtl .fr-dropdown-wrapper,
.fr-popup.fr-rtl .fr-dropdown-wrapper {
  text-align: right !important;
}
body.prevent-scroll {
  overflow: hidden;
}
body.prevent-scroll.fr-mobile {
  position: fixed;
  -webkit-overflow-scrolling: touch;
}
.fr-modal {
  color: #222222;
  font-family: Arial, Helvetica, sans-serif;
  position: fixed;
  overflow-x: auto;
  overflow-y: scroll;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  z-index: 2147483640;
  text-rendering: optimizelegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  line-height: 1.2;
}
.fr-modal.fr-middle .fr-modal-wrapper {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  position: absolute;
}
.fr-modal .fr-modal-wrapper {
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  margin: 20px auto;
  display: inline-block;
  background: #ffffff;
  min-width: 300px;
  -webkit-box-shadow: 0 5px 8px rgba(0, 0, 0, 0.19), 0 4px 3px 1px rgba(0, 0, 0, 0.14);
  -moz-box-shadow: 0 5px 8px rgba(0, 0, 0, 0.19), 0 4px 3px 1px rgba(0, 0, 0, 0.14);
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.19), 0 4px 3px 1px rgba(0, 0, 0, 0.14);
  border: 0px;
  border-top: 5px solid #222222;
  overflow: hidden;
  width: 90%;
  position: relative;
}
@media (min-width: 768px) and (max-width: 991px) {
  .fr-modal .fr-modal-wrapper {
    margin: 30px auto;
    width: 70%;
  }
}
@media (min-width: 992px) {
  .fr-modal .fr-modal-wrapper {
    margin: 50px auto;
    width: 600px;
  }
}
.fr-modal .fr-modal-wrapper .fr-modal-head {
  background: #ffffff;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 2px 2px 1px rgba(0, 0, 0, 0.14);
  -moz-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 2px 2px 1px rgba(0, 0, 0, 0.14);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 2px 2px 1px rgba(0, 0, 0, 0.14);
  border-bottom: 0px;
  overflow: hidden;
  position: absolute;
  width: 100%;
  min-height: 42px;
  z-index: 3;
  -webkit-transition: height 0.2s ease 0s;
  -moz-transition: height 0.2s ease 0s;
  -ms-transition: height 0.2s ease 0s;
  -o-transition: height 0.2s ease 0s;
}
.fr-modal .fr-modal-wrapper .fr-modal-head i {
  padding: 12px;
  width: 20px;
  font-size: 16px;
  cursor: pointer;
  line-height: 18px;
  color: #222222;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.fr-modal .fr-modal-wrapper .fr-modal-head i.fr-modal-close {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transition: color 0.2s ease 0s;
  -moz-transition: color 0.2s ease 0s;
  -ms-transition: color 0.2s ease 0s;
  -o-transition: color 0.2s ease 0s;
}
.fr-modal .fr-modal-wrapper .fr-modal-head h4 {
  font-size: 18px;
  padding: 12px 10px;
  margin: 0;
  font-weight: 400;
  line-height: 18px;
  display: inline-block;
  float: left;
}
.fr-modal .fr-modal-wrapper div.fr-modal-body {
  height: 100%;
  min-height: 150px;
  overflow-y: scroll;
  padding-bottom: 10px;
}
.fr-modal .fr-modal-wrapper div.fr-modal-body:focus {
  outline: 0;
}
.fr-modal .fr-modal-wrapper div.fr-modal-body button.fr-command {
  height: 36px;
  line-height: 1;
  color: #1e88e5;
  padding: 10px;
  cursor: pointer;
  text-decoration: none;
  border: none;
  background: none;
  font-size: 16px;
  outline: none;
  -webkit-transition: background 0.2s ease 0s;
  -moz-transition: background 0.2s ease 0s;
  -ms-transition: background 0.2s ease 0s;
  -o-transition: background 0.2s ease 0s;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.fr-modal .fr-modal-wrapper div.fr-modal-body button.fr-command + button {
  margin-left: 24px;
}
.fr-modal .fr-modal-wrapper div.fr-modal-body button.fr-command:hover,
.fr-modal .fr-modal-wrapper div.fr-modal-body button.fr-command:focus {
  background: #ebebeb;
  color: #1e88e5;
}
.fr-modal .fr-modal-wrapper div.fr-modal-body button.fr-command:active {
  background: #d6d6d6;
  color: #1e88e5;
}
.fr-modal .fr-modal-wrapper div.fr-modal-body button::-moz-focus-inner {
  border: 0;
}
.fr-desktop .fr-modal-wrapper .fr-modal-head i:hover {
  background: #ebebeb;
}
.fr-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000000;
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  z-index: 2147483639;
}
.fr-popup {
  position: absolute;
  display: none;
  color: #222222;
  background: #ffffff;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  font-family: Arial, Helvetica, sans-serif;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  margin-top: 10px;
  z-index: 2147483635;
  text-align: left;
  border: 0px;
  border-top: 5px solid #222222;
  text-rendering: optimizelegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.2;
}
.fr-popup .fr-input-focus {
  background: #f5f5f5;
}
.fr-popup.fr-above {
  margin-top: -10px;
  border-top: 0;
  border-bottom: 5px solid #222222;
  -webkit-box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.12), 0 -1px 1px 1px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.12), 0 -1px 1px 1px rgba(0, 0, 0, 0.16);
  box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.12), 0 -1px 1px 1px rgba(0, 0, 0, 0.16);
}
.fr-popup.fr-active {
  display: block;
}
.fr-popup.fr-hidden {
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
.fr-popup .fr-hs {
  display: block !important;
}
.fr-popup .fr-hs.fr-hidden {
  display: none !important;
}
.fr-popup .fr-input-line {
  position: relative;
  padding: 8px 0;
}
.fr-popup .fr-input-line input[type="text"],
.fr-popup .fr-input-line textarea {
  width: 100%;
  margin: 0px 0 1px 0;
  border: none;
  border-bottom: solid 1px #bdbdbd;
  color: #222222;
  font-size: 14px;
  padding: 6px 0 2px;
  background: rgba(0, 0, 0, 0);
  position: relative;
  z-index: 2;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.fr-popup .fr-input-line input[type="text"]:focus,
.fr-popup .fr-input-line textarea:focus {
  border-bottom: solid 2px #1e88e5;
  margin-bottom: 0px;
}
.fr-popup .fr-input-line input + label,
.fr-popup .fr-input-line textarea + label {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 12px;
  color: rgba(0, 0, 0, 0);
  -webkit-transition: color 0.2s ease 0s;
  -moz-transition: color 0.2s ease 0s;
  -ms-transition: color 0.2s ease 0s;
  -o-transition: color 0.2s ease 0s;
  z-index: 3;
  width: 100%;
  display: block;
  background: #ffffff;
}
.fr-popup .fr-input-line input.fr-not-empty:focus + label,
.fr-popup .fr-input-line textarea.fr-not-empty:focus + label {
  color: #1e88e5;
}
.fr-popup .fr-input-line input.fr-not-empty + label,
.fr-popup .fr-input-line textarea.fr-not-empty + label {
  color: #808080;
}
.fr-popup input,
.fr-popup textarea {
  user-select: text;
  -o-user-select: text;
  -moz-user-select: text;
  -khtml-user-select: text;
  -webkit-user-select: text;
  -ms-user-select: text;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  outline: none;
}
.fr-popup textarea {
  resize: none;
}
.fr-popup .fr-buttons {
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  padding: 0 2px;
  white-space: nowrap;
  line-height: 0;
  border-bottom: 0px;
}
.fr-popup .fr-buttons::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
}
.fr-popup .fr-buttons .fr-btn {
  display: inline-block;
  float: none;
}
.fr-popup .fr-buttons .fr-btn i {
  float: left;
}
.fr-popup .fr-buttons .fr-separator {
  display: inline-block;
  float: none;
}
.fr-popup .fr-layer {
  width: 225px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 10px;
  display: none;
}
@media (min-width: 768px) {
  .fr-popup .fr-layer {
    width: 300px;
  }
}
.fr-popup .fr-layer.fr-active {
  display: inline-block;
}
.fr-popup .fr-action-buttons {
  z-index: 7;
  height: 36px;
  text-align: right;
}
.fr-popup .fr-action-buttons button.fr-command {
  height: 36px;
  line-height: 1;
  color: #1e88e5;
  padding: 10px;
  cursor: pointer;
  text-decoration: none;
  border: none;
  background: none;
  font-size: 16px;
  outline: none;
  -webkit-transition: background 0.2s ease 0s;
  -moz-transition: background 0.2s ease 0s;
  -ms-transition: background 0.2s ease 0s;
  -o-transition: background 0.2s ease 0s;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.fr-popup .fr-action-buttons button.fr-command + button {
  margin-left: 24px;
}
.fr-popup .fr-action-buttons button.fr-command:hover,
.fr-popup .fr-action-buttons button.fr-command:focus {
  background: #ebebeb;
  color: #1e88e5;
}
.fr-popup .fr-action-buttons button.fr-command:active {
  background: #d6d6d6;
  color: #1e88e5;
}
.fr-popup .fr-action-buttons button::-moz-focus-inner {
  border: 0;
}
.fr-popup .fr-checkbox {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  line-height: 1;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  vertical-align: middle;
}
.fr-popup .fr-checkbox svg {
  margin-left: 2px;
  margin-top: 2px;
  display: none;
  width: 10px;
  height: 10px;
}
.fr-popup .fr-checkbox span {
  border: solid 1px #222222;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  width: 16px;
  height: 16px;
  display: inline-block;
  position: relative;
  z-index: 1;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: background 0.2s ease 0s, border-color 0.2s ease 0s;
  -moz-transition: background 0.2s ease 0s, border-color 0.2s ease 0s;
  -ms-transition: background 0.2s ease 0s, border-color 0.2s ease 0s;
  -o-transition: background 0.2s ease 0s, border-color 0.2s ease 0s;
}
.fr-popup .fr-checkbox input {
  position: absolute;
  z-index: 2;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  border: 0 none;
  cursor: pointer;
  height: 16px;
  margin: 0;
  padding: 0;
  width: 16px;
  top: 1px;
  left: 1px;
}
.fr-popup .fr-checkbox input:checked + span {
  background: #1e88e5;
  border-color: #1e88e5;
}
.fr-popup .fr-checkbox input:checked + span svg {
  display: block;
}
.fr-popup .fr-checkbox input:focus + span {
  border-color: #1e88e5;
}
.fr-popup .fr-checkbox-line {
  font-size: 14px;
  line-height: 1.4px;
  margin-top: 10px;
}
.fr-popup .fr-checkbox-line label {
  cursor: pointer;
  margin: 0 5px;
  vertical-align: middle;
}
.fr-popup.fr-rtl {
  direction: rtl;
  text-align: right;
}
.fr-popup.fr-rtl .fr-action-buttons {
  text-align: left;
}
.fr-popup.fr-rtl .fr-input-line input + label,
.fr-popup.fr-rtl .fr-input-line textarea + label {
  left: auto;
  right: 0;
}
.fr-popup.fr-rtl .fr-buttons .fr-separator.fr-vs {
  float: right;
}
.fr-popup .fr-arrow {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #222222;
  position: absolute;
  top: -9px;
  left: 50%;
  margin-left: -5px;
  display: inline-block;
}
.fr-popup.fr-above .fr-arrow {
  top: auto;
  bottom: -9px;
  border-bottom: 0;
  border-top: 5px solid #222222;
}
.fr-text-edit-layer {
  width: 250px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block !important;
}
.fr-toolbar {
  color: #222222;
  background: #ffffff;
  position: relative;
  z-index: 4;
  font-family: Arial, Helvetica, sans-serif;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  padding: 0 2px;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  text-align: left;
  border: 0px;
  border-top: 5px solid #222222;
  text-rendering: optimizelegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.2;
}
.fr-toolbar::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
}
.fr-toolbar.fr-rtl {
  text-align: right;
}
.fr-toolbar.fr-inline {
  display: none;
  white-space: nowrap;
  position: absolute;
  margin-top: 10px;
}
.fr-toolbar.fr-inline .fr-arrow {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #222222;
  position: absolute;
  top: -9px;
  left: 50%;
  margin-left: -5px;
  display: inline-block;
}
.fr-toolbar.fr-inline.fr-above {
  margin-top: -10px;
  -webkit-box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.12), 0 -1px 1px 1px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.12), 0 -1px 1px 1px rgba(0, 0, 0, 0.16);
  box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.12), 0 -1px 1px 1px rgba(0, 0, 0, 0.16);
  border-bottom: 5px solid #222222;
  border-top: 0;
}
.fr-toolbar.fr-inline.fr-above .fr-arrow {
  top: auto;
  bottom: -9px;
  border-bottom: 0;
  border-top-color: inherit;
  border-top-style: solid;
  border-top-width: 5px;
}
.fr-toolbar.fr-top {
  top: 0;
  border-radius: 2px 2px 0 0;
  -moz-border-radius: 2px 2px 0 0;
  -webkit-border-radius: 2px 2px 0 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
}
.fr-toolbar.fr-bottom {
  bottom: 0;
  border-radius: 0 0 2px 2px;
  -moz-border-radius: 0 0 2px 2px;
  -webkit-border-radius: 0 0 2px 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
}
.fr-separator {
  background: #ebebeb;
  display: block;
  vertical-align: top;
  float: left;
}
.fr-separator + .fr-separator {
  display: none;
}
.fr-separator.fr-vs {
  height: 34px;
  width: 1px;
  margin: 2px;
}
.fr-separator.fr-hs {
  clear: both;
  height: 1px;
  width: calc(100% - (2 * 2px));
  margin: 0 2px;
}
.fr-separator.fr-hidden {
  display: none !important;
}
.fr-rtl .fr-separator {
  float: right;
}
.fr-toolbar.fr-inline .fr-separator.fr-hs {
  float: none;
}
.fr-toolbar.fr-inline .fr-separator.fr-vs {
  float: none;
  display: inline-block;
}
.fr-visibility-helper {
  display: none;
  margin-left: 0px !important;
}
@media (min-width: 768px) {
  .fr-visibility-helper {
    margin-left: 1px !important;
  }
}
@media (min-width: 992px) {
  .fr-visibility-helper {
    margin-left: 2px !important;
  }
}
@media (min-width: 1200px) {
  .fr-visibility-helper {
    margin-left: 3px !important;
  }
}
.fr-opacity-0 {
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
.fr-box {
  position: relative;
}
/**
 * Postion sticky hacks.
 */
.fr-sticky {
  position: -webkit-sticky;
  position: -moz-sticky;
  position: -ms-sticky;
  position: -o-sticky;
  position: sticky;
}
.fr-sticky-off {
  position: relative;
}
.fr-sticky-on {
  position: fixed;
}
.fr-sticky-on.fr-sticky-ios {
  position: absolute;
  left: 0;
  right: 0;
  width: auto !important;
}
.fr-sticky-dummy {
  display: none;
}
.fr-sticky-on + .fr-sticky-dummy,
.fr-sticky-box > .fr-sticky-dummy {
  display: block;
}
span.fr-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.clearfix::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
}
.hide-by-clipping {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.fr-box .fr-counter {
  position: absolute;
  bottom: 0px;
  padding: 5px;
  right: 0px;
  color: #cccccc;
  content: attr(data-chars);
  font-size: 15px;
  font-family: "Times New Roman", Georgia, Serif;
  z-index: 1;
  background: #ffffff;
  border-top: solid 1px #ebebeb;
  border-left: solid 1px #ebebeb;
  border-radius: 2px 0 0 0;
  -moz-border-radius: 2px 0 0 0;
  -webkit-border-radius: 2px 0 0 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.fr-box.fr-rtl .fr-counter {
  left: 0px;
  right: auto;
  border-left: none;
  border-right: solid 1px #ebebeb;
  border-radius: 0 2px 0 0;
  -moz-border-radius: 0 2px 0 0;
  -webkit-border-radius: 0 2px 0 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.fr-box.fr-code-view .fr-counter {
  display: none;
}

.clearfix::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
}
.hide-by-clipping {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
textarea.fr-code {
  display: none;
  width: 100%;
  resize: none;
  -moz-resize: none;
  -webkit-resize: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: none;
  padding: 10px;
  margin: 0px;
  font-family: "Courier New", monospace;
  font-size: 14px;
  background: #ffffff;
  color: #000000;
  outline: none;
}
.fr-box.fr-rtl textarea.fr-code {
  direction: rtl;
}
.fr-box .CodeMirror {
  display: none;
}
.fr-box.fr-code-view textarea.fr-code {
  display: block;
}
.fr-box.fr-code-view.fr-inline {
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
}
.fr-box.fr-code-view .fr-element,
.fr-box.fr-code-view .fr-placeholder,
.fr-box.fr-code-view .fr-iframe {
  display: none;
}
.fr-box.fr-code-view .CodeMirror {
  display: block;
}
.fr-box.fr-inline.fr-code-view .fr-command.fr-btn.html-switch {
  display: block;
}
.fr-box.fr-inline .fr-command.fr-btn.html-switch {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  display: none;
  background: #ffffff;
  color: #222222;
  -moz-outline: 0;
  outline: 0;
  border: 0;
  line-height: 1;
  cursor: pointer;
  text-align: left;
  padding: 12px 12px;
  -webkit-transition: background 0.2s ease 0s;
  -moz-transition: background 0.2s ease 0s;
  -ms-transition: background 0.2s ease 0s;
  -o-transition: background 0.2s ease 0s;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  z-index: 2;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
  user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
.fr-box.fr-inline .fr-command.fr-btn.html-switch i {
  font-size: 14px;
  width: 14px;
  text-align: center;
}
.fr-box.fr-inline .fr-command.fr-btn.html-switch.fr-desktop:hover {
  background: #ebebeb;
}

.clearfix::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
}
.hide-by-clipping {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.fr-popup .fr-colors-tabs {
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  margin-bottom: 5px;
  line-height: 16px;
  margin-left: -2px;
  margin-right: -2px;
}
.fr-popup .fr-colors-tabs .fr-colors-tab {
  display: inline-block;
  width: 50%;
  cursor: pointer;
  text-align: center;
  color: #222222;
  font-size: 13px;
  padding: 8px 0;
  position: relative;
}
.fr-popup .fr-colors-tabs .fr-colors-tab:hover,
.fr-popup .fr-colors-tabs .fr-colors-tab:focus {
  color: #1e88e5;
}
.fr-popup .fr-colors-tabs .fr-colors-tab[data-param1="background"]::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #1e88e5;
  content: '';
  -webkit-transition: transform 0.2s ease 0s;
  -moz-transition: transform 0.2s ease 0s;
  -ms-transition: transform 0.2s ease 0s;
  -o-transition: transform 0.2s ease 0s;
}
.fr-popup .fr-colors-tabs .fr-colors-tab.fr-selected-tab {
  color: #1e88e5;
}
.fr-popup .fr-colors-tabs .fr-colors-tab.fr-selected-tab[data-param1="text"] ~ [data-param1="background"]::after {
  -webkit-transform: translate3d(-100%, 0, 0);
  -moz-transform: translate3d(-100%, 0, 0);
  -ms-transform: translate3d(-100%, 0, 0);
  -o-transform: translate3d(-100%, 0, 0);
}
.fr-popup .fr-color-hex-layer {
  width: 100%;
  margin: 0px;
  padding: 10px;
}
.fr-popup .fr-color-hex-layer .fr-input-line {
  float: left;
  width: calc(100% - 50px);
  padding: 8px 0 0;
}
.fr-popup .fr-color-hex-layer .fr-action-buttons {
  float: right;
  width: 50px;
}
.fr-popup .fr-color-hex-layer .fr-action-buttons button {
  background-color: #1e88e5;
  color: #FFF;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  font-size: 13px;
  height: 32px;
}
.fr-popup .fr-color-hex-layer .fr-action-buttons button:hover {
  background-color: #166dba;
  color: #FFF;
}
.fr-popup .fr-separator + .fr-colors-tabs {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  margin-left: 2px;
  margin-right: 2px;
}
.fr-popup .fr-color-set {
  line-height: 0;
  display: none;
}
.fr-popup .fr-color-set.fr-selected-set {
  display: block;
}
.fr-popup .fr-color-set > span {
  display: inline-block;
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 1;
}
.fr-popup .fr-color-set > span > i {
  text-align: center;
  line-height: 32px;
  height: 32px;
  width: 32px;
  font-size: 13px;
  position: absolute;
  bottom: 0;
  cursor: default;
  left: 0;
}
.fr-popup .fr-color-set > span .fr-selected-color {
  color: #ffffff;
  font-family: FontAwesome;
  font-size: 13px;
  font-weight: 400;
  line-height: 32px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  text-align: center;
  cursor: default;
}
.fr-popup .fr-color-set > span:hover,
.fr-popup .fr-color-set > span:focus {
  outline: 1px solid #222222;
  z-index: 2;
}
.fr-rtl .fr-popup .fr-colors-tabs .fr-colors-tab.fr-selected-tab[data-param1="text"] ~ [data-param1="background"]::after {
  -webkit-transform: translate3d(100%, 0, 0);
  -moz-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  -o-transform: translate3d(100%, 0, 0);
}

.clearfix::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
}
.hide-by-clipping {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.fr-drag-helper {
  background: #1e88e5;
  height: 2px;
  margin-top: -1px;
  -webkit-opacity: 0.2;
  -moz-opacity: 0.2;
  opacity: 0.2;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  position: absolute;
  z-index: 2147483640;
  display: none;
}
.fr-drag-helper.fr-visible {
  display: block;
}
.fr-dragging {
  -webkit-opacity: 0.4;
  -moz-opacity: 0.4;
  opacity: 0.4;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.clearfix::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
}
.hide-by-clipping {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.fr-popup .fr-emoticon {
  display: inline-block;
  font-size: 20px;
  width: 20px;
  padding: 5px;
  line-height: 1;
  cursor: default;
  font-weight: normal;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "NotoColorEmoji", "Segoe UI Symbol", "Android Emoji", "EmojiSymbols";
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.fr-popup .fr-emoticon img {
  height: 20px;
}
.fr-popup .fr-link:focus {
  outline: 0;
  background: #ebebeb;
}

.clearfix::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
}
.hide-by-clipping {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.fr-popup .fr-file-upload-layer {
  border: dashed 2px #bdbdbd;
  padding: 25px 0;
  position: relative;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 140%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
}
.fr-popup .fr-file-upload-layer:hover {
  background: #ebebeb;
}
.fr-popup .fr-file-upload-layer.fr-drop {
  background: #ebebeb;
  border-color: #1e88e5;
}
.fr-popup .fr-file-upload-layer .fr-form {
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2147483640;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}
.fr-popup .fr-file-upload-layer .fr-form input {
  cursor: pointer;
  position: absolute;
  right: 0px;
  top: 0px;
  bottom: 0px;
  width: 500%;
  height: 100%;
  margin: 0px;
  font-size: 400px;
}
.fr-popup .fr-file-progress-bar-layer {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.fr-popup .fr-file-progress-bar-layer > h3 {
  font-size: 16px;
  margin: 10px 0;
  font-weight: normal;
}
.fr-popup .fr-file-progress-bar-layer > div.fr-action-buttons {
  display: none;
}
.fr-popup .fr-file-progress-bar-layer > div.fr-loader {
  background: #bcdbf7;
  height: 10px;
  width: 100%;
  margin-top: 20px;
  overflow: hidden;
  position: relative;
}
.fr-popup .fr-file-progress-bar-layer > div.fr-loader span {
  display: block;
  height: 100%;
  width: 0%;
  background: #1e88e5;
  -webkit-transition: width 0.2s ease 0s;
  -moz-transition: width 0.2s ease 0s;
  -ms-transition: width 0.2s ease 0s;
  -o-transition: width 0.2s ease 0s;
}
.fr-popup .fr-file-progress-bar-layer > div.fr-loader.fr-indeterminate span {
  width: 30% !important;
  position: absolute;
  top: 0;
  -webkit-animation: loading 2s linear infinite;
  -moz-animation: loading 2s linear infinite;
  -o-animation: loading 2s linear infinite;
  animation: loading 2s linear infinite;
}
.fr-popup .fr-file-progress-bar-layer.fr-error > div.fr-loader {
  display: none;
}
.fr-popup .fr-file-progress-bar-layer.fr-error > div.fr-action-buttons {
  display: block;
}
@keyframes loading {
  from {
    left: -25%;
  }
  to {
    left: 100%;
  }
}
@-webkit-keyframes loading {
  from {
    left: -25%;
  }
  to {
    left: 100%;
  }
}
@-moz-keyframes loading {
  from {
    left: -25%;
  }
  to {
    left: 100%;
  }
}
@-o-keyframes loading {
  from {
    left: -25%;
  }
  to {
    left: 100%;
  }
}

body.fr-fullscreen {
  overflow: hidden;
  height: 100%;
  width: 100%;
  position: fixed;
}
.fr-box.fr-fullscreen {
  margin: 0 !important;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2147483630 !important;
  width: auto !important;
}
.fr-box.fr-fullscreen .fr-toolbar.fr-top {
  top: 0 !important;
}
.fr-box.fr-fullscreen .fr-toolbar.fr-bottom {
  bottom: 0 !important;
}

.clearfix::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
}
.hide-by-clipping {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.fr-modal .fr-modal-wrapper .fr-modal-body .fr-help-modal {
  text-align: left;
  padding: 20px 20px 10px;
}
.fr-modal .fr-modal-wrapper .fr-modal-body .fr-help-modal table {
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.5;
  width: 100%;
}
.fr-modal .fr-modal-wrapper .fr-modal-body .fr-help-modal table + table {
  margin-top: 20px;
}
.fr-modal .fr-modal-wrapper .fr-modal-body .fr-help-modal table tr {
  border: 0;
}
.fr-modal .fr-modal-wrapper .fr-modal-body .fr-help-modal table th,
.fr-modal .fr-modal-wrapper .fr-modal-body .fr-help-modal table td {
  padding: 6px 0 4px;
}
.fr-modal .fr-modal-wrapper .fr-modal-body .fr-help-modal table tbody tr {
  border-bottom: solid 1px #ebebeb;
}
.fr-modal .fr-modal-wrapper .fr-modal-body .fr-help-modal table tbody td:first-child {
  width: 60%;
  color: #646464;
}
.fr-modal .fr-modal-wrapper .fr-modal-body .fr-help-modal table tbody td:nth-child(n+2) {
  letter-spacing: 0.5px;
}

.clearfix::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
}
.hide-by-clipping {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.fr-element img {
  cursor: pointer;
}
.fr-image-resizer {
  position: absolute;
  border: solid 1px #1e88e5;
  display: none;
  user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.fr-image-resizer.fr-active {
  display: block;
}
.fr-image-resizer .fr-handler {
  display: block;
  position: absolute;
  background: #1e88e5;
  border: solid 1px #ffffff;
  z-index: 4;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.fr-image-resizer .fr-handler.fr-hnw {
  cursor: nw-resize;
}
.fr-image-resizer .fr-handler.fr-hne {
  cursor: ne-resize;
}
.fr-image-resizer .fr-handler.fr-hsw {
  cursor: sw-resize;
}
.fr-image-resizer .fr-handler.fr-hse {
  cursor: se-resize;
}
.fr-image-resizer .fr-handler {
  width: 12px;
  height: 12px;
}
.fr-image-resizer .fr-handler.fr-hnw {
  left: -6px;
  top: -6px;
}
.fr-image-resizer .fr-handler.fr-hne {
  right: -6px;
  top: -6px;
}
.fr-image-resizer .fr-handler.fr-hsw {
  left: -6px;
  bottom: -6px;
}
.fr-image-resizer .fr-handler.fr-hse {
  right: -6px;
  bottom: -6px;
}
@media (min-width: 1200px) {
  .fr-image-resizer .fr-handler {
    width: 10px;
    height: 10px;
  }
  .fr-image-resizer .fr-handler.fr-hnw {
    left: -5px;
    top: -5px;
  }
  .fr-image-resizer .fr-handler.fr-hne {
    right: -5px;
    top: -5px;
  }
  .fr-image-resizer .fr-handler.fr-hsw {
    left: -5px;
    bottom: -5px;
  }
  .fr-image-resizer .fr-handler.fr-hse {
    right: -5px;
    bottom: -5px;
  }
}
.fr-image-overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2147483640;
  display: none;
}
.fr-popup .fr-image-upload-layer {
  border: dashed 2px #bdbdbd;
  padding: 25px 0;
  position: relative;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 140%;
  text-align: center;
}
.fr-popup .fr-image-upload-layer:hover {
  background: #ebebeb;
}
.fr-popup .fr-image-upload-layer.fr-drop {
  background: #ebebeb;
  border-color: #1e88e5;
}
.fr-popup .fr-image-upload-layer .fr-form {
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2147483640;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}
.fr-popup .fr-image-upload-layer .fr-form input {
  cursor: pointer;
  position: absolute;
  right: 0px;
  top: 0px;
  bottom: 0px;
  width: 500%;
  height: 100%;
  margin: 0px;
  font-size: 400px;
}
.fr-popup .fr-image-progress-bar-layer > h3 {
  font-size: 16px;
  margin: 10px 0;
  font-weight: normal;
}
.fr-popup .fr-image-progress-bar-layer > div.fr-action-buttons {
  display: none;
}
.fr-popup .fr-image-progress-bar-layer > div.fr-loader {
  background: #bcdbf7;
  height: 10px;
  width: 100%;
  margin-top: 20px;
  overflow: hidden;
  position: relative;
}
.fr-popup .fr-image-progress-bar-layer > div.fr-loader span {
  display: block;
  height: 100%;
  width: 0%;
  background: #1e88e5;
  -webkit-transition: width 0.2s ease 0s;
  -moz-transition: width 0.2s ease 0s;
  -ms-transition: width 0.2s ease 0s;
  -o-transition: width 0.2s ease 0s;
}
.fr-popup .fr-image-progress-bar-layer > div.fr-loader.fr-indeterminate span {
  width: 30% !important;
  position: absolute;
  top: 0;
  -webkit-animation: loading 2s linear infinite;
  -moz-animation: loading 2s linear infinite;
  -o-animation: loading 2s linear infinite;
  animation: loading 2s linear infinite;
}
.fr-popup .fr-image-progress-bar-layer.fr-error > div.fr-loader {
  display: none;
}
.fr-popup .fr-image-progress-bar-layer.fr-error > div.fr-action-buttons {
  display: block;
}
.fr-image-size-layer .fr-image-group .fr-input-line {
  width: calc(50% - 5px);
  display: inline-block;
}
.fr-image-size-layer .fr-image-group .fr-input-line + .fr-input-line {
  margin-left: 10px;
}
.fr-uploading {
  -webkit-opacity: 0.4;
  -moz-opacity: 0.4;
  opacity: 0.4;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
@keyframes loading {
  from {
    left: -25%;
  }
  to {
    left: 100%;
  }
}
@-webkit-keyframes loading {
  from {
    left: -25%;
  }
  to {
    left: 100%;
  }
}
@-moz-keyframes loading {
  from {
    left: -25%;
  }
  to {
    left: 100%;
  }
}
@-o-keyframes loading {
  from {
    left: -25%;
  }
  to {
    left: 100%;
  }
}

.clearfix::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
}
.hide-by-clipping {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.fr-modal-head .fr-modal-head-line::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
}
.fr-modal-head .fr-modal-head-line i.fr-modal-more {
  float: left;
  opacity: 1;
  -webkit-transition: padding 0.2s ease 0s, width 0.2s ease 0s, opacity 0.2s ease 0s;
  -moz-transition: padding 0.2s ease 0s, width 0.2s ease 0s, opacity 0.2s ease 0s;
  -ms-transition: padding 0.2s ease 0s, width 0.2s ease 0s, opacity 0.2s ease 0s;
  -o-transition: padding 0.2s ease 0s, width 0.2s ease 0s, opacity 0.2s ease 0s;
}
.fr-modal-head .fr-modal-head-line i.fr-modal-more.fr-not-available {
  opacity: 0;
  width: 0;
  padding: 12px 0;
}
.fr-modal-head .fr-modal-tags {
  display: none;
  text-align: left;
}
.fr-modal-head .fr-modal-tags a {
  display: inline-block;
  opacity: 0;
  padding: 6px 8px;
  margin: 8px 0 8px 8px;
  text-decoration: none;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  color: #1e88e5;
  -webkit-transition: opacity 0.2s ease 0s, background 0.2s ease 0s;
  -moz-transition: opacity 0.2s ease 0s, background 0.2s ease 0s;
  -ms-transition: opacity 0.2s ease 0s, background 0.2s ease 0s;
  -o-transition: opacity 0.2s ease 0s, background 0.2s ease 0s;
  cursor: pointer;
}
.fr-modal-head .fr-modal-tags a:focus {
  outline: none;
}
.fr-modal-head .fr-modal-tags a.fr-selected-tag {
  background: #d6d6d6;
}
div.fr-modal-body .fr-preloader {
  display: block;
  margin: 50px auto;
}
div.fr-modal-body div.fr-image-list {
  text-align: center;
  margin: 0 10px;
  padding: 0;
}
div.fr-modal-body div.fr-image-list::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
}
div.fr-modal-body div.fr-image-list .fr-list-column {
  float: left;
  width: calc((100% - 10px) / 2);
}
@media (min-width: 768px) and (max-width: 1199px) {
  div.fr-modal-body div.fr-image-list .fr-list-column {
    width: calc((100% - 20px) / 3);
  }
}
@media (min-width: 1200px) {
  div.fr-modal-body div.fr-image-list .fr-list-column {
    width: calc((100% - 30px) / 4);
  }
}
div.fr-modal-body div.fr-image-list .fr-list-column + .fr-list-column {
  margin-left: 10px;
}
div.fr-modal-body div.fr-image-list div.fr-image-container {
  position: relative;
  width: 100%;
  display: block;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  overflow: hidden;
}
div.fr-modal-body div.fr-image-list div.fr-image-container:first-child {
  margin-top: 10px;
}
div.fr-modal-body div.fr-image-list div.fr-image-container + div {
  margin-top: 10px;
}
div.fr-modal-body div.fr-image-list div.fr-image-container.fr-image-deleting::after {
  position: absolute;
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transition: opacity 0.2s ease 0s;
  -moz-transition: opacity 0.2s ease 0s;
  -ms-transition: opacity 0.2s ease 0s;
  -o-transition: opacity 0.2s ease 0s;
  background: #000000;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
}
div.fr-modal-body div.fr-image-list div.fr-image-container.fr-image-deleting::before {
  content: attr(data-deleting);
  color: #ffffff;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  position: absolute;
  z-index: 3;
  font-size: 15px;
  height: 20px;
}
div.fr-modal-body div.fr-image-list div.fr-image-container.fr-empty {
  height: 95px;
  background: #cccccc;
  z-index: 1;
}
div.fr-modal-body div.fr-image-list div.fr-image-container.fr-empty::after {
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: attr(data-loading);
  display: inline-block;
  height: 20px;
}
div.fr-modal-body div.fr-image-list div.fr-image-container img {
  width: 100%;
  vertical-align: middle;
  position: relative;
  z-index: 2;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transition: opacity 0.2s ease 0s, filter 0.2s ease 0s;
  -moz-transition: opacity 0.2s ease 0s, filter 0.2s ease 0s;
  -ms-transition: opacity 0.2s ease 0s, filter 0.2s ease 0s;
  -o-transition: opacity 0.2s ease 0s, filter 0.2s ease 0s;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
}
div.fr-modal-body div.fr-image-list div.fr-image-container.fr-mobile-selected img {
  -webkit-opacity: 0.75;
  -moz-opacity: 0.75;
  opacity: 0.75;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
div.fr-modal-body div.fr-image-list div.fr-image-container.fr-mobile-selected .fr-delete-img,
div.fr-modal-body div.fr-image-list div.fr-image-container.fr-mobile-selected .fr-insert-img {
  display: inline-block;
}
div.fr-modal-body div.fr-image-list div.fr-image-container .fr-delete-img,
div.fr-modal-body div.fr-image-list div.fr-image-container .fr-insert-img {
  display: none;
  top: 50%;
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-transition: background 0.2s ease 0s, color 0.2s ease 0s;
  -moz-transition: background 0.2s ease 0s, color 0.2s ease 0s;
  -ms-transition: background 0.2s ease 0s, color 0.2s ease 0s;
  -o-transition: background 0.2s ease 0s, color 0.2s ease 0s;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  position: absolute;
  cursor: pointer;
  margin: 0;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-decoration: none;
  z-index: 3;
}
div.fr-modal-body div.fr-image-list div.fr-image-container .fr-delete-img {
  background: #b8312f;
  color: #ffffff;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(25%);
  -moz-transform: translateY(-50%) translateX(25%);
  -ms-transform: translateY(-50%) translateX(25%);
  -o-transform: translateY(-50%) translateX(25%);
}
div.fr-modal-body div.fr-image-list div.fr-image-container .fr-insert-img {
  background: #ffffff;
  color: #1e88e5;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-125%);
  -moz-transform: translateY(-50%) translateX(-125%);
  -ms-transform: translateY(-50%) translateX(-125%);
  -o-transform: translateY(-50%) translateX(-125%);
}
.fr-desktop .fr-modal-wrapper .fr-modal-head .fr-modal-tags a:hover {
  background: #ebebeb;
}
.fr-desktop .fr-modal-wrapper .fr-modal-head .fr-modal-tags a.fr-selected-tag {
  background: #d6d6d6;
}
.fr-desktop .fr-modal-wrapper div.fr-modal-body div.fr-image-list div.fr-image-container:hover img {
  -webkit-opacity: 0.75;
  -moz-opacity: 0.75;
  opacity: 0.75;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
.fr-desktop .fr-modal-wrapper div.fr-modal-body div.fr-image-list div.fr-image-container:hover .fr-delete-img,
.fr-desktop .fr-modal-wrapper div.fr-modal-body div.fr-image-list div.fr-image-container:hover .fr-insert-img {
  display: inline-block;
}
.fr-desktop .fr-modal-wrapper div.fr-modal-body div.fr-image-list div.fr-image-container .fr-delete-img:hover {
  background: #bf4644;
  color: #ffffff;
}
.fr-desktop .fr-modal-wrapper div.fr-modal-body div.fr-image-list div.fr-image-container .fr-insert-img:hover {
  background: #ebebeb;
}

.clearfix::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
}
.hide-by-clipping {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.fr-line-breaker {
  cursor: text;
  border-top: 1px solid #1e88e5;
  position: fixed;
  z-index: 2;
  display: none;
}
.fr-line-breaker.fr-visible {
  display: block;
}
.fr-line-breaker a.fr-floating-btn {
  position: absolute;
  left: calc(50% - (32px / 2));
  top: -16px;
}

.clearfix::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
}
.hide-by-clipping {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.fr-quick-insert {
  position: absolute;
  z-index: 2147483639;
  white-space: nowrap;
  padding-right: 5px;
  margin-left: -5px;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.fr-quick-insert.fr-on a.fr-floating-btn svg {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
}
.fr-quick-insert.fr-hidden {
  display: none;
}
.fr-qi-helper {
  position: absolute;
  z-index: 3;
  padding-left: 16px;
  white-space: nowrap;
}
.fr-qi-helper a.fr-btn.fr-floating-btn {
  text-align: center;
  display: inline-block;
  color: #222222;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
}
.fr-qi-helper a.fr-btn.fr-floating-btn.fr-size-1 {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}

.clearfix::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
}
.hide-by-clipping {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.fr-modal .fr-modal-wrapper .fr-modal-body .fr-special-characters-modal {
  text-align: left;
  padding: 20px 20px 10px;
}
.fr-modal .fr-modal-wrapper .fr-modal-body .fr-special-characters-modal .fr-special-characters-list {
  margin-bottom: 20px;
}
.fr-modal .fr-modal-wrapper .fr-modal-body .fr-special-characters-modal .fr-special-characters-title {
  font-weight: bold;
  font-size: 14px;
  padding: 6px 0 4px;
  margin: 0 0 5px;
}
.fr-modal .fr-modal-wrapper .fr-modal-body .fr-special-characters-modal .fr-special-character {
  display: inline-block;
  font-size: 16px;
  width: 20px;
  height: 20px;
  padding: 5px;
  line-height: 20px;
  cursor: default;
  font-weight: normal;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  text-align: center;
  border: 1px solid #cccccc;
  margin: -1px 0 0 -1px;
}

.clearfix::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
}
.hide-by-clipping {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.fr-element table td.fr-selected-cell,
.fr-element table th.fr-selected-cell {
  border: 1px double #1e88e5;
}
.fr-element table tr {
  user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
.fr-element table td,
.fr-element table th {
  user-select: text;
  -o-user-select: text;
  -moz-user-select: text;
  -khtml-user-select: text;
  -webkit-user-select: text;
  -ms-user-select: text;
}
.fr-element .fr-no-selection table td,
.fr-element .fr-no-selection table th {
  user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
.fr-table-resizer {
  cursor: col-resize;
  position: fixed;
  z-index: 3;
  display: none;
}
.fr-table-resizer.fr-moving {
  z-index: 2;
}
.fr-table-resizer div {
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  border-right: 1px solid #1e88e5;
}
.fr-no-selection {
  user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
.fr-popup .fr-table-colors-hex-layer {
  width: 100%;
  margin: 0px;
  padding: 10px;
}
.fr-popup .fr-table-colors-hex-layer .fr-input-line {
  float: left;
  width: calc(100% - 50px);
  padding: 8px 0 0;
}
.fr-popup .fr-table-colors-hex-layer .fr-action-buttons {
  float: right;
  width: 50px;
}
.fr-popup .fr-table-colors-hex-layer .fr-action-buttons button {
  background-color: #1e88e5;
  color: #FFF;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  font-size: 13px;
  height: 32px;
}
.fr-popup .fr-table-colors-hex-layer .fr-action-buttons button:hover {
  background-color: #166dba;
  color: #FFF;
}
.fr-popup .fr-table-size .fr-table-size-info {
  text-align: center;
  font-size: 14px;
  padding: 8px;
}
.fr-popup .fr-table-size .fr-select-table-size {
  line-height: 0;
  padding: 0 5px 5px;
  white-space: nowrap;
}
.fr-popup .fr-table-size .fr-select-table-size > span {
  display: inline-block;
  padding: 0px 4px 4px 0;
  background: transparent;
}
.fr-popup .fr-table-size .fr-select-table-size > span > span {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1px solid #dddddd;
}
.fr-popup .fr-table-size .fr-select-table-size > span.hover {
  background: transparent;
}
.fr-popup .fr-table-size .fr-select-table-size > span.hover > span {
  background: rgba(30, 136, 229, 0.3);
  border: solid 1px #1e88e5;
}
.fr-popup .fr-table-size .fr-select-table-size .new-line::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
}
.fr-popup.fr-above .fr-table-size .fr-select-table-size > span {
  display: inline-block !important;
}
.fr-popup .fr-table-colors-buttons {
  margin-bottom: 5px;
}
.fr-popup .fr-table-colors {
  line-height: 0;
  display: block;
}
.fr-popup .fr-table-colors > span {
  display: inline-block;
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 1;
}
.fr-popup .fr-table-colors > span > i {
  text-align: center;
  line-height: 32px;
  height: 32px;
  width: 32px;
  font-size: 13px;
  position: absolute;
  bottom: 0;
  cursor: default;
  left: 0;
}
.fr-popup .fr-table-colors > span:focus {
  outline: 1px solid #222222;
  z-index: 2;
}
.fr-popup.fr-desktop .fr-table-size .fr-select-table-size > span > span {
  width: 12px;
  height: 12px;
}
.fr-insert-helper {
  position: fixed;
  z-index: 9999;
  white-space: nowrap;
}

.clearfix::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
}
.hide-by-clipping {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.fr-element .fr-video {
  user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
.fr-element .fr-video::after {
  position: absolute;
  content: '';
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  cursor: pointer;
  display: block;
  background: rgba(0, 0, 0, 0);
}
.fr-element .fr-video.fr-active > * {
  z-index: 2;
  position: relative;
}
.fr-element .fr-video > * {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  max-width: 100%;
  border: none;
}
.fr-box .fr-video-resizer {
  position: absolute;
  border: solid 1px #1e88e5;
  display: none;
  user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
.fr-box .fr-video-resizer.fr-active {
  display: block;
}
.fr-box .fr-video-resizer .fr-handler {
  display: block;
  position: absolute;
  background: #1e88e5;
  border: solid 1px #ffffff;
  z-index: 4;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.fr-box .fr-video-resizer .fr-handler.fr-hnw {
  cursor: nw-resize;
}
.fr-box .fr-video-resizer .fr-handler.fr-hne {
  cursor: ne-resize;
}
.fr-box .fr-video-resizer .fr-handler.fr-hsw {
  cursor: sw-resize;
}
.fr-box .fr-video-resizer .fr-handler.fr-hse {
  cursor: se-resize;
}
.fr-box .fr-video-resizer .fr-handler {
  width: 12px;
  height: 12px;
}
.fr-box .fr-video-resizer .fr-handler.fr-hnw {
  left: -6px;
  top: -6px;
}
.fr-box .fr-video-resizer .fr-handler.fr-hne {
  right: -6px;
  top: -6px;
}
.fr-box .fr-video-resizer .fr-handler.fr-hsw {
  left: -6px;
  bottom: -6px;
}
.fr-box .fr-video-resizer .fr-handler.fr-hse {
  right: -6px;
  bottom: -6px;
}
@media (min-width: 1200px) {
  .fr-box .fr-video-resizer .fr-handler {
    width: 10px;
    height: 10px;
  }
  .fr-box .fr-video-resizer .fr-handler.fr-hnw {
    left: -5px;
    top: -5px;
  }
  .fr-box .fr-video-resizer .fr-handler.fr-hne {
    right: -5px;
    top: -5px;
  }
  .fr-box .fr-video-resizer .fr-handler.fr-hsw {
    left: -5px;
    bottom: -5px;
  }
  .fr-box .fr-video-resizer .fr-handler.fr-hse {
    right: -5px;
    bottom: -5px;
  }
}
.fr-popup .fr-video-size-layer .fr-video-group .fr-input-line {
  width: calc(50% - 5px);
  display: inline-block;
}
.fr-popup .fr-video-size-layer .fr-video-group .fr-input-line + .fr-input-line {
  margin-left: 10px;
}
.fr-popup .fr-video-upload-layer {
  border: dashed 2px #bdbdbd;
  padding: 25px 0;
  position: relative;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 140%;
  text-align: center;
}
.fr-popup .fr-video-upload-layer:hover {
  background: #ebebeb;
}
.fr-popup .fr-video-upload-layer.fr-drop {
  background: #ebebeb;
  border-color: #1e88e5;
}
.fr-popup .fr-video-upload-layer .fr-form {
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2147483640;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}
.fr-popup .fr-video-upload-layer .fr-form input {
  cursor: pointer;
  position: absolute;
  right: 0px;
  top: 0px;
  bottom: 0px;
  width: 500%;
  height: 100%;
  margin: 0px;
  font-size: 400px;
}
.fr-popup .fr-video-progress-bar-layer > h3 {
  font-size: 16px;
  margin: 10px 0;
  font-weight: normal;
}
.fr-popup .fr-video-progress-bar-layer > div.fr-action-buttons {
  display: none;
}
.fr-popup .fr-video-progress-bar-layer > div.fr-loader {
  background: #bcdbf7;
  height: 10px;
  width: 100%;
  margin-top: 20px;
  overflow: hidden;
  position: relative;
}
.fr-popup .fr-video-progress-bar-layer > div.fr-loader span {
  display: block;
  height: 100%;
  width: 0%;
  background: #1e88e5;
  -webkit-transition: width 0.2s ease 0s;
  -moz-transition: width 0.2s ease 0s;
  -ms-transition: width 0.2s ease 0s;
  -o-transition: width 0.2s ease 0s;
}
.fr-popup .fr-video-progress-bar-layer > div.fr-loader.fr-indeterminate span {
  width: 30% !important;
  position: absolute;
  top: 0;
  -webkit-animation: loading 2s linear infinite;
  -moz-animation: loading 2s linear infinite;
  -o-animation: loading 2s linear infinite;
  animation: loading 2s linear infinite;
}
.fr-popup .fr-video-progress-bar-layer.fr-error > div.fr-loader {
  display: none;
}
.fr-popup .fr-video-progress-bar-layer.fr-error > div.fr-action-buttons {
  display: block;
}
.fr-video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2147483640;
  display: none;
}
/*!
 * froala_editor v2.7.3 (https://www.froala.com/wysiwyg-editor)
 * License https://froala.com/wysiwyg-editor/terms/
 * Copyright 2014-2017 Froala Labs
 */

.clearfix::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
}
.hide-by-clipping {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
img.fr-rounded,
.fr-img-caption.fr-rounded img {
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
img.fr-bordered,
.fr-img-caption.fr-bordered img {
  border: solid 5px #CCC;
}
img.fr-bordered {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.fr-img-caption.fr-bordered img {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
img.fr-shadow,
.fr-img-caption.fr-shadow img {
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
}
.fr-view span[style~="color:"] a {
  color: inherit;
}
.fr-view strong {
  font-weight: 700;
}
.fr-view table {
  border: none;
  border-collapse: collapse;
  empty-cells: show;
  max-width: 100%;
}
.fr-view table.fr-dashed-borders td,
.fr-view table.fr-dashed-borders th {
  border-style: dashed;
}
.fr-view table.fr-alternate-rows tbody tr:nth-child(2n) {
  background: #f5f5f5;
}
.fr-view table td,
.fr-view table th {
  border: 1px solid #dddddd;
}
.fr-view table td:empty,
.fr-view table th:empty {
  height: 20px;
}
.fr-view table td.fr-highlighted,
.fr-view table th.fr-highlighted {
  border: 1px double red;
}
.fr-view table td.fr-thick,
.fr-view table th.fr-thick {
  border-width: 2px;
}
.fr-view table th {
  background: #e6e6e6;
}
.fr-view hr {
  clear: both;
  user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  page-break-after: always;
}
.fr-view .fr-file {
  position: relative;
}
.fr-view .fr-file::after {
  position: relative;
  content: "\1F4CE";
  font-weight: normal;
}
.fr-view pre {
  white-space: pre-wrap;
  word-wrap: break-word;
}
.fr-view[dir="rtl"] blockquote {
  border-left: none;
  border-right: solid 2px #5e35b1;
  margin-right: 0;
  padding-right: 5px;
  padding-left: 0px;
}
.fr-view[dir="rtl"] blockquote blockquote {
  border-color: #00bcd4;
}
.fr-view[dir="rtl"] blockquote blockquote blockquote {
  border-color: #43a047;
}
.fr-view blockquote {
  border-left: solid 2px #5e35b1;
  margin-left: 0;
  padding-left: 5px;
  color: #5e35b1;
}
.fr-view blockquote blockquote {
  border-color: #00bcd4;
  color: #00bcd4;
}
.fr-view blockquote blockquote blockquote {
  border-color: #43a047;
  color: #43a047;
}
.fr-view span.fr-emoticon {
  font-weight: normal;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "NotoColorEmoji", "Segoe UI Symbol", "Android Emoji", "EmojiSymbols";
  display: inline;
  line-height: 0;
}
.fr-view span.fr-emoticon.fr-emoticon-img {
  background-repeat: no-repeat !important;
  font-size: inherit;
  height: 1em;
  width: 1em;
  min-height: 20px;
  min-width: 20px;
  display: inline-block;
  margin: -0.1em 0.1em 0.1em;
  line-height: 1;
  vertical-align: middle;
}
.fr-view .fr-text-gray {
  color: #AAA !important;
}
.fr-view .fr-text-bordered {
  border-top: solid 1px #222;
  border-bottom: solid 1px #222;
  padding: 10px 0;
}
.fr-view .fr-text-spaced {
  letter-spacing: 1px;
}
.fr-view .fr-text-uppercase {
  text-transform: uppercase;
}
.fr-view img {
  position: relative;
  max-width: 100%;
}
.fr-view img.fr-dib {
  margin: 5px auto;
  display: block;
  float: none;
  vertical-align: top;
}
.fr-view img.fr-dib.fr-fil {
  margin-left: 0;
  text-align: left;
}
.fr-view img.fr-dib.fr-fir {
  margin-right: 0;
  text-align: right;
}
.fr-view img.fr-dii {
  display: inline-block;
  float: none;
  vertical-align: bottom;
  margin-left: 5px;
  margin-right: 5px;
  max-width: calc(100% - (2 * 5px));
}
.fr-view img.fr-dii.fr-fil {
  float: left;
  margin: 5px 5px 5px 0;
  max-width: calc(100% - 5px);
}
.fr-view img.fr-dii.fr-fir {
  float: right;
  margin: 5px 0 5px 5px;
  max-width: calc(100% - 5px);
}
.fr-view span.fr-img-caption {
  position: relative;
  max-width: 100%;
}
.fr-view span.fr-img-caption.fr-dib {
  margin: 5px auto;
  display: block;
  float: none;
  vertical-align: top;
}
.fr-view span.fr-img-caption.fr-dib.fr-fil {
  margin-left: 0;
  text-align: left;
}
.fr-view span.fr-img-caption.fr-dib.fr-fir {
  margin-right: 0;
  text-align: right;
}
.fr-view span.fr-img-caption.fr-dii {
  display: inline-block;
  float: none;
  vertical-align: bottom;
  margin-left: 5px;
  margin-right: 5px;
  max-width: calc(100% - (2 * 5px));
}
.fr-view span.fr-img-caption.fr-dii.fr-fil {
  float: left;
  margin: 5px 5px 5px 0;
  max-width: calc(100% - 5px);
}
.fr-view span.fr-img-caption.fr-dii.fr-fir {
  float: right;
  margin: 5px 0 5px 5px;
  max-width: calc(100% - 5px);
}
.fr-view .fr-video {
  text-align: center;
  position: relative;
}
.fr-view .fr-video > * {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  max-width: 100%;
  border: none;
}
.fr-view .fr-video.fr-dvb {
  display: block;
  clear: both;
}
.fr-view .fr-video.fr-dvb.fr-fvl {
  text-align: left;
}
.fr-view .fr-video.fr-dvb.fr-fvr {
  text-align: right;
}
.fr-view .fr-video.fr-dvi {
  display: inline-block;
}
.fr-view .fr-video.fr-dvi.fr-fvl {
  float: left;
}
.fr-view .fr-video.fr-dvi.fr-fvr {
  float: right;
}
.fr-view a.fr-strong {
  font-weight: 700;
}
.fr-view a.fr-green {
  color: green;
}
.fr-view .fr-img-caption {
  text-align: center;
}
.fr-view .fr-img-caption .fr-img-wrap {
  padding: 0px;
  display: inline-block;
  margin: auto;
  text-align: center;
}
.fr-view .fr-img-caption .fr-img-wrap img {
  display: block;
  margin: auto;
}
.fr-view .fr-img-caption .fr-img-wrap > span {
  margin: auto;
  display: inline-block;
  padding: 5px 5px 10px;
  font-size: 14px;
  font-weight: initial;
  max-width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-opacity: 0.9;
  -moz-opacity: 0.9;
  opacity: 0.9;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
.fr-view button.fr-rounded,
.fr-view input.fr-rounded,
.fr-view textarea.fr-rounded {
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.fr-view button.fr-large,
.fr-view input.fr-large,
.fr-view textarea.fr-large {
  font-size: 24px;
}
/**
 * Image style.
 */
a.fr-view.fr-strong {
  font-weight: 700;
}
a.fr-view.fr-green {
  color: green;
}
/**
 * Link style.
 */
img.fr-view {
  position: relative;
  max-width: 100%;
}
img.fr-view.fr-dib {
  margin: 5px auto;
  display: block;
  float: none;
  vertical-align: top;
}
img.fr-view.fr-dib.fr-fil {
  margin-left: 0;
  text-align: left;
}
img.fr-view.fr-dib.fr-fir {
  margin-right: 0;
  text-align: right;
}
img.fr-view.fr-dii {
  display: inline-block;
  float: none;
  vertical-align: bottom;
  margin-left: 5px;
  margin-right: 5px;
  max-width: calc(100% - (2 * 5px));
}
img.fr-view.fr-dii.fr-fil {
  float: left;
  margin: 5px 5px 5px 0;
  max-width: calc(100% - 5px);
}
img.fr-view.fr-dii.fr-fir {
  float: right;
  margin: 5px 0 5px 5px;
  max-width: calc(100% - 5px);
}
span.fr-img-caption.fr-view {
  position: relative;
  max-width: 100%;
}
span.fr-img-caption.fr-view.fr-dib {
  margin: 5px auto;
  display: block;
  float: none;
  vertical-align: top;
}
span.fr-img-caption.fr-view.fr-dib.fr-fil {
  margin-left: 0;
  text-align: left;
}
span.fr-img-caption.fr-view.fr-dib.fr-fir {
  margin-right: 0;
  text-align: right;
}
span.fr-img-caption.fr-view.fr-dii {
  display: inline-block;
  float: none;
  vertical-align: bottom;
  margin-left: 5px;
  margin-right: 5px;
  max-width: calc(100% - (2 * 5px));
}
span.fr-img-caption.fr-view.fr-dii.fr-fil {
  float: left;
  margin: 5px 5px 5px 0;
  max-width: calc(100% - 5px);
}
span.fr-img-caption.fr-view.fr-dii.fr-fir {
  float: right;
  margin: 5px 0 5px 5px;
  max-width: calc(100% - 5px);
}
/*!
 * froala_editor v2.7.3 (https://www.froala.com/wysiwyg-editor)
 * License https://froala.com/wysiwyg-editor/terms/
 * Copyright 2014-2017 Froala Labs
 */

.clearfix::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
}
.hide-by-clipping {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.fr-box .fr-counter {
  position: absolute;
  bottom: 0px;
  padding: 5px;
  right: 0px;
  color: #cccccc;
  content: attr(data-chars);
  font-size: 15px;
  font-family: "Times New Roman", Georgia, Serif;
  z-index: 1;
  background: #ffffff;
  border-top: solid 1px #ebebeb;
  border-left: solid 1px #ebebeb;
  border-radius: 2px 0 0 0;
  -moz-border-radius: 2px 0 0 0;
  -webkit-border-radius: 2px 0 0 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.fr-box.fr-rtl .fr-counter {
  left: 0px;
  right: auto;
  border-left: none;
  border-right: solid 1px #ebebeb;
  border-radius: 0 2px 0 0;
  -moz-border-radius: 0 2px 0 0;
  -webkit-border-radius: 0 2px 0 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.fr-box.fr-code-view .fr-counter {
  display: none;
}
/*!
 * froala_editor v2.7.3 (https://www.froala.com/wysiwyg-editor)
 * License https://froala.com/wysiwyg-editor/terms/
 * Copyright 2014-2017 Froala Labs
 */

.clearfix::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
}
.hide-by-clipping {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
textarea.fr-code {
  display: none;
  width: 100%;
  resize: none;
  -moz-resize: none;
  -webkit-resize: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: none;
  padding: 10px;
  margin: 0px;
  font-family: "Courier New", monospace;
  font-size: 14px;
  background: #ffffff;
  color: #000000;
  outline: none;
}
.fr-box.fr-rtl textarea.fr-code {
  direction: rtl;
}
.fr-box .CodeMirror {
  display: none;
}
.fr-box.fr-code-view textarea.fr-code {
  display: block;
}
.fr-box.fr-code-view.fr-inline {
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
}
.fr-box.fr-code-view .fr-element,
.fr-box.fr-code-view .fr-placeholder,
.fr-box.fr-code-view .fr-iframe {
  display: none;
}
.fr-box.fr-code-view .CodeMirror {
  display: block;
}
.fr-box.fr-inline.fr-code-view .fr-command.fr-btn.html-switch {
  display: block;
}
.fr-box.fr-inline .fr-command.fr-btn.html-switch {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  display: none;
  background: #ffffff;
  color: #222222;
  -moz-outline: 0;
  outline: 0;
  border: 0;
  line-height: 1;
  cursor: pointer;
  text-align: left;
  padding: 12px 12px;
  -webkit-transition: background 0.2s ease 0s;
  -moz-transition: background 0.2s ease 0s;
  -ms-transition: background 0.2s ease 0s;
  -o-transition: background 0.2s ease 0s;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  z-index: 2;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
  user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
.fr-box.fr-inline .fr-command.fr-btn.html-switch i {
  font-size: 14px;
  width: 14px;
  text-align: center;
}
.fr-box.fr-inline .fr-command.fr-btn.html-switch.fr-desktop:hover {
  background: #ebebeb;
}
/*!
 * froala_editor v2.7.3 (https://www.froala.com/wysiwyg-editor)
 * License https://froala.com/wysiwyg-editor/terms/
 * Copyright 2014-2017 Froala Labs
 */

.clearfix::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
}
.hide-by-clipping {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.fr-popup .fr-colors-tabs {
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  margin-bottom: 5px;
  line-height: 16px;
  margin-left: -2px;
  margin-right: -2px;
}
.fr-popup .fr-colors-tabs .fr-colors-tab {
  display: inline-block;
  width: 50%;
  cursor: pointer;
  text-align: center;
  color: #222222;
  font-size: 13px;
  padding: 8px 0;
  position: relative;
}
.fr-popup .fr-colors-tabs .fr-colors-tab:hover,
.fr-popup .fr-colors-tabs .fr-colors-tab:focus {
  color: #1e88e5;
}
.fr-popup .fr-colors-tabs .fr-colors-tab[data-param1="background"]::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #1e88e5;
  content: '';
  -webkit-transition: transform 0.2s ease 0s;
  -moz-transition: transform 0.2s ease 0s;
  -ms-transition: transform 0.2s ease 0s;
  -o-transition: transform 0.2s ease 0s;
}
.fr-popup .fr-colors-tabs .fr-colors-tab.fr-selected-tab {
  color: #1e88e5;
}
.fr-popup .fr-colors-tabs .fr-colors-tab.fr-selected-tab[data-param1="text"] ~ [data-param1="background"]::after {
  -webkit-transform: translate3d(-100%, 0, 0);
  -moz-transform: translate3d(-100%, 0, 0);
  -ms-transform: translate3d(-100%, 0, 0);
  -o-transform: translate3d(-100%, 0, 0);
}
.fr-popup .fr-color-hex-layer {
  width: 100%;
  margin: 0px;
  padding: 10px;
}
.fr-popup .fr-color-hex-layer .fr-input-line {
  float: left;
  width: calc(100% - 50px);
  padding: 8px 0 0;
}
.fr-popup .fr-color-hex-layer .fr-action-buttons {
  float: right;
  width: 50px;
}
.fr-popup .fr-color-hex-layer .fr-action-buttons button {
  background-color: #1e88e5;
  color: #FFF;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  font-size: 13px;
  height: 32px;
}
.fr-popup .fr-color-hex-layer .fr-action-buttons button:hover {
  background-color: #166dba;
  color: #FFF;
}
.fr-popup .fr-separator + .fr-colors-tabs {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  margin-left: 2px;
  margin-right: 2px;
}
.fr-popup .fr-color-set {
  line-height: 0;
  display: none;
}
.fr-popup .fr-color-set.fr-selected-set {
  display: block;
}
.fr-popup .fr-color-set > span {
  display: inline-block;
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 1;
}
.fr-popup .fr-color-set > span > i {
  text-align: center;
  line-height: 32px;
  height: 32px;
  width: 32px;
  font-size: 13px;
  position: absolute;
  bottom: 0;
  cursor: default;
  left: 0;
}
.fr-popup .fr-color-set > span .fr-selected-color {
  color: #ffffff;
  font-family: FontAwesome;
  font-size: 13px;
  font-weight: 400;
  line-height: 32px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  text-align: center;
  cursor: default;
}
.fr-popup .fr-color-set > span:hover,
.fr-popup .fr-color-set > span:focus {
  outline: 1px solid #222222;
  z-index: 2;
}
.fr-rtl .fr-popup .fr-colors-tabs .fr-colors-tab.fr-selected-tab[data-param1="text"] ~ [data-param1="background"]::after {
  -webkit-transform: translate3d(100%, 0, 0);
  -moz-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  -o-transform: translate3d(100%, 0, 0);
}
/*!
 * froala_editor v2.7.3 (https://www.froala.com/wysiwyg-editor)
 * License https://froala.com/wysiwyg-editor/terms/
 * Copyright 2014-2017 Froala Labs
 */

.clearfix::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
}
.hide-by-clipping {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.fr-drag-helper {
  background: #1e88e5;
  height: 2px;
  margin-top: -1px;
  -webkit-opacity: 0.2;
  -moz-opacity: 0.2;
  opacity: 0.2;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  position: absolute;
  z-index: 2147483640;
  display: none;
}
.fr-drag-helper.fr-visible {
  display: block;
}
.fr-dragging {
  -webkit-opacity: 0.4;
  -moz-opacity: 0.4;
  opacity: 0.4;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
/*!
 * froala_editor v2.7.3 (https://www.froala.com/wysiwyg-editor)
 * License https://froala.com/wysiwyg-editor/terms/
 * Copyright 2014-2017 Froala Labs
 */

.clearfix::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
}
.hide-by-clipping {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.fr-popup .fr-emoticon {
  display: inline-block;
  font-size: 20px;
  width: 20px;
  padding: 5px;
  line-height: 1;
  cursor: default;
  font-weight: normal;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "NotoColorEmoji", "Segoe UI Symbol", "Android Emoji", "EmojiSymbols";
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.fr-popup .fr-emoticon img {
  height: 20px;
}
.fr-popup .fr-link:focus {
  outline: 0;
  background: #ebebeb;
}
/*!
 * froala_editor v2.7.3 (https://www.froala.com/wysiwyg-editor)
 * License https://froala.com/wysiwyg-editor/terms/
 * Copyright 2014-2017 Froala Labs
 */

.clearfix::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
}
.hide-by-clipping {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.fr-popup .fr-file-upload-layer {
  border: dashed 2px #bdbdbd;
  padding: 25px 0;
  position: relative;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 140%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
}
.fr-popup .fr-file-upload-layer:hover {
  background: #ebebeb;
}
.fr-popup .fr-file-upload-layer.fr-drop {
  background: #ebebeb;
  border-color: #1e88e5;
}
.fr-popup .fr-file-upload-layer .fr-form {
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2147483640;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}
.fr-popup .fr-file-upload-layer .fr-form input {
  cursor: pointer;
  position: absolute;
  right: 0px;
  top: 0px;
  bottom: 0px;
  width: 500%;
  height: 100%;
  margin: 0px;
  font-size: 400px;
}
.fr-popup .fr-file-progress-bar-layer {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.fr-popup .fr-file-progress-bar-layer > h3 {
  font-size: 16px;
  margin: 10px 0;
  font-weight: normal;
}
.fr-popup .fr-file-progress-bar-layer > div.fr-action-buttons {
  display: none;
}
.fr-popup .fr-file-progress-bar-layer > div.fr-loader {
  background: #bcdbf7;
  height: 10px;
  width: 100%;
  margin-top: 20px;
  overflow: hidden;
  position: relative;
}
.fr-popup .fr-file-progress-bar-layer > div.fr-loader span {
  display: block;
  height: 100%;
  width: 0%;
  background: #1e88e5;
  -webkit-transition: width 0.2s ease 0s;
  -moz-transition: width 0.2s ease 0s;
  -ms-transition: width 0.2s ease 0s;
  -o-transition: width 0.2s ease 0s;
}
.fr-popup .fr-file-progress-bar-layer > div.fr-loader.fr-indeterminate span {
  width: 30% !important;
  position: absolute;
  top: 0;
  -webkit-animation: loading 2s linear infinite;
  -moz-animation: loading 2s linear infinite;
  -o-animation: loading 2s linear infinite;
  animation: loading 2s linear infinite;
}
.fr-popup .fr-file-progress-bar-layer.fr-error > div.fr-loader {
  display: none;
}
.fr-popup .fr-file-progress-bar-layer.fr-error > div.fr-action-buttons {
  display: block;
}
@keyframes loading {
  from {
    left: -25%;
  }
  to {
    left: 100%;
  }
}
@-webkit-keyframes loading {
  from {
    left: -25%;
  }
  to {
    left: 100%;
  }
}
@-moz-keyframes loading {
  from {
    left: -25%;
  }
  to {
    left: 100%;
  }
}
@-o-keyframes loading {
  from {
    left: -25%;
  }
  to {
    left: 100%;
  }
}
/*!
 * froala_editor v2.7.3 (https://www.froala.com/wysiwyg-editor)
 * License https://froala.com/wysiwyg-editor/terms/
 * Copyright 2014-2017 Froala Labs
 */

body.fr-fullscreen {
  overflow: hidden;
  height: 100%;
  width: 100%;
  position: fixed;
}
.fr-box.fr-fullscreen {
  margin: 0 !important;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2147483630 !important;
  width: auto !important;
}
.fr-box.fr-fullscreen .fr-toolbar.fr-top {
  top: 0 !important;
}
.fr-box.fr-fullscreen .fr-toolbar.fr-bottom {
  bottom: 0 !important;
}
/*!
 * froala_editor v2.7.3 (https://www.froala.com/wysiwyg-editor)
 * License https://froala.com/wysiwyg-editor/terms/
 * Copyright 2014-2017 Froala Labs
 */

.clearfix::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
}
.hide-by-clipping {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.fr-modal-head .fr-modal-head-line::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
}
.fr-modal-head .fr-modal-head-line i.fr-modal-more {
  float: left;
  opacity: 1;
  -webkit-transition: padding 0.2s ease 0s, width 0.2s ease 0s, opacity 0.2s ease 0s;
  -moz-transition: padding 0.2s ease 0s, width 0.2s ease 0s, opacity 0.2s ease 0s;
  -ms-transition: padding 0.2s ease 0s, width 0.2s ease 0s, opacity 0.2s ease 0s;
  -o-transition: padding 0.2s ease 0s, width 0.2s ease 0s, opacity 0.2s ease 0s;
}
.fr-modal-head .fr-modal-head-line i.fr-modal-more.fr-not-available {
  opacity: 0;
  width: 0;
  padding: 12px 0;
}
.fr-modal-head .fr-modal-tags {
  display: none;
  text-align: left;
}
.fr-modal-head .fr-modal-tags a {
  display: inline-block;
  opacity: 0;
  padding: 6px 8px;
  margin: 8px 0 8px 8px;
  text-decoration: none;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  color: #1e88e5;
  -webkit-transition: opacity 0.2s ease 0s, background 0.2s ease 0s;
  -moz-transition: opacity 0.2s ease 0s, background 0.2s ease 0s;
  -ms-transition: opacity 0.2s ease 0s, background 0.2s ease 0s;
  -o-transition: opacity 0.2s ease 0s, background 0.2s ease 0s;
  cursor: pointer;
}
.fr-modal-head .fr-modal-tags a:focus {
  outline: none;
}
.fr-modal-head .fr-modal-tags a.fr-selected-tag {
  background: #d6d6d6;
}
div.fr-modal-body .fr-preloader {
  display: block;
  margin: 50px auto;
}
div.fr-modal-body div.fr-image-list {
  text-align: center;
  margin: 0 10px;
  padding: 0;
}
div.fr-modal-body div.fr-image-list::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
}
div.fr-modal-body div.fr-image-list .fr-list-column {
  float: left;
  width: calc((100% - 10px) / 2);
}
@media (min-width: 768px) and (max-width: 1199px) {
  div.fr-modal-body div.fr-image-list .fr-list-column {
    width: calc((100% - 20px) / 3);
  }
}
@media (min-width: 1200px) {
  div.fr-modal-body div.fr-image-list .fr-list-column {
    width: calc((100% - 30px) / 4);
  }
}
div.fr-modal-body div.fr-image-list .fr-list-column + .fr-list-column {
  margin-left: 10px;
}
div.fr-modal-body div.fr-image-list div.fr-image-container {
  position: relative;
  width: 100%;
  display: block;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  overflow: hidden;
}
div.fr-modal-body div.fr-image-list div.fr-image-container:first-child {
  margin-top: 10px;
}
div.fr-modal-body div.fr-image-list div.fr-image-container + div {
  margin-top: 10px;
}
div.fr-modal-body div.fr-image-list div.fr-image-container.fr-image-deleting::after {
  position: absolute;
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transition: opacity 0.2s ease 0s;
  -moz-transition: opacity 0.2s ease 0s;
  -ms-transition: opacity 0.2s ease 0s;
  -o-transition: opacity 0.2s ease 0s;
  background: #000000;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
}
div.fr-modal-body div.fr-image-list div.fr-image-container.fr-image-deleting::before {
  content: attr(data-deleting);
  color: #ffffff;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  position: absolute;
  z-index: 3;
  font-size: 15px;
  height: 20px;
}
div.fr-modal-body div.fr-image-list div.fr-image-container.fr-empty {
  height: 95px;
  background: #cccccc;
  z-index: 1;
}
div.fr-modal-body div.fr-image-list div.fr-image-container.fr-empty::after {
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: attr(data-loading);
  display: inline-block;
  height: 20px;
}
div.fr-modal-body div.fr-image-list div.fr-image-container img {
  width: 100%;
  vertical-align: middle;
  position: relative;
  z-index: 2;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transition: opacity 0.2s ease 0s, filter 0.2s ease 0s;
  -moz-transition: opacity 0.2s ease 0s, filter 0.2s ease 0s;
  -ms-transition: opacity 0.2s ease 0s, filter 0.2s ease 0s;
  -o-transition: opacity 0.2s ease 0s, filter 0.2s ease 0s;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
}
div.fr-modal-body div.fr-image-list div.fr-image-container.fr-mobile-selected img {
  -webkit-opacity: 0.75;
  -moz-opacity: 0.75;
  opacity: 0.75;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
div.fr-modal-body div.fr-image-list div.fr-image-container.fr-mobile-selected .fr-delete-img,
div.fr-modal-body div.fr-image-list div.fr-image-container.fr-mobile-selected .fr-insert-img {
  display: inline-block;
}
div.fr-modal-body div.fr-image-list div.fr-image-container .fr-delete-img,
div.fr-modal-body div.fr-image-list div.fr-image-container .fr-insert-img {
  display: none;
  top: 50%;
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-transition: background 0.2s ease 0s, color 0.2s ease 0s;
  -moz-transition: background 0.2s ease 0s, color 0.2s ease 0s;
  -ms-transition: background 0.2s ease 0s, color 0.2s ease 0s;
  -o-transition: background 0.2s ease 0s, color 0.2s ease 0s;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px 1px rgba(0, 0, 0, 0.16);
  position: absolute;
  cursor: pointer;
  margin: 0;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-decoration: none;
  z-index: 3;
}
div.fr-modal-body div.fr-image-list div.fr-image-container .fr-delete-img {
  background: #b8312f;
  color: #ffffff;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(25%);
  -moz-transform: translateY(-50%) translateX(25%);
  -ms-transform: translateY(-50%) translateX(25%);
  -o-transform: translateY(-50%) translateX(25%);
}
div.fr-modal-body div.fr-image-list div.fr-image-container .fr-insert-img {
  background: #ffffff;
  color: #1e88e5;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-125%);
  -moz-transform: translateY(-50%) translateX(-125%);
  -ms-transform: translateY(-50%) translateX(-125%);
  -o-transform: translateY(-50%) translateX(-125%);
}
.fr-desktop .fr-modal-wrapper .fr-modal-head .fr-modal-tags a:hover {
  background: #ebebeb;
}
.fr-desktop .fr-modal-wrapper .fr-modal-head .fr-modal-tags a.fr-selected-tag {
  background: #d6d6d6;
}
.fr-desktop .fr-modal-wrapper div.fr-modal-body div.fr-image-list div.fr-image-container:hover img {
  -webkit-opacity: 0.75;
  -moz-opacity: 0.75;
  opacity: 0.75;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
.fr-desktop .fr-modal-wrapper div.fr-modal-body div.fr-image-list div.fr-image-container:hover .fr-delete-img,
.fr-desktop .fr-modal-wrapper div.fr-modal-body div.fr-image-list div.fr-image-container:hover .fr-insert-img {
  display: inline-block;
}
.fr-desktop .fr-modal-wrapper div.fr-modal-body div.fr-image-list div.fr-image-container .fr-delete-img:hover {
  background: #bf4644;
  color: #ffffff;
}
.fr-desktop .fr-modal-wrapper div.fr-modal-body div.fr-image-list div.fr-image-container .fr-insert-img:hover {
  background: #ebebeb;
}
/*!
 * froala_editor v2.7.3 (https://www.froala.com/wysiwyg-editor)
 * License https://froala.com/wysiwyg-editor/terms/
 * Copyright 2014-2017 Froala Labs
 */

.clearfix::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
}
.hide-by-clipping {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.fr-element img {
  cursor: pointer;
}
.fr-image-resizer {
  position: absolute;
  border: solid 1px #1e88e5;
  display: none;
  user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.fr-image-resizer.fr-active {
  display: block;
}
.fr-image-resizer .fr-handler {
  display: block;
  position: absolute;
  background: #1e88e5;
  border: solid 1px #ffffff;
  z-index: 4;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.fr-image-resizer .fr-handler.fr-hnw {
  cursor: nw-resize;
}
.fr-image-resizer .fr-handler.fr-hne {
  cursor: ne-resize;
}
.fr-image-resizer .fr-handler.fr-hsw {
  cursor: sw-resize;
}
.fr-image-resizer .fr-handler.fr-hse {
  cursor: se-resize;
}
.fr-image-resizer .fr-handler {
  width: 12px;
  height: 12px;
}
.fr-image-resizer .fr-handler.fr-hnw {
  left: -6px;
  top: -6px;
}
.fr-image-resizer .fr-handler.fr-hne {
  right: -6px;
  top: -6px;
}
.fr-image-resizer .fr-handler.fr-hsw {
  left: -6px;
  bottom: -6px;
}
.fr-image-resizer .fr-handler.fr-hse {
  right: -6px;
  bottom: -6px;
}
@media (min-width: 1200px) {
  .fr-image-resizer .fr-handler {
    width: 10px;
    height: 10px;
  }
  .fr-image-resizer .fr-handler.fr-hnw {
    left: -5px;
    top: -5px;
  }
  .fr-image-resizer .fr-handler.fr-hne {
    right: -5px;
    top: -5px;
  }
  .fr-image-resizer .fr-handler.fr-hsw {
    left: -5px;
    bottom: -5px;
  }
  .fr-image-resizer .fr-handler.fr-hse {
    right: -5px;
    bottom: -5px;
  }
}
.fr-image-overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2147483640;
  display: none;
}
.fr-popup .fr-image-upload-layer {
  border: dashed 2px #bdbdbd;
  padding: 25px 0;
  position: relative;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 140%;
  text-align: center;
}
.fr-popup .fr-image-upload-layer:hover {
  background: #ebebeb;
}
.fr-popup .fr-image-upload-layer.fr-drop {
  background: #ebebeb;
  border-color: #1e88e5;
}
.fr-popup .fr-image-upload-layer .fr-form {
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2147483640;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}
.fr-popup .fr-image-upload-layer .fr-form input {
  cursor: pointer;
  position: absolute;
  right: 0px;
  top: 0px;
  bottom: 0px;
  width: 500%;
  height: 100%;
  margin: 0px;
  font-size: 400px;
}
.fr-popup .fr-image-progress-bar-layer > h3 {
  font-size: 16px;
  margin: 10px 0;
  font-weight: normal;
}
.fr-popup .fr-image-progress-bar-layer > div.fr-action-buttons {
  display: none;
}
.fr-popup .fr-image-progress-bar-layer > div.fr-loader {
  background: #bcdbf7;
  height: 10px;
  width: 100%;
  margin-top: 20px;
  overflow: hidden;
  position: relative;
}
.fr-popup .fr-image-progress-bar-layer > div.fr-loader span {
  display: block;
  height: 100%;
  width: 0%;
  background: #1e88e5;
  -webkit-transition: width 0.2s ease 0s;
  -moz-transition: width 0.2s ease 0s;
  -ms-transition: width 0.2s ease 0s;
  -o-transition: width 0.2s ease 0s;
}
.fr-popup .fr-image-progress-bar-layer > div.fr-loader.fr-indeterminate span {
  width: 30% !important;
  position: absolute;
  top: 0;
  -webkit-animation: loading 2s linear infinite;
  -moz-animation: loading 2s linear infinite;
  -o-animation: loading 2s linear infinite;
  animation: loading 2s linear infinite;
}
.fr-popup .fr-image-progress-bar-layer.fr-error > div.fr-loader {
  display: none;
}
.fr-popup .fr-image-progress-bar-layer.fr-error > div.fr-action-buttons {
  display: block;
}
.fr-image-size-layer .fr-image-group .fr-input-line {
  width: calc(50% - 5px);
  display: inline-block;
}
.fr-image-size-layer .fr-image-group .fr-input-line + .fr-input-line {
  margin-left: 10px;
}
.fr-uploading {
  -webkit-opacity: 0.4;
  -moz-opacity: 0.4;
  opacity: 0.4;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
@keyframes loading {
  from {
    left: -25%;
  }
  to {
    left: 100%;
  }
}
@-webkit-keyframes loading {
  from {
    left: -25%;
  }
  to {
    left: 100%;
  }
}
@-moz-keyframes loading {
  from {
    left: -25%;
  }
  to {
    left: 100%;
  }
}
@-o-keyframes loading {
  from {
    left: -25%;
  }
  to {
    left: 100%;
  }
}
/*!
 * froala_editor v2.7.3 (https://www.froala.com/wysiwyg-editor)
 * License https://froala.com/wysiwyg-editor/terms/
 * Copyright 2014-2017 Froala Labs
 */

.clearfix::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
}
.hide-by-clipping {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.fr-line-breaker {
  cursor: text;
  border-top: 1px solid #1e88e5;
  position: fixed;
  z-index: 2;
  display: none;
}
.fr-line-breaker.fr-visible {
  display: block;
}
.fr-line-breaker a.fr-floating-btn {
  position: absolute;
  left: calc(50% - (32px / 2));
  top: -16px;
}
/*!
 * froala_editor v2.7.3 (https://www.froala.com/wysiwyg-editor)
 * License https://froala.com/wysiwyg-editor/terms/
 * Copyright 2014-2017 Froala Labs
 */

.clearfix::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
}
.hide-by-clipping {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.fr-quick-insert {
  position: absolute;
  z-index: 2147483639;
  white-space: nowrap;
  padding-right: 5px;
  margin-left: -5px;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.fr-quick-insert.fr-on a.fr-floating-btn svg {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
}
.fr-quick-insert.fr-hidden {
  display: none;
}
.fr-qi-helper {
  position: absolute;
  z-index: 3;
  padding-left: 16px;
  white-space: nowrap;
}
.fr-qi-helper a.fr-btn.fr-floating-btn {
  text-align: center;
  display: inline-block;
  color: #222222;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
}
.fr-qi-helper a.fr-btn.fr-floating-btn.fr-size-1 {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}
/*!
 * froala_editor v2.7.3 (https://www.froala.com/wysiwyg-editor)
 * License https://froala.com/wysiwyg-editor/terms/
 * Copyright 2014-2017 Froala Labs
 */

.clearfix::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
}
.hide-by-clipping {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.fr-element table td.fr-selected-cell,
.fr-element table th.fr-selected-cell {
  border: 1px double #1e88e5;
}
.fr-element table tr {
  user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
.fr-element table td,
.fr-element table th {
  user-select: text;
  -o-user-select: text;
  -moz-user-select: text;
  -khtml-user-select: text;
  -webkit-user-select: text;
  -ms-user-select: text;
}
.fr-element .fr-no-selection table td,
.fr-element .fr-no-selection table th {
  user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
.fr-table-resizer {
  cursor: col-resize;
  position: fixed;
  z-index: 3;
  display: none;
}
.fr-table-resizer.fr-moving {
  z-index: 2;
}
.fr-table-resizer div {
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  border-right: 1px solid #1e88e5;
}
.fr-no-selection {
  user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
.fr-popup .fr-table-colors-hex-layer {
  width: 100%;
  margin: 0px;
  padding: 10px;
}
.fr-popup .fr-table-colors-hex-layer .fr-input-line {
  float: left;
  width: calc(100% - 50px);
  padding: 8px 0 0;
}
.fr-popup .fr-table-colors-hex-layer .fr-action-buttons {
  float: right;
  width: 50px;
}
.fr-popup .fr-table-colors-hex-layer .fr-action-buttons button {
  background-color: #1e88e5;
  color: #FFF;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  font-size: 13px;
  height: 32px;
}
.fr-popup .fr-table-colors-hex-layer .fr-action-buttons button:hover {
  background-color: #166dba;
  color: #FFF;
}
.fr-popup .fr-table-size .fr-table-size-info {
  text-align: center;
  font-size: 14px;
  padding: 8px;
}
.fr-popup .fr-table-size .fr-select-table-size {
  line-height: 0;
  padding: 0 5px 5px;
  white-space: nowrap;
}
.fr-popup .fr-table-size .fr-select-table-size > span {
  display: inline-block;
  padding: 0px 4px 4px 0;
  background: transparent;
}
.fr-popup .fr-table-size .fr-select-table-size > span > span {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1px solid #dddddd;
}
.fr-popup .fr-table-size .fr-select-table-size > span.hover {
  background: transparent;
}
.fr-popup .fr-table-size .fr-select-table-size > span.hover > span {
  background: rgba(30, 136, 229, 0.3);
  border: solid 1px #1e88e5;
}
.fr-popup .fr-table-size .fr-select-table-size .new-line::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
}
.fr-popup.fr-above .fr-table-size .fr-select-table-size > span {
  display: inline-block !important;
}
.fr-popup .fr-table-colors-buttons {
  margin-bottom: 5px;
}
.fr-popup .fr-table-colors {
  line-height: 0;
  display: block;
}
.fr-popup .fr-table-colors > span {
  display: inline-block;
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 1;
}
.fr-popup .fr-table-colors > span > i {
  text-align: center;
  line-height: 32px;
  height: 32px;
  width: 32px;
  font-size: 13px;
  position: absolute;
  bottom: 0;
  cursor: default;
  left: 0;
}
.fr-popup .fr-table-colors > span:focus {
  outline: 1px solid #222222;
  z-index: 2;
}
.fr-popup.fr-desktop .fr-table-size .fr-select-table-size > span > span {
  width: 12px;
  height: 12px;
}
.fr-insert-helper {
  position: fixed;
  z-index: 9999;
  white-space: nowrap;
}
/*!
 * froala_editor v2.7.3 (https://www.froala.com/wysiwyg-editor)
 * License https://froala.com/wysiwyg-editor/terms/
 * Copyright 2014-2017 Froala Labs
 */

.clearfix::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
}
.hide-by-clipping {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.fr-element .fr-video {
  user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
.fr-element .fr-video::after {
  position: absolute;
  content: '';
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  cursor: pointer;
  display: block;
  background: rgba(0, 0, 0, 0);
}
.fr-element .fr-video.fr-active > * {
  z-index: 2;
  position: relative;
}
.fr-element .fr-video > * {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  max-width: 100%;
  border: none;
}
.fr-box .fr-video-resizer {
  position: absolute;
  border: solid 1px #1e88e5;
  display: none;
  user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
.fr-box .fr-video-resizer.fr-active {
  display: block;
}
.fr-box .fr-video-resizer .fr-handler {
  display: block;
  position: absolute;
  background: #1e88e5;
  border: solid 1px #ffffff;
  z-index: 4;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.fr-box .fr-video-resizer .fr-handler.fr-hnw {
  cursor: nw-resize;
}
.fr-box .fr-video-resizer .fr-handler.fr-hne {
  cursor: ne-resize;
}
.fr-box .fr-video-resizer .fr-handler.fr-hsw {
  cursor: sw-resize;
}
.fr-box .fr-video-resizer .fr-handler.fr-hse {
  cursor: se-resize;
}
.fr-box .fr-video-resizer .fr-handler {
  width: 12px;
  height: 12px;
}
.fr-box .fr-video-resizer .fr-handler.fr-hnw {
  left: -6px;
  top: -6px;
}
.fr-box .fr-video-resizer .fr-handler.fr-hne {
  right: -6px;
  top: -6px;
}
.fr-box .fr-video-resizer .fr-handler.fr-hsw {
  left: -6px;
  bottom: -6px;
}
.fr-box .fr-video-resizer .fr-handler.fr-hse {
  right: -6px;
  bottom: -6px;
}
@media (min-width: 1200px) {
  .fr-box .fr-video-resizer .fr-handler {
    width: 10px;
    height: 10px;
  }
  .fr-box .fr-video-resizer .fr-handler.fr-hnw {
    left: -5px;
    top: -5px;
  }
  .fr-box .fr-video-resizer .fr-handler.fr-hne {
    right: -5px;
    top: -5px;
  }
  .fr-box .fr-video-resizer .fr-handler.fr-hsw {
    left: -5px;
    bottom: -5px;
  }
  .fr-box .fr-video-resizer .fr-handler.fr-hse {
    right: -5px;
    bottom: -5px;
  }
}
.fr-popup .fr-video-size-layer .fr-video-group .fr-input-line {
  width: calc(50% - 5px);
  display: inline-block;
}
.fr-popup .fr-video-size-layer .fr-video-group .fr-input-line + .fr-input-line {
  margin-left: 10px;
}
.fr-popup .fr-video-upload-layer {
  border: dashed 2px #bdbdbd;
  padding: 25px 0;
  position: relative;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 140%;
  text-align: center;
}
.fr-popup .fr-video-upload-layer:hover {
  background: #ebebeb;
}
.fr-popup .fr-video-upload-layer.fr-drop {
  background: #ebebeb;
  border-color: #1e88e5;
}
.fr-popup .fr-video-upload-layer .fr-form {
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2147483640;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}
.fr-popup .fr-video-upload-layer .fr-form input {
  cursor: pointer;
  position: absolute;
  right: 0px;
  top: 0px;
  bottom: 0px;
  width: 500%;
  height: 100%;
  margin: 0px;
  font-size: 400px;
}
.fr-popup .fr-video-progress-bar-layer > h3 {
  font-size: 16px;
  margin: 10px 0;
  font-weight: normal;
}
.fr-popup .fr-video-progress-bar-layer > div.fr-action-buttons {
  display: none;
}
.fr-popup .fr-video-progress-bar-layer > div.fr-loader {
  background: #bcdbf7;
  height: 10px;
  width: 100%;
  margin-top: 20px;
  overflow: hidden;
  position: relative;
}
.fr-popup .fr-video-progress-bar-layer > div.fr-loader span {
  display: block;
  height: 100%;
  width: 0%;
  background: #1e88e5;
  -webkit-transition: width 0.2s ease 0s;
  -moz-transition: width 0.2s ease 0s;
  -ms-transition: width 0.2s ease 0s;
  -o-transition: width 0.2s ease 0s;
}
.fr-popup .fr-video-progress-bar-layer > div.fr-loader.fr-indeterminate span {
  width: 30% !important;
  position: absolute;
  top: 0;
  -webkit-animation: loading 2s linear infinite;
  -moz-animation: loading 2s linear infinite;
  -o-animation: loading 2s linear infinite;
  animation: loading 2s linear infinite;
}
.fr-popup .fr-video-progress-bar-layer.fr-error > div.fr-loader {
  display: none;
}
.fr-popup .fr-video-progress-bar-layer.fr-error > div.fr-action-buttons {
  display: block;
}
.fr-video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2147483640;
  display: none;
}
@charset "UTF-8";
/* External Imports */
html, body {
  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,
label.md-no-style.label-btn,
md-dialog md-dialog-actions .md-no-style.md-cancel-button,
md-dialog md-dialog-actions .md-no-style.md-confirm-button {
  font-weight: normal;
  background-color: inherit;
  text-align: left;
  border: none;
  padding: 0;
  margin: 0; }

select,
button,
label.label-btn,
md-dialog md-dialog-actions .md-cancel-button,
md-dialog md-dialog-actions .md-confirm-button,
textarea,
.fr-inline-editor .fr-view,
input {
  vertical-align: baseline; }

input[type="reset"],
input[type="submit"],
html input[type="button"],
button,
label.label-btn,
md-dialog md-dialog-actions .md-cancel-button,
md-dialog md-dialog-actions .md-confirm-button {
  cursor: pointer;
  -webkit-appearance: button; }
  input[type="reset"][disabled],
  input[type="submit"][disabled],
  html input[type="button"][disabled],
  button[disabled],
  label.label-btn[disabled],
  md-dialog md-dialog-actions .md-cancel-button[disabled],
  md-dialog md-dialog-actions .md-confirm-button[disabled] {
    cursor: default; }


textarea,
.fr-inline-editor .fr-view {
  vertical-align: top;
  overflow: auto; }

input[type="search"], md-autocomplete input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
  -webkit-box-sizing: content-box; }
  input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none; }

input:-webkit-autofill {
  text-shadow: none; }

.md-visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  text-transform: none;
  width: 1px; }

.md-shadow {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: inherit;
  pointer-events: none; }

.md-shadow-bottom-z-1 {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26); }

.md-shadow-bottom-z-2 {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4); }

.md-shadow-animated.md-shadow {
  transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1); }

/*
 * A container inside of a rippling element (eg a button),
 * which contains all of the individual ripples
 */
.md-ripple-container {
  pointer-events: none;
  position: absolute;
  overflow: hidden;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 0.55s cubic-bezier(0.25, 0.8, 0.25, 1); }

.md-ripple {
  position: absolute;
  transform: translate(-50%, -50%) scale(0);
  transform-origin: 50% 50%;
  opacity: 0;
  border-radius: 50%; }
  .md-ripple.md-ripple-placed {
    transition: margin 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), border 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), width 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), height 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.9s cubic-bezier(0.25, 0.8, 0.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: 0.20; }
  .md-ripple.md-ripple-remove {
    animation: md-remove-ripple 0.9s cubic-bezier(0.25, 0.8, 0.25, 1); }

@keyframes md-remove-ripple {
  0% {
    opacity: .15; }
  100% {
    opacity: 0; } }

.md-padding {
  padding: 8px; }

.md-margin {
  margin: 8px; }

.md-scroll-mask {
  position: absolute;
  background-color: transparent;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 50; }
  .md-scroll-mask > .md-scroll-mask-bar {
    display: block;
    position: absolute;
    background-color: #fafafa;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 65;
    box-shadow: inset 0px 0px 1px rgba(0, 0, 0, 0.3); }

.md-no-momentum {
  -webkit-overflow-scrolling: auto; }

.md-no-flicker {
  -webkit-filter: blur(0px); }

@media (min-width: 960px) {
  .md-padding {
    padding: 16px; } }

html[dir=rtl], html[dir=ltr], body[dir=rtl], body[dir=ltr] {
  unicode-bidi: embed; }

bdo[dir=rtl] {
  direction: rtl;
  unicode-bidi: bidi-override; }

bdo[dir=ltr] {
  direction: ltr;
  unicode-bidi: bidi-override; }

html, body {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
  min-height: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

/************
 * Headings
 ************/
.md-display-4 {
  font-size: 112px;
  font-weight: 300;
  letter-spacing: -0.010em;
  line-height: 112px; }

.md-display-3 {
  font-size: 56px;
  font-weight: 400;
  letter-spacing: -0.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: 0.005em; }

.md-subhead {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.010em;
  line-height: 24px; }

/************
 * Body Copy
 ************/
.md-body-1 {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.010em;
  line-height: 20px; }

.md-body-2 {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.010em;
  line-height: 24px; }

.md-caption {
  font-size: 12px;
  letter-spacing: 0.020em; }

.md-button {
  letter-spacing: 0.010em; }

/************
 * Defaults
 ************/

button,
label.label-btn,
md-dialog md-dialog-actions .md-cancel-button,
md-dialog md-dialog-actions .md-confirm-button,
select,
html,
textarea,
.fr-inline-editor .fr-view,
input {
  font-family: Roboto, "Helvetica Neue", sans-serif; }

select,
button,
label.label-btn,
md-dialog md-dialog-actions .md-cancel-button,
md-dialog md-dialog-actions .md-confirm-button,
textarea,
.fr-inline-editor .fr-view,
input {
  font-size: 100%; }

/*
*
*  Responsive attributes
*
*  References:
*  1) https://scotch.io/tutorials/a-visual-guide-to-css3-flexbox-properties#flex
*  2) https://css-tricks.com/almanac/properties/f/flex/
*  3) https://css-tricks.com/snippets/css/a-guide-to-flexbox/
*  4) https://github.com/philipwalton/flexbugs#3-min-height-on-a-flex-container-wont-apply-to-its-flex-items
*  5) http://godban.com.ua/projects/flexgrid
*
*
*/
.md-panel-outer-wrapper {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%; }

._md-panel-hidden {
  display: none; }

._md-panel-fullscreen {
  border-radius: 0;
  left: 0;
  min-height: 100%;
  min-width: 100%;
  position: fixed;
  top: 0; }

._md-panel-shown .md-panel {
  opacity: 1;
  transition: none; }

.md-panel {
  opacity: 0;
  position: fixed; }
  .md-panel._md-panel-shown {
    opacity: 1;
    transition: none; }
  .md-panel._md-panel-animate-enter {
    opacity: 1;
    transition: all 0.3s cubic-bezier(0, 0, 0.2, 1); }
  .md-panel._md-panel-animate-leave {
    opacity: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 1, 1); }
  .md-panel._md-panel-animate-scale-out, .md-panel._md-panel-animate-fade-out {
    opacity: 0; }
  .md-panel._md-panel-backdrop {
    height: 100%;
    position: absolute;
    width: 100%; }
  .md-panel._md-opaque-enter {
    opacity: .48;
    transition: opacity 0.3s cubic-bezier(0, 0, 0.2, 1); }
  .md-panel._md-opaque-leave {
    transition: opacity 0.3s cubic-bezier(0.4, 0, 1, 1); }

md-autocomplete {
  border-radius: 2px;
  display: block;
  height: 40px;
  position: relative;
  overflow: visible;
  min-width: 190px; }
  md-autocomplete[disabled] input {
    cursor: default; }
  md-autocomplete[md-floating-label] {
    border-radius: 0;
    background: transparent;
    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, md-autocomplete[md-floating-label] .md-show-clear-button label.label-btn, md-autocomplete[md-floating-label] .md-show-clear-button md-dialog md-dialog-actions .md-cancel-button, md-dialog md-dialog-actions md-autocomplete[md-floating-label] .md-show-clear-button .md-cancel-button, md-autocomplete[md-floating-label] .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button, md-dialog md-dialog-actions md-autocomplete[md-floating-label] .md-show-clear-button .md-confirm-button {
      display: block;
      position: absolute;
      right: 0;
      top: 20px;
      width: 30px;
      height: 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-right: 0;
        padding-left: 30px; }
  md-autocomplete md-autocomplete-wrap {
    display: flex;
    flex-direction: row;
    box-sizing: border-box;
    position: relative;
    overflow: visible;
    height: 40px; }
    md-autocomplete md-autocomplete-wrap.md-menu-showing {
      z-index: 51; }
    md-autocomplete md-autocomplete-wrap md-input-container, md-autocomplete md-autocomplete-wrap input {
      flex: 1 1 0%;
      box-sizing: border-box;
      min-width: 0; }
    md-autocomplete md-autocomplete-wrap md-progress-linear {
      position: absolute;
      bottom: -2px;
      left: 0; }
      md-autocomplete md-autocomplete-wrap md-progress-linear.md-inline {
        bottom: 40px;
        right: 2px;
        left: 2px;
        width: auto; }
      md-autocomplete md-autocomplete-wrap md-progress-linear .md-mode-indeterminate {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        transition: none; }
        md-autocomplete md-autocomplete-wrap md-progress-linear .md-mode-indeterminate .md-container {
          transition: none;
          height: 3px; }
        md-autocomplete md-autocomplete-wrap md-progress-linear .md-mode-indeterminate.ng-enter {
          transition: opacity 0.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 0.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) {
    font-size: 14px;
    box-sizing: border-box;
    border: none;
    box-shadow: none;
    outline: none;
    background: transparent;
    width: 100%;
    padding: 0 15px;
    line-height: 40px;
    height: 40px; }
    md-autocomplete input:not(.md-input)::-ms-clear {
      display: none; }
  md-autocomplete .md-show-clear-button button, md-autocomplete .md-show-clear-button label.label-btn, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-cancel-button, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-cancel-button, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-confirm-button {
    position: relative;
    line-height: 20px;
    text-align: center;
    width: 30px;
    height: 30px;
    cursor: pointer;
    border: none;
    border-radius: 50%;
    padding: 0;
    font-size: 12px;
    background: transparent;
    margin: auto 5px; }
    md-autocomplete .md-show-clear-button button:after, md-autocomplete .md-show-clear-button label.label-btn:after, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-cancel-button:after, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-cancel-button:after, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button:after, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-confirm-button:after {
      content: '';
      position: absolute;
      top: -6px;
      right: -6px;
      bottom: -6px;
      left: -6px;
      border-radius: 50%;
      transform: scale(0);
      opacity: 0;
      transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); }
    md-autocomplete .md-show-clear-button button:focus, md-autocomplete .md-show-clear-button label.label-btn:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-cancel-button:focus, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-cancel-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button:focus, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-confirm-button:focus {
      outline: none; }
      md-autocomplete .md-show-clear-button button:focus:after, md-autocomplete .md-show-clear-button label.label-btn:focus:after, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-cancel-button:focus:after, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-cancel-button:focus:after, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button:focus:after, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-confirm-button:focus:after {
        transform: scale(1);
        opacity: 1; }
    md-autocomplete .md-show-clear-button button md-icon, md-autocomplete .md-show-clear-button label.label-btn md-icon, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-cancel-button md-icon, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-cancel-button md-icon, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button md-icon, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-confirm-button md-icon {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate3d(-50%, -50%, 0) scale(0.9); }
      md-autocomplete .md-show-clear-button button md-icon path, md-autocomplete .md-show-clear-button label.label-btn md-icon path, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-cancel-button md-icon path, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-cancel-button md-icon path, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button md-icon path, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-confirm-button md-icon path {
        stroke-width: 0; }
    md-autocomplete .md-show-clear-button button.ng-enter, md-autocomplete .md-show-clear-button label.ng-enter.label-btn, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .ng-enter.md-cancel-button, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .ng-enter.md-cancel-button, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .ng-enter.md-confirm-button, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .ng-enter.md-confirm-button {
      transform: scale(0);
      transition: transform 0.15s ease-out; }
      md-autocomplete .md-show-clear-button button.ng-enter.ng-enter-active, md-autocomplete .md-show-clear-button label.ng-enter.ng-enter-active.label-btn, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .ng-enter.ng-enter-active.md-cancel-button, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .ng-enter.ng-enter-active.md-cancel-button, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .ng-enter.ng-enter-active.md-confirm-button, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .ng-enter.ng-enter-active.md-confirm-button {
        transform: scale(1); }
    md-autocomplete .md-show-clear-button button.ng-leave, md-autocomplete .md-show-clear-button label.ng-leave.label-btn, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .ng-leave.md-cancel-button, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .ng-leave.md-cancel-button, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .ng-leave.md-confirm-button, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .ng-leave.md-confirm-button {
      transition: transform 0.15s ease-out; }
      md-autocomplete .md-show-clear-button button.ng-leave.ng-leave-active, md-autocomplete .md-show-clear-button label.ng-leave.ng-leave-active.label-btn, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .ng-leave.ng-leave-active.md-cancel-button, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .ng-leave.ng-leave-active.md-cancel-button, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .ng-leave.ng-leave-active.md-confirm-button, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .ng-leave.ng-leave-active.md-confirm-button {
        transform: scale(0); }
  @media screen and (-ms-high-contrast: active) {
    md-autocomplete input {
      border: 1px solid #fff; }
    md-autocomplete li:focus {
      color: #fff; } }

.md-virtual-repeat-container.md-autocomplete-suggestions-container {
  position: absolute;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  z-index: 100;
  height: 100%; }

.md-virtual-repeat-container.md-not-found {
  height: 48px; }

.md-autocomplete-suggestions {
  margin: 0;
  list-style: none;
  padding: 0; }
  .md-autocomplete-suggestions li {
    font-size: 14px;
    overflow: hidden;
    padding: 0 15px;
    line-height: 48px;
    height: 48px;
    transition: background 0.15s linear;
    margin: 0;
    white-space: nowrap;
    text-overflow: ellipsis; }
    .md-autocomplete-suggestions li:focus {
      outline: none; }
    .md-autocomplete-suggestions li:not(.md-not-found-wrapper) {
      cursor: pointer; }

@media screen and (-ms-high-contrast: active) {
  md-autocomplete,
  .md-autocomplete-suggestions {
    border: 1px solid #fff; } }

button.md-button::-moz-focus-inner, label.md-button.label-btn::-moz-focus-inner, md-dialog md-dialog-actions .md-button.md-cancel-button::-moz-focus-inner, md-dialog md-dialog-actions .md-button.md-confirm-button::-moz-focus-inner {
  border: 0; }

.md-button {
  display: inline-block;
  position: relative;
  cursor: pointer;
  /** Alignment adjustments */
  min-height: 36px;
  min-width: 88px;
  line-height: 36px;
  vertical-align: middle;
  align-items: center;
  text-align: center;
  border-radius: 2px;
  box-sizing: border-box;
  /* Reset default button appearance */
  -webkit-user-select: none;
          user-select: none;
  outline: none;
  border: 0;
  /** Custom styling for button */
  padding: 0 6px;
  margin: 6px 8px;
  background: transparent;
  color: currentColor;
  white-space: nowrap;
  /* Uppercase text content */
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  font-style: inherit;
  font-variant: inherit;
  font-family: inherit;
  text-decoration: none;
  overflow: hidden;
  transition: box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); }
  .md-dense > .md-button:not(.md-dense-disabled),
  .md-dense :not(.md-dense-disabled) .md-button:not(.md-dense-disabled) {
    min-height: 32px; }
  .md-dense > .md-button:not(.md-dense-disabled),
  .md-dense :not(.md-dense-disabled) .md-button:not(.md-dense-disabled) {
    line-height: 32px; }
  .md-dense > .md-button:not(.md-dense-disabled),
  .md-dense :not(.md-dense-disabled) .md-button:not(.md-dense-disabled) {
    font-size: 13px; }
  .md-button:focus {
    outline: none; }
  .md-button:hover, .md-button:focus {
    text-decoration: none; }
  .md-button.ng-hide, .md-button.ng-leave {
    transition: none; }
  .md-button.md-cornered {
    border-radius: 0; }
  .md-button.md-icon {
    padding: 0;
    background: none; }
  .md-button.md-raised:not([disabled]) {
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26); }
  .md-button.md-icon-button {
    margin: 0 6px;
    height: 40px;
    min-width: 0;
    line-height: 24px;
    padding: 8px;
    width: 40px;
    border-radius: 50%; }
    .md-button.md-icon-button .md-ripple-container {
      border-radius: 50%;
      background-clip: padding-box;
      overflow: hidden;
      -webkit-mask-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC"); }
  .md-button.md-fab {
    z-index: 20;
    line-height: 56px;
    min-width: 0;
    width: 56px;
    height: 56px;
    vertical-align: middle;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
    border-radius: 50%;
    background-clip: padding-box;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.55, 0, 0.55, 0.2);
    transition-property: background-color, box-shadow, transform; }
    .md-button.md-fab.md-fab-bottom-right {
      top: auto;
      right: 20px;
      bottom: 20px;
      left: auto;
      position: absolute; }
    .md-button.md-fab.md-fab-bottom-left {
      top: auto;
      right: auto;
      bottom: 20px;
      left: 20px;
      position: absolute; }
    .md-button.md-fab.md-fab-top-right {
      top: 20px;
      right: 20px;
      bottom: auto;
      left: auto;
      position: absolute; }
    .md-button.md-fab.md-fab-top-left {
      top: 20px;
      right: auto;
      bottom: auto;
      left: 20px;
      position: absolute; }
    .md-button.md-fab .md-ripple-container {
      border-radius: 50%;
      background-clip: padding-box;
      overflow: hidden;
      -webkit-mask-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC"); }
    .md-button.md-fab.md-mini {
      line-height: 40px;
      width: 40px;
      height: 40px; }
    .md-button.md-fab.ng-hide, .md-button.md-fab.ng-leave {
      transition: none; }
  .md-button:not([disabled]).md-raised.md-focused, .md-button:not([disabled]).md-fab.md-focused {
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26); }
  .md-button:not([disabled]).md-raised:active, .md-button:not([disabled]).md-fab:active {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4); }
  .md-button .md-ripple-container {
    border-radius: 2px;
    background-clip: padding-box;
    overflow: hidden;
    -webkit-mask-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC"); }

.md-button.md-icon-button md-icon,
button.md-button.md-fab md-icon,
label.md-button.md-fab.label-btn md-icon,
md-dialog md-dialog-actions .md-button.md-fab.md-cancel-button md-icon,
md-dialog md-dialog-actions .md-button.md-fab.md-confirm-button md-icon {
  display: block; }

.md-toast-open-top .md-button.md-fab-top-left,
.md-toast-open-top .md-button.md-fab-top-right {
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform: translate3d(0, 42px, 0); }
  .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 {
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform: translate3d(0, -42px, 0); }
  .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 {
    flex: 1;
    display: block;
    overflow: hidden;
    width: 0;
    border-width: 1px 0px 1px 1px;
    border-radius: 0;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap; }
    .md-button-group > .md-button:first-child {
      border-radius: 2px 0px 0px 2px; }
    .md-button-group > .md-button:last-child {
      border-right-width: 1px;
      border-radius: 0px 2px 2px 0px; }

@media screen and (-ms-high-contrast: active) {
  .md-button.md-raised,
  .md-button.md-fab {
    border: 1px solid #fff; } }

md-bottom-sheet {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 8px 16px 88px 16px;
  z-index: 70;
  border-top-width: 1px;
  border-top-style: solid;
  transform: translate3d(0, 80px, 0);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition-property: transform; }
  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 {
    opacity: 1;
    display: block;
    transform: translate3d(0, 80px, 0) !important; }
  md-bottom-sheet.ng-leave-active {
    transform: translate3d(0, 100%, 0) !important;
    transition: all 0.3s cubic-bezier(0.55, 0, 0.55, 0.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 {
    display: inline-block;
    height: 24px;
    width: 24px;
    fill: #444; }
  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 {
    padding: 0;
    align-items: center;
    height: 48px; }
  md-bottom-sheet.md-grid {
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 0; }
    md-bottom-sheet.md-grid md-list {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      transition: all 0.5s;
      align-items: center; }
    md-bottom-sheet.md-grid md-list-item {
      flex-direction: column;
      align-items: center;
      transition: all 0.5s;
      height: 96px;
      margin-top: 8px;
      margin-bottom: 8px;
      /* Mixin for how many grid items to show per row */ }
      @media (max-width: 960px) {
        md-bottom-sheet.md-grid md-list-item {
          flex: 1 1 33.33333%;
          max-width: 33.33333%; }
          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.66667%;
          max-width: 16.66667%; } }
      @media (min-width: 1920px) {
        md-bottom-sheet.md-grid md-list-item {
          flex: 1 1 14.28571%;
          max-width: 14.28571%; } }
      md-bottom-sheet.md-grid md-list-item::before {
        display: none; }
      md-bottom-sheet.md-grid md-list-item .md-list-item-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 48px;
        padding-bottom: 16px; }
      md-bottom-sheet.md-grid md-list-item .md-grid-item-content {
        border: 1px solid transparent;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 80px; }
      md-bottom-sheet.md-grid md-list-item .md-grid-text {
        font-weight: 400;
        line-height: 16px;
        font-size: 13px;
        margin: 0;
        white-space: nowrap;
        width: 64px;
        text-align: center;
        text-transform: none;
        padding-top: 8px; }

@media screen and (-ms-high-contrast: active) {
  md-bottom-sheet {
    border: 1px solid #fff; } }

md-backdrop {
  transition: opacity 450ms;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50; }
  md-backdrop.md-menu-backdrop {
    position: fixed !important;
    z-index: 99; }
  md-backdrop.md-select-backdrop {
    z-index: 81;
    transition-duration: 0; }
  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 400ms; }
    md-backdrop.md-opaque.ng-leave.md-opaque.ng-leave-active {
      opacity: 0; }

md-card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  margin: 8px;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 2px 1px -1px rgba(0, 0, 0, 0.12); }
  md-card md-card-header {
    padding: 16px;
    display: flex;
    flex-direction: row; }
    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-right: auto;
        margin-left: 12px; }
    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 {
      width: 40px;
      height: 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;
    width: 100%;
    height: auto; }
  md-card md-card-title {
    padding: 24px 16px 16px;
    display: flex;
    flex: 1 1 auto;
    flex-direction: row; }
    md-card md-card-title + md-card-content {
      padding-top: 0; }
    md-card md-card-title md-card-title-text {
      flex: 1;
      flex-direction: column;
      display: flex; }
      md-card md-card-title md-card-title-text .md-subhead {
        padding-top: 0;
        font-size: 14px; }
      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-actions, md-card md-card-actions {
    margin: 8px; }
    md-card .md-actions.layout-column .md-button:not(.md-icon-button), md-card md-card-actions.layout-column .md-button:not(.md-icon-button) {
      margin: 2px 0; }
      md-card .md-actions.layout-column .md-button:not(.md-icon-button):first-of-type, md-card md-card-actions.layout-column .md-button:not(.md-icon-button):first-of-type {
        margin-top: 0; }
      md-card .md-actions.layout-column .md-button:not(.md-icon-button):last-of-type, md-card md-card-actions.layout-column .md-button:not(.md-icon-button):last-of-type {
        margin-bottom: 0; }
    md-card .md-actions.layout-column .md-button.md-icon-button, md-card md-card-actions.layout-column .md-button.md-icon-button {
      margin-top: 6px;
      margin-bottom: 6px; }
    md-card .md-actions md-card-icon-actions, md-card md-card-actions md-card-icon-actions {
      flex: 1;
      justify-content: flex-start;
      display: flex;
      flex-direction: row; }
    md-card .md-actions:not(.layout-column) .md-button:not(.md-icon-button), md-card md-card-actions:not(.layout-column) .md-button:not(.md-icon-button) {
      margin: 0 4px; }
      md-card .md-actions:not(.layout-column) .md-button:not(.md-icon-button):first-of-type, 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-actions:not(.layout-column) .md-button:not(.md-icon-button):first-of-type, [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-actions:not(.layout-column) .md-button:not(.md-icon-button):last-of-type, 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-actions:not(.layout-column) .md-button:not(.md-icon-button):last-of-type, [dir=rtl] md-card md-card-actions:not(.layout-column) .md-button:not(.md-icon-button):last-of-type {
          margin-right: auto;
          margin-left: 0; }
    md-card .md-actions:not(.layout-column) .md-button.md-icon-button, md-card md-card-actions:not(.layout-column) .md-button.md-icon-button {
      margin-left: 6px;
      margin-right: 6px; }
      md-card .md-actions:not(.layout-column) .md-button.md-icon-button:first-of-type, md-card md-card-actions:not(.layout-column) .md-button.md-icon-button:first-of-type {
        margin-left: 12px; }
        [dir=rtl] md-card .md-actions:not(.layout-column) .md-button.md-icon-button:first-of-type, [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-actions:not(.layout-column) .md-button.md-icon-button:last-of-type, md-card md-card-actions:not(.layout-column) .md-button.md-icon-button:last-of-type {
        margin-right: 12px; }
        [dir=rtl] md-card .md-actions:not(.layout-column) .md-button.md-icon-button:last-of-type, [dir=rtl] md-card md-card-actions:not(.layout-column) .md-button.md-icon-button:last-of-type {
          margin-right: auto;
          margin-left: 12px; }
    md-card .md-actions:not(.layout-column) .md-button + md-card-icon-actions, md-card md-card-actions:not(.layout-column) .md-button + md-card-icon-actions {
      flex: 1;
      justify-content: flex-end;
      display: flex;
      flex-direction: row; }
  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 {
  width: auto;
  height: auto; }

.md-inline-form md-checkbox {
  margin: 19px 0 18px; }

md-checkbox {
  box-sizing: border-box;
  display: inline-block;
  margin-bottom: 16px;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
          user-select: none;
  position: relative;
  min-width: 20px;
  min-height: 20px;
  margin-left: 0;
  margin-right: 16px; }
  [dir=rtl] md-checkbox {
    margin-left: 16px; }
  [dir=rtl] md-checkbox {
    margin-right: 0; }
  md-checkbox:last-of-type {
    margin-left: 0;
    margin-right: 0; }
  md-checkbox.md-focused:not([disabled]) .md-container:before {
    left: -8px;
    top: -8px;
    right: -8px;
    bottom: -8px; }
  md-checkbox.md-focused:not([disabled]):not(.md-checked) .md-container:before {
    background-color: rgba(0, 0, 0, 0.12); }
  md-checkbox.md-align-top-left > div.md-container {
    top: 12px; }
  md-checkbox .md-container {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    box-sizing: border-box;
    display: inline-block;
    width: 20px;
    height: 20px;
    left: 0;
    right: auto; }
    [dir=rtl] md-checkbox .md-container {
      left: auto; }
    [dir=rtl] md-checkbox .md-container {
      right: 0; }
    md-checkbox .md-container:before {
      box-sizing: border-box;
      background-color: transparent;
      border-radius: 50%;
      content: '';
      position: absolute;
      display: block;
      height: auto;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      transition: all 0.5s;
      width: auto; }
    md-checkbox .md-container:after {
      box-sizing: border-box;
      content: '';
      position: absolute;
      top: -10px;
      right: -10px;
      bottom: -10px;
      left: -10px; }
    md-checkbox .md-container .md-ripple-container {
      position: absolute;
      display: block;
      width: auto;
      height: auto;
      left: -15px;
      top: -15px;
      right: -15px;
      bottom: -15px; }
  md-checkbox .md-icon {
    box-sizing: border-box;
    transition: 240ms;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border-width: 2px;
    border-style: solid;
    border-radius: 2px; }
  md-checkbox.md-checked .md-icon {
    border-color: transparent; }
    md-checkbox.md-checked .md-icon:after {
      box-sizing: border-box;
      transform: rotate(45deg);
      position: absolute;
      left: 4.66667px;
      top: 0.22222px;
      display: table;
      width: 6.66667px;
      height: 13.33333px;
      border-width: 2px;
      border-style: solid;
      border-top: 0;
      border-left: 0;
      content: ''; }
  md-checkbox[disabled] {
    cursor: default; }
  md-checkbox.md-indeterminate .md-icon:after {
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: table;
    width: 12px;
    height: 2px;
    border-width: 2px;
    border-style: solid;
    border-top: 0;
    border-left: 0;
    content: ''; }
  md-checkbox .md-label {
    box-sizing: border-box;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    white-space: normal;
    -webkit-user-select: text;
            user-select: text;
    margin-left: 30px;
    margin-right: 0; }
    [dir=rtl] md-checkbox .md-label {
      margin-left: 0; }
    [dir=rtl] md-checkbox .md-label {
      margin-right: 30px; }

md-content {
  display: block;
  position: relative;
  overflow: auto;
  -webkit-overflow-scrolling: touch; }
  md-content[md-scroll-y] {
    overflow-y: auto;
    overflow-x: hidden; }
  md-content[md-scroll-x] {
    overflow-x: auto;
    overflow-y: hidden; }
  @media print {
    md-content {
      overflow: visible !important; } }

.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 {
      height: 32px;
      border-radius: 16px; }
  .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 {
    height: 40px;
    border-radius: 20px;
    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-name, .md-contact-suggestion .md-contact-email {
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis; }

.md-contact-chips-suggestions li {
  height: 100%; }

.md-chips {
  display: block;
  font-family: Roboto, "Helvetica Neue", sans-serif;
  font-size: 16px;
  padding: 0 0 8px 3px;
  vertical-align: middle; }
  .md-chips:after {
    content: '';
    display: table;
    clear: both; }
  [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: 22px; }
    [dir=rtl] .md-chips.md-removable md-chip {
      padding-right: 0;
      padding-left: 22px; }
    .md-chips.md-removable md-chip .md-chip-content {
      padding-right: 4px; }
      [dir=rtl] .md-chips.md-removable md-chip .md-chip-content {
        padding-right: 0;
        padding-left: 4px; }
  .md-chips md-chip {
    cursor: default;
    border-radius: 16px;
    display: block;
    height: 32px;
    line-height: 32px;
    margin: 8px 8px 0 0;
    padding: 0 12px 0 12px;
    float: left;
    box-sizing: border-box;
    max-width: 100%;
    position: relative; }
    [dir=rtl] .md-chips md-chip {
      margin: 8px 0 0 8px; }
    [dir=rtl] .md-chips md-chip {
      float: right; }
    .md-chips md-chip .md-chip-content {
      display: block;
      float: left;
      white-space: nowrap;
      max-width: 100%;
      overflow: hidden;
      text-overflow: ellipsis; }
      [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;
      /* webkit (safari, chrome) browsers */
      -moz-user-select: none;
      /* mozilla browsers */
      -khtml-user-select: none;
      /* webkit (konqueror) browsers */
      -ms-user-select: none;
      /* IE10+ */ }
    .md-chips md-chip .md-chip-remove-container {
      position: absolute;
      right: 0;
      line-height: 22px; }
      [dir=rtl] .md-chips md-chip .md-chip-remove-container {
        right: auto;
        left: 0; }
    .md-chips md-chip .md-chip-remove {
      text-align: center;
      width: 32px;
      height: 32px;
      min-width: 0;
      padding: 0;
      background: transparent;
      border: none;
      box-shadow: none;
      margin: 0;
      position: relative; }
      .md-chips md-chip .md-chip-remove md-icon {
        height: 18px;
        width: 18px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate3d(-50%, -50%, 0); }
  .md-chips .md-chip-input-container {
    display: block;
    line-height: 32px;
    margin: 8px 8px 0 0;
    padding: 0;
    float: left; }
    [dir=rtl] .md-chips .md-chip-input-container {
      margin: 8px 0 0 8px; }
    [dir=rtl] .md-chips .md-chip-input-container {
      float: right; }
    .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="url"], .md-chips .md-chip-input-container input[type="text"] {
      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="url"]:focus, .md-chips .md-chip-input-container input[type="text"]:focus {
        outline: none; }
    .md-chips .md-chip-input-container md-autocomplete, .md-chips .md-chip-input-container md-autocomplete-wrap {
      background: transparent;
      height: 32px; }
    .md-chips .md-chip-input-container md-autocomplete md-autocomplete-wrap {
      box-shadow: none; }
    .md-chips .md-chip-input-container md-autocomplete input {
      position: relative; }
    .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, .md-chips md-autocomplete label.label-btn, .md-chips md-autocomplete md-dialog md-dialog-actions .md-cancel-button, md-dialog md-dialog-actions .md-chips md-autocomplete .md-cancel-button, .md-chips md-autocomplete md-dialog md-dialog-actions .md-confirm-button, md-dialog md-dialog-actions .md-chips md-autocomplete .md-confirm-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-dialog-is-showing {
  max-height: 100%; }

.md-dialog-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 80;
  overflow: hidden; }

md-dialog {
  opacity: 0;
  min-width: 240px;
  max-width: 80%;
  max-height: 80%;
  position: relative;
  overflow: auto;
  box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 13px 19px 2px rgba(0, 0, 0, 0.14), 0px 5px 24px 4px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column; }
  md-dialog.md-transition-in {
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform: translate(0, 0) scale(1); }
  md-dialog.md-transition-out {
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform: translate(0, 100%) scale(0.2); }
  md-dialog > form {
    display: flex;
    flex-direction: column;
    overflow: auto; }
  md-dialog .md-dialog-content {
    padding: 24px; }
  md-dialog md-dialog-content {
    order: 1;
    flex-direction: column;
    overflow: auto;
    -webkit-overflow-scrolling: touch; }
    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 {
      width: 100%;
      box-sizing: border-box; }
  md-dialog .md-actions, md-dialog md-dialog-actions {
    display: flex;
    order: 2;
    box-sizing: border-box;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 0;
    padding-right: 8px;
    padding-left: 16px;
    min-height: 52px;
    overflow: hidden; }
    [dir=rtl] md-dialog .md-actions, [dir=rtl] md-dialog md-dialog-actions {
      padding-right: 16px; }
    [dir=rtl] md-dialog .md-actions, [dir=rtl] md-dialog md-dialog-actions {
      padding-left: 8px; }
    md-dialog .md-actions .md-button, md-dialog md-dialog-actions .md-button {
      margin-bottom: 8px;
      margin-left: 8px;
      margin-right: 0;
      margin-top: 8px; }
      [dir=rtl] md-dialog .md-actions .md-button, [dir=rtl] md-dialog md-dialog-actions .md-button {
        margin-left: 0; }
      [dir=rtl] md-dialog .md-actions .md-button, [dir=rtl] md-dialog md-dialog-actions .md-button {
        margin-right: 8px; }
  md-dialog.md-content-overflow .md-actions, md-dialog.md-content-overflow md-dialog-actions {
    border-top-width: 1px;
    border-top-style: solid; }

@media screen and (-ms-high-contrast: active) {
  md-dialog {
    border: 1px solid #fff; } }

@media (max-width: 959px) {
  md-dialog.md-dialog-fullscreen {
    min-height: 100%;
    min-width: 100%;
    border-radius: 0; } }

md-divider {
  display: block;
  border-top-width: 1px;
  border-top-style: solid;
  margin: 0; }
  md-divider[md-inset] {
    margin-left: 80px; }
    [dir=rtl] md-divider[md-inset] {
      margin-left: auto;
      margin-right: 80px; }

.layout-row > md-divider,
.layout-xs-row > md-divider, .layout-gt-xs-row > md-divider,
.layout-sm-row > md-divider, .layout-gt-sm-row > md-divider,
.layout-md-row > md-divider, .layout-gt-md-row > md-divider,
.layout-lg-row > md-divider, .layout-gt-lg-row > md-divider,
.layout-xl-row > md-divider {
  border-top-width: 0;
  border-right-width: 1px;
  border-right-style: solid; }

/** Styles for mdCalendar. */
md-calendar {
  font-size: 13px;
  -webkit-user-select: none;
          user-select: none; }

.md-calendar-scroll-mask {
  display: inline-block;
  overflow: hidden;
  height: 308px; }
  .md-calendar-scroll-mask .md-virtual-repeat-scroller {
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch; }
    .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, 0.2);
  display: inline-block;
  height: 308px;
  width: 346px; }

.md-calendar-date {
  height: 44px;
  width: 44px;
  text-align: center;
  padding: 0;
  border: none;
  box-sizing: content-box; }
  .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-right: 0;
      padding-left: 16px; }
  .md-calendar-date.md-calendar-date-disabled {
    cursor: default; }

.md-calendar-date-selection-indicator {
  transition: background-color, color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: 50%;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px; }
  .md-calendar-date:not(.md-disabled) .md-calendar-date-selection-indicator {
    cursor: pointer; }

.md-calendar-month-label {
  height: 44px;
  font-size: 14px;
  font-weight: 500;
  padding: 0 0 0 24px; }
  [dir=rtl] .md-calendar-month-label {
    padding: 0 24px 0 0; }
  md-calendar-month .md-calendar-month-label:not(.md-calendar-month-label-disabled) {
    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 {
  table-layout: fixed;
  border-spacing: 0;
  border-collapse: collapse; }
  .md-calendar-day-header th {
    height: 40px;
    width: 44px;
    text-align: center;
    padding: 0;
    border: none;
    box-sizing: content-box;
    font-weight: normal; }
    .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-right: 0;
        padding-left: 16px; }

.md-calendar {
  table-layout: fixed;
  border-spacing: 0;
  border-collapse: collapse; }
  .md-calendar tr:last-child td {
    border-bottom-width: 1px;
    border-bottom-style: solid; }
  .md-calendar:first-child {
    border-top: 1px solid transparent; }
  .md-calendar tbody, .md-calendar td, .md-calendar tr {
    vertical-align: middle;
    box-sizing: content-box; }

/** Styles for mdDatepicker. */
md-datepicker {
  white-space: nowrap;
  overflow: hidden;
  vertical-align: middle; }

.md-inline-form md-datepicker {
  margin-top: 12px; }

.md-datepicker-button {
  display: inline-block;
  box-sizing: border-box;
  background: none;
  vertical-align: middle;
  position: relative; }
  .md-datepicker-button:before {
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    content: '';
    speak: none; }

.md-datepicker-input {
  font-size: 14px;
  box-sizing: border-box;
  border: none;
  box-shadow: none;
  outline: none;
  background: transparent;
  min-width: 120px;
  max-width: 328px;
  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: -12px;
    top: 9.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) {
  right: 18px;
  left: auto;
  width: calc(100% - 84px); }
  [dir=rtl] ._md-datepicker-floating-label._md-datepicker-has-calendar-icon > label:not(.md-no-float):not(.md-container-ignore) {
    right: auto; }
  [dir=rtl] ._md-datepicker-floating-label._md-datepicker-has-calendar-icon > label:not(.md-no-float):not(.md-container-ignore) {
    left: 18px; }

._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 {
  padding-right: 18px;
  margin-right: -18px; }
  [dir=rtl] ._md-datepicker-has-triangle-icon {
    padding-right: 0;
    padding-left: 18px; }
  [dir=rtl] ._md-datepicker-has-triangle-icon {
    margin-right: auto;
    margin-left: -18px; }

.md-datepicker-input-container {
  position: relative;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  display: inline-block;
  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 {
  position: absolute;
  top: 0;
  left: -100%;
  z-index: 100;
  border-width: 1px;
  border-style: solid;
  background: transparent;
  transform: scale(0);
  transform-origin: 0 0;
  transition: transform 0.2s cubic-bezier(0.25, 0.8, 0.25, 1); }
  .md-datepicker-calendar-pane.md-pane-open {
    transform: scale(1); }

.md-datepicker-input-mask {
  height: 40px;
  width: 340px;
  position: relative;
  overflow: hidden;
  background: transparent;
  pointer-events: none;
  cursor: text; }

.md-datepicker-calendar {
  opacity: 0;
  transition: opacity 0.2s cubic-bezier(0.5, 0, 0.25, 1); }
  .md-pane-open .md-datepicker-calendar {
    opacity: 1; }
  .md-datepicker-calendar md-calendar:focus {
    outline: none; }

.md-datepicker-expand-triangle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid; }

.md-datepicker-triangle-button {
  position: absolute;
  right: 0;
  bottom: -2.5px;
  transform: translateX(45%); }
  [dir=rtl] .md-datepicker-triangle-button {
    right: auto;
    left: 0; }
  [dir=rtl] .md-datepicker-triangle-button {
    transform: translateX(-45%); }

.md-datepicker-triangle-button.md-button.md-icon-button {
  height: 36px;
  width: 36px;
  position: absolute;
  padding: 8px; }

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-value > label,
  .md-datepicker-open.md-input-has-placeholder > label {
    display: none; }

.md-datepicker-pos-adjusted .md-datepicker-input-mask {
  display: none; }

.md-datepicker-calendar-pane .md-calendar {
  transform: translateY(-85px);
  transition: transform 0.65s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition-delay: 0.125s; }

.md-datepicker-calendar-pane.md-pane-open .md-calendar {
  transform: translateY(0); }

md-fab-toolbar {
  display: block;
  /*
   * Closed styling
   */
  /*
   * Hover styling
   */ }
  md-fab-toolbar.md-fab-bottom-right {
    top: auto;
    right: 20px;
    bottom: 20px;
    left: auto;
    position: absolute; }
  md-fab-toolbar.md-fab-bottom-left {
    top: auto;
    right: auto;
    bottom: 20px;
    left: 20px;
    position: absolute; }
  md-fab-toolbar.md-fab-top-right {
    top: 20px;
    right: 20px;
    bottom: auto;
    left: auto;
    position: absolute; }
  md-fab-toolbar.md-fab-top-left {
    top: 20px;
    right: auto;
    bottom: auto;
    left: 20px;
    position: absolute; }
  md-fab-toolbar .md-fab-toolbar-wrapper {
    display: block;
    position: relative;
    overflow: hidden;
    height: 68px; }
  md-fab-toolbar md-fab-trigger {
    position: absolute;
    z-index: 20; }
    md-fab-toolbar md-fab-trigger button, md-fab-toolbar md-fab-trigger label.label-btn, md-fab-toolbar md-fab-trigger md-dialog md-dialog-actions .md-cancel-button, md-dialog md-dialog-actions md-fab-toolbar md-fab-trigger .md-cancel-button, md-fab-toolbar md-fab-trigger md-dialog md-dialog-actions .md-confirm-button, md-dialog md-dialog-actions md-fab-toolbar md-fab-trigger .md-confirm-button {
      overflow: visible !important; }
    md-fab-toolbar md-fab-trigger .md-fab-toolbar-background {
      display: block;
      position: absolute;
      z-index: 21;
      opacity: 1;
      transition: all 0.3s cubic-bezier(0.55, 0, 0.55, 0.2); }
    md-fab-toolbar md-fab-trigger md-icon {
      position: relative;
      z-index: 22;
      opacity: 1;
      transition: all 200ms ease-in; }
  md-fab-toolbar.md-left md-fab-trigger {
    right: 0; }
    [dir=rtl] md-fab-toolbar.md-left md-fab-trigger {
      right: auto;
      left: 0; }
  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: 0.6rem; }
      [dir=rtl] md-fab-toolbar.md-left .md-toolbar-tools > .md-button:first-child {
        margin-right: auto;
        margin-left: 0.6rem; }
    md-fab-toolbar.md-left .md-toolbar-tools > .md-button:first-child {
      margin-left: -0.8rem; }
      [dir=rtl] md-fab-toolbar.md-left .md-toolbar-tools > .md-button:first-child {
        margin-left: auto;
        margin-right: -0.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-right: auto;
        margin-left: 8px; }
  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 {
      padding: 0 20px;
      margin-top: 3px; }
    md-fab-toolbar md-toolbar .md-fab-action-item {
      opacity: 0;
      transform: scale(0);
      transition: all 0.3s cubic-bezier(0.55, 0, 0.55, 0.2);
      transition-duration: 0.15s; }
  md-fab-toolbar.md-is-open md-fab-trigger > button, md-fab-toolbar.md-is-open md-fab-trigger > label.label-btn, md-fab-toolbar.md-is-open md-dialog md-dialog-actions md-fab-trigger > .md-cancel-button, md-dialog md-dialog-actions md-fab-toolbar.md-is-open md-fab-trigger > .md-cancel-button, md-fab-toolbar.md-is-open md-dialog md-dialog-actions md-fab-trigger > .md-confirm-button, md-dialog md-dialog-actions md-fab-toolbar.md-is-open md-fab-trigger > .md-confirm-button {
    box-shadow: none; }
    md-fab-toolbar.md-is-open md-fab-trigger > button md-icon, md-fab-toolbar.md-is-open md-fab-trigger > label.label-btn md-icon, md-fab-toolbar.md-is-open md-dialog md-dialog-actions md-fab-trigger > .md-cancel-button md-icon, md-dialog md-dialog-actions md-fab-toolbar.md-is-open md-fab-trigger > .md-cancel-button md-icon, md-fab-toolbar.md-is-open md-dialog md-dialog-actions md-fab-trigger > .md-confirm-button md-icon, md-dialog md-dialog-actions md-fab-toolbar.md-is-open md-fab-trigger > .md-confirm-button md-icon {
      opacity: 0; }
  md-fab-toolbar.md-is-open .md-fab-action-item {
    opacity: 1;
    transform: scale(1); }

md-fab-speed-dial {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 20;
  /*
   * Hide some graphics glitches if switching animation types
   */
  /*
   * Handle the animations
   */ }
  md-fab-speed-dial.md-fab-bottom-right {
    top: auto;
    right: 20px;
    bottom: 20px;
    left: auto;
    position: absolute; }
  md-fab-speed-dial.md-fab-bottom-left {
    top: auto;
    right: auto;
    bottom: 20px;
    left: 20px;
    position: absolute; }
  md-fab-speed-dial.md-fab-top-right {
    top: 20px;
    right: 20px;
    bottom: auto;
    left: auto;
    position: absolute; }
  md-fab-speed-dial.md-fab-top-left {
    top: 20px;
    right: auto;
    bottom: auto;
    left: 20px;
    position: absolute; }
  md-fab-speed-dial:not(.md-hover-full) {
    pointer-events: none; }
    md-fab-speed-dial:not(.md-hover-full) md-fab-trigger, md-fab-speed-dial:not(.md-hover-full) .md-fab-action-item {
      pointer-events: auto; }
    md-fab-speed-dial:not(.md-hover-full).md-is-open {
      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 0.3s cubic-bezier(0.55, 0, 0.55, 0.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 0.3s cubic-bezier(0.55, 0, 0.55, 0.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 0.3s cubic-bezier(0.55, 0, 0.55, 0.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 0.3s cubic-bezier(0.55, 0, 0.55, 0.2);
    transition-duration: 0.14286s; }

md-grid-list {
  box-sizing: border-box;
  display: block;
  position: relative; }
  md-grid-list md-grid-tile,
  md-grid-list md-grid-tile > figure,
  md-grid-list md-grid-tile-header,
  md-grid-list md-grid-tile-footer {
    box-sizing: border-box; }
  md-grid-list md-grid-tile {
    display: block;
    position: absolute; }
    md-grid-list md-grid-tile figure {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100%;
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      padding: 0;
      margin: 0; }
    md-grid-list md-grid-tile md-grid-tile-header,
    md-grid-list md-grid-tile md-grid-tile-footer {
      display: flex;
      flex-direction: row;
      align-items: center;
      height: 48px;
      color: #fff;
      background: rgba(0, 0, 0, 0.18);
      overflow: hidden;
      position: absolute;
      left: 0;
      right: 0; }
      md-grid-list md-grid-tile md-grid-tile-header h3,
      md-grid-list md-grid-tile md-grid-tile-header h4,
      md-grid-list md-grid-tile md-grid-tile-footer h3,
      md-grid-list md-grid-tile md-grid-tile-footer h4 {
        font-weight: 400;
        margin: 0 0 0 16px; }
      md-grid-list md-grid-tile md-grid-tile-header h3,
      md-grid-list md-grid-tile md-grid-tile-footer h3 {
        font-size: 14px; }
      md-grid-list md-grid-tile md-grid-tile-header h4,
      md-grid-list md-grid-tile md-grid-tile-footer 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 {
  margin: auto;
  background-repeat: no-repeat no-repeat;
  display: inline-block;
  vertical-align: middle;
  fill: currentColor;
  height: 24px;
  width: 24px;
  min-height: 24px;
  min-width: 24px; }
  md-icon svg {
    pointer-events: none;
    display: block; }
  md-icon[md-font-icon] {
    line-height: 24px;
    width: auto; }

md-input-container {
  display: inline-block;
  position: relative;
  padding: 2px;
  margin: 18px 0;
  vertical-align: middle;
  /*
   * The .md-input class is added to the input/textarea
   */ }
  md-input-container:after {
    content: '';
    display: table;
    clear: both; }
  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 {
    position: absolute;
    top: 8px;
    left: 2px;
    right: auto; }
    [dir=rtl] md-input-container > md-icon {
      left: auto; }
    [dir=rtl] md-input-container > md-icon {
      right: 2px; }
  md-input-container textarea, md-input-container .fr-inline-editor .fr-view, .fr-inline-editor md-input-container .fr-view,
  md-input-container input[type="text"],
  md-input-container input[type="password"],
  md-input-container input[type="datetime"],
  md-input-container input[type="datetime-local"],
  md-input-container input[type="date"],
  md-input-container input[type="month"],
  md-input-container input[type="time"],
  md-input-container input[type="week"],
  md-input-container input[type="number"],
  md-input-container input[type="email"],
  md-input-container input[type="url"],
  md-input-container input[type="search"],
  md-input-container input[type="tel"],
  md-input-container input[type="color"] {
    /* remove default appearance from all input/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: 26px; }
  md-input-container textarea, md-input-container .fr-inline-editor .fr-view, .fr-inline-editor md-input-container .fr-view {
    resize: none;
    overflow: hidden; }
    md-input-container textarea.md-input, md-input-container .fr-inline-editor .md-input.fr-view, .fr-inline-editor md-input-container .md-input.fr-view {
      min-height: 26px;
      -ms-flex-preferred-size: auto; }
    md-input-container textarea[md-no-autogrow], md-input-container .fr-inline-editor .fr-view[md-no-autogrow], .fr-inline-editor md-input-container .fr-view[md-no-autogrow] {
      height: auto;
      overflow: auto; }
  md-input-container label:not(.md-container-ignore) {
    position: absolute;
    bottom: 100%;
    left: 0;
    right: auto; }
    [dir=rtl] md-input-container label:not(.md-container-ignore) {
      left: auto; }
    [dir=rtl] md-input-container label:not(.md-container-ignore) {
      right: 0; }
    md-input-container label:not(.md-container-ignore).md-required:after {
      content: ' *';
      font-size: 13px;
      vertical-align: top; }
  md-input-container label:not(.md-no-float):not(.md-container-ignore),
  md-input-container .md-placeholder {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    order: 1;
    pointer-events: none;
    -webkit-font-smoothing: antialiased;
    padding-left: 3px;
    padding-right: 0;
    z-index: 1;
    transform: translate3d(0, 28px, 0) scale(1);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    max-width: 100%;
    transform-origin: left top; }
    [dir=rtl] md-input-container label:not(.md-no-float):not(.md-container-ignore), [dir=rtl]
    md-input-container .md-placeholder {
      padding-left: 0; }
    [dir=rtl] md-input-container label:not(.md-no-float):not(.md-container-ignore), [dir=rtl]
    md-input-container .md-placeholder {
      padding-right: 3px; }
    [dir=rtl] md-input-container label:not(.md-no-float):not(.md-container-ignore), [dir=rtl]
    md-input-container .md-placeholder {
      transform-origin: right top; }
  md-input-container .md-placeholder {
    position: absolute;
    top: 0;
    opacity: 0;
    transition-property: opacity, transform;
    transform: translate3d(0, 30px, 0); }
  md-input-container.md-input-focused .md-placeholder {
    opacity: 1;
    transform: translate3d(0, 24px, 0); }
  md-input-container.md-input-has-value .md-placeholder {
    transition: none;
    opacity: 0; }
  md-input-container:not(.md-input-has-value) input:not(:focus),
  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-week-field,
  md-input-container:not(.md-input-has-value) input:not(:focus)::-webkit-datetime-edit-year-field,
  md-input-container:not(.md-input-has-value) input:not(:focus)::-webkit-datetime-edit-text {
    color: transparent; }
  md-input-container .md-input {
    order: 2;
    display: block;
    margin-top: 0;
    background: none;
    padding-top: 2px;
    padding-bottom: 1px;
    padding-left: 2px;
    padding-right: 2px;
    border-width: 0 0 1px 0;
    line-height: 26px;
    height: 30px;
    -ms-flex-preferred-size: 26px;
    border-radius: 0;
    border-style: solid;
    width: 100%;
    box-sizing: border-box;
    float: left; }
    [dir=rtl] md-input-container .md-input {
      float: right; }
    md-input-container .md-input:focus {
      outline: none; }
    md-input-container .md-input:invalid {
      outline: none;
      box-shadow: none; }
    md-input-container .md-input.md-no-flex {
      flex: none !important; }
  md-input-container .md-char-counter {
    text-align: right;
    padding-right: 2px;
    padding-left: 0; }
    [dir=rtl] md-input-container .md-char-counter {
      text-align: left; }
    [dir=rtl] md-input-container .md-char-counter {
      padding-right: 0; }
    [dir=rtl] md-input-container .md-char-counter {
      padding-left: 2px; }
  md-input-container .md-input-messages-animation {
    position: relative;
    order: 4;
    overflow: hidden;
    clear: left; }
    [dir=rtl] md-input-container .md-input-messages-animation {
      clear: right; }
    md-input-container .md-input-messages-animation.ng-enter .md-input-message-animation {
      opacity: 0;
      margin-top: -100px; }
  md-input-container .md-input-message-animation, md-input-container .md-char-counter {
    font-size: 12px;
    line-height: 14px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.55, 0, 0.55, 0.2);
    opacity: 1;
    margin-top: 0;
    padding-top: 5px; }
    md-input-container .md-input-message-animation:not(.md-char-counter), md-input-container .md-char-counter:not(.md-char-counter) {
      padding-right: 5px;
      padding-left: 0; }
      [dir=rtl] md-input-container .md-input-message-animation:not(.md-char-counter), [dir=rtl] md-input-container .md-char-counter:not(.md-char-counter) {
        padding-right: 0; }
      [dir=rtl] md-input-container .md-input-message-animation:not(.md-char-counter), [dir=rtl] md-input-container .md-char-counter:not(.md-char-counter) {
        padding-left: 5px; }
  md-input-container:not(.md-input-invalid) .md-auto-hide .md-input-message-animation {
    opacity: 0;
    margin-top: -100px; }
  md-input-container .md-input-message-animation:not(.ng-animate) {
    opacity: 0;
    margin-top: -100px; }
  md-input-container .md-input-message-animation.ng-enter {
    opacity: 0;
    margin-top: -100px; }
  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(0.75);
    transition: transform cubic-bezier(0.25, 0.8, 0.25, 1) 0.4s, width cubic-bezier(0.25, 0.8, 0.25, 1) 0.4s; }
  md-input-container.md-input-has-value label {
    transition: none; }
  md-input-container.md-input-focused .md-input,
  md-input-container .md-input.ng-invalid.ng-dirty,
  md-input-container.md-input-resized .md-input {
    padding-bottom: 0;
    border-width: 0 0 2px 0; }
  md-input-container .md-input[disabled],
  [disabled] md-input-container .md-input {
    background-position: bottom -1px left 0;
    background-size: 4px 1px;
    background-repeat: repeat-x; }
  md-input-container.md-icon-float {
    transition: margin-top 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); }
    md-input-container.md-icon-float > label {
      pointer-events: none;
      position: absolute; }
    md-input-container.md-icon-float > md-icon {
      top: 8px;
      left: 2px;
      right: auto; }
      [dir=rtl] md-input-container.md-icon-float > md-icon {
        left: auto; }
      [dir=rtl] md-input-container.md-icon-float > md-icon {
        right: 2px; }
  md-input-container.md-icon-left > label:not(.md-no-float):not(.md-container-ignore),
  md-input-container.md-icon-left > label .md-placeholder, md-input-container.md-icon-right > label:not(.md-no-float):not(.md-container-ignore),
  md-input-container.md-icon-right > label .md-placeholder {
    width: calc(100% - 36px - 18px); }
  md-input-container.md-icon-left {
    padding-left: 36px;
    padding-right: 0; }
    [dir=rtl] md-input-container.md-icon-left {
      padding-left: 0; }
    [dir=rtl] md-input-container.md-icon-left {
      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; }
      [dir=rtl] md-input-container.md-icon-left > label {
        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; }
    [dir=rtl] md-input-container.md-icon-right {
      padding-right: 0; }
    md-input-container.md-icon-right > md-icon:last-of-type {
      margin: 0;
      right: 2px;
      left: auto; }
      [dir=rtl] md-input-container.md-icon-right > md-icon:last-of-type {
        right: auto; }
      [dir=rtl] md-input-container.md-icon-right > md-icon:last-of-type {
        left: 2px; }
  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:not(.md-no-float):not(.md-container-ignore),
    md-input-container.md-icon-left.md-icon-right > label .md-placeholder {
      width: calc(100% - (36px * 2)); }

.md-resize-wrapper {
  position: relative; }
  .md-resize-wrapper:after {
    content: '';
    display: table;
    clear: both; }

.md-resize-handle {
  position: absolute;
  bottom: -5px;
  left: 0;
  height: 10px;
  background: transparent;
  width: 100%;
  cursor: ns-resize; }

@media screen and (-ms-high-contrast: active) {
  md-input-container.md-default-theme > md-icon {
    fill: #fff; } }

md-list {
  display: block;
  padding: 8px 0px 8px 0px; }
  md-list .md-subheader {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.010em;
    line-height: 1.2em; }
  md-list.md-dense md-list-item,
  md-list.md-dense md-list-item .md-list-item-inner {
    min-height: 48px; }
    md-list.md-dense md-list-item::before,
    md-list.md-dense md-list-item .md-list-item-inner::before {
      content: '';
      min-height: 48px;
      visibility: hidden;
      display: inline-block; }
    md-list.md-dense md-list-item md-icon:first-child,
    md-list.md-dense md-list-item .md-list-item-inner md-icon:first-child {
      width: 20px;
      height: 20px; }
    md-list.md-dense md-list-item > md-icon:first-child:not(.md-avatar-icon),
    md-list.md-dense md-list-item .md-list-item-inner > md-icon:first-child:not(.md-avatar-icon) {
      margin-right: 36px; }
      [dir=rtl] md-list.md-dense md-list-item > md-icon:first-child:not(.md-avatar-icon), [dir=rtl]
      md-list.md-dense md-list-item .md-list-item-inner > md-icon:first-child:not(.md-avatar-icon) {
        margin-right: auto;
        margin-left: 36px; }
    md-list.md-dense md-list-item .md-avatar, md-list.md-dense md-list-item .md-avatar-icon,
    md-list.md-dense md-list-item .md-list-item-inner .md-avatar,
    md-list.md-dense md-list-item .md-list-item-inner .md-avatar-icon {
      margin-right: 20px; }
      [dir=rtl] md-list.md-dense md-list-item .md-avatar, [dir=rtl] md-list.md-dense md-list-item .md-avatar-icon, [dir=rtl]
      md-list.md-dense md-list-item .md-list-item-inner .md-avatar, [dir=rtl]
      md-list.md-dense md-list-item .md-list-item-inner .md-avatar-icon {
        margin-right: auto;
        margin-left: 20px; }
    md-list.md-dense md-list-item .md-avatar,
    md-list.md-dense md-list-item .md-list-item-inner .md-avatar {
      flex: none;
      width: 36px;
      height: 36px; }
  md-list.md-dense md-list-item.md-2-line .md-list-item-text.md-offset, md-list.md-dense md-list-item.md-2-line > .md-no-style .md-list-item-text.md-offset, md-list.md-dense md-list-item.md-3-line .md-list-item-text.md-offset, md-list.md-dense md-list-item.md-3-line > .md-no-style .md-list-item-text.md-offset {
    margin-left: 56px; }
    [dir=rtl] md-list.md-dense md-list-item.md-2-line .md-list-item-text.md-offset, [dir=rtl] md-list.md-dense md-list-item.md-2-line > .md-no-style .md-list-item-text.md-offset, [dir=rtl] md-list.md-dense md-list-item.md-3-line .md-list-item-text.md-offset, [dir=rtl] md-list.md-dense 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 md-list-item.md-2-line .md-list-item-text h3,
  md-list.md-dense md-list-item.md-2-line .md-list-item-text h4,
  md-list.md-dense md-list-item.md-2-line .md-list-item-text p, md-list.md-dense md-list-item.md-2-line > .md-no-style .md-list-item-text h3,
  md-list.md-dense md-list-item.md-2-line > .md-no-style .md-list-item-text h4,
  md-list.md-dense md-list-item.md-2-line > .md-no-style .md-list-item-text p, md-list.md-dense md-list-item.md-3-line .md-list-item-text h3,
  md-list.md-dense md-list-item.md-3-line .md-list-item-text h4,
  md-list.md-dense md-list-item.md-3-line .md-list-item-text p, md-list.md-dense md-list-item.md-3-line > .md-no-style .md-list-item-text h3,
  md-list.md-dense md-list-item.md-3-line > .md-no-style .md-list-item-text h4,
  md-list.md-dense md-list-item.md-3-line > .md-no-style .md-list-item-text p {
    line-height: 1.05;
    font-size: 12px; }
  md-list.md-dense md-list-item.md-2-line .md-list-item-text h3, md-list.md-dense md-list-item.md-2-line > .md-no-style .md-list-item-text h3, md-list.md-dense md-list-item.md-3-line .md-list-item-text h3, md-list.md-dense md-list-item.md-3-line > .md-no-style .md-list-item-text h3 {
    font-size: 13px; }
  md-list.md-dense md-list-item.md-2-line, md-list.md-dense md-list-item.md-2-line > .md-no-style {
    min-height: 60px; }
    md-list.md-dense md-list-item.md-2-line::before, md-list.md-dense md-list-item.md-2-line > .md-no-style::before {
      content: '';
      min-height: 60px;
      visibility: hidden;
      display: inline-block; }
    md-list.md-dense md-list-item.md-2-line > .md-avatar, md-list.md-dense md-list-item.md-2-line .md-avatar-icon, md-list.md-dense md-list-item.md-2-line > .md-no-style > .md-avatar, md-list.md-dense md-list-item.md-2-line > .md-no-style .md-avatar-icon {
      margin-top: 12px; }
  md-list.md-dense md-list-item.md-3-line, md-list.md-dense md-list-item.md-3-line > .md-no-style {
    min-height: 76px; }
    md-list.md-dense md-list-item.md-3-line::before, md-list.md-dense md-list-item.md-3-line > .md-no-style::before {
      content: '';
      min-height: 76px;
      visibility: hidden;
      display: inline-block; }
    md-list.md-dense md-list-item.md-3-line > md-icon:first-child,
    md-list.md-dense md-list-item.md-3-line > .md-avatar, md-list.md-dense md-list-item.md-3-line > .md-no-style > md-icon:first-child,
    md-list.md-dense md-list-item.md-3-line > .md-no-style > .md-avatar {
      margin-top: 16px; }

md-list-item {
  position: relative; }
  md-list-item.md-proxy-focus.md-focused .md-no-style {
    transition: background-color 0.15s linear; }
  md-list-item._md-button-wrap {
    position: relative; }
    md-list-item._md-button-wrap > div.md-button:first-child {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      padding: 0 16px;
      margin: 0;
      font-weight: 400;
      text-align: left;
      border: medium none; }
      [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 {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        margin: 0;
        padding: 0; }
      md-list-item._md-button-wrap > div.md-button:first-child .md-list-item-inner {
        width: 100%;
        min-height: inherit; }
  md-list-item.md-no-proxy,
  md-list-item .md-no-style {
    position: relative;
    padding: 0px 16px;
    flex: 1 1 auto; }
    md-list-item.md-no-proxy.md-button,
    md-list-item .md-no-style.md-button {
      font-size: inherit;
      height: inherit;
      text-align: left;
      text-transform: none;
      width: 100%;
      white-space: normal;
      flex-direction: inherit;
      align-items: inherit;
      border-radius: 0;
      margin: 0; }
      [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 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%; }
    [dir=rtl] md-list-item md-divider {
      left: auto;
      right: 0; }
    md-list-item md-divider[md-inset] {
      left: 72px;
      width: calc(100% - 72px);
      margin: 0 !important; }
      [dir=rtl] md-list-item md-divider[md-inset] {
        left: auto;
        right: 72px; }
  md-list-item,
  md-list-item .md-list-item-inner {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: 48px;
    height: auto; }
    md-list-item::before,
    md-list-item .md-list-item-inner::before {
      content: '';
      min-height: 48px;
      visibility: hidden;
      display: inline-block; }
    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:first-child:not(.md-avatar-icon),
    md-list-item > md-icon.md-secondary:not(.md-avatar-icon),
    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:first-child:not(.md-avatar-icon),
    md-list-item .md-list-item-inner > md-icon.md-secondary:not(.md-avatar-icon) {
      width: 24px;
      margin-top: 16px;
      margin-bottom: 12px;
      box-sizing: content-box; }
    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,
    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 {
      align-self: center; }
      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,
      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 {
        display: none; }
    md-list-item > md-icon:first-child:not(.md-avatar-icon),
    md-list-item .md-list-item-inner > md-icon:first-child:not(.md-avatar-icon) {
      margin-right: 32px; }
      [dir=rtl] md-list-item > md-icon:first-child:not(.md-avatar-icon), [dir=rtl]
      md-list-item .md-list-item-inner > md-icon:first-child:not(.md-avatar-icon) {
        margin-right: auto;
        margin-left: 32px; }
    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 {
      margin-top: 8px;
      margin-bottom: 8px;
      margin-right: 16px;
      border-radius: 50%;
      box-sizing: content-box; }
      [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-right: auto;
        margin-left: 16px; }
    md-list-item .md-avatar,
    md-list-item .md-list-item-inner .md-avatar {
      flex: none;
      width: 40px;
      height: 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 {
        width: 24px;
        height: 24px; }
    md-list-item > md-checkbox,
    md-list-item .md-list-item-inner > md-checkbox {
      width: 24px;
      margin-left: 3px;
      margin-right: 29px;
      margin-top: 16px; }
      [dir=rtl] md-list-item > md-checkbox, [dir=rtl]
      md-list-item .md-list-item-inner > md-checkbox {
        margin-left: 29px; }
      [dir=rtl] md-list-item > md-checkbox, [dir=rtl]
      md-list-item .md-list-item-inner > md-checkbox {
        margin-right: 3px; }
    md-list-item .md-secondary-container,
    md-list-item .md-list-item-inner .md-secondary-container {
      display: flex;
      align-items: center;
      flex-shrink: 0;
      margin: auto;
      margin-right: 0;
      margin-left: auto; }
      [dir=rtl] md-list-item .md-secondary-container, [dir=rtl]
      md-list-item .md-list-item-inner .md-secondary-container {
        margin-right: auto; }
      [dir=rtl] md-list-item .md-secondary-container, [dir=rtl]
      md-list-item .md-list-item-inner .md-secondary-container {
        margin-left: 0; }
      md-list-item .md-secondary-container .md-button:last-of-type, md-list-item .md-secondary-container .md-icon-button:last-of-type,
      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 {
        margin-right: 0; }
        [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, [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 {
          margin-right: auto;
          margin-left: 0; }
      md-list-item .md-secondary-container md-checkbox,
      md-list-item .md-list-item-inner .md-secondary-container md-checkbox {
        margin-top: 0;
        margin-bottom: 0; }
        md-list-item .md-secondary-container md-checkbox:last-child,
        md-list-item .md-list-item-inner .md-secondary-container md-checkbox:last-child {
          width: 24px;
          margin-right: 0; }
          [dir=rtl] md-list-item .md-secondary-container md-checkbox:last-child, [dir=rtl]
          md-list-item .md-list-item-inner .md-secondary-container md-checkbox:last-child {
            margin-right: auto;
            margin-left: 0; }
      md-list-item .md-secondary-container md-switch,
      md-list-item .md-list-item-inner .md-secondary-container md-switch {
        margin-top: 0;
        margin-bottom: 0;
        margin-right: -6px; }
        [dir=rtl] md-list-item .md-secondary-container md-switch, [dir=rtl]
        md-list-item .md-list-item-inner .md-secondary-container md-switch {
          margin-right: auto;
          margin-left: -6px; }
    md-list-item > p, md-list-item > .md-list-item-inner > p,
    md-list-item .md-list-item-inner > p,
    md-list-item .md-list-item-inner > .md-list-item-inner > 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-top: 8px;
      margin-bottom: 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;
      text-overflow: ellipsis;
      overflow: hidden; }
      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: 0.010em;
        margin: 0 0 0px 0;
        line-height: 1.2em;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis; }
      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;
        letter-spacing: 0.010em;
        margin: 3px 0 1px 0;
        font-weight: 400;
        line-height: 1.2em;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis; }
      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: 0.010em;
        margin: 0 0 0 0;
        line-height: 1.6em; }
  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: '';
      min-height: 72px;
      visibility: hidden;
      display: inline-block; }
    md-list-item.md-2-line > .md-avatar, md-list-item.md-2-line .md-avatar-icon, md-list-item.md-2-line > .md-no-style > .md-avatar, md-list-item.md-2-line > .md-no-style .md-avatar-icon {
      margin-top: 12px; }
    md-list-item.md-2-line > md-icon:first-child, md-list-item.md-2-line > .md-no-style > 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: '';
      min-height: 88px;
      visibility: hidden;
      display: inline-block; }
    md-list-item.md-3-line > md-icon:first-child,
    md-list-item.md-3-line > .md-avatar, md-list-item.md-3-line > .md-no-style > md-icon:first-child,
    md-list-item.md-3-line > .md-no-style > .md-avatar {
      margin-top: 16px; }

md-toolbar.md-menu-toolbar h2.md-toolbar-tools {
  line-height: 1rem;
  height: auto;
  padding: 28px;
  padding-bottom: 12px; }

md-toolbar.md-has-open-menu {
  position: relative;
  z-index: 100; }

md-menu-bar {
  padding: 0 20px;
  display: block;
  position: relative;
  z-index: 2; }
  md-menu-bar .md-menu {
    display: inline-block;
    padding: 0;
    position: relative; }
  md-menu-bar button, md-menu-bar label.label-btn, md-menu-bar md-dialog md-dialog-actions .md-cancel-button, md-dialog md-dialog-actions md-menu-bar .md-cancel-button, md-menu-bar md-dialog md-dialog-actions .md-confirm-button, md-dialog md-dialog-actions md-menu-bar .md-confirm-button {
    font-size: 14px;
    padding: 0 10px;
    margin: 0;
    border: 0;
    background-color: transparent;
    height: 40px; }
  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 {
      position: absolute;
      padding: 0;
      width: 24px;
      top: 6px;
      left: 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-button, md-menu-content.md-menu-bar-menu.md-dense md-menu-item.md-indent .md-menu > .md-button {
      padding: 0 32px 0 64px; }
      [dir=rtl] md-menu-content.md-menu-bar-menu.md-dense md-menu-item.md-indent > .md-button, [dir=rtl] md-menu-content.md-menu-bar-menu.md-dense md-menu-item.md-indent .md-menu > .md-button {
        padding: 0 64px 0 32px; }
  md-menu-content.md-menu-bar-menu.md-dense .md-button {
    min-height: 0;
    height: 32px; }
    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-item > .md-button, md-menu-content.md-menu-bar-menu.md-dense .md-menu > .md-button {
    text-align: left; }
    [dir=rtl] md-menu-content.md-menu-bar-menu.md-dense md-menu-item > .md-button, [dir=rtl] md-menu-content.md-menu-bar-menu.md-dense .md-menu > .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 {
      position: relative;
      margin: 0;
      width: 100%;
      text-transform: none;
      font-weight: normal;
      border-radius: 0px;
      padding-left: 16px; }
      [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 {
        display: block;
        content: '\25BC';
        position: absolute;
        top: 0px;
        speak: none;
        transform: rotate(270deg) scaleY(0.45) scaleX(0.9);
        right: 28px; }
        [dir=rtl] md-menu-content.md-menu-bar-menu.md-dense .md-menu > .md-button:after {
          transform: rotate(90deg) scaleY(0.45) scaleX(0.9); }
        [dir=rtl] md-menu-content.md-menu-bar-menu.md-dense .md-menu > .md-button:after {
          right: auto;
          left: 28px; }

.md-open-menu-container {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  opacity: 0;
  border-radius: 2px; }
  .md-open-menu-container md-menu-divider {
    margin-top: 4px;
    margin-bottom: 4px;
    height: 1px;
    min-height: 1px;
    max-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 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-duration: 200ms; }
    .md-open-menu-container.md-active > md-menu-content > * {
      opacity: 1;
      transition: all 0.3s cubic-bezier(0.55, 0, 0.55, 0.2);
      transition-duration: 200ms;
      transition-delay: 100ms; }
  .md-open-menu-container.md-leave {
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.55, 0, 0.55, 0.2);
    transition-duration: 250ms; }

md-menu-content {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
  max-height: 304px;
  overflow-y: auto; }
  md-menu-content.md-dense {
    max-height: 208px; }
    md-menu-content.md-dense md-menu-item {
      height: 32px;
      min-height: 0px; }

md-menu-item {
  display: flex;
  flex-direction: row;
  min-height: 48px;
  height: 48px;
  align-content: center;
  justify-content: flex-start;
  /*
   * We cannot use flex on <button> elements due to a bug in Firefox, so we also can't use it on
   * <a> elements. Add some top padding to fix alignment since buttons automatically align their
   * text vertically.
   */ }
  md-menu-item > * {
    width: 100%;
    margin: auto 0;
    padding-left: 16px;
    padding-right: 16px; }
  md-menu-item > a.md-button {
    padding-top: 5px; }
  md-menu-item > .md-button {
    text-align: left;
    display: inline-block;
    border-radius: 0;
    margin: auto 0;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
    height: 100%;
    padding-left: 16px;
    padding-right: 16px;
    width: 100%; }
    md-menu-item > .md-button::-moz-focus-inner {
      padding: 0;
      border: 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-top: auto;
      margin-bottom: 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; } }

/** Matches "md-tabs md-tabs-wrapper" style. */
.md-nav-bar {
  border-style: solid;
  border-width: 0 0 1px;
  height: 48px;
  position: relative; }

._md-nav-bar-list {
  outline: none;
  list-style: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: row; }

.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 0.35s cubic-bezier(0.35, 0, 0.25, 1); }
  .md-button._md-nav-button:focus {
    outline: none; }
  .md-button._md-nav-button:hover {
    background-color: inherit; }

md-nav-ink-bar {
  bottom: 0;
  height: 2px;
  left: auto;
  position: absolute;
  right: auto;
  background-color: black; }
  md-nav-ink-bar._md-left {
    transition: left 0.125s cubic-bezier(0.35, 0, 0.25, 1), right 0.25s cubic-bezier(0.35, 0, 0.25, 1); }
  md-nav-ink-bar._md-right {
    transition: left 0.25s cubic-bezier(0.35, 0, 0.25, 1), right 0.125s cubic-bezier(0.35, 0, 0.25, 1); }
  md-nav-ink-bar.ng-animate {
    transition: none; }

md-nav-extra-content {
  min-height: 48px;
  padding-right: 12px; }

@keyframes indeterminate-rotate {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

md-progress-circular {
  position: relative;
  display: block; }
  md-progress-circular._md-progress-circular-disabled {
    visibility: hidden; }
  md-progress-circular.md-mode-indeterminate svg {
    animation: indeterminate-rotate 1568.63ms linear infinite; }
  md-progress-circular svg {
    position: absolute;
    overflow: visible;
    top: 0;
    left: 0; }

md-progress-linear {
  display: block;
  position: relative;
  width: 100%;
  height: 5px;
  padding-top: 0 !important;
  margin-bottom: 0 !important; }
  md-progress-linear._md-progress-linear-disabled {
    visibility: hidden; }
  md-progress-linear .md-container {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 5px;
    transform: translate(0, 0) scale(1, 1); }
    md-progress-linear .md-container .md-bar {
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 100%;
      height: 5px; }
    md-progress-linear .md-container .md-dashed:before {
      content: "";
      display: none;
      position: absolute;
      margin-top: 0;
      height: 5px;
      width: 100%;
      background-color: transparent;
      background-size: 10px 10px !important;
      background-position: 0px -23px; }
    md-progress-linear .md-container .md-bar1, md-progress-linear .md-container .md-bar2 {
      transition: transform 0.2s linear; }
    md-progress-linear .md-container.md-mode-query .md-bar1 {
      display: none; }
    md-progress-linear .md-container.md-mode-query .md-bar2 {
      transition: all 0.2s linear;
      animation: query 0.8s infinite cubic-bezier(0.39, 0.575, 0.565, 1); }
    md-progress-linear .md-container.md-mode-determinate .md-bar1 {
      display: none; }
    md-progress-linear .md-container.md-mode-indeterminate .md-bar1 {
      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 {
      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 {
      animation: none; }
      md-progress-linear .md-container.ng-hide ._md-progress-linear-disabled md-progress-linear .md-container .md-bar1 {
        animation-name: none; }
      md-progress-linear .md-container.ng-hide ._md-progress-linear-disabled md-progress-linear .md-container .md-bar2 {
        animation-name: none; }
  md-progress-linear .md-container.md-mode-buffer {
    background-color: transparent !important;
    transition: all 0.2s linear; }
    md-progress-linear .md-container.md-mode-buffer .md-dashed:before {
      display: block;
      animation: buffer 3s infinite linear; }

@keyframes query {
  0% {
    opacity: 1;
    transform: translateX(35%) scale(0.3, 1); }
  100% {
    opacity: 0;
    transform: translateX(-50%) scale(0, 1); } }

@keyframes buffer {
  0% {
    opacity: 1;
    background-position: 0px -23px; }
  50% {
    opacity: 0; }
  100% {
    opacity: 1;
    background-position: -200px -23px; } }

@keyframes md-progress-linear-indeterminate-scale-1 {
  0% {
    transform: scaleX(0.1);
    animation-timing-function: linear; }
  36.6% {
    transform: scaleX(0.1);
    animation-timing-function: cubic-bezier(0.33473, 0.12482, 0.78584, 1); }
  69.15% {
    transform: scaleX(0.83);
    animation-timing-function: cubic-bezier(0.22573, 0, 0.23365, 1.37098); }
  100% {
    transform: scaleX(0.1); } }

@keyframes md-progress-linear-indeterminate-1 {
  0% {
    left: -105.16667%;
    animation-timing-function: linear; }
  20% {
    left: -105.16667%;
    animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582); }
  69.15% {
    left: 21.5%;
    animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635); }
  100% {
    left: 95.44444%; } }

@keyframes md-progress-linear-indeterminate-scale-2 {
  0% {
    transform: scaleX(0.1);
    animation-timing-function: cubic-bezier(0.20503, 0.05705, 0.57661, 0.45397); }
  19.15% {
    transform: scaleX(0.57);
    animation-timing-function: cubic-bezier(0.15231, 0.19643, 0.64837, 1.00432); }
  44.15% {
    transform: scaleX(0.91);
    animation-timing-function: cubic-bezier(0.25776, -0.00316, 0.21176, 1.38179); }
  100% {
    transform: scaleX(0.1); } }

@keyframes md-progress-linear-indeterminate-2 {
  0% {
    left: -54.88889%;
    animation-timing-function: cubic-bezier(0.15, 0, 0.51506, 0.40968); }
  25% {
    left: -17.25%;
    animation-timing-function: cubic-bezier(0.31033, 0.28406, 0.8, 0.73372); }
  48.35% {
    left: 29.5%;
    animation-timing-function: cubic-bezier(0.4, 0.62703, 0.6, 0.90203); }
  100% {
    left: 117.38889%; } }

md-input-container:not([md-no-float]) .md-select-placeholder span:first-child {
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform-origin: left top; }
  [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-placeholder span:first-child {
  transform: translateY(-22px) translateX(-2px) scale(0.75); }

.md-select-menu-container {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 90;
  opacity: 0;
  display: none;
  transform: translateY(-1px); }
  .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 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
      transition-duration: 150ms; }
      .md-select-menu-container.md-active md-select-menu > * {
        opacity: 1;
        transition: all 0.3s cubic-bezier(0.55, 0, 0.55, 0.2);
        transition-duration: 150ms;
        transition-delay: 100ms; }
  .md-select-menu-container.md-leave {
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.55, 0, 0.55, 0.2);
    transition-duration: 250ms; }

md-input-container > md-select {
  margin: 0;
  order: 2; }

md-input-container:not(.md-input-has-value) md-select[required]:not(.md-no-asterisk) .md-select-value span:first-child:after, md-input-container:not(.md-input-has-value) md-select.ng-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;
  margin: 20px 0 26px 0; }
  md-select[required].ng-invalid:not(.md-no-asterisk) .md-select-value span:first-child:after, md-select.ng-required.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: 0 bottom;
    background-size: 4px 1px;
    background-repeat: repeat-x;
    margin-bottom: -1px; }
  md-select:focus {
    outline: none; }
  md-select[disabled]:hover {
    cursor: default; }
  md-select:not([disabled]):hover {
    cursor: pointer; }
  md-select:not([disabled]).ng-invalid.ng-touched .md-select-value {
    border-bottom-style: solid;
    padding-bottom: 1px; }
  md-select:not([disabled]):focus .md-select-value {
    border-bottom-width: 2px;
    border-bottom-style: solid;
    padding-bottom: 0; }
  md-select:not([disabled]):focus.ng-invalid.ng-touched .md-select-value {
    padding-bottom: 0; }

md-input-container.md-input-has-value .md-select-value > span:not(.md-select-icon) {
  transform: translate3d(0, 1px, 0); }

.md-select-value {
  display: flex;
  align-items: center;
  padding: 2px 2px 1px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  background-color: rgba(0, 0, 0, 0);
  position: relative;
  box-sizing: content-box;
  min-width: 64px;
  min-height: 26px;
  flex-grow: 1; }
  .md-select-value > span:not(.md-select-icon) {
    max-width: 100%;
    flex: 1 1 auto;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden; }
    .md-select-value > span:not(.md-select-icon) .md-text {
      display: inline; }
  .md-select-value .md-select-icon {
    display: block;
    align-items: flex-end;
    text-align: end;
    width: 24px;
    margin: 0 4px;
    transform: translate3d(0, -2px, 0);
    font-size: 1.2rem; }
  .md-select-value .md-select-icon:after {
    display: block;
    content: '\25BC';
    position: relative;
    top: 2px;
    speak: none;
    font-size: 13px;
    transform: scaleY(0.5) scaleX(1); }
  .md-select-value.md-select-placeholder {
    display: flex;
    order: 1;
    pointer-events: none;
    -webkit-font-smoothing: antialiased;
    padding-left: 2px;
    z-index: 1; }

md-select-menu {
  display: flex;
  flex-direction: column;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 2px 1px -1px rgba(0, 0, 0, 0.12);
  max-height: 256px;
  min-height: 48px;
  overflow-y: hidden;
  transform-origin: left top;
  transform: scale(1); }
  md-select-menu.md-reverse {
    flex-direction: column-reverse; }
  md-select-menu:not(.md-overflow) md-content {
    padding-top: 8px;
    padding-bottom: 8px; }
  [dir=rtl] md-select-menu {
    transform-origin: right top; }
  md-select-menu md-content {
    min-width: 136px;
    min-height: 48px;
    max-height: 256px;
    overflow-y: auto; }
  md-select-menu > * {
    opacity: 0; }

md-option {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  width: auto;
  transition: background 0.15s linear;
  padding: 0 16px 0 16px;
  height: 48px; }
  md-option[disabled] {
    cursor: default; }
  md-option:focus {
    outline: none; }
  md-option .md-text {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    width: auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }

md-optgroup {
  display: block; }
  md-optgroup label {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    padding: 16px;
    font-weight: 500; }
  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; }
  [dir=rtl] md-select-menu[multiple] md-option.md-checkbox-enabled {
    padding-right: 40px; }
  md-select-menu[multiple] md-option.md-checkbox-enabled .md-container {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    box-sizing: border-box;
    display: inline-block;
    width: 20px;
    height: 20px;
    left: 0;
    right: auto; }
    [dir=rtl] md-select-menu[multiple] md-option.md-checkbox-enabled .md-container {
      left: auto; }
    [dir=rtl] md-select-menu[multiple] md-option.md-checkbox-enabled .md-container {
      right: 0; }
    md-select-menu[multiple] md-option.md-checkbox-enabled .md-container:before {
      box-sizing: border-box;
      background-color: transparent;
      border-radius: 50%;
      content: '';
      position: absolute;
      display: block;
      height: auto;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      transition: all 0.5s;
      width: auto; }
    md-select-menu[multiple] md-option.md-checkbox-enabled .md-container:after {
      box-sizing: border-box;
      content: '';
      position: absolute;
      top: -10px;
      right: -10px;
      bottom: -10px;
      left: -10px; }
    md-select-menu[multiple] md-option.md-checkbox-enabled .md-container .md-ripple-container {
      position: absolute;
      display: block;
      width: auto;
      height: auto;
      left: -15px;
      top: -15px;
      right: -15px;
      bottom: -15px; }
  md-select-menu[multiple] md-option.md-checkbox-enabled .md-icon {
    box-sizing: border-box;
    transition: 240ms;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border-width: 2px;
    border-style: solid;
    border-radius: 2px; }
  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 {
      box-sizing: border-box;
      transform: rotate(45deg);
      position: absolute;
      left: 4.66667px;
      top: 0.22222px;
      display: table;
      width: 6.66667px;
      height: 13.33333px;
      border-width: 2px;
      border-style: solid;
      border-top: 0;
      border-left: 0;
      content: ''; }
  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 {
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: table;
    width: 12px;
    height: 2px;
    border-width: 2px;
    border-style: solid;
    border-top: 0;
    border-left: 0;
    content: ''; }
  md-select-menu[multiple] md-option.md-checkbox-enabled .md-container {
    margin-left: 10.66667px;
    margin-right: auto; }
    [dir=rtl] md-select-menu[multiple] md-option.md-checkbox-enabled .md-container {
      margin-left: auto; }
    [dir=rtl] md-select-menu[multiple] md-option.md-checkbox-enabled .md-container {
      margin-right: 10.66667px; }

md-sidenav {
  box-sizing: border-box;
  position: absolute;
  flex-direction: column;
  z-index: 60;
  width: 320px;
  max-width: 320px;
  bottom: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch; }
  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: 0.2s ease-in all; }
  md-sidenav.md-closed-add.md-closed-add-active, md-sidenav.md-closed-remove.md-closed-remove-active {
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); }
  md-sidenav.md-locked-open-add, md-sidenav.md-locked-open-remove {
    position: static;
    display: flex;
    transform: translate3d(0, 0, 0); }
  md-sidenav.md-locked-open, 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.md-locked-open.md-closed.md-sidenav-right {
    position: static;
    display: flex;
    transform: translate3d(0, 0, 0); }
  md-sidenav.md-locked-open-remove.md-closed {
    position: static;
    display: flex;
    transform: translate3d(0, 0, 0); }
  md-sidenav.md-closed.md-locked-open-add {
    position: static;
    display: flex;
    transform: translate3d(0%, 0, 0); }
  md-sidenav.md-closed.md-locked-open-add:not(.md-locked-open-add-active) {
    transition: width 0.3s cubic-bezier(0.55, 0, 0.55, 0.2), min-width 0.3s cubic-bezier(0.55, 0, 0.55, 0.2);
    width: 0 !important;
    min-width: 0 !important; }
  md-sidenav.md-closed.md-locked-open-add-active {
    transition: width 0.3s cubic-bezier(0.55, 0, 0.55, 0.2), min-width 0.3s cubic-bezier(0.55, 0, 0.55, 0.2); }
  md-sidenav.md-locked-open-remove-active {
    transition: width 0.3s cubic-bezier(0.55, 0, 0.55, 0.2), min-width 0.3s cubic-bezier(0.55, 0, 0.55, 0.2);
    width: 0 !important;
    min-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 {
    width: calc(100% - 56px);
    min-width: calc(100% - 56px);
    max-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; } }

md-radio-button {
  box-sizing: border-box;
  display: block;
  margin-bottom: 16px;
  white-space: nowrap;
  cursor: pointer;
  position: relative; }
  md-radio-button[disabled] {
    cursor: default; }
    md-radio-button[disabled] .md-container {
      cursor: default; }
  md-radio-button .md-container {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    box-sizing: border-box;
    display: inline-block;
    width: 20px;
    height: 20px;
    cursor: pointer;
    left: 0;
    right: auto; }
    [dir=rtl] md-radio-button .md-container {
      left: auto; }
    [dir=rtl] md-radio-button .md-container {
      right: 0; }
    md-radio-button .md-container .md-ripple-container {
      position: absolute;
      display: block;
      width: auto;
      height: auto;
      left: -15px;
      top: -15px;
      right: -15px;
      bottom: -15px; }
    md-radio-button .md-container:before {
      box-sizing: border-box;
      background-color: transparent;
      border-radius: 50%;
      content: '';
      position: absolute;
      display: block;
      height: auto;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      transition: all 0.5s;
      width: auto; }
  md-radio-button.md-align-top-left > div.md-container {
    top: 12px; }
  md-radio-button .md-off {
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border-style: solid;
    border-width: 2px;
    border-radius: 50%;
    transition: border-color ease 0.28s; }
  md-radio-button .md-on {
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    transition: transform ease 0.28s;
    transform: scale(0); }
  md-radio-button.md-checked .md-on {
    transform: scale(0.5); }
  md-radio-button .md-label {
    box-sizing: border-box;
    position: relative;
    display: inline-block;
    margin-left: 30px;
    margin-right: 0;
    vertical-align: middle;
    white-space: normal;
    pointer-events: none;
    width: auto; }
    [dir=rtl] md-radio-button .md-label {
      margin-left: 0; }
    [dir=rtl] md-radio-button .md-label {
      margin-right: 30px; }

md-radio-group {
  /** Layout adjustments for the radio group. */ }
  md-radio-group.layout-column md-radio-button, md-radio-group.layout-xs-column md-radio-button, md-radio-group.layout-gt-xs-column md-radio-button, md-radio-group.layout-sm-column md-radio-button, md-radio-group.layout-gt-sm-column md-radio-button, md-radio-group.layout-md-column md-radio-button, md-radio-group.layout-gt-md-column md-radio-button, md-radio-group.layout-lg-column md-radio-button, md-radio-group.layout-gt-lg-column md-radio-button, md-radio-group.layout-xl-column md-radio-button {
    margin-bottom: 16px; }
  md-radio-group.layout-row md-radio-button, md-radio-group.layout-xs-row md-radio-button, md-radio-group.layout-gt-xs-row md-radio-button, md-radio-group.layout-sm-row md-radio-button, md-radio-group.layout-gt-sm-row md-radio-button, md-radio-group.layout-md-row md-radio-button, md-radio-group.layout-gt-md-row md-radio-button, md-radio-group.layout-lg-row md-radio-button, md-radio-group.layout-gt-lg-row md-radio-button, md-radio-group.layout-xl-row md-radio-button {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 16px; }
    [dir=rtl] md-radio-group.layout-row md-radio-button, [dir=rtl] md-radio-group.layout-xs-row md-radio-button, [dir=rtl] md-radio-group.layout-gt-xs-row md-radio-button, [dir=rtl] md-radio-group.layout-sm-row md-radio-button, [dir=rtl] md-radio-group.layout-gt-sm-row md-radio-button, [dir=rtl] md-radio-group.layout-md-row md-radio-button, [dir=rtl] md-radio-group.layout-gt-md-row md-radio-button, [dir=rtl] md-radio-group.layout-lg-row md-radio-button, [dir=rtl] md-radio-group.layout-gt-lg-row md-radio-button, [dir=rtl] md-radio-group.layout-xl-row md-radio-button {
      margin-left: 16px; }
    [dir=rtl] md-radio-group.layout-row md-radio-button, [dir=rtl] md-radio-group.layout-xs-row md-radio-button, [dir=rtl] md-radio-group.layout-gt-xs-row md-radio-button, [dir=rtl] md-radio-group.layout-sm-row md-radio-button, [dir=rtl] md-radio-group.layout-gt-sm-row md-radio-button, [dir=rtl] md-radio-group.layout-md-row md-radio-button, [dir=rtl] md-radio-group.layout-gt-md-row md-radio-button, [dir=rtl] md-radio-group.layout-lg-row md-radio-button, [dir=rtl] md-radio-group.layout-gt-lg-row md-radio-button, [dir=rtl] md-radio-group.layout-xl-row md-radio-button {
      margin-right: 0; }
    md-radio-group.layout-row md-radio-button:last-of-type, md-radio-group.layout-xs-row md-radio-button:last-of-type, md-radio-group.layout-gt-xs-row md-radio-button:last-of-type, md-radio-group.layout-sm-row md-radio-button:last-of-type, md-radio-group.layout-gt-sm-row md-radio-button:last-of-type, md-radio-group.layout-md-row md-radio-button:last-of-type, md-radio-group.layout-gt-md-row md-radio-button:last-of-type, md-radio-group.layout-lg-row md-radio-button:last-of-type, md-radio-group.layout-gt-lg-row md-radio-button:last-of-type, md-radio-group.layout-xl-row md-radio-button:last-of-type {
      margin-left: 0;
      margin-right: 0; }
  md-radio-group:focus {
    outline: none; }
  md-radio-group.md-focused .md-checked .md-container:before {
    left: -8px;
    top: -8px;
    right: -8px;
    bottom: -8px; }
  md-radio-group[disabled] md-radio-button {
    cursor: default; }
    md-radio-group[disabled] md-radio-button .md-container {
      cursor: default; }

.md-inline-form md-radio-group {
  margin: 18px 0 19px; }
  .md-inline-form md-radio-group md-radio-button {
    display: inline-block;
    height: 30px;
    padding: 2px;
    box-sizing: border-box;
    margin-top: 0;
    margin-bottom: 0; }

@media screen and (-ms-high-contrast: active) {
  md-radio-button.md-default-theme .md-on {
    background-color: #fff; } }

@keyframes sliderFocusThumb {
  0% {
    transform: scale(0.7); }
  30% {
    transform: scale(1); }
  100% {
    transform: scale(0.7); } }

@keyframes sliderDiscreteFocusThumb {
  0% {
    transform: scale(0.7); }
  50% {
    transform: scale(0.8); }
  100% {
    transform: scale(0); } }

@keyframes sliderDiscreteFocusRing {
  0% {
    transform: scale(0.7);
    opacity: 0; }
  50% {
    transform: scale(1);
    opacity: 1; }
  100% {
    transform: scale(0); } }

md-slider {
  height: 48px;
  min-width: 128px;
  position: relative;
  margin-left: 4px;
  margin-right: 4px;
  padding: 0;
  display: block;
  flex-direction: row;
  /**
   * Track
   */
  /**
   * Slider thumb
   */
  /* The sign that's focused in discrete mode */
  /**
   * The border/background that comes in when focused in non-discrete mode
   */
  /* Don't animate left/right while panning */ }
  md-slider *, md-slider *:after {
    box-sizing: border-box; }
  md-slider .md-slider-wrapper {
    outline: none;
    width: 100%;
    height: 100%; }
  md-slider .md-slider-content {
    position: relative; }
  md-slider .md-track-container {
    width: 100%;
    position: absolute;
    top: 23px;
    height: 2px; }
  md-slider .md-track {
    position: absolute;
    left: 0;
    right: 0;
    height: 100%; }
  md-slider .md-track-fill {
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-property: width, height; }
  md-slider .md-track-ticks {
    position: absolute;
    left: 0;
    right: 0;
    height: 100%; }
  md-slider .md-track-ticks canvas {
    width: 100%;
    height: 100%; }
  md-slider .md-thumb-container {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-property: left, right, bottom; }
    [dir=rtl] md-slider .md-thumb-container {
      left: auto;
      right: 0; }
  md-slider .md-thumb {
    z-index: 1;
    position: absolute;
    left: -10px;
    top: 14px;
    width: 20px;
    height: 20px;
    border-radius: 20px;
    transform: scale(0.7);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); }
    [dir=rtl] md-slider .md-thumb {
      left: auto;
      right: -10px; }
    md-slider .md-thumb:after {
      content: '';
      position: absolute;
      width: 20px;
      height: 20px;
      border-radius: 20px;
      border-width: 3px;
      border-style: solid;
      transition: inherit; }
  md-slider .md-sign {
    /* Center the children (slider-thumb-text) */
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: -14px;
    top: -17px;
    width: 28px;
    height: 28px;
    border-radius: 28px;
    transform: scale(0.4) translate3d(0, 67.5px, 0);
    transition: all 0.3s cubic-bezier(0.35, 0, 0.25, 1);
    /* The arrow pointing down under the sign */ }
    md-slider .md-sign:after {
      position: absolute;
      content: '';
      left: 0px;
      border-radius: 16px;
      top: 19px;
      border-left: 14px solid transparent;
      border-right: 14px solid transparent;
      border-top-width: 16px;
      border-top-style: solid;
      opacity: 0;
      transform: translate3d(0, -8px, 0);
      transition: all 0.2s cubic-bezier(0.35, 0, 0.25, 1); }
      [dir=rtl] md-slider .md-sign:after {
        left: auto;
        right: 0px; }
    md-slider .md-sign .md-thumb-text {
      z-index: 1;
      font-size: 12px;
      font-weight: bold; }
  md-slider .md-focus-ring {
    position: absolute;
    left: -17px;
    top: 7px;
    width: 34px;
    height: 34px;
    border-radius: 34px;
    transform: scale(0.7);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.35, 0, 0.25, 1); }
    [dir=rtl] md-slider .md-focus-ring {
      left: auto;
      right: -17px; }
  md-slider .md-disabled-thumb {
    position: absolute;
    left: -14px;
    top: 10px;
    width: 28px;
    height: 28px;
    border-radius: 28px;
    transform: scale(0.5);
    border-width: 4px;
    border-style: solid;
    display: none; }
    [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]) {
    /* Hide the sign and ticks in non-discrete mode */ }
    md-slider:not([md-discrete]) .md-track-ticks,
    md-slider:not([md-discrete]) .md-sign {
      display: none; }
    md-slider:not([md-discrete]):not([disabled]) .md-slider-wrapper .md-thumb:hover {
      transform: scale(0.8); }
    md-slider:not([md-discrete]):not([disabled]) .md-slider-wrapper.md-focused .md-focus-ring {
      transform: scale(1);
      opacity: 1; }
    md-slider:not([md-discrete]):not([disabled]) .md-slider-wrapper.md-focused .md-thumb {
      animation: sliderFocusThumb 0.7s cubic-bezier(0.35, 0, 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 {
    transform: scale(0);
    animation: sliderDiscreteFocusRing 0.5s cubic-bezier(0.35, 0, 0.25, 1); }
  md-slider[md-discrete]:not([disabled]) .md-slider-wrapper.md-focused .md-thumb {
    animation: sliderDiscreteFocusThumb 0.5s cubic-bezier(0.35, 0, 0.25, 1); }
  md-slider[md-discrete]:not([disabled]) .md-slider-wrapper.md-focused .md-thumb, md-slider[md-discrete]:not([disabled]).md-active .md-thumb {
    transform: scale(0); }
  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, md-slider[md-discrete]:not([disabled]).md-active .md-sign,
  md-slider[md-discrete]:not([disabled]).md-active .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 {
    opacity: 0; }
  md-slider[disabled]:not([readonly]) .md-sign {
    opacity: 0; }
  md-slider[disabled] .md-thumb {
    transform: scale(0.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 {
      flex: 1;
      padding-top: 12px;
      padding-bottom: 12px;
      width: 48px;
      align-self: center;
      display: flex;
      justify-content: center; }
    md-slider[md-vertical] .md-track-container {
      height: 100%;
      width: 2px;
      top: 0;
      left: calc(50% - (2px / 2)); }
    md-slider[md-vertical] .md-thumb-container {
      top: auto;
      margin-bottom: 23px;
      left: calc(50% - 1px);
      bottom: 0; }
      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(0.4) translate3d(67.5px, 0, 0);
      /* The arrow pointing left next the sign */ }
      md-slider[md-vertical][md-discrete] .md-sign:after {
        top: 9.5px;
        left: 19px;
        border-top: 14px solid transparent;
        border-right: 0;
        border-bottom: 14px solid transparent;
        border-left-width: 16px;
        border-left-style: solid;
        opacity: 0;
        transform: translate3d(0, -8px, 0);
        transition: all 0.2s ease-in-out; }
      md-slider[md-vertical][md-discrete] .md-sign .md-thumb-text {
        z-index: 1;
        font-size: 12px;
        font-weight: bold; }
    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; }
    [dir=rtl] md-slider[md-invert]:not([md-vertical]) .md-track-fill {
      right: auto; }
  md-slider[md-invert][md-vertical] .md-track-fill {
    bottom: auto;
    top: 0; }

md-slider-container {
  display: flex;
  align-items: center;
  flex-direction: row; }
  md-slider-container > *:first-child:not(md-slider),
  md-slider-container > *:last-child:not(md-slider) {
    min-width: 25px;
    max-width: 42px;
    height: 25px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.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-right: auto;
      margin-left: 16px; }
  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-right: 0;
      margin-left: 0;
      text-align: center; }
  md-slider-container md-input-container input[type="number"] {
    text-align: center;
    padding-left: 15px;
    height: 50px;
    margin-top: -25px; }
    [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 {
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  position: absolute !important;
  transform: translate3d(-9999px, -9999px, 0); }
  .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 {
      animation: subheaderStickyHoverIn 0.3s ease-out both; }

.md-inline-form md-switch {
  margin-top: 18px;
  margin-bottom: 19px; }

md-switch {
  margin: 16px 0;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
          user-select: none;
  height: 30px;
  line-height: 28px;
  align-items: center;
  display: flex;
  margin-left: inherit;
  margin-right: 16px; }
  [dir=rtl] md-switch {
    margin-left: 16px; }
  [dir=rtl] md-switch {
    margin-right: inherit; }
  md-switch:last-of-type {
    margin-left: inherit;
    margin-right: 0; }
    [dir=rtl] md-switch:last-of-type {
      margin-left: 0; }
    [dir=rtl] md-switch:last-of-type {
      margin-right: inherit; }
  md-switch[disabled] {
    cursor: default; }
    md-switch[disabled] .md-container {
      cursor: default; }
  md-switch .md-container {
    cursor: grab;
    width: 36px;
    height: 24px;
    position: relative;
    -webkit-user-select: none;
            user-select: none;
    margin-right: 8px;
    float: left; }
    [dir=rtl] md-switch .md-container {
      margin-right: 0px;
      margin-left: 8px; }
  md-switch.md-inverted .md-container {
    margin-right: initial;
    margin-left: 8px; }
    [dir=rtl] md-switch.md-inverted .md-container {
      margin-right: 8px; }
    [dir=rtl] md-switch.md-inverted .md-container {
      margin-left: initial; }
  md-switch:not([disabled]) .md-dragging,
  md-switch:not([disabled]).md-dragging .md-container {
    cursor: grabbing; }
  md-switch.md-focused:not([disabled]) .md-thumb:before {
    left: -8px;
    top: -8px;
    right: -8px;
    bottom: -8px; }
  md-switch.md-focused:not([disabled]):not(.md-checked) .md-thumb:before {
    background-color: rgba(0, 0, 0, 0.12); }
  md-switch .md-label {
    border-color: transparent;
    border-width: 0;
    float: left; }
  md-switch .md-bar {
    left: 1px;
    width: 34px;
    top: 5px;
    height: 14px;
    border-radius: 8px;
    position: absolute; }
  md-switch .md-thumb-container {
    top: 2px;
    left: 0;
    width: 16px;
    position: absolute;
    transform: translate3d(0, 0, 0);
    z-index: 1; }
  md-switch.md-checked .md-thumb-container {
    transform: translate3d(100%, 0, 0); }
  md-switch .md-thumb {
    position: absolute;
    margin: 0;
    left: 0;
    top: 0;
    outline: none;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 2px 1px -1px rgba(0, 0, 0, 0.12); }
    md-switch .md-thumb:before {
      background-color: transparent;
      border-radius: 50%;
      content: '';
      position: absolute;
      display: block;
      height: auto;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      transition: all 0.5s;
      width: auto; }
    md-switch .md-thumb .md-ripple-container {
      position: absolute;
      display: block;
      width: auto;
      height: auto;
      left: -20px;
      top: -20px;
      right: -20px;
      bottom: -20px; }
  md-switch:not(.md-dragging) .md-bar,
  md-switch:not(.md-dragging) .md-thumb-container,
  md-switch:not(.md-dragging) .md-thumb {
    transition: all 0.08s linear;
    transition-property: transform, background-color; }
  md-switch:not(.md-dragging) .md-bar,
  md-switch:not(.md-dragging) .md-thumb {
    transition-delay: 0.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; } }

@keyframes subheaderStickyHoverIn {
  0% {
    box-shadow: 0 0 0 0 transparent; }
  100% {
    box-shadow: 0px 2px 4px 0 rgba(0, 0, 0, 0.16); } }

@keyframes subheaderStickyHoverOut {
  0% {
    box-shadow: 0px 2px 4px 0 rgba(0, 0, 0, 0.16); }
  100% {
    box-shadow: 0 0 0 0 transparent; } }

.md-subheader-wrapper:not(.md-sticky-no-effect) {
  transition: 0.2s ease-out margin; }
  .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 {
    animation: subheaderStickyHoverOut 0.3s ease-out both; }

.md-subheader {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1em;
  margin: 0 0 0 0;
  position: relative; }
  .md-subheader .md-subheader-inner {
    display: block;
    padding: 16px; }
  .md-subheader .md-subheader-content {
    display: block;
    z-index: 1;
    position: relative; }

@keyframes md-tab-content-hide {
  0% {
    opacity: 1; }
  50% {
    opacity: 1; }
  100% {
    opacity: 0; } }

md-tab-data {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0; }

md-tabs {
  display: block;
  margin: 0;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0; }
  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 {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 48px;
      z-index: 2; }
    md-tabs[md-align-tabs="bottom"] md-tabs-content-wrapper {
      top: 0;
      bottom: 48px; }
  md-tabs.md-dynamic-height md-tabs-content-wrapper {
    min-height: 0;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    overflow: visible; }
  md-tabs.md-dynamic-height md-tab-content.md-active {
    position: relative; }
  md-tabs[md-border-bottom] md-tabs-wrapper {
    border-width: 0 0 1px;
    border-style: solid; }
  md-tabs[md-border-bottom]:not(.md-dynamic-height) md-tabs-content-wrapper {
    top: 49px; }

md-tabs-wrapper {
  display: block;
  position: relative;
  transform: translate3d(0, 0, 0); }
  md-tabs-wrapper md-prev-button, md-tabs-wrapper md-next-button {
    height: 100%;
    width: 32px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    line-height: 1em;
    z-index: 2;
    cursor: pointer;
    font-size: 16px;
    background: transparent no-repeat center center;
    transition: all 0.5s cubic-bezier(0.35, 0, 0.25, 1); }
    md-tabs-wrapper md-prev-button:focus, md-tabs-wrapper md-next-button:focus {
      outline: none; }
    md-tabs-wrapper md-prev-button.md-disabled, md-tabs-wrapper md-next-button.md-disabled {
      opacity: 0.25;
      cursor: default; }
    md-tabs-wrapper md-prev-button.ng-leave, md-tabs-wrapper md-next-button.ng-leave {
      transition: none; }
    md-tabs-wrapper md-prev-button md-icon, md-tabs-wrapper md-next-button md-icon {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate3d(-50%, -50%, 0); }
  md-tabs-wrapper md-prev-button {
    left: 0;
    background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE3LjEuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPiA8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPiA8c3ZnIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMjQgMjQiIHhtbDpzcGFjZT0icHJlc2VydmUiPiA8ZyBpZD0iSGVhZGVyIj4gPGc+IDxyZWN0IHg9Ii02MTgiIHk9Ii0xMjA4IiBmaWxsPSJub25lIiB3aWR0aD0iMTQwMCIgaGVpZ2h0PSIzNjAwIi8+IDwvZz4gPC9nPiA8ZyBpZD0iTGFiZWwiPiA8L2c+IDxnIGlkPSJJY29uIj4gPGc+IDxwb2x5Z29uIHBvaW50cz0iMTUuNCw3LjQgMTQsNiA4LDEyIDE0LDE4IDE1LjQsMTYuNiAxMC44LDEyIAkJIiBzdHlsZT0iZmlsbDp3aGl0ZTsiLz4gPHJlY3QgZmlsbD0ibm9uZSIgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0Ii8+IDwvZz4gPC9nPiA8ZyBpZD0iR3JpZCIgZGlzcGxheT0ibm9uZSI+IDxnIGRpc3BsYXk9ImlubGluZSI+IDwvZz4gPC9nPiA8L3N2Zz4NCg=="); }
    [dir=rtl] md-tabs-wrapper md-prev-button {
      left: auto;
      right: 0; }
  md-tabs-wrapper md-next-button {
    right: 0;
    background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE3LjEuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPiA8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPiA8c3ZnIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMjQgMjQiIHhtbDpzcGFjZT0icHJlc2VydmUiPiA8ZyBpZD0iSGVhZGVyIj4gPGc+IDxyZWN0IHg9Ii02MTgiIHk9Ii0xMzM2IiBmaWxsPSJub25lIiB3aWR0aD0iMTQwMCIgaGVpZ2h0PSIzNjAwIi8+IDwvZz4gPC9nPiA8ZyBpZD0iTGFiZWwiPiA8L2c+IDxnIGlkPSJJY29uIj4gPGc+IDxwb2x5Z29uIHBvaW50cz0iMTAsNiA4LjYsNy40IDEzLjIsMTIgOC42LDE2LjYgMTAsMTggMTYsMTIgCQkiIHN0eWxlPSJmaWxsOndoaXRlOyIvPiA8cmVjdCBmaWxsPSJub25lIiB3aWR0aD0iMjQiIGhlaWdodD0iMjQiLz4gPC9nPiA8L2c+IDxnIGlkPSJHcmlkIiBkaXNwbGF5PSJub25lIj4gPGcgZGlzcGxheT0iaW5saW5lIj4gPC9nPiA8L2c+IDwvc3ZnPg0K"); }
    [dir=rtl] md-tabs-wrapper md-next-button {
      right: auto;
      left: 0; }
    md-tabs-wrapper md-next-button md-icon {
      transform: translate3d(-50%, -50%, 0) rotate(180deg); }
  md-tabs-wrapper.md-stretch-tabs md-pagination-wrapper {
    width: 100%;
    flex-direction: row; }
    md-tabs-wrapper.md-stretch-tabs md-pagination-wrapper md-tab-item {
      flex-grow: 1; }

md-tabs-canvas {
  position: relative;
  overflow: hidden;
  display: block;
  height: 48px; }
  md-tabs-canvas:after {
    content: '';
    display: table;
    clear: both; }
  md-tabs-canvas .md-dummy-wrapper {
    position: absolute;
    top: 0;
    left: 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 {
      float: none;
      display: inline-block; }

md-pagination-wrapper {
  height: 48px;
  display: flex;
  transition: transform 0.5s cubic-bezier(0.35, 0, 0.25, 1);
  position: absolute;
  left: 0;
  transform: translate3d(0, 0, 0); }
  md-pagination-wrapper:after {
    content: '';
    display: table;
    clear: both; }
  [dir=rtl] md-pagination-wrapper {
    left: auto;
    right: 0; }
  md-pagination-wrapper.md-center-tabs {
    position: relative;
    justify-content: center; }

md-tabs-content-wrapper {
  display: block;
  position: absolute;
  top: 48px;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden; }

md-tab-content {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: transform 0.5s cubic-bezier(0.35, 0, 0.25, 1);
  overflow: auto;
  transform: translate3d(0, 0, 0); }
  md-tab-content.md-no-scroll {
    bottom: auto;
    overflow: hidden; }
  md-tab-content.ng-leave, md-tab-content.md-no-transition {
    transition: none; }
  md-tab-content.md-left:not(.md-active) {
    transform: translateX(-100%);
    animation: 1s md-tab-content-hide;
    opacity: 0; }
    [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: 0.5s;
      visibility: hidden; }
  md-tab-content.md-right:not(.md-active) {
    transform: translateX(100%);
    animation: 1s md-tab-content-hide;
    opacity: 0; }
    [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: 0.5s;
      visibility: hidden; }
  md-tab-content > div {
    flex: 1 0 100%;
    min-width: 0; }
    md-tab-content > div.ng-leave {
      animation: 1s md-tab-content-hide; }

md-ink-bar {
  position: absolute;
  left: auto;
  right: auto;
  bottom: 0;
  height: 2px; }
  md-ink-bar.md-left {
    transition: left 0.125s cubic-bezier(0.35, 0, 0.25, 1), right 0.25s cubic-bezier(0.35, 0, 0.25, 1); }
  md-ink-bar.md-right {
    transition: left 0.25s cubic-bezier(0.35, 0, 0.25, 1), right 0.125s cubic-bezier(0.35, 0, 0.25, 1); }

md-tab {
  position: absolute;
  z-index: -1;
  left: -9999px; }

.md-tab {
  font-size: 14px;
  text-align: center;
  line-height: 24px;
  padding: 12px 24px;
  transition: background-color 0.35s cubic-bezier(0.35, 0, 0.25, 1);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  text-transform: uppercase;
  float: left;
  font-weight: 500;
  box-sizing: border-box;
  overflow: hidden;
  text-overflow: ellipsis; }
  [dir=rtl] .md-tab {
    float: right; }
  .md-tab.md-focused {
    box-shadow: none;
    outline: none; }
  .md-tab.md-active {
    cursor: default; }
  .md-tab.md-disabled {
    pointer-events: none;
    touch-action: pan-y;
    -webkit-user-select: none;
            user-select: none;
    -webkit-user-drag: none;
    opacity: 0.5;
    cursor: default; }
  .md-tab.ng-leave {
    transition: none; }

md-toolbar + md-tabs {
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.md-tooltip {
  pointer-events: none;
  border-radius: 4px;
  overflow: hidden;
  opacity: 0;
  font-weight: 500;
  font-size: 14px;
  white-space: nowrap;
  text-overflow: ellipsis;
  height: 32px;
  line-height: 32px;
  padding-right: 16px;
  padding-left: 16px; }
  .md-tooltip.md-origin-top {
    transform-origin: center bottom;
    margin-top: -24px; }
  .md-tooltip.md-origin-right {
    transform-origin: left center;
    margin-left: 24px; }
  .md-tooltip.md-origin-bottom {
    transform-origin: center top;
    margin-top: 24px; }
  .md-tooltip.md-origin-left {
    transform-origin: right center;
    margin-left: -24px; }
  @media (min-width: 960px) {
    .md-tooltip {
      font-size: 10px;
      height: 22px;
      line-height: 22px;
      padding-right: 8px;
      padding-left: 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 {
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform: scale(1);
    opacity: 0.9; }
  .md-tooltip.md-hide {
    transition: all 0.3s cubic-bezier(0.55, 0, 0.55, 0.2);
    transition-duration: .1s;
    transform: scale(0);
    opacity: 0; }

md-toolbar {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  font-size: 20px;
  min-height: 64px;
  width: 100%; }
  md-toolbar._md-toolbar-transitions {
    transition-duration: 0.5s;
    transition-timing-function: cubic-bezier(0.35, 0, 0.25, 1);
    transition-property: background-color, fill, color; }
  md-toolbar.md-whiteframe-z1-add, md-toolbar.md-whiteframe-z1-remove {
    transition: box-shadow 0.5s linear; }
  md-toolbar md-toolbar-filler {
    width: 72px; }
  md-toolbar *,
  md-toolbar *:before,
  md-toolbar *:after {
    box-sizing: border-box; }
  md-toolbar.ng-animate {
    transition: none; }
  md-toolbar.md-tall {
    height: 128px;
    min-height: 128px;
    max-height: 128px; }
  md-toolbar.md-medium-tall {
    height: 88px;
    min-height: 88px;
    max-height: 88px; }
    md-toolbar.md-medium-tall .md-toolbar-tools {
      height: 48px;
      min-height: 48px;
      max-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 {
  font-size: 20px;
  letter-spacing: 0.005em;
  box-sizing: border-box;
  font-weight: 400;
  display: flex;
  align-items: center;
  flex-direction: row;
  width: 100%;
  height: 64px;
  max-height: 64px;
  padding: 0 16px;
  margin: 0; }
  .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 {
    display: flex;
    align-items: center; }
  .md-toolbar-tools md-checkbox {
    margin: inherit; }
  .md-toolbar-tools .md-button {
    margin-top: 0;
    margin-bottom: 0; }
    .md-toolbar-tools .md-button, .md-toolbar-tools .md-button.md-icon-button md-icon {
      transition-duration: 0.5s;
      transition-timing-function: cubic-bezier(0.35, 0, 0.25, 1);
      transition-property: background-color, fill, color; }
      .md-toolbar-tools .md-button.ng-animate, .md-toolbar-tools .md-button.md-icon-button md-icon.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-right: auto;
      margin-left: -8px; }
  .md-toolbar-tools > md-menu:last-child {
    margin-right: -8px; }
    [dir=rtl] .md-toolbar-tools > md-menu:last-child {
      margin-right: auto;
      margin-left: -8px; }
    .md-toolbar-tools > md-menu:last-child > .md-button {
      margin-right: 0; }
      [dir=rtl] .md-toolbar-tools > md-menu:last-child > .md-button {
        margin-right: auto;
        margin-left: 0; }
  @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-toast-text {
  padding: 0 6px; }

md-toast {
  position: absolute;
  z-index: 105;
  box-sizing: border-box;
  cursor: default;
  overflow: hidden;
  padding: 8px;
  opacity: 1;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  /* Transition differently when swiping */
  /*
   * When the toast doesn't take up the whole screen,
   * make it rotate when the user swipes it away
   */ }
  md-toast .md-toast-content {
    display: flex;
    direction: row;
    align-items: center;
    max-height: 168px;
    max-width: 100%;
    min-height: 48px;
    padding: 0 18px;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
    border-radius: 2px;
    font-size: 14px;
    overflow: hidden;
    transform: translate3d(0, 0, 0) rotateZ(0deg);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    justify-content: flex-start; }
    md-toast .md-toast-content::before {
      content: '';
      min-height: 48px;
      visibility: hidden;
      display: inline-block; }
    [dir=rtl] md-toast .md-toast-content {
      justify-content: flex-end; }
    md-toast .md-toast-content span {
      flex: 1 1 0%;
      box-sizing: border-box;
      min-width: 0; }
  md-toast.md-capsule {
    border-radius: 24px; }
    md-toast.md-capsule .md-toast-content {
      border-radius: 24px; }
  md-toast.ng-leave-active .md-toast-content {
    transition: all 0.3s cubic-bezier(0.55, 0, 0.55, 0.2); }
  md-toast.md-swipeleft .md-toast-content, md-toast.md-swiperight .md-toast-content, md-toast.md-swipeup .md-toast-content, md-toast.md-swipedown .md-toast-content {
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.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 {
    line-height: 19px;
    margin-left: 24px;
    margin-right: 0;
    cursor: pointer;
    text-transform: uppercase;
    float: right; }
  md-toast .md-button {
    min-width: 0;
    margin-right: 0;
    margin-left: 12px; }
    [dir=rtl] md-toast .md-button {
      margin-right: 12px; }
    [dir=rtl] md-toast .md-button {
      margin-left: 0; }

@media (max-width: 959px) {
  md-toast {
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    border-radius: 0;
    bottom: 0;
    padding: 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); } }

@media (min-width: 960px) {
  md-toast {
    min-width: 304px;
    /*
   * When the toast doesn't take up the whole screen,
   * make it rotate when the user swipes it away
   */ }
    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 {
        right: auto;
        left: 0; }
    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-truncate {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis; }
  .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 {
    bottom: 0;
    box-sizing: border-box;
    left: 0;
    margin: 0;
    overflow-x: hidden;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-overflow-scrolling: touch; }
  .md-virtual-repeat-container .md-virtual-repeat-sizer {
    box-sizing: border-box;
    height: 1px;
    display: block;
    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 {
    right: auto;
    left: auto; }

.md-whiteframe-1dp, .md-whiteframe-z1 {
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 2px 1px -1px rgba(0, 0, 0, 0.12); }

.md-whiteframe-2dp {
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 3px 1px -2px rgba(0, 0, 0, 0.12); }

.md-whiteframe-3dp {
  box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.2), 0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 3px 3px -2px rgba(0, 0, 0, 0.12); }

.md-whiteframe-4dp, .md-whiteframe-z2 {
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12); }

.md-whiteframe-5dp {
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 5px 8px 0px rgba(0, 0, 0, 0.14), 0px 1px 14px 0px rgba(0, 0, 0, 0.12); }

.md-whiteframe-6dp {
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12); }

.md-whiteframe-7dp, .md-whiteframe-z3 {
  box-shadow: 0px 4px 5px -2px rgba(0, 0, 0, 0.2), 0px 7px 10px 1px rgba(0, 0, 0, 0.14), 0px 2px 16px 1px rgba(0, 0, 0, 0.12); }

.md-whiteframe-8dp {
  box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12); }

.md-whiteframe-9dp {
  box-shadow: 0px 5px 6px -3px rgba(0, 0, 0, 0.2), 0px 9px 12px 1px rgba(0, 0, 0, 0.14), 0px 3px 16px 2px rgba(0, 0, 0, 0.12); }

.md-whiteframe-10dp, .md-whiteframe-z4 {
  box-shadow: 0px 6px 6px -3px rgba(0, 0, 0, 0.2), 0px 10px 14px 1px rgba(0, 0, 0, 0.14), 0px 4px 18px 3px rgba(0, 0, 0, 0.12); }

.md-whiteframe-11dp {
  box-shadow: 0px 6px 7px -4px rgba(0, 0, 0, 0.2), 0px 11px 15px 1px rgba(0, 0, 0, 0.14), 0px 4px 20px 3px rgba(0, 0, 0, 0.12); }

.md-whiteframe-12dp {
  box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12); }

.md-whiteframe-13dp, .md-whiteframe-z5 {
  box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 13px 19px 2px rgba(0, 0, 0, 0.14), 0px 5px 24px 4px rgba(0, 0, 0, 0.12); }

.md-whiteframe-14dp {
  box-shadow: 0px 7px 9px -4px rgba(0, 0, 0, 0.2), 0px 14px 21px 2px rgba(0, 0, 0, 0.14), 0px 5px 26px 4px rgba(0, 0, 0, 0.12); }

.md-whiteframe-15dp {
  box-shadow: 0px 8px 9px -5px rgba(0, 0, 0, 0.2), 0px 15px 22px 2px rgba(0, 0, 0, 0.14), 0px 6px 28px 5px rgba(0, 0, 0, 0.12); }

.md-whiteframe-16dp {
  box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12); }

.md-whiteframe-17dp {
  box-shadow: 0px 8px 11px -5px rgba(0, 0, 0, 0.2), 0px 17px 26px 2px rgba(0, 0, 0, 0.14), 0px 6px 32px 5px rgba(0, 0, 0, 0.12); }

.md-whiteframe-18dp {
  box-shadow: 0px 9px 11px -5px rgba(0, 0, 0, 0.2), 0px 18px 28px 2px rgba(0, 0, 0, 0.14), 0px 7px 34px 6px rgba(0, 0, 0, 0.12); }

.md-whiteframe-19dp {
  box-shadow: 0px 9px 12px -6px rgba(0, 0, 0, 0.2), 0px 19px 29px 2px rgba(0, 0, 0, 0.14), 0px 7px 36px 6px rgba(0, 0, 0, 0.12); }

.md-whiteframe-20dp {
  box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 20px 31px 3px rgba(0, 0, 0, 0.14), 0px 8px 38px 7px rgba(0, 0, 0, 0.12); }

.md-whiteframe-21dp {
  box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 21px 33px 3px rgba(0, 0, 0, 0.14), 0px 8px 40px 7px rgba(0, 0, 0, 0.12); }

.md-whiteframe-22dp {
  box-shadow: 0px 10px 14px -6px rgba(0, 0, 0, 0.2), 0px 22px 35px 3px rgba(0, 0, 0, 0.14), 0px 8px 42px 7px rgba(0, 0, 0, 0.12); }

.md-whiteframe-23dp {
  box-shadow: 0px 11px 14px -7px rgba(0, 0, 0, 0.2), 0px 23px 36px 3px rgba(0, 0, 0, 0.14), 0px 9px 44px 8px rgba(0, 0, 0, 0.12); }

.md-whiteframe-24dp {
  box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 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: #ffffff; } }

/*
* Since Layout API uses ng-cloak to hide the dom elements while layouts are adjusted
*
*/
[ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak {
  display: none !important; }

/*
*
*  Responsive attributes
*
*  References:
*  1) https://scotch.io/tutorials/a-visual-guide-to-css3-flexbox-properties#flex
*  2) https://css-tricks.com/almanac/properties/f/flex/
*  3) https://css-tricks.com/snippets/css/a-guide-to-flexbox/
*  4) https://github.com/philipwalton/flexbugs#3-min-height-on-a-flex-container-wont-apply-to-its-flex-items
*  5) http://godban.com.ua/projects/flexgrid
*
*
*/
@-moz-document url-prefix() {
  .layout-fill {
    margin: 0;
    width: 100%;
    min-height: 100%;
    height: 100%; } }

/*
 *  Apply Mixins to create Layout/Flexbox styles
 *
 */
.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; }

.offset-0, .flex-offset-0 {
  margin-left: 0; }
  [dir=rtl] .offset-0, [dir=rtl] .flex-offset-0 {
    margin-left: auto;
    margin-right: 0; }

.offset-5, .flex-offset-5 {
  margin-left: 5%; }
  [dir=rtl] .offset-5, [dir=rtl] .flex-offset-5 {
    margin-left: auto;
    margin-right: 5%; }

.offset-10, .flex-offset-10 {
  margin-left: 10%; }
  [dir=rtl] .offset-10, [dir=rtl] .flex-offset-10 {
    margin-left: auto;
    margin-right: 10%; }

.offset-15, .flex-offset-15 {
  margin-left: 15%; }
  [dir=rtl] .offset-15, [dir=rtl] .flex-offset-15 {
    margin-left: auto;
    margin-right: 15%; }

.offset-20, .flex-offset-20 {
  margin-left: 20%; }
  [dir=rtl] .offset-20, [dir=rtl] .flex-offset-20 {
    margin-left: auto;
    margin-right: 20%; }

.offset-25, .flex-offset-25 {
  margin-left: 25%; }
  [dir=rtl] .offset-25, [dir=rtl] .flex-offset-25 {
    margin-left: auto;
    margin-right: 25%; }

.offset-30, .flex-offset-30 {
  margin-left: 30%; }
  [dir=rtl] .offset-30, [dir=rtl] .flex-offset-30 {
    margin-left: auto;
    margin-right: 30%; }

.offset-35, .flex-offset-35 {
  margin-left: 35%; }
  [dir=rtl] .offset-35, [dir=rtl] .flex-offset-35 {
    margin-left: auto;
    margin-right: 35%; }

.offset-40, .flex-offset-40 {
  margin-left: 40%; }
  [dir=rtl] .offset-40, [dir=rtl] .flex-offset-40 {
    margin-left: auto;
    margin-right: 40%; }

.offset-45, .flex-offset-45 {
  margin-left: 45%; }
  [dir=rtl] .offset-45, [dir=rtl] .flex-offset-45 {
    margin-left: auto;
    margin-right: 45%; }

.offset-50, .flex-offset-50 {
  margin-left: 50%; }
  [dir=rtl] .offset-50, [dir=rtl] .flex-offset-50 {
    margin-left: auto;
    margin-right: 50%; }

.offset-55, .flex-offset-55 {
  margin-left: 55%; }
  [dir=rtl] .offset-55, [dir=rtl] .flex-offset-55 {
    margin-left: auto;
    margin-right: 55%; }

.offset-60, .flex-offset-60 {
  margin-left: 60%; }
  [dir=rtl] .offset-60, [dir=rtl] .flex-offset-60 {
    margin-left: auto;
    margin-right: 60%; }

.offset-65, .flex-offset-65 {
  margin-left: 65%; }
  [dir=rtl] .offset-65, [dir=rtl] .flex-offset-65 {
    margin-left: auto;
    margin-right: 65%; }

.offset-70, .flex-offset-70 {
  margin-left: 70%; }
  [dir=rtl] .offset-70, [dir=rtl] .flex-offset-70 {
    margin-left: auto;
    margin-right: 70%; }

.offset-75, .flex-offset-75 {
  margin-left: 75%; }
  [dir=rtl] .offset-75, [dir=rtl] .flex-offset-75 {
    margin-left: auto;
    margin-right: 75%; }

.offset-80, .flex-offset-80 {
  margin-left: 80%; }
  [dir=rtl] .offset-80, [dir=rtl] .flex-offset-80 {
    margin-left: auto;
    margin-right: 80%; }

.offset-85, .flex-offset-85 {
  margin-left: 85%; }
  [dir=rtl] .offset-85, [dir=rtl] .flex-offset-85 {
    margin-left: auto;
    margin-right: 85%; }

.offset-90, .flex-offset-90 {
  margin-left: 90%; }
  [dir=rtl] .offset-90, [dir=rtl] .flex-offset-90 {
    margin-left: auto;
    margin-right: 90%; }

.offset-95, .flex-offset-95 {
  margin-left: 95%; }
  [dir=rtl] .offset-95, [dir=rtl] .flex-offset-95 {
    margin-left: auto;
    margin-right: 95%; }

.offset-33, .flex-offset-33 {
  margin-left: calc(100% / 3); }

.offset-66, .flex-offset-66 {
  margin-left: calc(200% / 3); }
  [dir=rtl] .offset-66, [dir=rtl] .flex-offset-66 {
    margin-left: auto;
    margin-right: calc(200% / 3); }

.layout-align,
.layout-align-start-stretch {
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch; }

.layout-align-start,
.layout-align-start-start,
.layout-align-start-center,
.layout-align-start-end,
.layout-align-start-stretch {
  justify-content: flex-start; }

.layout-align-center,
.layout-align-center-start,
.layout-align-center-center,
.layout-align-center-end,
.layout-align-center-stretch {
  justify-content: center; }

.layout-align-end,
.layout-align-end-start,
.layout-align-end-center,
.layout-align-end-end,
.layout-align-end-stretch {
  justify-content: flex-end; }

.layout-align-space-around,
.layout-align-space-around-center,
.layout-align-space-around-start,
.layout-align-space-around-end,
.layout-align-space-around-stretch {
  justify-content: space-around; }

.layout-align-space-between,
.layout-align-space-between-center,
.layout-align-space-between-start,
.layout-align-space-between-end,
.layout-align-space-between-stretch {
  justify-content: space-between; }

.layout-align-start-start,
.layout-align-center-start,
.layout-align-end-start,
.layout-align-space-between-start,
.layout-align-space-around-start {
  align-items: flex-start;
  align-content: flex-start; }

.layout-align-start-center,
.layout-align-center-center,
.layout-align-end-center,
.layout-align-space-between-center,
.layout-align-space-around-center {
  align-items: center;
  align-content: center;
  max-width: 100%; }

.layout-align-start-center > *,
.layout-align-center-center > *,
.layout-align-end-center > *,
.layout-align-space-between-center > *,
.layout-align-space-around-center > * {
  max-width: 100%;
  box-sizing: border-box; }

.layout-align-start-end,
.layout-align-center-end,
.layout-align-end-end,
.layout-align-space-between-end,
.layout-align-space-around-end {
  align-items: flex-end;
  align-content: flex-end; }

.layout-align-start-stretch,
.layout-align-center-stretch,
.layout-align-end-stretch,
.layout-align-space-between-stretch,
.layout-align-space-around-stretch {
  align-items: stretch;
  align-content: stretch; }

.flex {
  flex: 1;
  box-sizing: border-box; }

.flex-grow {
  flex: 1 1 100%;
  box-sizing: border-box; }

.flex-initial {
  flex: 0 1 auto;
  box-sizing: border-box; }

.flex-auto {
  flex: 1 1 auto;
  box-sizing: border-box; }

.flex-none {
  flex: 0 0 auto;
  box-sizing: border-box; }

.flex-noshrink {
  flex: 1 0 auto;
  box-sizing: border-box; }

.flex-nogrow {
  flex: 0 1 auto;
  box-sizing: border-box; }

.flex-0 {
  flex: 1 1 100%;
  max-width: 0%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-row > .flex-0 {
  flex: 1 1 100%;
  max-width: 0%;
  max-height: 100%;
  box-sizing: border-box;
  min-width: 0; }

.layout-column > .flex-0 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 0%;
  box-sizing: border-box; }

.layout-row > .flex-33, .layout-row > .flex-33 {
  flex: 1 1 33.33%;
  max-width: 33.33%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-row > .flex-66, .layout-row > .flex-66 {
  flex: 1 1 66.66%;
  max-width: 66.66%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-column > .flex-33, .layout-column > .flex-33 {
  flex: 1 1 33.33%;
  max-width: 100%;
  max-height: 33.33%;
  box-sizing: border-box; }

.layout-column > .flex-66, .layout-column > .flex-66 {
  flex: 1 1 66.66%;
  max-width: 100%;
  max-height: 66.66%;
  box-sizing: border-box; }

.layout-row > .flex-0 {
  flex: 1 1 100%;
  max-width: 0%;
  max-height: 100%;
  box-sizing: border-box;
  min-width: 0; }

.layout-column > .flex-0 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 0%;
  box-sizing: border-box;
  min-height: 0; }

.flex-5 {
  flex: 1 1 100%;
  max-width: 5%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-row > .flex-5 {
  flex: 1 1 100%;
  max-width: 5%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-column > .flex-5 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 5%;
  box-sizing: border-box; }

.layout-row > .flex-33, .layout-row > .flex-33 {
  flex: 1 1 33.33%;
  max-width: 33.33%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-row > .flex-66, .layout-row > .flex-66 {
  flex: 1 1 66.66%;
  max-width: 66.66%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-column > .flex-33, .layout-column > .flex-33 {
  flex: 1 1 33.33%;
  max-width: 100%;
  max-height: 33.33%;
  box-sizing: border-box; }

.layout-column > .flex-66, .layout-column > .flex-66 {
  flex: 1 1 66.66%;
  max-width: 100%;
  max-height: 66.66%;
  box-sizing: border-box; }

.layout-row > .flex-5 {
  flex: 1 1 100%;
  max-width: 5%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-column > .flex-5 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 5%;
  box-sizing: border-box; }

.flex-10 {
  flex: 1 1 100%;
  max-width: 10%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-row > .flex-10 {
  flex: 1 1 100%;
  max-width: 10%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-column > .flex-10 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 10%;
  box-sizing: border-box; }

.layout-row > .flex-33, .layout-row > .flex-33 {
  flex: 1 1 33.33%;
  max-width: 33.33%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-row > .flex-66, .layout-row > .flex-66 {
  flex: 1 1 66.66%;
  max-width: 66.66%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-column > .flex-33, .layout-column > .flex-33 {
  flex: 1 1 33.33%;
  max-width: 100%;
  max-height: 33.33%;
  box-sizing: border-box; }

.layout-column > .flex-66, .layout-column > .flex-66 {
  flex: 1 1 66.66%;
  max-width: 100%;
  max-height: 66.66%;
  box-sizing: border-box; }

.layout-row > .flex-10 {
  flex: 1 1 100%;
  max-width: 10%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-column > .flex-10 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 10%;
  box-sizing: border-box; }

.flex-15 {
  flex: 1 1 100%;
  max-width: 15%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-row > .flex-15 {
  flex: 1 1 100%;
  max-width: 15%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-column > .flex-15 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 15%;
  box-sizing: border-box; }

.layout-row > .flex-33, .layout-row > .flex-33 {
  flex: 1 1 33.33%;
  max-width: 33.33%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-row > .flex-66, .layout-row > .flex-66 {
  flex: 1 1 66.66%;
  max-width: 66.66%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-column > .flex-33, .layout-column > .flex-33 {
  flex: 1 1 33.33%;
  max-width: 100%;
  max-height: 33.33%;
  box-sizing: border-box; }

.layout-column > .flex-66, .layout-column > .flex-66 {
  flex: 1 1 66.66%;
  max-width: 100%;
  max-height: 66.66%;
  box-sizing: border-box; }

.layout-row > .flex-15 {
  flex: 1 1 100%;
  max-width: 15%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-column > .flex-15 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 15%;
  box-sizing: border-box; }

.flex-20 {
  flex: 1 1 100%;
  max-width: 20%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-row > .flex-20 {
  flex: 1 1 100%;
  max-width: 20%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-column > .flex-20 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 20%;
  box-sizing: border-box; }

.layout-row > .flex-33, .layout-row > .flex-33 {
  flex: 1 1 33.33%;
  max-width: 33.33%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-row > .flex-66, .layout-row > .flex-66 {
  flex: 1 1 66.66%;
  max-width: 66.66%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-column > .flex-33, .layout-column > .flex-33 {
  flex: 1 1 33.33%;
  max-width: 100%;
  max-height: 33.33%;
  box-sizing: border-box; }

.layout-column > .flex-66, .layout-column > .flex-66 {
  flex: 1 1 66.66%;
  max-width: 100%;
  max-height: 66.66%;
  box-sizing: border-box; }

.layout-row > .flex-20 {
  flex: 1 1 100%;
  max-width: 20%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-column > .flex-20 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 20%;
  box-sizing: border-box; }

.flex-25 {
  flex: 1 1 100%;
  max-width: 25%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-row > .flex-25 {
  flex: 1 1 100%;
  max-width: 25%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-column > .flex-25 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 25%;
  box-sizing: border-box; }

.layout-row > .flex-33, .layout-row > .flex-33 {
  flex: 1 1 33.33%;
  max-width: 33.33%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-row > .flex-66, .layout-row > .flex-66 {
  flex: 1 1 66.66%;
  max-width: 66.66%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-column > .flex-33, .layout-column > .flex-33 {
  flex: 1 1 33.33%;
  max-width: 100%;
  max-height: 33.33%;
  box-sizing: border-box; }

.layout-column > .flex-66, .layout-column > .flex-66 {
  flex: 1 1 66.66%;
  max-width: 100%;
  max-height: 66.66%;
  box-sizing: border-box; }

.layout-row > .flex-25 {
  flex: 1 1 100%;
  max-width: 25%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-column > .flex-25 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 25%;
  box-sizing: border-box; }

.flex-30 {
  flex: 1 1 100%;
  max-width: 30%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-row > .flex-30 {
  flex: 1 1 100%;
  max-width: 30%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-column > .flex-30 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 30%;
  box-sizing: border-box; }

.layout-row > .flex-33, .layout-row > .flex-33 {
  flex: 1 1 33.33%;
  max-width: 33.33%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-row > .flex-66, .layout-row > .flex-66 {
  flex: 1 1 66.66%;
  max-width: 66.66%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-column > .flex-33, .layout-column > .flex-33 {
  flex: 1 1 33.33%;
  max-width: 100%;
  max-height: 33.33%;
  box-sizing: border-box; }

.layout-column > .flex-66, .layout-column > .flex-66 {
  flex: 1 1 66.66%;
  max-width: 100%;
  max-height: 66.66%;
  box-sizing: border-box; }

.layout-row > .flex-30 {
  flex: 1 1 100%;
  max-width: 30%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-column > .flex-30 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 30%;
  box-sizing: border-box; }

.flex-35 {
  flex: 1 1 100%;
  max-width: 35%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-row > .flex-35 {
  flex: 1 1 100%;
  max-width: 35%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-column > .flex-35 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 35%;
  box-sizing: border-box; }

.layout-row > .flex-33, .layout-row > .flex-33 {
  flex: 1 1 33.33%;
  max-width: 33.33%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-row > .flex-66, .layout-row > .flex-66 {
  flex: 1 1 66.66%;
  max-width: 66.66%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-column > .flex-33, .layout-column > .flex-33 {
  flex: 1 1 33.33%;
  max-width: 100%;
  max-height: 33.33%;
  box-sizing: border-box; }

.layout-column > .flex-66, .layout-column > .flex-66 {
  flex: 1 1 66.66%;
  max-width: 100%;
  max-height: 66.66%;
  box-sizing: border-box; }

.layout-row > .flex-35 {
  flex: 1 1 100%;
  max-width: 35%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-column > .flex-35 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 35%;
  box-sizing: border-box; }

.flex-40 {
  flex: 1 1 100%;
  max-width: 40%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-row > .flex-40 {
  flex: 1 1 100%;
  max-width: 40%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-column > .flex-40 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 40%;
  box-sizing: border-box; }

.layout-row > .flex-33, .layout-row > .flex-33 {
  flex: 1 1 33.33%;
  max-width: 33.33%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-row > .flex-66, .layout-row > .flex-66 {
  flex: 1 1 66.66%;
  max-width: 66.66%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-column > .flex-33, .layout-column > .flex-33 {
  flex: 1 1 33.33%;
  max-width: 100%;
  max-height: 33.33%;
  box-sizing: border-box; }

.layout-column > .flex-66, .layout-column > .flex-66 {
  flex: 1 1 66.66%;
  max-width: 100%;
  max-height: 66.66%;
  box-sizing: border-box; }

.layout-row > .flex-40 {
  flex: 1 1 100%;
  max-width: 40%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-column > .flex-40 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 40%;
  box-sizing: border-box; }

.flex-45 {
  flex: 1 1 100%;
  max-width: 45%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-row > .flex-45 {
  flex: 1 1 100%;
  max-width: 45%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-column > .flex-45 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 45%;
  box-sizing: border-box; }

.layout-row > .flex-33, .layout-row > .flex-33 {
  flex: 1 1 33.33%;
  max-width: 33.33%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-row > .flex-66, .layout-row > .flex-66 {
  flex: 1 1 66.66%;
  max-width: 66.66%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-column > .flex-33, .layout-column > .flex-33 {
  flex: 1 1 33.33%;
  max-width: 100%;
  max-height: 33.33%;
  box-sizing: border-box; }

.layout-column > .flex-66, .layout-column > .flex-66 {
  flex: 1 1 66.66%;
  max-width: 100%;
  max-height: 66.66%;
  box-sizing: border-box; }

.layout-row > .flex-45 {
  flex: 1 1 100%;
  max-width: 45%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-column > .flex-45 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 45%;
  box-sizing: border-box; }

.flex-50 {
  flex: 1 1 100%;
  max-width: 50%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-row > .flex-50 {
  flex: 1 1 100%;
  max-width: 50%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-column > .flex-50 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 50%;
  box-sizing: border-box; }

.layout-row > .flex-33, .layout-row > .flex-33 {
  flex: 1 1 33.33%;
  max-width: 33.33%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-row > .flex-66, .layout-row > .flex-66 {
  flex: 1 1 66.66%;
  max-width: 66.66%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-column > .flex-33, .layout-column > .flex-33 {
  flex: 1 1 33.33%;
  max-width: 100%;
  max-height: 33.33%;
  box-sizing: border-box; }

.layout-column > .flex-66, .layout-column > .flex-66 {
  flex: 1 1 66.66%;
  max-width: 100%;
  max-height: 66.66%;
  box-sizing: border-box; }

.layout-row > .flex-50 {
  flex: 1 1 100%;
  max-width: 50%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-column > .flex-50 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 50%;
  box-sizing: border-box; }

.flex-55 {
  flex: 1 1 100%;
  max-width: 55%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-row > .flex-55 {
  flex: 1 1 100%;
  max-width: 55%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-column > .flex-55 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 55%;
  box-sizing: border-box; }

.layout-row > .flex-33, .layout-row > .flex-33 {
  flex: 1 1 33.33%;
  max-width: 33.33%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-row > .flex-66, .layout-row > .flex-66 {
  flex: 1 1 66.66%;
  max-width: 66.66%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-column > .flex-33, .layout-column > .flex-33 {
  flex: 1 1 33.33%;
  max-width: 100%;
  max-height: 33.33%;
  box-sizing: border-box; }

.layout-column > .flex-66, .layout-column > .flex-66 {
  flex: 1 1 66.66%;
  max-width: 100%;
  max-height: 66.66%;
  box-sizing: border-box; }

.layout-row > .flex-55 {
  flex: 1 1 100%;
  max-width: 55%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-column > .flex-55 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 55%;
  box-sizing: border-box; }

.flex-60 {
  flex: 1 1 100%;
  max-width: 60%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-row > .flex-60 {
  flex: 1 1 100%;
  max-width: 60%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-column > .flex-60 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 60%;
  box-sizing: border-box; }

.layout-row > .flex-33, .layout-row > .flex-33 {
  flex: 1 1 33.33%;
  max-width: 33.33%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-row > .flex-66, .layout-row > .flex-66 {
  flex: 1 1 66.66%;
  max-width: 66.66%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-column > .flex-33, .layout-column > .flex-33 {
  flex: 1 1 33.33%;
  max-width: 100%;
  max-height: 33.33%;
  box-sizing: border-box; }

.layout-column > .flex-66, .layout-column > .flex-66 {
  flex: 1 1 66.66%;
  max-width: 100%;
  max-height: 66.66%;
  box-sizing: border-box; }

.layout-row > .flex-60 {
  flex: 1 1 100%;
  max-width: 60%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-column > .flex-60 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 60%;
  box-sizing: border-box; }

.flex-65 {
  flex: 1 1 100%;
  max-width: 65%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-row > .flex-65 {
  flex: 1 1 100%;
  max-width: 65%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-column > .flex-65 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 65%;
  box-sizing: border-box; }

.layout-row > .flex-33, .layout-row > .flex-33 {
  flex: 1 1 33.33%;
  max-width: 33.33%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-row > .flex-66, .layout-row > .flex-66 {
  flex: 1 1 66.66%;
  max-width: 66.66%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-column > .flex-33, .layout-column > .flex-33 {
  flex: 1 1 33.33%;
  max-width: 100%;
  max-height: 33.33%;
  box-sizing: border-box; }

.layout-column > .flex-66, .layout-column > .flex-66 {
  flex: 1 1 66.66%;
  max-width: 100%;
  max-height: 66.66%;
  box-sizing: border-box; }

.layout-row > .flex-65 {
  flex: 1 1 100%;
  max-width: 65%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-column > .flex-65 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 65%;
  box-sizing: border-box; }

.flex-70 {
  flex: 1 1 100%;
  max-width: 70%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-row > .flex-70 {
  flex: 1 1 100%;
  max-width: 70%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-column > .flex-70 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 70%;
  box-sizing: border-box; }

.layout-row > .flex-33, .layout-row > .flex-33 {
  flex: 1 1 33.33%;
  max-width: 33.33%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-row > .flex-66, .layout-row > .flex-66 {
  flex: 1 1 66.66%;
  max-width: 66.66%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-column > .flex-33, .layout-column > .flex-33 {
  flex: 1 1 33.33%;
  max-width: 100%;
  max-height: 33.33%;
  box-sizing: border-box; }

.layout-column > .flex-66, .layout-column > .flex-66 {
  flex: 1 1 66.66%;
  max-width: 100%;
  max-height: 66.66%;
  box-sizing: border-box; }

.layout-row > .flex-70 {
  flex: 1 1 100%;
  max-width: 70%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-column > .flex-70 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 70%;
  box-sizing: border-box; }

.flex-75 {
  flex: 1 1 100%;
  max-width: 75%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-row > .flex-75 {
  flex: 1 1 100%;
  max-width: 75%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-column > .flex-75 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 75%;
  box-sizing: border-box; }

.layout-row > .flex-33, .layout-row > .flex-33 {
  flex: 1 1 33.33%;
  max-width: 33.33%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-row > .flex-66, .layout-row > .flex-66 {
  flex: 1 1 66.66%;
  max-width: 66.66%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-column > .flex-33, .layout-column > .flex-33 {
  flex: 1 1 33.33%;
  max-width: 100%;
  max-height: 33.33%;
  box-sizing: border-box; }

.layout-column > .flex-66, .layout-column > .flex-66 {
  flex: 1 1 66.66%;
  max-width: 100%;
  max-height: 66.66%;
  box-sizing: border-box; }

.layout-row > .flex-75 {
  flex: 1 1 100%;
  max-width: 75%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-column > .flex-75 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 75%;
  box-sizing: border-box; }

.flex-80 {
  flex: 1 1 100%;
  max-width: 80%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-row > .flex-80 {
  flex: 1 1 100%;
  max-width: 80%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-column > .flex-80 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 80%;
  box-sizing: border-box; }

.layout-row > .flex-33, .layout-row > .flex-33 {
  flex: 1 1 33.33%;
  max-width: 33.33%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-row > .flex-66, .layout-row > .flex-66 {
  flex: 1 1 66.66%;
  max-width: 66.66%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-column > .flex-33, .layout-column > .flex-33 {
  flex: 1 1 33.33%;
  max-width: 100%;
  max-height: 33.33%;
  box-sizing: border-box; }

.layout-column > .flex-66, .layout-column > .flex-66 {
  flex: 1 1 66.66%;
  max-width: 100%;
  max-height: 66.66%;
  box-sizing: border-box; }

.layout-row > .flex-80 {
  flex: 1 1 100%;
  max-width: 80%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-column > .flex-80 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 80%;
  box-sizing: border-box; }

.flex-85 {
  flex: 1 1 100%;
  max-width: 85%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-row > .flex-85 {
  flex: 1 1 100%;
  max-width: 85%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-column > .flex-85 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 85%;
  box-sizing: border-box; }

.layout-row > .flex-33, .layout-row > .flex-33 {
  flex: 1 1 33.33%;
  max-width: 33.33%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-row > .flex-66, .layout-row > .flex-66 {
  flex: 1 1 66.66%;
  max-width: 66.66%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-column > .flex-33, .layout-column > .flex-33 {
  flex: 1 1 33.33%;
  max-width: 100%;
  max-height: 33.33%;
  box-sizing: border-box; }

.layout-column > .flex-66, .layout-column > .flex-66 {
  flex: 1 1 66.66%;
  max-width: 100%;
  max-height: 66.66%;
  box-sizing: border-box; }

.layout-row > .flex-85 {
  flex: 1 1 100%;
  max-width: 85%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-column > .flex-85 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 85%;
  box-sizing: border-box; }

.flex-90 {
  flex: 1 1 100%;
  max-width: 90%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-row > .flex-90 {
  flex: 1 1 100%;
  max-width: 90%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-column > .flex-90 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 90%;
  box-sizing: border-box; }

.layout-row > .flex-33, .layout-row > .flex-33 {
  flex: 1 1 33.33%;
  max-width: 33.33%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-row > .flex-66, .layout-row > .flex-66 {
  flex: 1 1 66.66%;
  max-width: 66.66%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-column > .flex-33, .layout-column > .flex-33 {
  flex: 1 1 33.33%;
  max-width: 100%;
  max-height: 33.33%;
  box-sizing: border-box; }

.layout-column > .flex-66, .layout-column > .flex-66 {
  flex: 1 1 66.66%;
  max-width: 100%;
  max-height: 66.66%;
  box-sizing: border-box; }

.layout-row > .flex-90 {
  flex: 1 1 100%;
  max-width: 90%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-column > .flex-90 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 90%;
  box-sizing: border-box; }

.flex-95 {
  flex: 1 1 100%;
  max-width: 95%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-row > .flex-95 {
  flex: 1 1 100%;
  max-width: 95%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-column > .flex-95 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 95%;
  box-sizing: border-box; }

.layout-row > .flex-33, .layout-row > .flex-33 {
  flex: 1 1 33.33%;
  max-width: 33.33%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-row > .flex-66, .layout-row > .flex-66 {
  flex: 1 1 66.66%;
  max-width: 66.66%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-column > .flex-33, .layout-column > .flex-33 {
  flex: 1 1 33.33%;
  max-width: 100%;
  max-height: 33.33%;
  box-sizing: border-box; }

.layout-column > .flex-66, .layout-column > .flex-66 {
  flex: 1 1 66.66%;
  max-width: 100%;
  max-height: 66.66%;
  box-sizing: border-box; }

.layout-row > .flex-95 {
  flex: 1 1 100%;
  max-width: 95%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-column > .flex-95 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 95%;
  box-sizing: border-box; }

.flex-100 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-row > .flex-100 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-column > .flex-100 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-row > .flex-33, .layout-row > .flex-33 {
  flex: 1 1 33.33%;
  max-width: 33.33%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-row > .flex-66, .layout-row > .flex-66 {
  flex: 1 1 66.66%;
  max-width: 66.66%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-column > .flex-33, .layout-column > .flex-33 {
  flex: 1 1 33.33%;
  max-width: 100%;
  max-height: 33.33%;
  box-sizing: border-box; }

.layout-column > .flex-66, .layout-column > .flex-66 {
  flex: 1 1 66.66%;
  max-width: 100%;
  max-height: 66.66%;
  box-sizing: border-box; }

.layout-row > .flex-100 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-column > .flex-100 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-row > .flex-33, .layout-row > .flex-33 {
  flex: 1 1 100%;
  max-width: 33.33%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-row > .flex-66, .layout-row > .flex-66 {
  flex: 1 1 100%;
  max-width: 66.66%;
  max-height: 100%;
  box-sizing: border-box; }

.layout-row > .flex {
  min-width: 0; }

.layout-column > .flex-33, .layout-column > .flex-33 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 33.33%;
  box-sizing: border-box; }

.layout-column > .flex-66, .layout-column > .flex-66 {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 66.66%;
  box-sizing: border-box; }

.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-md,
.layout-padding > *,
.layout-padding-gt-sm > *,
.layout-padding-md > *,
.layout-padding > .flex,
.layout-padding > .flex-gt-sm,
.layout-padding > .flex-md {
  padding: 8px; }

.layout-padding-gt-md > *,
.layout-padding-lg > *,
.layout-padding-gt-lg > *,
.layout-padding > .flex-gt-md,
.layout-padding > .flex-lg,
.layout-padding > .flex-lg,
.layout-padding > .flex-gt-lg {
  padding: 16px; }

.layout-margin-sm > *,
.layout-margin > .flex-sm {
  margin: 4px; }

.layout-margin,
.layout-margin-gt-sm,
.layout-margin-md,
.layout-margin > *,
.layout-margin-gt-sm > *,
.layout-margin-md > *,
.layout-margin > .flex,
.layout-margin > .flex-gt-sm,
.layout-margin > .flex-md {
  margin: 8px; }

.layout-margin-gt-md > *,
.layout-margin-lg > *,
.layout-margin-gt-lg > *,
.layout-margin > .flex-gt-md,
.layout-margin > .flex-lg,
.layout-margin > .flex-gt-lg {
  margin: 16px; }

.layout-wrap {
  flex-wrap: wrap; }

.layout-nowrap {
  flex-wrap: nowrap; }

.layout-fill {
  margin: 0;
  width: 100%;
  min-height: 100%;
  height: 100%; }

/**
 * `hide-gt-sm show-gt-lg` should hide from 600px to 1200px
 * `show-md hide-gt-sm` should show from 0px to 960px and hide at >960px
 * `hide-gt-md show-gt-sm` should show everywhere (show overrides hide)`
 *
 *  hide means hide everywhere
 *  Sizes:
 *         $layout-breakpoint-xs:     600px !default;
 *         $layout-breakpoint-sm:     960px !default;
 *         $layout-breakpoint-md:     1280px !default;
 *         $layout-breakpoint-lg:     1920px !default;
 */
@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; }
  .offset-xs-0, .flex-offset-xs-0 {
    margin-left: 0; }
    [dir=rtl] .offset-xs-0, [dir=rtl] .flex-offset-xs-0 {
      margin-left: auto;
      margin-right: 0; }
  .offset-xs-5, .flex-offset-xs-5 {
    margin-left: 5%; }
    [dir=rtl] .offset-xs-5, [dir=rtl] .flex-offset-xs-5 {
      margin-left: auto;
      margin-right: 5%; }
  .offset-xs-10, .flex-offset-xs-10 {
    margin-left: 10%; }
    [dir=rtl] .offset-xs-10, [dir=rtl] .flex-offset-xs-10 {
      margin-left: auto;
      margin-right: 10%; }
  .offset-xs-15, .flex-offset-xs-15 {
    margin-left: 15%; }
    [dir=rtl] .offset-xs-15, [dir=rtl] .flex-offset-xs-15 {
      margin-left: auto;
      margin-right: 15%; }
  .offset-xs-20, .flex-offset-xs-20 {
    margin-left: 20%; }
    [dir=rtl] .offset-xs-20, [dir=rtl] .flex-offset-xs-20 {
      margin-left: auto;
      margin-right: 20%; }
  .offset-xs-25, .flex-offset-xs-25 {
    margin-left: 25%; }
    [dir=rtl] .offset-xs-25, [dir=rtl] .flex-offset-xs-25 {
      margin-left: auto;
      margin-right: 25%; }
  .offset-xs-30, .flex-offset-xs-30 {
    margin-left: 30%; }
    [dir=rtl] .offset-xs-30, [dir=rtl] .flex-offset-xs-30 {
      margin-left: auto;
      margin-right: 30%; }
  .offset-xs-35, .flex-offset-xs-35 {
    margin-left: 35%; }
    [dir=rtl] .offset-xs-35, [dir=rtl] .flex-offset-xs-35 {
      margin-left: auto;
      margin-right: 35%; }
  .offset-xs-40, .flex-offset-xs-40 {
    margin-left: 40%; }
    [dir=rtl] .offset-xs-40, [dir=rtl] .flex-offset-xs-40 {
      margin-left: auto;
      margin-right: 40%; }
  .offset-xs-45, .flex-offset-xs-45 {
    margin-left: 45%; }
    [dir=rtl] .offset-xs-45, [dir=rtl] .flex-offset-xs-45 {
      margin-left: auto;
      margin-right: 45%; }
  .offset-xs-50, .flex-offset-xs-50 {
    margin-left: 50%; }
    [dir=rtl] .offset-xs-50, [dir=rtl] .flex-offset-xs-50 {
      margin-left: auto;
      margin-right: 50%; }
  .offset-xs-55, .flex-offset-xs-55 {
    margin-left: 55%; }
    [dir=rtl] .offset-xs-55, [dir=rtl] .flex-offset-xs-55 {
      margin-left: auto;
      margin-right: 55%; }
  .offset-xs-60, .flex-offset-xs-60 {
    margin-left: 60%; }
    [dir=rtl] .offset-xs-60, [dir=rtl] .flex-offset-xs-60 {
      margin-left: auto;
      margin-right: 60%; }
  .offset-xs-65, .flex-offset-xs-65 {
    margin-left: 65%; }
    [dir=rtl] .offset-xs-65, [dir=rtl] .flex-offset-xs-65 {
      margin-left: auto;
      margin-right: 65%; }
  .offset-xs-70, .flex-offset-xs-70 {
    margin-left: 70%; }
    [dir=rtl] .offset-xs-70, [dir=rtl] .flex-offset-xs-70 {
      margin-left: auto;
      margin-right: 70%; }
  .offset-xs-75, .flex-offset-xs-75 {
    margin-left: 75%; }
    [dir=rtl] .offset-xs-75, [dir=rtl] .flex-offset-xs-75 {
      margin-left: auto;
      margin-right: 75%; }
  .offset-xs-80, .flex-offset-xs-80 {
    margin-left: 80%; }
    [dir=rtl] .offset-xs-80, [dir=rtl] .flex-offset-xs-80 {
      margin-left: auto;
      margin-right: 80%; }
  .offset-xs-85, .flex-offset-xs-85 {
    margin-left: 85%; }
    [dir=rtl] .offset-xs-85, [dir=rtl] .flex-offset-xs-85 {
      margin-left: auto;
      margin-right: 85%; }
  .offset-xs-90, .flex-offset-xs-90 {
    margin-left: 90%; }
    [dir=rtl] .offset-xs-90, [dir=rtl] .flex-offset-xs-90 {
      margin-left: auto;
      margin-right: 90%; }
  .offset-xs-95, .flex-offset-xs-95 {
    margin-left: 95%; }
    [dir=rtl] .offset-xs-95, [dir=rtl] .flex-offset-xs-95 {
      margin-left: auto;
      margin-right: 95%; }
  .offset-xs-33, .flex-offset-xs-33 {
    margin-left: calc(100% / 3); }
  .offset-xs-66, .flex-offset-xs-66 {
    margin-left: calc(200% / 3); }
    [dir=rtl] .offset-xs-66, [dir=rtl] .flex-offset-xs-66 {
      margin-left: auto;
      margin-right: calc(200% / 3); }
  .layout-align-xs,
  .layout-align-xs-start-stretch {
    justify-content: flex-start;
    align-content: stretch;
    align-items: stretch; }
  .layout-align-xs-start,
  .layout-align-xs-start-start,
  .layout-align-xs-start-center,
  .layout-align-xs-start-end,
  .layout-align-xs-start-stretch {
    justify-content: flex-start; }
  .layout-align-xs-center,
  .layout-align-xs-center-start,
  .layout-align-xs-center-center,
  .layout-align-xs-center-end,
  .layout-align-xs-center-stretch {
    justify-content: center; }
  .layout-align-xs-end,
  .layout-align-xs-end-start,
  .layout-align-xs-end-center,
  .layout-align-xs-end-end,
  .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-start,
  .layout-align-xs-space-around-end,
  .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-start,
  .layout-align-xs-space-between-end,
  .layout-align-xs-space-between-stretch {
    justify-content: space-between; }
  .layout-align-xs-start-start,
  .layout-align-xs-center-start,
  .layout-align-xs-end-start,
  .layout-align-xs-space-between-start,
  .layout-align-xs-space-around-start {
    align-items: flex-start;
    align-content: flex-start; }
  .layout-align-xs-start-center,
  .layout-align-xs-center-center,
  .layout-align-xs-end-center,
  .layout-align-xs-space-between-center,
  .layout-align-xs-space-around-center {
    align-items: center;
    align-content: center;
    max-width: 100%; }
  .layout-align-xs-start-center > *,
  .layout-align-xs-center-center > *,
  .layout-align-xs-end-center > *,
  .layout-align-xs-space-between-center > *,
  .layout-align-xs-space-around-center > * {
    max-width: 100%;
    box-sizing: border-box; }
  .layout-align-xs-start-end,
  .layout-align-xs-center-end,
  .layout-align-xs-end-end,
  .layout-align-xs-space-between-end,
  .layout-align-xs-space-around-end {
    align-items: flex-end;
    align-content: flex-end; }
  .layout-align-xs-start-stretch,
  .layout-align-xs-center-stretch,
  .layout-align-xs-end-stretch,
  .layout-align-xs-space-between-stretch,
  .layout-align-xs-space-around-stretch {
    align-items: stretch;
    align-content: stretch; }
  .flex-xs {
    flex: 1;
    box-sizing: border-box; }
  .flex-xs-grow {
    flex: 1 1 100%;
    box-sizing: border-box; }
  .flex-xs-initial {
    flex: 0 1 auto;
    box-sizing: border-box; }
  .flex-xs-auto {
    flex: 1 1 auto;
    box-sizing: border-box; }
  .flex-xs-none {
    flex: 0 0 auto;
    box-sizing: border-box; }
  .flex-xs-noshrink {
    flex: 1 0 auto;
    box-sizing: border-box; }
  .flex-xs-nogrow {
    flex: 0 1 auto;
    box-sizing: border-box; }
  .flex-xs-0 {
    flex: 1 1 100%;
    max-width: 0%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xs-0 {
    flex: 1 1 100%;
    max-width: 0%;
    max-height: 100%;
    box-sizing: border-box;
    min-width: 0; }
  .layout-column > .flex-xs-0 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 0%;
    box-sizing: border-box; }
  .layout-row > .flex-xs-33, .layout-row > .flex-xs-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xs-66, .layout-row > .flex-xs-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xs-33, .layout-column > .flex-xs-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-xs-66, .layout-column > .flex-xs-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-xs-row > .flex-xs-0 {
    flex: 1 1 100%;
    max-width: 0%;
    max-height: 100%;
    box-sizing: border-box;
    min-width: 0; }
  .layout-xs-column > .flex-xs-0 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 0%;
    box-sizing: border-box;
    min-height: 0; }
  .flex-xs-5 {
    flex: 1 1 100%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xs-5 {
    flex: 1 1 100%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xs-5 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 5%;
    box-sizing: border-box; }
  .layout-row > .flex-xs-33, .layout-row > .flex-xs-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xs-66, .layout-row > .flex-xs-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xs-33, .layout-column > .flex-xs-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-xs-66, .layout-column > .flex-xs-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-xs-row > .flex-xs-5 {
    flex: 1 1 100%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-xs-column > .flex-xs-5 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 5%;
    box-sizing: border-box; }
  .flex-xs-10 {
    flex: 1 1 100%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xs-10 {
    flex: 1 1 100%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xs-10 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 10%;
    box-sizing: border-box; }
  .layout-row > .flex-xs-33, .layout-row > .flex-xs-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xs-66, .layout-row > .flex-xs-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xs-33, .layout-column > .flex-xs-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-xs-66, .layout-column > .flex-xs-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-xs-row > .flex-xs-10 {
    flex: 1 1 100%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-xs-column > .flex-xs-10 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 10%;
    box-sizing: border-box; }
  .flex-xs-15 {
    flex: 1 1 100%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xs-15 {
    flex: 1 1 100%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xs-15 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 15%;
    box-sizing: border-box; }
  .layout-row > .flex-xs-33, .layout-row > .flex-xs-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xs-66, .layout-row > .flex-xs-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xs-33, .layout-column > .flex-xs-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-xs-66, .layout-column > .flex-xs-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-xs-row > .flex-xs-15 {
    flex: 1 1 100%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-xs-column > .flex-xs-15 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 15%;
    box-sizing: border-box; }
  .flex-xs-20 {
    flex: 1 1 100%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xs-20 {
    flex: 1 1 100%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xs-20 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 20%;
    box-sizing: border-box; }
  .layout-row > .flex-xs-33, .layout-row > .flex-xs-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xs-66, .layout-row > .flex-xs-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xs-33, .layout-column > .flex-xs-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-xs-66, .layout-column > .flex-xs-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-xs-row > .flex-xs-20 {
    flex: 1 1 100%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-xs-column > .flex-xs-20 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 20%;
    box-sizing: border-box; }
  .flex-xs-25 {
    flex: 1 1 100%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xs-25 {
    flex: 1 1 100%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xs-25 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 25%;
    box-sizing: border-box; }
  .layout-row > .flex-xs-33, .layout-row > .flex-xs-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xs-66, .layout-row > .flex-xs-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xs-33, .layout-column > .flex-xs-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-xs-66, .layout-column > .flex-xs-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-xs-row > .flex-xs-25 {
    flex: 1 1 100%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-xs-column > .flex-xs-25 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 25%;
    box-sizing: border-box; }
  .flex-xs-30 {
    flex: 1 1 100%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xs-30 {
    flex: 1 1 100%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xs-30 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 30%;
    box-sizing: border-box; }
  .layout-row > .flex-xs-33, .layout-row > .flex-xs-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xs-66, .layout-row > .flex-xs-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xs-33, .layout-column > .flex-xs-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-xs-66, .layout-column > .flex-xs-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-xs-row > .flex-xs-30 {
    flex: 1 1 100%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-xs-column > .flex-xs-30 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 30%;
    box-sizing: border-box; }
  .flex-xs-35 {
    flex: 1 1 100%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xs-35 {
    flex: 1 1 100%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xs-35 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 35%;
    box-sizing: border-box; }
  .layout-row > .flex-xs-33, .layout-row > .flex-xs-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xs-66, .layout-row > .flex-xs-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xs-33, .layout-column > .flex-xs-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-xs-66, .layout-column > .flex-xs-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-xs-row > .flex-xs-35 {
    flex: 1 1 100%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-xs-column > .flex-xs-35 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 35%;
    box-sizing: border-box; }
  .flex-xs-40 {
    flex: 1 1 100%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xs-40 {
    flex: 1 1 100%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xs-40 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 40%;
    box-sizing: border-box; }
  .layout-row > .flex-xs-33, .layout-row > .flex-xs-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xs-66, .layout-row > .flex-xs-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xs-33, .layout-column > .flex-xs-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-xs-66, .layout-column > .flex-xs-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-xs-row > .flex-xs-40 {
    flex: 1 1 100%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-xs-column > .flex-xs-40 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 40%;
    box-sizing: border-box; }
  .flex-xs-45 {
    flex: 1 1 100%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xs-45 {
    flex: 1 1 100%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xs-45 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 45%;
    box-sizing: border-box; }
  .layout-row > .flex-xs-33, .layout-row > .flex-xs-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xs-66, .layout-row > .flex-xs-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xs-33, .layout-column > .flex-xs-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-xs-66, .layout-column > .flex-xs-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-xs-row > .flex-xs-45 {
    flex: 1 1 100%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-xs-column > .flex-xs-45 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 45%;
    box-sizing: border-box; }
  .flex-xs-50 {
    flex: 1 1 100%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xs-50 {
    flex: 1 1 100%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xs-50 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 50%;
    box-sizing: border-box; }
  .layout-row > .flex-xs-33, .layout-row > .flex-xs-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xs-66, .layout-row > .flex-xs-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xs-33, .layout-column > .flex-xs-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-xs-66, .layout-column > .flex-xs-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-xs-row > .flex-xs-50 {
    flex: 1 1 100%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-xs-column > .flex-xs-50 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 50%;
    box-sizing: border-box; }
  .flex-xs-55 {
    flex: 1 1 100%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xs-55 {
    flex: 1 1 100%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xs-55 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 55%;
    box-sizing: border-box; }
  .layout-row > .flex-xs-33, .layout-row > .flex-xs-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xs-66, .layout-row > .flex-xs-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xs-33, .layout-column > .flex-xs-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-xs-66, .layout-column > .flex-xs-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-xs-row > .flex-xs-55 {
    flex: 1 1 100%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-xs-column > .flex-xs-55 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 55%;
    box-sizing: border-box; }
  .flex-xs-60 {
    flex: 1 1 100%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xs-60 {
    flex: 1 1 100%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xs-60 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 60%;
    box-sizing: border-box; }
  .layout-row > .flex-xs-33, .layout-row > .flex-xs-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xs-66, .layout-row > .flex-xs-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xs-33, .layout-column > .flex-xs-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-xs-66, .layout-column > .flex-xs-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-xs-row > .flex-xs-60 {
    flex: 1 1 100%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-xs-column > .flex-xs-60 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 60%;
    box-sizing: border-box; }
  .flex-xs-65 {
    flex: 1 1 100%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xs-65 {
    flex: 1 1 100%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xs-65 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 65%;
    box-sizing: border-box; }
  .layout-row > .flex-xs-33, .layout-row > .flex-xs-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xs-66, .layout-row > .flex-xs-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xs-33, .layout-column > .flex-xs-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-xs-66, .layout-column > .flex-xs-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-xs-row > .flex-xs-65 {
    flex: 1 1 100%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-xs-column > .flex-xs-65 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 65%;
    box-sizing: border-box; }
  .flex-xs-70 {
    flex: 1 1 100%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xs-70 {
    flex: 1 1 100%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xs-70 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 70%;
    box-sizing: border-box; }
  .layout-row > .flex-xs-33, .layout-row > .flex-xs-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xs-66, .layout-row > .flex-xs-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xs-33, .layout-column > .flex-xs-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-xs-66, .layout-column > .flex-xs-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-xs-row > .flex-xs-70 {
    flex: 1 1 100%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-xs-column > .flex-xs-70 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 70%;
    box-sizing: border-box; }
  .flex-xs-75 {
    flex: 1 1 100%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xs-75 {
    flex: 1 1 100%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xs-75 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 75%;
    box-sizing: border-box; }
  .layout-row > .flex-xs-33, .layout-row > .flex-xs-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xs-66, .layout-row > .flex-xs-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xs-33, .layout-column > .flex-xs-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-xs-66, .layout-column > .flex-xs-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-xs-row > .flex-xs-75 {
    flex: 1 1 100%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-xs-column > .flex-xs-75 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 75%;
    box-sizing: border-box; }
  .flex-xs-80 {
    flex: 1 1 100%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xs-80 {
    flex: 1 1 100%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xs-80 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 80%;
    box-sizing: border-box; }
  .layout-row > .flex-xs-33, .layout-row > .flex-xs-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xs-66, .layout-row > .flex-xs-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xs-33, .layout-column > .flex-xs-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-xs-66, .layout-column > .flex-xs-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-xs-row > .flex-xs-80 {
    flex: 1 1 100%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-xs-column > .flex-xs-80 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 80%;
    box-sizing: border-box; }
  .flex-xs-85 {
    flex: 1 1 100%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xs-85 {
    flex: 1 1 100%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xs-85 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 85%;
    box-sizing: border-box; }
  .layout-row > .flex-xs-33, .layout-row > .flex-xs-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xs-66, .layout-row > .flex-xs-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xs-33, .layout-column > .flex-xs-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-xs-66, .layout-column > .flex-xs-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-xs-row > .flex-xs-85 {
    flex: 1 1 100%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-xs-column > .flex-xs-85 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 85%;
    box-sizing: border-box; }
  .flex-xs-90 {
    flex: 1 1 100%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xs-90 {
    flex: 1 1 100%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xs-90 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 90%;
    box-sizing: border-box; }
  .layout-row > .flex-xs-33, .layout-row > .flex-xs-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xs-66, .layout-row > .flex-xs-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xs-33, .layout-column > .flex-xs-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-xs-66, .layout-column > .flex-xs-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-xs-row > .flex-xs-90 {
    flex: 1 1 100%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-xs-column > .flex-xs-90 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 90%;
    box-sizing: border-box; }
  .flex-xs-95 {
    flex: 1 1 100%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xs-95 {
    flex: 1 1 100%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xs-95 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 95%;
    box-sizing: border-box; }
  .layout-row > .flex-xs-33, .layout-row > .flex-xs-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xs-66, .layout-row > .flex-xs-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xs-33, .layout-column > .flex-xs-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-xs-66, .layout-column > .flex-xs-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-xs-row > .flex-xs-95 {
    flex: 1 1 100%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-xs-column > .flex-xs-95 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 95%;
    box-sizing: border-box; }
  .flex-xs-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xs-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xs-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xs-33, .layout-row > .flex-xs-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xs-66, .layout-row > .flex-xs-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xs-33, .layout-column > .flex-xs-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-xs-66, .layout-column > .flex-xs-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-xs-row > .flex-xs-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-xs-column > .flex-xs-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-xs-row > .flex-xs-33, .layout-xs-row > .flex-xs-33 {
    flex: 1 1 100%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-xs-row > .flex-xs-66, .layout-xs-row > .flex-xs-66 {
    flex: 1 1 100%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-xs-row > .flex {
    min-width: 0; }
  .layout-xs-column > .flex-xs-33, .layout-xs-column > .flex-xs-33 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-xs-column > .flex-xs-66, .layout-xs-column > .flex-xs-66 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .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; }
  .offset-gt-xs-0, .flex-offset-gt-xs-0 {
    margin-left: 0; }
    [dir=rtl] .offset-gt-xs-0, [dir=rtl] .flex-offset-gt-xs-0 {
      margin-left: auto;
      margin-right: 0; }
  .offset-gt-xs-5, .flex-offset-gt-xs-5 {
    margin-left: 5%; }
    [dir=rtl] .offset-gt-xs-5, [dir=rtl] .flex-offset-gt-xs-5 {
      margin-left: auto;
      margin-right: 5%; }
  .offset-gt-xs-10, .flex-offset-gt-xs-10 {
    margin-left: 10%; }
    [dir=rtl] .offset-gt-xs-10, [dir=rtl] .flex-offset-gt-xs-10 {
      margin-left: auto;
      margin-right: 10%; }
  .offset-gt-xs-15, .flex-offset-gt-xs-15 {
    margin-left: 15%; }
    [dir=rtl] .offset-gt-xs-15, [dir=rtl] .flex-offset-gt-xs-15 {
      margin-left: auto;
      margin-right: 15%; }
  .offset-gt-xs-20, .flex-offset-gt-xs-20 {
    margin-left: 20%; }
    [dir=rtl] .offset-gt-xs-20, [dir=rtl] .flex-offset-gt-xs-20 {
      margin-left: auto;
      margin-right: 20%; }
  .offset-gt-xs-25, .flex-offset-gt-xs-25 {
    margin-left: 25%; }
    [dir=rtl] .offset-gt-xs-25, [dir=rtl] .flex-offset-gt-xs-25 {
      margin-left: auto;
      margin-right: 25%; }
  .offset-gt-xs-30, .flex-offset-gt-xs-30 {
    margin-left: 30%; }
    [dir=rtl] .offset-gt-xs-30, [dir=rtl] .flex-offset-gt-xs-30 {
      margin-left: auto;
      margin-right: 30%; }
  .offset-gt-xs-35, .flex-offset-gt-xs-35 {
    margin-left: 35%; }
    [dir=rtl] .offset-gt-xs-35, [dir=rtl] .flex-offset-gt-xs-35 {
      margin-left: auto;
      margin-right: 35%; }
  .offset-gt-xs-40, .flex-offset-gt-xs-40 {
    margin-left: 40%; }
    [dir=rtl] .offset-gt-xs-40, [dir=rtl] .flex-offset-gt-xs-40 {
      margin-left: auto;
      margin-right: 40%; }
  .offset-gt-xs-45, .flex-offset-gt-xs-45 {
    margin-left: 45%; }
    [dir=rtl] .offset-gt-xs-45, [dir=rtl] .flex-offset-gt-xs-45 {
      margin-left: auto;
      margin-right: 45%; }
  .offset-gt-xs-50, .flex-offset-gt-xs-50 {
    margin-left: 50%; }
    [dir=rtl] .offset-gt-xs-50, [dir=rtl] .flex-offset-gt-xs-50 {
      margin-left: auto;
      margin-right: 50%; }
  .offset-gt-xs-55, .flex-offset-gt-xs-55 {
    margin-left: 55%; }
    [dir=rtl] .offset-gt-xs-55, [dir=rtl] .flex-offset-gt-xs-55 {
      margin-left: auto;
      margin-right: 55%; }
  .offset-gt-xs-60, .flex-offset-gt-xs-60 {
    margin-left: 60%; }
    [dir=rtl] .offset-gt-xs-60, [dir=rtl] .flex-offset-gt-xs-60 {
      margin-left: auto;
      margin-right: 60%; }
  .offset-gt-xs-65, .flex-offset-gt-xs-65 {
    margin-left: 65%; }
    [dir=rtl] .offset-gt-xs-65, [dir=rtl] .flex-offset-gt-xs-65 {
      margin-left: auto;
      margin-right: 65%; }
  .offset-gt-xs-70, .flex-offset-gt-xs-70 {
    margin-left: 70%; }
    [dir=rtl] .offset-gt-xs-70, [dir=rtl] .flex-offset-gt-xs-70 {
      margin-left: auto;
      margin-right: 70%; }
  .offset-gt-xs-75, .flex-offset-gt-xs-75 {
    margin-left: 75%; }
    [dir=rtl] .offset-gt-xs-75, [dir=rtl] .flex-offset-gt-xs-75 {
      margin-left: auto;
      margin-right: 75%; }
  .offset-gt-xs-80, .flex-offset-gt-xs-80 {
    margin-left: 80%; }
    [dir=rtl] .offset-gt-xs-80, [dir=rtl] .flex-offset-gt-xs-80 {
      margin-left: auto;
      margin-right: 80%; }
  .offset-gt-xs-85, .flex-offset-gt-xs-85 {
    margin-left: 85%; }
    [dir=rtl] .offset-gt-xs-85, [dir=rtl] .flex-offset-gt-xs-85 {
      margin-left: auto;
      margin-right: 85%; }
  .offset-gt-xs-90, .flex-offset-gt-xs-90 {
    margin-left: 90%; }
    [dir=rtl] .offset-gt-xs-90, [dir=rtl] .flex-offset-gt-xs-90 {
      margin-left: auto;
      margin-right: 90%; }
  .offset-gt-xs-95, .flex-offset-gt-xs-95 {
    margin-left: 95%; }
    [dir=rtl] .offset-gt-xs-95, [dir=rtl] .flex-offset-gt-xs-95 {
      margin-left: auto;
      margin-right: 95%; }
  .offset-gt-xs-33, .flex-offset-gt-xs-33 {
    margin-left: calc(100% / 3); }
  .offset-gt-xs-66, .flex-offset-gt-xs-66 {
    margin-left: calc(200% / 3); }
    [dir=rtl] .offset-gt-xs-66, [dir=rtl] .flex-offset-gt-xs-66 {
      margin-left: auto;
      margin-right: calc(200% / 3); }
  .layout-align-gt-xs,
  .layout-align-gt-xs-start-stretch {
    justify-content: flex-start;
    align-content: stretch;
    align-items: stretch; }
  .layout-align-gt-xs-start,
  .layout-align-gt-xs-start-start,
  .layout-align-gt-xs-start-center,
  .layout-align-gt-xs-start-end,
  .layout-align-gt-xs-start-stretch {
    justify-content: flex-start; }
  .layout-align-gt-xs-center,
  .layout-align-gt-xs-center-start,
  .layout-align-gt-xs-center-center,
  .layout-align-gt-xs-center-end,
  .layout-align-gt-xs-center-stretch {
    justify-content: center; }
  .layout-align-gt-xs-end,
  .layout-align-gt-xs-end-start,
  .layout-align-gt-xs-end-center,
  .layout-align-gt-xs-end-end,
  .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-start,
  .layout-align-gt-xs-space-around-end,
  .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-start,
  .layout-align-gt-xs-space-between-end,
  .layout-align-gt-xs-space-between-stretch {
    justify-content: space-between; }
  .layout-align-gt-xs-start-start,
  .layout-align-gt-xs-center-start,
  .layout-align-gt-xs-end-start,
  .layout-align-gt-xs-space-between-start,
  .layout-align-gt-xs-space-around-start {
    align-items: flex-start;
    align-content: flex-start; }
  .layout-align-gt-xs-start-center,
  .layout-align-gt-xs-center-center,
  .layout-align-gt-xs-end-center,
  .layout-align-gt-xs-space-between-center,
  .layout-align-gt-xs-space-around-center {
    align-items: center;
    align-content: center;
    max-width: 100%; }
  .layout-align-gt-xs-start-center > *,
  .layout-align-gt-xs-center-center > *,
  .layout-align-gt-xs-end-center > *,
  .layout-align-gt-xs-space-between-center > *,
  .layout-align-gt-xs-space-around-center > * {
    max-width: 100%;
    box-sizing: border-box; }
  .layout-align-gt-xs-start-end,
  .layout-align-gt-xs-center-end,
  .layout-align-gt-xs-end-end,
  .layout-align-gt-xs-space-between-end,
  .layout-align-gt-xs-space-around-end {
    align-items: flex-end;
    align-content: flex-end; }
  .layout-align-gt-xs-start-stretch,
  .layout-align-gt-xs-center-stretch,
  .layout-align-gt-xs-end-stretch,
  .layout-align-gt-xs-space-between-stretch,
  .layout-align-gt-xs-space-around-stretch {
    align-items: stretch;
    align-content: stretch; }
  .flex-gt-xs {
    flex: 1;
    box-sizing: border-box; }
  .flex-gt-xs-grow {
    flex: 1 1 100%;
    box-sizing: border-box; }
  .flex-gt-xs-initial {
    flex: 0 1 auto;
    box-sizing: border-box; }
  .flex-gt-xs-auto {
    flex: 1 1 auto;
    box-sizing: border-box; }
  .flex-gt-xs-none {
    flex: 0 0 auto;
    box-sizing: border-box; }
  .flex-gt-xs-noshrink {
    flex: 1 0 auto;
    box-sizing: border-box; }
  .flex-gt-xs-nogrow {
    flex: 0 1 auto;
    box-sizing: border-box; }
  .flex-gt-xs-0 {
    flex: 1 1 100%;
    max-width: 0%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-xs-0 {
    flex: 1 1 100%;
    max-width: 0%;
    max-height: 100%;
    box-sizing: border-box;
    min-width: 0; }
  .layout-column > .flex-gt-xs-0 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 0%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-xs-33, .layout-row > .flex-gt-xs-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-xs-66, .layout-row > .flex-gt-xs-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-xs-33, .layout-column > .flex-gt-xs-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-xs-66, .layout-column > .flex-gt-xs-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-xs-row > .flex-gt-xs-0 {
    flex: 1 1 100%;
    max-width: 0%;
    max-height: 100%;
    box-sizing: border-box;
    min-width: 0; }
  .layout-gt-xs-column > .flex-gt-xs-0 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 0%;
    box-sizing: border-box;
    min-height: 0; }
  .flex-gt-xs-5 {
    flex: 1 1 100%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-xs-5 {
    flex: 1 1 100%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-xs-5 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 5%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-xs-33, .layout-row > .flex-gt-xs-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-xs-66, .layout-row > .flex-gt-xs-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-xs-33, .layout-column > .flex-gt-xs-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-xs-66, .layout-column > .flex-gt-xs-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-xs-row > .flex-gt-xs-5 {
    flex: 1 1 100%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-xs-column > .flex-gt-xs-5 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 5%;
    box-sizing: border-box; }
  .flex-gt-xs-10 {
    flex: 1 1 100%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-xs-10 {
    flex: 1 1 100%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-xs-10 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 10%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-xs-33, .layout-row > .flex-gt-xs-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-xs-66, .layout-row > .flex-gt-xs-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-xs-33, .layout-column > .flex-gt-xs-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-xs-66, .layout-column > .flex-gt-xs-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-xs-row > .flex-gt-xs-10 {
    flex: 1 1 100%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-xs-column > .flex-gt-xs-10 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 10%;
    box-sizing: border-box; }
  .flex-gt-xs-15 {
    flex: 1 1 100%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-xs-15 {
    flex: 1 1 100%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-xs-15 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 15%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-xs-33, .layout-row > .flex-gt-xs-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-xs-66, .layout-row > .flex-gt-xs-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-xs-33, .layout-column > .flex-gt-xs-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-xs-66, .layout-column > .flex-gt-xs-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-xs-row > .flex-gt-xs-15 {
    flex: 1 1 100%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-xs-column > .flex-gt-xs-15 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 15%;
    box-sizing: border-box; }
  .flex-gt-xs-20 {
    flex: 1 1 100%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-xs-20 {
    flex: 1 1 100%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-xs-20 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 20%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-xs-33, .layout-row > .flex-gt-xs-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-xs-66, .layout-row > .flex-gt-xs-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-xs-33, .layout-column > .flex-gt-xs-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-xs-66, .layout-column > .flex-gt-xs-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-xs-row > .flex-gt-xs-20 {
    flex: 1 1 100%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-xs-column > .flex-gt-xs-20 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 20%;
    box-sizing: border-box; }
  .flex-gt-xs-25 {
    flex: 1 1 100%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-xs-25 {
    flex: 1 1 100%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-xs-25 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 25%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-xs-33, .layout-row > .flex-gt-xs-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-xs-66, .layout-row > .flex-gt-xs-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-xs-33, .layout-column > .flex-gt-xs-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-xs-66, .layout-column > .flex-gt-xs-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-xs-row > .flex-gt-xs-25 {
    flex: 1 1 100%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-xs-column > .flex-gt-xs-25 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 25%;
    box-sizing: border-box; }
  .flex-gt-xs-30 {
    flex: 1 1 100%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-xs-30 {
    flex: 1 1 100%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-xs-30 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 30%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-xs-33, .layout-row > .flex-gt-xs-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-xs-66, .layout-row > .flex-gt-xs-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-xs-33, .layout-column > .flex-gt-xs-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-xs-66, .layout-column > .flex-gt-xs-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-xs-row > .flex-gt-xs-30 {
    flex: 1 1 100%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-xs-column > .flex-gt-xs-30 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 30%;
    box-sizing: border-box; }
  .flex-gt-xs-35 {
    flex: 1 1 100%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-xs-35 {
    flex: 1 1 100%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-xs-35 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 35%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-xs-33, .layout-row > .flex-gt-xs-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-xs-66, .layout-row > .flex-gt-xs-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-xs-33, .layout-column > .flex-gt-xs-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-xs-66, .layout-column > .flex-gt-xs-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-xs-row > .flex-gt-xs-35 {
    flex: 1 1 100%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-xs-column > .flex-gt-xs-35 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 35%;
    box-sizing: border-box; }
  .flex-gt-xs-40 {
    flex: 1 1 100%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-xs-40 {
    flex: 1 1 100%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-xs-40 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 40%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-xs-33, .layout-row > .flex-gt-xs-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-xs-66, .layout-row > .flex-gt-xs-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-xs-33, .layout-column > .flex-gt-xs-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-xs-66, .layout-column > .flex-gt-xs-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-xs-row > .flex-gt-xs-40 {
    flex: 1 1 100%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-xs-column > .flex-gt-xs-40 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 40%;
    box-sizing: border-box; }
  .flex-gt-xs-45 {
    flex: 1 1 100%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-xs-45 {
    flex: 1 1 100%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-xs-45 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 45%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-xs-33, .layout-row > .flex-gt-xs-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-xs-66, .layout-row > .flex-gt-xs-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-xs-33, .layout-column > .flex-gt-xs-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-xs-66, .layout-column > .flex-gt-xs-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-xs-row > .flex-gt-xs-45 {
    flex: 1 1 100%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-xs-column > .flex-gt-xs-45 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 45%;
    box-sizing: border-box; }
  .flex-gt-xs-50 {
    flex: 1 1 100%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-xs-50 {
    flex: 1 1 100%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-xs-50 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 50%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-xs-33, .layout-row > .flex-gt-xs-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-xs-66, .layout-row > .flex-gt-xs-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-xs-33, .layout-column > .flex-gt-xs-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-xs-66, .layout-column > .flex-gt-xs-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-xs-row > .flex-gt-xs-50 {
    flex: 1 1 100%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-xs-column > .flex-gt-xs-50 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 50%;
    box-sizing: border-box; }
  .flex-gt-xs-55 {
    flex: 1 1 100%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-xs-55 {
    flex: 1 1 100%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-xs-55 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 55%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-xs-33, .layout-row > .flex-gt-xs-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-xs-66, .layout-row > .flex-gt-xs-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-xs-33, .layout-column > .flex-gt-xs-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-xs-66, .layout-column > .flex-gt-xs-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-xs-row > .flex-gt-xs-55 {
    flex: 1 1 100%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-xs-column > .flex-gt-xs-55 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 55%;
    box-sizing: border-box; }
  .flex-gt-xs-60 {
    flex: 1 1 100%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-xs-60 {
    flex: 1 1 100%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-xs-60 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 60%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-xs-33, .layout-row > .flex-gt-xs-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-xs-66, .layout-row > .flex-gt-xs-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-xs-33, .layout-column > .flex-gt-xs-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-xs-66, .layout-column > .flex-gt-xs-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-xs-row > .flex-gt-xs-60 {
    flex: 1 1 100%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-xs-column > .flex-gt-xs-60 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 60%;
    box-sizing: border-box; }
  .flex-gt-xs-65 {
    flex: 1 1 100%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-xs-65 {
    flex: 1 1 100%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-xs-65 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 65%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-xs-33, .layout-row > .flex-gt-xs-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-xs-66, .layout-row > .flex-gt-xs-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-xs-33, .layout-column > .flex-gt-xs-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-xs-66, .layout-column > .flex-gt-xs-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-xs-row > .flex-gt-xs-65 {
    flex: 1 1 100%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-xs-column > .flex-gt-xs-65 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 65%;
    box-sizing: border-box; }
  .flex-gt-xs-70 {
    flex: 1 1 100%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-xs-70 {
    flex: 1 1 100%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-xs-70 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 70%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-xs-33, .layout-row > .flex-gt-xs-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-xs-66, .layout-row > .flex-gt-xs-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-xs-33, .layout-column > .flex-gt-xs-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-xs-66, .layout-column > .flex-gt-xs-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-xs-row > .flex-gt-xs-70 {
    flex: 1 1 100%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-xs-column > .flex-gt-xs-70 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 70%;
    box-sizing: border-box; }
  .flex-gt-xs-75 {
    flex: 1 1 100%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-xs-75 {
    flex: 1 1 100%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-xs-75 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 75%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-xs-33, .layout-row > .flex-gt-xs-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-xs-66, .layout-row > .flex-gt-xs-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-xs-33, .layout-column > .flex-gt-xs-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-xs-66, .layout-column > .flex-gt-xs-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-xs-row > .flex-gt-xs-75 {
    flex: 1 1 100%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-xs-column > .flex-gt-xs-75 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 75%;
    box-sizing: border-box; }
  .flex-gt-xs-80 {
    flex: 1 1 100%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-xs-80 {
    flex: 1 1 100%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-xs-80 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 80%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-xs-33, .layout-row > .flex-gt-xs-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-xs-66, .layout-row > .flex-gt-xs-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-xs-33, .layout-column > .flex-gt-xs-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-xs-66, .layout-column > .flex-gt-xs-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-xs-row > .flex-gt-xs-80 {
    flex: 1 1 100%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-xs-column > .flex-gt-xs-80 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 80%;
    box-sizing: border-box; }
  .flex-gt-xs-85 {
    flex: 1 1 100%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-xs-85 {
    flex: 1 1 100%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-xs-85 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 85%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-xs-33, .layout-row > .flex-gt-xs-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-xs-66, .layout-row > .flex-gt-xs-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-xs-33, .layout-column > .flex-gt-xs-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-xs-66, .layout-column > .flex-gt-xs-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-xs-row > .flex-gt-xs-85 {
    flex: 1 1 100%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-xs-column > .flex-gt-xs-85 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 85%;
    box-sizing: border-box; }
  .flex-gt-xs-90 {
    flex: 1 1 100%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-xs-90 {
    flex: 1 1 100%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-xs-90 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 90%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-xs-33, .layout-row > .flex-gt-xs-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-xs-66, .layout-row > .flex-gt-xs-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-xs-33, .layout-column > .flex-gt-xs-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-xs-66, .layout-column > .flex-gt-xs-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-xs-row > .flex-gt-xs-90 {
    flex: 1 1 100%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-xs-column > .flex-gt-xs-90 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 90%;
    box-sizing: border-box; }
  .flex-gt-xs-95 {
    flex: 1 1 100%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-xs-95 {
    flex: 1 1 100%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-xs-95 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 95%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-xs-33, .layout-row > .flex-gt-xs-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-xs-66, .layout-row > .flex-gt-xs-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-xs-33, .layout-column > .flex-gt-xs-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-xs-66, .layout-column > .flex-gt-xs-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-xs-row > .flex-gt-xs-95 {
    flex: 1 1 100%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-xs-column > .flex-gt-xs-95 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 95%;
    box-sizing: border-box; }
  .flex-gt-xs-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-xs-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-xs-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-xs-33, .layout-row > .flex-gt-xs-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-xs-66, .layout-row > .flex-gt-xs-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-xs-33, .layout-column > .flex-gt-xs-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-xs-66, .layout-column > .flex-gt-xs-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-xs-row > .flex-gt-xs-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-xs-column > .flex-gt-xs-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-xs-row > .flex-gt-xs-33, .layout-gt-xs-row > .flex-gt-xs-33 {
    flex: 1 1 100%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-xs-row > .flex-gt-xs-66, .layout-gt-xs-row > .flex-gt-xs-66 {
    flex: 1 1 100%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-xs-row > .flex {
    min-width: 0; }
  .layout-gt-xs-column > .flex-gt-xs-33, .layout-gt-xs-column > .flex-gt-xs-33 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-gt-xs-column > .flex-gt-xs-66, .layout-gt-xs-column > .flex-gt-xs-66 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .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:not(.show-gt-xs):not(.show-sm):not(.show), .hide-gt-xs:not(.show-gt-xs):not(.show-sm):not(.show) {
    display: none; }
  .hide-sm: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; }
  .offset-sm-0, .flex-offset-sm-0 {
    margin-left: 0; }
    [dir=rtl] .offset-sm-0, [dir=rtl] .flex-offset-sm-0 {
      margin-left: auto;
      margin-right: 0; }
  .offset-sm-5, .flex-offset-sm-5 {
    margin-left: 5%; }
    [dir=rtl] .offset-sm-5, [dir=rtl] .flex-offset-sm-5 {
      margin-left: auto;
      margin-right: 5%; }
  .offset-sm-10, .flex-offset-sm-10 {
    margin-left: 10%; }
    [dir=rtl] .offset-sm-10, [dir=rtl] .flex-offset-sm-10 {
      margin-left: auto;
      margin-right: 10%; }
  .offset-sm-15, .flex-offset-sm-15 {
    margin-left: 15%; }
    [dir=rtl] .offset-sm-15, [dir=rtl] .flex-offset-sm-15 {
      margin-left: auto;
      margin-right: 15%; }
  .offset-sm-20, .flex-offset-sm-20 {
    margin-left: 20%; }
    [dir=rtl] .offset-sm-20, [dir=rtl] .flex-offset-sm-20 {
      margin-left: auto;
      margin-right: 20%; }
  .offset-sm-25, .flex-offset-sm-25 {
    margin-left: 25%; }
    [dir=rtl] .offset-sm-25, [dir=rtl] .flex-offset-sm-25 {
      margin-left: auto;
      margin-right: 25%; }
  .offset-sm-30, .flex-offset-sm-30 {
    margin-left: 30%; }
    [dir=rtl] .offset-sm-30, [dir=rtl] .flex-offset-sm-30 {
      margin-left: auto;
      margin-right: 30%; }
  .offset-sm-35, .flex-offset-sm-35 {
    margin-left: 35%; }
    [dir=rtl] .offset-sm-35, [dir=rtl] .flex-offset-sm-35 {
      margin-left: auto;
      margin-right: 35%; }
  .offset-sm-40, .flex-offset-sm-40 {
    margin-left: 40%; }
    [dir=rtl] .offset-sm-40, [dir=rtl] .flex-offset-sm-40 {
      margin-left: auto;
      margin-right: 40%; }
  .offset-sm-45, .flex-offset-sm-45 {
    margin-left: 45%; }
    [dir=rtl] .offset-sm-45, [dir=rtl] .flex-offset-sm-45 {
      margin-left: auto;
      margin-right: 45%; }
  .offset-sm-50, .flex-offset-sm-50 {
    margin-left: 50%; }
    [dir=rtl] .offset-sm-50, [dir=rtl] .flex-offset-sm-50 {
      margin-left: auto;
      margin-right: 50%; }
  .offset-sm-55, .flex-offset-sm-55 {
    margin-left: 55%; }
    [dir=rtl] .offset-sm-55, [dir=rtl] .flex-offset-sm-55 {
      margin-left: auto;
      margin-right: 55%; }
  .offset-sm-60, .flex-offset-sm-60 {
    margin-left: 60%; }
    [dir=rtl] .offset-sm-60, [dir=rtl] .flex-offset-sm-60 {
      margin-left: auto;
      margin-right: 60%; }
  .offset-sm-65, .flex-offset-sm-65 {
    margin-left: 65%; }
    [dir=rtl] .offset-sm-65, [dir=rtl] .flex-offset-sm-65 {
      margin-left: auto;
      margin-right: 65%; }
  .offset-sm-70, .flex-offset-sm-70 {
    margin-left: 70%; }
    [dir=rtl] .offset-sm-70, [dir=rtl] .flex-offset-sm-70 {
      margin-left: auto;
      margin-right: 70%; }
  .offset-sm-75, .flex-offset-sm-75 {
    margin-left: 75%; }
    [dir=rtl] .offset-sm-75, [dir=rtl] .flex-offset-sm-75 {
      margin-left: auto;
      margin-right: 75%; }
  .offset-sm-80, .flex-offset-sm-80 {
    margin-left: 80%; }
    [dir=rtl] .offset-sm-80, [dir=rtl] .flex-offset-sm-80 {
      margin-left: auto;
      margin-right: 80%; }
  .offset-sm-85, .flex-offset-sm-85 {
    margin-left: 85%; }
    [dir=rtl] .offset-sm-85, [dir=rtl] .flex-offset-sm-85 {
      margin-left: auto;
      margin-right: 85%; }
  .offset-sm-90, .flex-offset-sm-90 {
    margin-left: 90%; }
    [dir=rtl] .offset-sm-90, [dir=rtl] .flex-offset-sm-90 {
      margin-left: auto;
      margin-right: 90%; }
  .offset-sm-95, .flex-offset-sm-95 {
    margin-left: 95%; }
    [dir=rtl] .offset-sm-95, [dir=rtl] .flex-offset-sm-95 {
      margin-left: auto;
      margin-right: 95%; }
  .offset-sm-33, .flex-offset-sm-33 {
    margin-left: calc(100% / 3); }
  .offset-sm-66, .flex-offset-sm-66 {
    margin-left: calc(200% / 3); }
    [dir=rtl] .offset-sm-66, [dir=rtl] .flex-offset-sm-66 {
      margin-left: auto;
      margin-right: calc(200% / 3); }
  .layout-align-sm,
  .layout-align-sm-start-stretch {
    justify-content: flex-start;
    align-content: stretch;
    align-items: stretch; }
  .layout-align-sm-start,
  .layout-align-sm-start-start,
  .layout-align-sm-start-center,
  .layout-align-sm-start-end,
  .layout-align-sm-start-stretch {
    justify-content: flex-start; }
  .layout-align-sm-center,
  .layout-align-sm-center-start,
  .layout-align-sm-center-center,
  .layout-align-sm-center-end,
  .layout-align-sm-center-stretch {
    justify-content: center; }
  .layout-align-sm-end,
  .layout-align-sm-end-start,
  .layout-align-sm-end-center,
  .layout-align-sm-end-end,
  .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-start,
  .layout-align-sm-space-around-end,
  .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-start,
  .layout-align-sm-space-between-end,
  .layout-align-sm-space-between-stretch {
    justify-content: space-between; }
  .layout-align-sm-start-start,
  .layout-align-sm-center-start,
  .layout-align-sm-end-start,
  .layout-align-sm-space-between-start,
  .layout-align-sm-space-around-start {
    align-items: flex-start;
    align-content: flex-start; }
  .layout-align-sm-start-center,
  .layout-align-sm-center-center,
  .layout-align-sm-end-center,
  .layout-align-sm-space-between-center,
  .layout-align-sm-space-around-center {
    align-items: center;
    align-content: center;
    max-width: 100%; }
  .layout-align-sm-start-center > *,
  .layout-align-sm-center-center > *,
  .layout-align-sm-end-center > *,
  .layout-align-sm-space-between-center > *,
  .layout-align-sm-space-around-center > * {
    max-width: 100%;
    box-sizing: border-box; }
  .layout-align-sm-start-end,
  .layout-align-sm-center-end,
  .layout-align-sm-end-end,
  .layout-align-sm-space-between-end,
  .layout-align-sm-space-around-end {
    align-items: flex-end;
    align-content: flex-end; }
  .layout-align-sm-start-stretch,
  .layout-align-sm-center-stretch,
  .layout-align-sm-end-stretch,
  .layout-align-sm-space-between-stretch,
  .layout-align-sm-space-around-stretch {
    align-items: stretch;
    align-content: stretch; }
  .flex-sm {
    flex: 1;
    box-sizing: border-box; }
  .flex-sm-grow {
    flex: 1 1 100%;
    box-sizing: border-box; }
  .flex-sm-initial {
    flex: 0 1 auto;
    box-sizing: border-box; }
  .flex-sm-auto {
    flex: 1 1 auto;
    box-sizing: border-box; }
  .flex-sm-none {
    flex: 0 0 auto;
    box-sizing: border-box; }
  .flex-sm-noshrink {
    flex: 1 0 auto;
    box-sizing: border-box; }
  .flex-sm-nogrow {
    flex: 0 1 auto;
    box-sizing: border-box; }
  .flex-sm-0 {
    flex: 1 1 100%;
    max-width: 0%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-sm-0 {
    flex: 1 1 100%;
    max-width: 0%;
    max-height: 100%;
    box-sizing: border-box;
    min-width: 0; }
  .layout-column > .flex-sm-0 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 0%;
    box-sizing: border-box; }
  .layout-row > .flex-sm-33, .layout-row > .flex-sm-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-sm-66, .layout-row > .flex-sm-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-sm-33, .layout-column > .flex-sm-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-sm-66, .layout-column > .flex-sm-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-sm-row > .flex-sm-0 {
    flex: 1 1 100%;
    max-width: 0%;
    max-height: 100%;
    box-sizing: border-box;
    min-width: 0; }
  .layout-sm-column > .flex-sm-0 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 0%;
    box-sizing: border-box;
    min-height: 0; }
  .flex-sm-5 {
    flex: 1 1 100%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-sm-5 {
    flex: 1 1 100%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-sm-5 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 5%;
    box-sizing: border-box; }
  .layout-row > .flex-sm-33, .layout-row > .flex-sm-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-sm-66, .layout-row > .flex-sm-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-sm-33, .layout-column > .flex-sm-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-sm-66, .layout-column > .flex-sm-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-sm-row > .flex-sm-5 {
    flex: 1 1 100%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-sm-column > .flex-sm-5 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 5%;
    box-sizing: border-box; }
  .flex-sm-10 {
    flex: 1 1 100%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-sm-10 {
    flex: 1 1 100%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-sm-10 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 10%;
    box-sizing: border-box; }
  .layout-row > .flex-sm-33, .layout-row > .flex-sm-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-sm-66, .layout-row > .flex-sm-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-sm-33, .layout-column > .flex-sm-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-sm-66, .layout-column > .flex-sm-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-sm-row > .flex-sm-10 {
    flex: 1 1 100%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-sm-column > .flex-sm-10 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 10%;
    box-sizing: border-box; }
  .flex-sm-15 {
    flex: 1 1 100%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-sm-15 {
    flex: 1 1 100%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-sm-15 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 15%;
    box-sizing: border-box; }
  .layout-row > .flex-sm-33, .layout-row > .flex-sm-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-sm-66, .layout-row > .flex-sm-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-sm-33, .layout-column > .flex-sm-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-sm-66, .layout-column > .flex-sm-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-sm-row > .flex-sm-15 {
    flex: 1 1 100%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-sm-column > .flex-sm-15 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 15%;
    box-sizing: border-box; }
  .flex-sm-20 {
    flex: 1 1 100%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-sm-20 {
    flex: 1 1 100%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-sm-20 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 20%;
    box-sizing: border-box; }
  .layout-row > .flex-sm-33, .layout-row > .flex-sm-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-sm-66, .layout-row > .flex-sm-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-sm-33, .layout-column > .flex-sm-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-sm-66, .layout-column > .flex-sm-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-sm-row > .flex-sm-20 {
    flex: 1 1 100%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-sm-column > .flex-sm-20 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 20%;
    box-sizing: border-box; }
  .flex-sm-25 {
    flex: 1 1 100%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-sm-25 {
    flex: 1 1 100%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-sm-25 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 25%;
    box-sizing: border-box; }
  .layout-row > .flex-sm-33, .layout-row > .flex-sm-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-sm-66, .layout-row > .flex-sm-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-sm-33, .layout-column > .flex-sm-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-sm-66, .layout-column > .flex-sm-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-sm-row > .flex-sm-25 {
    flex: 1 1 100%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-sm-column > .flex-sm-25 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 25%;
    box-sizing: border-box; }
  .flex-sm-30 {
    flex: 1 1 100%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-sm-30 {
    flex: 1 1 100%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-sm-30 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 30%;
    box-sizing: border-box; }
  .layout-row > .flex-sm-33, .layout-row > .flex-sm-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-sm-66, .layout-row > .flex-sm-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-sm-33, .layout-column > .flex-sm-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-sm-66, .layout-column > .flex-sm-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-sm-row > .flex-sm-30 {
    flex: 1 1 100%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-sm-column > .flex-sm-30 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 30%;
    box-sizing: border-box; }
  .flex-sm-35 {
    flex: 1 1 100%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-sm-35 {
    flex: 1 1 100%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-sm-35 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 35%;
    box-sizing: border-box; }
  .layout-row > .flex-sm-33, .layout-row > .flex-sm-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-sm-66, .layout-row > .flex-sm-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-sm-33, .layout-column > .flex-sm-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-sm-66, .layout-column > .flex-sm-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-sm-row > .flex-sm-35 {
    flex: 1 1 100%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-sm-column > .flex-sm-35 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 35%;
    box-sizing: border-box; }
  .flex-sm-40 {
    flex: 1 1 100%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-sm-40 {
    flex: 1 1 100%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-sm-40 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 40%;
    box-sizing: border-box; }
  .layout-row > .flex-sm-33, .layout-row > .flex-sm-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-sm-66, .layout-row > .flex-sm-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-sm-33, .layout-column > .flex-sm-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-sm-66, .layout-column > .flex-sm-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-sm-row > .flex-sm-40 {
    flex: 1 1 100%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-sm-column > .flex-sm-40 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 40%;
    box-sizing: border-box; }
  .flex-sm-45 {
    flex: 1 1 100%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-sm-45 {
    flex: 1 1 100%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-sm-45 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 45%;
    box-sizing: border-box; }
  .layout-row > .flex-sm-33, .layout-row > .flex-sm-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-sm-66, .layout-row > .flex-sm-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-sm-33, .layout-column > .flex-sm-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-sm-66, .layout-column > .flex-sm-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-sm-row > .flex-sm-45 {
    flex: 1 1 100%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-sm-column > .flex-sm-45 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 45%;
    box-sizing: border-box; }
  .flex-sm-50 {
    flex: 1 1 100%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-sm-50 {
    flex: 1 1 100%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-sm-50 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 50%;
    box-sizing: border-box; }
  .layout-row > .flex-sm-33, .layout-row > .flex-sm-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-sm-66, .layout-row > .flex-sm-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-sm-33, .layout-column > .flex-sm-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-sm-66, .layout-column > .flex-sm-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-sm-row > .flex-sm-50 {
    flex: 1 1 100%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-sm-column > .flex-sm-50 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 50%;
    box-sizing: border-box; }
  .flex-sm-55 {
    flex: 1 1 100%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-sm-55 {
    flex: 1 1 100%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-sm-55 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 55%;
    box-sizing: border-box; }
  .layout-row > .flex-sm-33, .layout-row > .flex-sm-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-sm-66, .layout-row > .flex-sm-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-sm-33, .layout-column > .flex-sm-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-sm-66, .layout-column > .flex-sm-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-sm-row > .flex-sm-55 {
    flex: 1 1 100%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-sm-column > .flex-sm-55 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 55%;
    box-sizing: border-box; }
  .flex-sm-60 {
    flex: 1 1 100%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-sm-60 {
    flex: 1 1 100%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-sm-60 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 60%;
    box-sizing: border-box; }
  .layout-row > .flex-sm-33, .layout-row > .flex-sm-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-sm-66, .layout-row > .flex-sm-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-sm-33, .layout-column > .flex-sm-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-sm-66, .layout-column > .flex-sm-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-sm-row > .flex-sm-60 {
    flex: 1 1 100%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-sm-column > .flex-sm-60 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 60%;
    box-sizing: border-box; }
  .flex-sm-65 {
    flex: 1 1 100%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-sm-65 {
    flex: 1 1 100%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-sm-65 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 65%;
    box-sizing: border-box; }
  .layout-row > .flex-sm-33, .layout-row > .flex-sm-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-sm-66, .layout-row > .flex-sm-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-sm-33, .layout-column > .flex-sm-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-sm-66, .layout-column > .flex-sm-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-sm-row > .flex-sm-65 {
    flex: 1 1 100%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-sm-column > .flex-sm-65 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 65%;
    box-sizing: border-box; }
  .flex-sm-70 {
    flex: 1 1 100%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-sm-70 {
    flex: 1 1 100%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-sm-70 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 70%;
    box-sizing: border-box; }
  .layout-row > .flex-sm-33, .layout-row > .flex-sm-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-sm-66, .layout-row > .flex-sm-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-sm-33, .layout-column > .flex-sm-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-sm-66, .layout-column > .flex-sm-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-sm-row > .flex-sm-70 {
    flex: 1 1 100%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-sm-column > .flex-sm-70 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 70%;
    box-sizing: border-box; }
  .flex-sm-75 {
    flex: 1 1 100%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-sm-75 {
    flex: 1 1 100%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-sm-75 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 75%;
    box-sizing: border-box; }
  .layout-row > .flex-sm-33, .layout-row > .flex-sm-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-sm-66, .layout-row > .flex-sm-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-sm-33, .layout-column > .flex-sm-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-sm-66, .layout-column > .flex-sm-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-sm-row > .flex-sm-75 {
    flex: 1 1 100%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-sm-column > .flex-sm-75 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 75%;
    box-sizing: border-box; }
  .flex-sm-80 {
    flex: 1 1 100%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-sm-80 {
    flex: 1 1 100%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-sm-80 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 80%;
    box-sizing: border-box; }
  .layout-row > .flex-sm-33, .layout-row > .flex-sm-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-sm-66, .layout-row > .flex-sm-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-sm-33, .layout-column > .flex-sm-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-sm-66, .layout-column > .flex-sm-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-sm-row > .flex-sm-80 {
    flex: 1 1 100%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-sm-column > .flex-sm-80 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 80%;
    box-sizing: border-box; }
  .flex-sm-85 {
    flex: 1 1 100%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-sm-85 {
    flex: 1 1 100%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-sm-85 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 85%;
    box-sizing: border-box; }
  .layout-row > .flex-sm-33, .layout-row > .flex-sm-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-sm-66, .layout-row > .flex-sm-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-sm-33, .layout-column > .flex-sm-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-sm-66, .layout-column > .flex-sm-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-sm-row > .flex-sm-85 {
    flex: 1 1 100%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-sm-column > .flex-sm-85 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 85%;
    box-sizing: border-box; }
  .flex-sm-90 {
    flex: 1 1 100%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-sm-90 {
    flex: 1 1 100%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-sm-90 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 90%;
    box-sizing: border-box; }
  .layout-row > .flex-sm-33, .layout-row > .flex-sm-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-sm-66, .layout-row > .flex-sm-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-sm-33, .layout-column > .flex-sm-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-sm-66, .layout-column > .flex-sm-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-sm-row > .flex-sm-90 {
    flex: 1 1 100%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-sm-column > .flex-sm-90 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 90%;
    box-sizing: border-box; }
  .flex-sm-95 {
    flex: 1 1 100%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-sm-95 {
    flex: 1 1 100%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-sm-95 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 95%;
    box-sizing: border-box; }
  .layout-row > .flex-sm-33, .layout-row > .flex-sm-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-sm-66, .layout-row > .flex-sm-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-sm-33, .layout-column > .flex-sm-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-sm-66, .layout-column > .flex-sm-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-sm-row > .flex-sm-95 {
    flex: 1 1 100%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-sm-column > .flex-sm-95 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 95%;
    box-sizing: border-box; }
  .flex-sm-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-sm-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-sm-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-sm-33, .layout-row > .flex-sm-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-sm-66, .layout-row > .flex-sm-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-sm-33, .layout-column > .flex-sm-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-sm-66, .layout-column > .flex-sm-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-sm-row > .flex-sm-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-sm-column > .flex-sm-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-sm-row > .flex-sm-33, .layout-sm-row > .flex-sm-33 {
    flex: 1 1 100%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-sm-row > .flex-sm-66, .layout-sm-row > .flex-sm-66 {
    flex: 1 1 100%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-sm-row > .flex {
    min-width: 0; }
  .layout-sm-column > .flex-sm-33, .layout-sm-column > .flex-sm-33 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-sm-column > .flex-sm-66, .layout-sm-column > .flex-sm-66 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .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; }
  .offset-gt-sm-0, .flex-offset-gt-sm-0 {
    margin-left: 0; }
    [dir=rtl] .offset-gt-sm-0, [dir=rtl] .flex-offset-gt-sm-0 {
      margin-left: auto;
      margin-right: 0; }
  .offset-gt-sm-5, .flex-offset-gt-sm-5 {
    margin-left: 5%; }
    [dir=rtl] .offset-gt-sm-5, [dir=rtl] .flex-offset-gt-sm-5 {
      margin-left: auto;
      margin-right: 5%; }
  .offset-gt-sm-10, .flex-offset-gt-sm-10 {
    margin-left: 10%; }
    [dir=rtl] .offset-gt-sm-10, [dir=rtl] .flex-offset-gt-sm-10 {
      margin-left: auto;
      margin-right: 10%; }
  .offset-gt-sm-15, .flex-offset-gt-sm-15 {
    margin-left: 15%; }
    [dir=rtl] .offset-gt-sm-15, [dir=rtl] .flex-offset-gt-sm-15 {
      margin-left: auto;
      margin-right: 15%; }
  .offset-gt-sm-20, .flex-offset-gt-sm-20 {
    margin-left: 20%; }
    [dir=rtl] .offset-gt-sm-20, [dir=rtl] .flex-offset-gt-sm-20 {
      margin-left: auto;
      margin-right: 20%; }
  .offset-gt-sm-25, .flex-offset-gt-sm-25 {
    margin-left: 25%; }
    [dir=rtl] .offset-gt-sm-25, [dir=rtl] .flex-offset-gt-sm-25 {
      margin-left: auto;
      margin-right: 25%; }
  .offset-gt-sm-30, .flex-offset-gt-sm-30 {
    margin-left: 30%; }
    [dir=rtl] .offset-gt-sm-30, [dir=rtl] .flex-offset-gt-sm-30 {
      margin-left: auto;
      margin-right: 30%; }
  .offset-gt-sm-35, .flex-offset-gt-sm-35 {
    margin-left: 35%; }
    [dir=rtl] .offset-gt-sm-35, [dir=rtl] .flex-offset-gt-sm-35 {
      margin-left: auto;
      margin-right: 35%; }
  .offset-gt-sm-40, .flex-offset-gt-sm-40 {
    margin-left: 40%; }
    [dir=rtl] .offset-gt-sm-40, [dir=rtl] .flex-offset-gt-sm-40 {
      margin-left: auto;
      margin-right: 40%; }
  .offset-gt-sm-45, .flex-offset-gt-sm-45 {
    margin-left: 45%; }
    [dir=rtl] .offset-gt-sm-45, [dir=rtl] .flex-offset-gt-sm-45 {
      margin-left: auto;
      margin-right: 45%; }
  .offset-gt-sm-50, .flex-offset-gt-sm-50 {
    margin-left: 50%; }
    [dir=rtl] .offset-gt-sm-50, [dir=rtl] .flex-offset-gt-sm-50 {
      margin-left: auto;
      margin-right: 50%; }
  .offset-gt-sm-55, .flex-offset-gt-sm-55 {
    margin-left: 55%; }
    [dir=rtl] .offset-gt-sm-55, [dir=rtl] .flex-offset-gt-sm-55 {
      margin-left: auto;
      margin-right: 55%; }
  .offset-gt-sm-60, .flex-offset-gt-sm-60 {
    margin-left: 60%; }
    [dir=rtl] .offset-gt-sm-60, [dir=rtl] .flex-offset-gt-sm-60 {
      margin-left: auto;
      margin-right: 60%; }
  .offset-gt-sm-65, .flex-offset-gt-sm-65 {
    margin-left: 65%; }
    [dir=rtl] .offset-gt-sm-65, [dir=rtl] .flex-offset-gt-sm-65 {
      margin-left: auto;
      margin-right: 65%; }
  .offset-gt-sm-70, .flex-offset-gt-sm-70 {
    margin-left: 70%; }
    [dir=rtl] .offset-gt-sm-70, [dir=rtl] .flex-offset-gt-sm-70 {
      margin-left: auto;
      margin-right: 70%; }
  .offset-gt-sm-75, .flex-offset-gt-sm-75 {
    margin-left: 75%; }
    [dir=rtl] .offset-gt-sm-75, [dir=rtl] .flex-offset-gt-sm-75 {
      margin-left: auto;
      margin-right: 75%; }
  .offset-gt-sm-80, .flex-offset-gt-sm-80 {
    margin-left: 80%; }
    [dir=rtl] .offset-gt-sm-80, [dir=rtl] .flex-offset-gt-sm-80 {
      margin-left: auto;
      margin-right: 80%; }
  .offset-gt-sm-85, .flex-offset-gt-sm-85 {
    margin-left: 85%; }
    [dir=rtl] .offset-gt-sm-85, [dir=rtl] .flex-offset-gt-sm-85 {
      margin-left: auto;
      margin-right: 85%; }
  .offset-gt-sm-90, .flex-offset-gt-sm-90 {
    margin-left: 90%; }
    [dir=rtl] .offset-gt-sm-90, [dir=rtl] .flex-offset-gt-sm-90 {
      margin-left: auto;
      margin-right: 90%; }
  .offset-gt-sm-95, .flex-offset-gt-sm-95 {
    margin-left: 95%; }
    [dir=rtl] .offset-gt-sm-95, [dir=rtl] .flex-offset-gt-sm-95 {
      margin-left: auto;
      margin-right: 95%; }
  .offset-gt-sm-33, .flex-offset-gt-sm-33 {
    margin-left: calc(100% / 3); }
  .offset-gt-sm-66, .flex-offset-gt-sm-66 {
    margin-left: calc(200% / 3); }
    [dir=rtl] .offset-gt-sm-66, [dir=rtl] .flex-offset-gt-sm-66 {
      margin-left: auto;
      margin-right: calc(200% / 3); }
  .layout-align-gt-sm,
  .layout-align-gt-sm-start-stretch {
    justify-content: flex-start;
    align-content: stretch;
    align-items: stretch; }
  .layout-align-gt-sm-start,
  .layout-align-gt-sm-start-start,
  .layout-align-gt-sm-start-center,
  .layout-align-gt-sm-start-end,
  .layout-align-gt-sm-start-stretch {
    justify-content: flex-start; }
  .layout-align-gt-sm-center,
  .layout-align-gt-sm-center-start,
  .layout-align-gt-sm-center-center,
  .layout-align-gt-sm-center-end,
  .layout-align-gt-sm-center-stretch {
    justify-content: center; }
  .layout-align-gt-sm-end,
  .layout-align-gt-sm-end-start,
  .layout-align-gt-sm-end-center,
  .layout-align-gt-sm-end-end,
  .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-start,
  .layout-align-gt-sm-space-around-end,
  .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-start,
  .layout-align-gt-sm-space-between-end,
  .layout-align-gt-sm-space-between-stretch {
    justify-content: space-between; }
  .layout-align-gt-sm-start-start,
  .layout-align-gt-sm-center-start,
  .layout-align-gt-sm-end-start,
  .layout-align-gt-sm-space-between-start,
  .layout-align-gt-sm-space-around-start {
    align-items: flex-start;
    align-content: flex-start; }
  .layout-align-gt-sm-start-center,
  .layout-align-gt-sm-center-center,
  .layout-align-gt-sm-end-center,
  .layout-align-gt-sm-space-between-center,
  .layout-align-gt-sm-space-around-center {
    align-items: center;
    align-content: center;
    max-width: 100%; }
  .layout-align-gt-sm-start-center > *,
  .layout-align-gt-sm-center-center > *,
  .layout-align-gt-sm-end-center > *,
  .layout-align-gt-sm-space-between-center > *,
  .layout-align-gt-sm-space-around-center > * {
    max-width: 100%;
    box-sizing: border-box; }
  .layout-align-gt-sm-start-end,
  .layout-align-gt-sm-center-end,
  .layout-align-gt-sm-end-end,
  .layout-align-gt-sm-space-between-end,
  .layout-align-gt-sm-space-around-end {
    align-items: flex-end;
    align-content: flex-end; }
  .layout-align-gt-sm-start-stretch,
  .layout-align-gt-sm-center-stretch,
  .layout-align-gt-sm-end-stretch,
  .layout-align-gt-sm-space-between-stretch,
  .layout-align-gt-sm-space-around-stretch {
    align-items: stretch;
    align-content: stretch; }
  .flex-gt-sm {
    flex: 1;
    box-sizing: border-box; }
  .flex-gt-sm-grow {
    flex: 1 1 100%;
    box-sizing: border-box; }
  .flex-gt-sm-initial {
    flex: 0 1 auto;
    box-sizing: border-box; }
  .flex-gt-sm-auto {
    flex: 1 1 auto;
    box-sizing: border-box; }
  .flex-gt-sm-none {
    flex: 0 0 auto;
    box-sizing: border-box; }
  .flex-gt-sm-noshrink {
    flex: 1 0 auto;
    box-sizing: border-box; }
  .flex-gt-sm-nogrow {
    flex: 0 1 auto;
    box-sizing: border-box; }
  .flex-gt-sm-0 {
    flex: 1 1 100%;
    max-width: 0%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-sm-0 {
    flex: 1 1 100%;
    max-width: 0%;
    max-height: 100%;
    box-sizing: border-box;
    min-width: 0; }
  .layout-column > .flex-gt-sm-0 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 0%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-sm-33, .layout-row > .flex-gt-sm-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-sm-66, .layout-row > .flex-gt-sm-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-sm-33, .layout-column > .flex-gt-sm-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-sm-66, .layout-column > .flex-gt-sm-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-sm-row > .flex-gt-sm-0 {
    flex: 1 1 100%;
    max-width: 0%;
    max-height: 100%;
    box-sizing: border-box;
    min-width: 0; }
  .layout-gt-sm-column > .flex-gt-sm-0 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 0%;
    box-sizing: border-box;
    min-height: 0; }
  .flex-gt-sm-5 {
    flex: 1 1 100%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-sm-5 {
    flex: 1 1 100%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-sm-5 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 5%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-sm-33, .layout-row > .flex-gt-sm-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-sm-66, .layout-row > .flex-gt-sm-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-sm-33, .layout-column > .flex-gt-sm-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-sm-66, .layout-column > .flex-gt-sm-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-sm-row > .flex-gt-sm-5 {
    flex: 1 1 100%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-sm-column > .flex-gt-sm-5 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 5%;
    box-sizing: border-box; }
  .flex-gt-sm-10 {
    flex: 1 1 100%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-sm-10 {
    flex: 1 1 100%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-sm-10 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 10%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-sm-33, .layout-row > .flex-gt-sm-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-sm-66, .layout-row > .flex-gt-sm-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-sm-33, .layout-column > .flex-gt-sm-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-sm-66, .layout-column > .flex-gt-sm-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-sm-row > .flex-gt-sm-10 {
    flex: 1 1 100%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-sm-column > .flex-gt-sm-10 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 10%;
    box-sizing: border-box; }
  .flex-gt-sm-15 {
    flex: 1 1 100%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-sm-15 {
    flex: 1 1 100%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-sm-15 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 15%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-sm-33, .layout-row > .flex-gt-sm-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-sm-66, .layout-row > .flex-gt-sm-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-sm-33, .layout-column > .flex-gt-sm-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-sm-66, .layout-column > .flex-gt-sm-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-sm-row > .flex-gt-sm-15 {
    flex: 1 1 100%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-sm-column > .flex-gt-sm-15 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 15%;
    box-sizing: border-box; }
  .flex-gt-sm-20 {
    flex: 1 1 100%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-sm-20 {
    flex: 1 1 100%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-sm-20 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 20%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-sm-33, .layout-row > .flex-gt-sm-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-sm-66, .layout-row > .flex-gt-sm-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-sm-33, .layout-column > .flex-gt-sm-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-sm-66, .layout-column > .flex-gt-sm-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-sm-row > .flex-gt-sm-20 {
    flex: 1 1 100%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-sm-column > .flex-gt-sm-20 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 20%;
    box-sizing: border-box; }
  .flex-gt-sm-25 {
    flex: 1 1 100%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-sm-25 {
    flex: 1 1 100%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-sm-25 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 25%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-sm-33, .layout-row > .flex-gt-sm-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-sm-66, .layout-row > .flex-gt-sm-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-sm-33, .layout-column > .flex-gt-sm-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-sm-66, .layout-column > .flex-gt-sm-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-sm-row > .flex-gt-sm-25 {
    flex: 1 1 100%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-sm-column > .flex-gt-sm-25 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 25%;
    box-sizing: border-box; }
  .flex-gt-sm-30 {
    flex: 1 1 100%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-sm-30 {
    flex: 1 1 100%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-sm-30 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 30%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-sm-33, .layout-row > .flex-gt-sm-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-sm-66, .layout-row > .flex-gt-sm-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-sm-33, .layout-column > .flex-gt-sm-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-sm-66, .layout-column > .flex-gt-sm-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-sm-row > .flex-gt-sm-30 {
    flex: 1 1 100%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-sm-column > .flex-gt-sm-30 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 30%;
    box-sizing: border-box; }
  .flex-gt-sm-35 {
    flex: 1 1 100%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-sm-35 {
    flex: 1 1 100%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-sm-35 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 35%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-sm-33, .layout-row > .flex-gt-sm-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-sm-66, .layout-row > .flex-gt-sm-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-sm-33, .layout-column > .flex-gt-sm-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-sm-66, .layout-column > .flex-gt-sm-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-sm-row > .flex-gt-sm-35 {
    flex: 1 1 100%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-sm-column > .flex-gt-sm-35 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 35%;
    box-sizing: border-box; }
  .flex-gt-sm-40 {
    flex: 1 1 100%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-sm-40 {
    flex: 1 1 100%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-sm-40 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 40%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-sm-33, .layout-row > .flex-gt-sm-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-sm-66, .layout-row > .flex-gt-sm-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-sm-33, .layout-column > .flex-gt-sm-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-sm-66, .layout-column > .flex-gt-sm-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-sm-row > .flex-gt-sm-40 {
    flex: 1 1 100%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-sm-column > .flex-gt-sm-40 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 40%;
    box-sizing: border-box; }
  .flex-gt-sm-45 {
    flex: 1 1 100%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-sm-45 {
    flex: 1 1 100%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-sm-45 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 45%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-sm-33, .layout-row > .flex-gt-sm-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-sm-66, .layout-row > .flex-gt-sm-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-sm-33, .layout-column > .flex-gt-sm-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-sm-66, .layout-column > .flex-gt-sm-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-sm-row > .flex-gt-sm-45 {
    flex: 1 1 100%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-sm-column > .flex-gt-sm-45 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 45%;
    box-sizing: border-box; }
  .flex-gt-sm-50 {
    flex: 1 1 100%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-sm-50 {
    flex: 1 1 100%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-sm-50 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 50%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-sm-33, .layout-row > .flex-gt-sm-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-sm-66, .layout-row > .flex-gt-sm-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-sm-33, .layout-column > .flex-gt-sm-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-sm-66, .layout-column > .flex-gt-sm-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-sm-row > .flex-gt-sm-50 {
    flex: 1 1 100%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-sm-column > .flex-gt-sm-50 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 50%;
    box-sizing: border-box; }
  .flex-gt-sm-55 {
    flex: 1 1 100%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-sm-55 {
    flex: 1 1 100%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-sm-55 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 55%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-sm-33, .layout-row > .flex-gt-sm-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-sm-66, .layout-row > .flex-gt-sm-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-sm-33, .layout-column > .flex-gt-sm-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-sm-66, .layout-column > .flex-gt-sm-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-sm-row > .flex-gt-sm-55 {
    flex: 1 1 100%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-sm-column > .flex-gt-sm-55 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 55%;
    box-sizing: border-box; }
  .flex-gt-sm-60 {
    flex: 1 1 100%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-sm-60 {
    flex: 1 1 100%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-sm-60 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 60%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-sm-33, .layout-row > .flex-gt-sm-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-sm-66, .layout-row > .flex-gt-sm-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-sm-33, .layout-column > .flex-gt-sm-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-sm-66, .layout-column > .flex-gt-sm-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-sm-row > .flex-gt-sm-60 {
    flex: 1 1 100%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-sm-column > .flex-gt-sm-60 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 60%;
    box-sizing: border-box; }
  .flex-gt-sm-65 {
    flex: 1 1 100%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-sm-65 {
    flex: 1 1 100%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-sm-65 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 65%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-sm-33, .layout-row > .flex-gt-sm-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-sm-66, .layout-row > .flex-gt-sm-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-sm-33, .layout-column > .flex-gt-sm-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-sm-66, .layout-column > .flex-gt-sm-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-sm-row > .flex-gt-sm-65 {
    flex: 1 1 100%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-sm-column > .flex-gt-sm-65 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 65%;
    box-sizing: border-box; }
  .flex-gt-sm-70 {
    flex: 1 1 100%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-sm-70 {
    flex: 1 1 100%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-sm-70 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 70%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-sm-33, .layout-row > .flex-gt-sm-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-sm-66, .layout-row > .flex-gt-sm-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-sm-33, .layout-column > .flex-gt-sm-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-sm-66, .layout-column > .flex-gt-sm-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-sm-row > .flex-gt-sm-70 {
    flex: 1 1 100%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-sm-column > .flex-gt-sm-70 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 70%;
    box-sizing: border-box; }
  .flex-gt-sm-75 {
    flex: 1 1 100%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-sm-75 {
    flex: 1 1 100%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-sm-75 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 75%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-sm-33, .layout-row > .flex-gt-sm-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-sm-66, .layout-row > .flex-gt-sm-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-sm-33, .layout-column > .flex-gt-sm-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-sm-66, .layout-column > .flex-gt-sm-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-sm-row > .flex-gt-sm-75 {
    flex: 1 1 100%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-sm-column > .flex-gt-sm-75 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 75%;
    box-sizing: border-box; }
  .flex-gt-sm-80 {
    flex: 1 1 100%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-sm-80 {
    flex: 1 1 100%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-sm-80 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 80%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-sm-33, .layout-row > .flex-gt-sm-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-sm-66, .layout-row > .flex-gt-sm-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-sm-33, .layout-column > .flex-gt-sm-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-sm-66, .layout-column > .flex-gt-sm-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-sm-row > .flex-gt-sm-80 {
    flex: 1 1 100%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-sm-column > .flex-gt-sm-80 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 80%;
    box-sizing: border-box; }
  .flex-gt-sm-85 {
    flex: 1 1 100%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-sm-85 {
    flex: 1 1 100%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-sm-85 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 85%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-sm-33, .layout-row > .flex-gt-sm-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-sm-66, .layout-row > .flex-gt-sm-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-sm-33, .layout-column > .flex-gt-sm-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-sm-66, .layout-column > .flex-gt-sm-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-sm-row > .flex-gt-sm-85 {
    flex: 1 1 100%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-sm-column > .flex-gt-sm-85 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 85%;
    box-sizing: border-box; }
  .flex-gt-sm-90 {
    flex: 1 1 100%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-sm-90 {
    flex: 1 1 100%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-sm-90 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 90%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-sm-33, .layout-row > .flex-gt-sm-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-sm-66, .layout-row > .flex-gt-sm-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-sm-33, .layout-column > .flex-gt-sm-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-sm-66, .layout-column > .flex-gt-sm-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-sm-row > .flex-gt-sm-90 {
    flex: 1 1 100%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-sm-column > .flex-gt-sm-90 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 90%;
    box-sizing: border-box; }
  .flex-gt-sm-95 {
    flex: 1 1 100%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-sm-95 {
    flex: 1 1 100%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-sm-95 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 95%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-sm-33, .layout-row > .flex-gt-sm-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-sm-66, .layout-row > .flex-gt-sm-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-sm-33, .layout-column > .flex-gt-sm-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-sm-66, .layout-column > .flex-gt-sm-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-sm-row > .flex-gt-sm-95 {
    flex: 1 1 100%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-sm-column > .flex-gt-sm-95 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 95%;
    box-sizing: border-box; }
  .flex-gt-sm-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-sm-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-sm-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-sm-33, .layout-row > .flex-gt-sm-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-sm-66, .layout-row > .flex-gt-sm-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-sm-33, .layout-column > .flex-gt-sm-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-sm-66, .layout-column > .flex-gt-sm-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-sm-row > .flex-gt-sm-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-sm-column > .flex-gt-sm-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-sm-row > .flex-gt-sm-33, .layout-gt-sm-row > .flex-gt-sm-33 {
    flex: 1 1 100%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-sm-row > .flex-gt-sm-66, .layout-gt-sm-row > .flex-gt-sm-66 {
    flex: 1 1 100%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-sm-row > .flex {
    min-width: 0; }
  .layout-gt-sm-column > .flex-gt-sm-33, .layout-gt-sm-column > .flex-gt-sm-33 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-gt-sm-column > .flex-gt-sm-66, .layout-gt-sm-column > .flex-gt-sm-66 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .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: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-gt-sm:not(.show-gt-xs):not(.show-gt-sm):not(.show-md):not(.show) {
    display: none; }
  .hide-md:not(.show-md):not(.show-gt-sm):not(.show-gt-xs):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; }
  .offset-md-0, .flex-offset-md-0 {
    margin-left: 0; }
    [dir=rtl] .offset-md-0, [dir=rtl] .flex-offset-md-0 {
      margin-left: auto;
      margin-right: 0; }
  .offset-md-5, .flex-offset-md-5 {
    margin-left: 5%; }
    [dir=rtl] .offset-md-5, [dir=rtl] .flex-offset-md-5 {
      margin-left: auto;
      margin-right: 5%; }
  .offset-md-10, .flex-offset-md-10 {
    margin-left: 10%; }
    [dir=rtl] .offset-md-10, [dir=rtl] .flex-offset-md-10 {
      margin-left: auto;
      margin-right: 10%; }
  .offset-md-15, .flex-offset-md-15 {
    margin-left: 15%; }
    [dir=rtl] .offset-md-15, [dir=rtl] .flex-offset-md-15 {
      margin-left: auto;
      margin-right: 15%; }
  .offset-md-20, .flex-offset-md-20 {
    margin-left: 20%; }
    [dir=rtl] .offset-md-20, [dir=rtl] .flex-offset-md-20 {
      margin-left: auto;
      margin-right: 20%; }
  .offset-md-25, .flex-offset-md-25 {
    margin-left: 25%; }
    [dir=rtl] .offset-md-25, [dir=rtl] .flex-offset-md-25 {
      margin-left: auto;
      margin-right: 25%; }
  .offset-md-30, .flex-offset-md-30 {
    margin-left: 30%; }
    [dir=rtl] .offset-md-30, [dir=rtl] .flex-offset-md-30 {
      margin-left: auto;
      margin-right: 30%; }
  .offset-md-35, .flex-offset-md-35 {
    margin-left: 35%; }
    [dir=rtl] .offset-md-35, [dir=rtl] .flex-offset-md-35 {
      margin-left: auto;
      margin-right: 35%; }
  .offset-md-40, .flex-offset-md-40 {
    margin-left: 40%; }
    [dir=rtl] .offset-md-40, [dir=rtl] .flex-offset-md-40 {
      margin-left: auto;
      margin-right: 40%; }
  .offset-md-45, .flex-offset-md-45 {
    margin-left: 45%; }
    [dir=rtl] .offset-md-45, [dir=rtl] .flex-offset-md-45 {
      margin-left: auto;
      margin-right: 45%; }
  .offset-md-50, .flex-offset-md-50 {
    margin-left: 50%; }
    [dir=rtl] .offset-md-50, [dir=rtl] .flex-offset-md-50 {
      margin-left: auto;
      margin-right: 50%; }
  .offset-md-55, .flex-offset-md-55 {
    margin-left: 55%; }
    [dir=rtl] .offset-md-55, [dir=rtl] .flex-offset-md-55 {
      margin-left: auto;
      margin-right: 55%; }
  .offset-md-60, .flex-offset-md-60 {
    margin-left: 60%; }
    [dir=rtl] .offset-md-60, [dir=rtl] .flex-offset-md-60 {
      margin-left: auto;
      margin-right: 60%; }
  .offset-md-65, .flex-offset-md-65 {
    margin-left: 65%; }
    [dir=rtl] .offset-md-65, [dir=rtl] .flex-offset-md-65 {
      margin-left: auto;
      margin-right: 65%; }
  .offset-md-70, .flex-offset-md-70 {
    margin-left: 70%; }
    [dir=rtl] .offset-md-70, [dir=rtl] .flex-offset-md-70 {
      margin-left: auto;
      margin-right: 70%; }
  .offset-md-75, .flex-offset-md-75 {
    margin-left: 75%; }
    [dir=rtl] .offset-md-75, [dir=rtl] .flex-offset-md-75 {
      margin-left: auto;
      margin-right: 75%; }
  .offset-md-80, .flex-offset-md-80 {
    margin-left: 80%; }
    [dir=rtl] .offset-md-80, [dir=rtl] .flex-offset-md-80 {
      margin-left: auto;
      margin-right: 80%; }
  .offset-md-85, .flex-offset-md-85 {
    margin-left: 85%; }
    [dir=rtl] .offset-md-85, [dir=rtl] .flex-offset-md-85 {
      margin-left: auto;
      margin-right: 85%; }
  .offset-md-90, .flex-offset-md-90 {
    margin-left: 90%; }
    [dir=rtl] .offset-md-90, [dir=rtl] .flex-offset-md-90 {
      margin-left: auto;
      margin-right: 90%; }
  .offset-md-95, .flex-offset-md-95 {
    margin-left: 95%; }
    [dir=rtl] .offset-md-95, [dir=rtl] .flex-offset-md-95 {
      margin-left: auto;
      margin-right: 95%; }
  .offset-md-33, .flex-offset-md-33 {
    margin-left: calc(100% / 3); }
  .offset-md-66, .flex-offset-md-66 {
    margin-left: calc(200% / 3); }
    [dir=rtl] .offset-md-66, [dir=rtl] .flex-offset-md-66 {
      margin-left: auto;
      margin-right: calc(200% / 3); }
  .layout-align-md,
  .layout-align-md-start-stretch {
    justify-content: flex-start;
    align-content: stretch;
    align-items: stretch; }
  .layout-align-md-start,
  .layout-align-md-start-start,
  .layout-align-md-start-center,
  .layout-align-md-start-end,
  .layout-align-md-start-stretch {
    justify-content: flex-start; }
  .layout-align-md-center,
  .layout-align-md-center-start,
  .layout-align-md-center-center,
  .layout-align-md-center-end,
  .layout-align-md-center-stretch {
    justify-content: center; }
  .layout-align-md-end,
  .layout-align-md-end-start,
  .layout-align-md-end-center,
  .layout-align-md-end-end,
  .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-start,
  .layout-align-md-space-around-end,
  .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-start,
  .layout-align-md-space-between-end,
  .layout-align-md-space-between-stretch {
    justify-content: space-between; }
  .layout-align-md-start-start,
  .layout-align-md-center-start,
  .layout-align-md-end-start,
  .layout-align-md-space-between-start,
  .layout-align-md-space-around-start {
    align-items: flex-start;
    align-content: flex-start; }
  .layout-align-md-start-center,
  .layout-align-md-center-center,
  .layout-align-md-end-center,
  .layout-align-md-space-between-center,
  .layout-align-md-space-around-center {
    align-items: center;
    align-content: center;
    max-width: 100%; }
  .layout-align-md-start-center > *,
  .layout-align-md-center-center > *,
  .layout-align-md-end-center > *,
  .layout-align-md-space-between-center > *,
  .layout-align-md-space-around-center > * {
    max-width: 100%;
    box-sizing: border-box; }
  .layout-align-md-start-end,
  .layout-align-md-center-end,
  .layout-align-md-end-end,
  .layout-align-md-space-between-end,
  .layout-align-md-space-around-end {
    align-items: flex-end;
    align-content: flex-end; }
  .layout-align-md-start-stretch,
  .layout-align-md-center-stretch,
  .layout-align-md-end-stretch,
  .layout-align-md-space-between-stretch,
  .layout-align-md-space-around-stretch {
    align-items: stretch;
    align-content: stretch; }
  .flex-md {
    flex: 1;
    box-sizing: border-box; }
  .flex-md-grow {
    flex: 1 1 100%;
    box-sizing: border-box; }
  .flex-md-initial {
    flex: 0 1 auto;
    box-sizing: border-box; }
  .flex-md-auto {
    flex: 1 1 auto;
    box-sizing: border-box; }
  .flex-md-none {
    flex: 0 0 auto;
    box-sizing: border-box; }
  .flex-md-noshrink {
    flex: 1 0 auto;
    box-sizing: border-box; }
  .flex-md-nogrow {
    flex: 0 1 auto;
    box-sizing: border-box; }
  .flex-md-0 {
    flex: 1 1 100%;
    max-width: 0%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-md-0 {
    flex: 1 1 100%;
    max-width: 0%;
    max-height: 100%;
    box-sizing: border-box;
    min-width: 0; }
  .layout-column > .flex-md-0 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 0%;
    box-sizing: border-box; }
  .layout-row > .flex-md-33, .layout-row > .flex-md-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-md-66, .layout-row > .flex-md-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-md-33, .layout-column > .flex-md-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-md-66, .layout-column > .flex-md-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-md-row > .flex-md-0 {
    flex: 1 1 100%;
    max-width: 0%;
    max-height: 100%;
    box-sizing: border-box;
    min-width: 0; }
  .layout-md-column > .flex-md-0 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 0%;
    box-sizing: border-box;
    min-height: 0; }
  .flex-md-5 {
    flex: 1 1 100%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-md-5 {
    flex: 1 1 100%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-md-5 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 5%;
    box-sizing: border-box; }
  .layout-row > .flex-md-33, .layout-row > .flex-md-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-md-66, .layout-row > .flex-md-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-md-33, .layout-column > .flex-md-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-md-66, .layout-column > .flex-md-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-md-row > .flex-md-5 {
    flex: 1 1 100%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-md-column > .flex-md-5 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 5%;
    box-sizing: border-box; }
  .flex-md-10 {
    flex: 1 1 100%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-md-10 {
    flex: 1 1 100%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-md-10 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 10%;
    box-sizing: border-box; }
  .layout-row > .flex-md-33, .layout-row > .flex-md-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-md-66, .layout-row > .flex-md-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-md-33, .layout-column > .flex-md-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-md-66, .layout-column > .flex-md-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-md-row > .flex-md-10 {
    flex: 1 1 100%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-md-column > .flex-md-10 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 10%;
    box-sizing: border-box; }
  .flex-md-15 {
    flex: 1 1 100%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-md-15 {
    flex: 1 1 100%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-md-15 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 15%;
    box-sizing: border-box; }
  .layout-row > .flex-md-33, .layout-row > .flex-md-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-md-66, .layout-row > .flex-md-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-md-33, .layout-column > .flex-md-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-md-66, .layout-column > .flex-md-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-md-row > .flex-md-15 {
    flex: 1 1 100%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-md-column > .flex-md-15 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 15%;
    box-sizing: border-box; }
  .flex-md-20 {
    flex: 1 1 100%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-md-20 {
    flex: 1 1 100%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-md-20 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 20%;
    box-sizing: border-box; }
  .layout-row > .flex-md-33, .layout-row > .flex-md-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-md-66, .layout-row > .flex-md-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-md-33, .layout-column > .flex-md-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-md-66, .layout-column > .flex-md-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-md-row > .flex-md-20 {
    flex: 1 1 100%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-md-column > .flex-md-20 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 20%;
    box-sizing: border-box; }
  .flex-md-25 {
    flex: 1 1 100%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-md-25 {
    flex: 1 1 100%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-md-25 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 25%;
    box-sizing: border-box; }
  .layout-row > .flex-md-33, .layout-row > .flex-md-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-md-66, .layout-row > .flex-md-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-md-33, .layout-column > .flex-md-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-md-66, .layout-column > .flex-md-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-md-row > .flex-md-25 {
    flex: 1 1 100%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-md-column > .flex-md-25 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 25%;
    box-sizing: border-box; }
  .flex-md-30 {
    flex: 1 1 100%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-md-30 {
    flex: 1 1 100%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-md-30 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 30%;
    box-sizing: border-box; }
  .layout-row > .flex-md-33, .layout-row > .flex-md-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-md-66, .layout-row > .flex-md-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-md-33, .layout-column > .flex-md-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-md-66, .layout-column > .flex-md-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-md-row > .flex-md-30 {
    flex: 1 1 100%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-md-column > .flex-md-30 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 30%;
    box-sizing: border-box; }
  .flex-md-35 {
    flex: 1 1 100%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-md-35 {
    flex: 1 1 100%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-md-35 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 35%;
    box-sizing: border-box; }
  .layout-row > .flex-md-33, .layout-row > .flex-md-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-md-66, .layout-row > .flex-md-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-md-33, .layout-column > .flex-md-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-md-66, .layout-column > .flex-md-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-md-row > .flex-md-35 {
    flex: 1 1 100%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-md-column > .flex-md-35 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 35%;
    box-sizing: border-box; }
  .flex-md-40 {
    flex: 1 1 100%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-md-40 {
    flex: 1 1 100%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-md-40 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 40%;
    box-sizing: border-box; }
  .layout-row > .flex-md-33, .layout-row > .flex-md-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-md-66, .layout-row > .flex-md-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-md-33, .layout-column > .flex-md-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-md-66, .layout-column > .flex-md-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-md-row > .flex-md-40 {
    flex: 1 1 100%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-md-column > .flex-md-40 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 40%;
    box-sizing: border-box; }
  .flex-md-45 {
    flex: 1 1 100%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-md-45 {
    flex: 1 1 100%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-md-45 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 45%;
    box-sizing: border-box; }
  .layout-row > .flex-md-33, .layout-row > .flex-md-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-md-66, .layout-row > .flex-md-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-md-33, .layout-column > .flex-md-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-md-66, .layout-column > .flex-md-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-md-row > .flex-md-45 {
    flex: 1 1 100%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-md-column > .flex-md-45 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 45%;
    box-sizing: border-box; }
  .flex-md-50 {
    flex: 1 1 100%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-md-50 {
    flex: 1 1 100%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-md-50 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 50%;
    box-sizing: border-box; }
  .layout-row > .flex-md-33, .layout-row > .flex-md-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-md-66, .layout-row > .flex-md-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-md-33, .layout-column > .flex-md-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-md-66, .layout-column > .flex-md-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-md-row > .flex-md-50 {
    flex: 1 1 100%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-md-column > .flex-md-50 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 50%;
    box-sizing: border-box; }
  .flex-md-55 {
    flex: 1 1 100%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-md-55 {
    flex: 1 1 100%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-md-55 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 55%;
    box-sizing: border-box; }
  .layout-row > .flex-md-33, .layout-row > .flex-md-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-md-66, .layout-row > .flex-md-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-md-33, .layout-column > .flex-md-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-md-66, .layout-column > .flex-md-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-md-row > .flex-md-55 {
    flex: 1 1 100%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-md-column > .flex-md-55 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 55%;
    box-sizing: border-box; }
  .flex-md-60 {
    flex: 1 1 100%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-md-60 {
    flex: 1 1 100%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-md-60 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 60%;
    box-sizing: border-box; }
  .layout-row > .flex-md-33, .layout-row > .flex-md-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-md-66, .layout-row > .flex-md-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-md-33, .layout-column > .flex-md-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-md-66, .layout-column > .flex-md-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-md-row > .flex-md-60 {
    flex: 1 1 100%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-md-column > .flex-md-60 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 60%;
    box-sizing: border-box; }
  .flex-md-65 {
    flex: 1 1 100%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-md-65 {
    flex: 1 1 100%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-md-65 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 65%;
    box-sizing: border-box; }
  .layout-row > .flex-md-33, .layout-row > .flex-md-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-md-66, .layout-row > .flex-md-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-md-33, .layout-column > .flex-md-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-md-66, .layout-column > .flex-md-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-md-row > .flex-md-65 {
    flex: 1 1 100%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-md-column > .flex-md-65 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 65%;
    box-sizing: border-box; }
  .flex-md-70 {
    flex: 1 1 100%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-md-70 {
    flex: 1 1 100%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-md-70 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 70%;
    box-sizing: border-box; }
  .layout-row > .flex-md-33, .layout-row > .flex-md-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-md-66, .layout-row > .flex-md-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-md-33, .layout-column > .flex-md-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-md-66, .layout-column > .flex-md-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-md-row > .flex-md-70 {
    flex: 1 1 100%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-md-column > .flex-md-70 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 70%;
    box-sizing: border-box; }
  .flex-md-75 {
    flex: 1 1 100%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-md-75 {
    flex: 1 1 100%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-md-75 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 75%;
    box-sizing: border-box; }
  .layout-row > .flex-md-33, .layout-row > .flex-md-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-md-66, .layout-row > .flex-md-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-md-33, .layout-column > .flex-md-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-md-66, .layout-column > .flex-md-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-md-row > .flex-md-75 {
    flex: 1 1 100%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-md-column > .flex-md-75 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 75%;
    box-sizing: border-box; }
  .flex-md-80 {
    flex: 1 1 100%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-md-80 {
    flex: 1 1 100%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-md-80 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 80%;
    box-sizing: border-box; }
  .layout-row > .flex-md-33, .layout-row > .flex-md-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-md-66, .layout-row > .flex-md-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-md-33, .layout-column > .flex-md-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-md-66, .layout-column > .flex-md-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-md-row > .flex-md-80 {
    flex: 1 1 100%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-md-column > .flex-md-80 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 80%;
    box-sizing: border-box; }
  .flex-md-85 {
    flex: 1 1 100%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-md-85 {
    flex: 1 1 100%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-md-85 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 85%;
    box-sizing: border-box; }
  .layout-row > .flex-md-33, .layout-row > .flex-md-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-md-66, .layout-row > .flex-md-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-md-33, .layout-column > .flex-md-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-md-66, .layout-column > .flex-md-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-md-row > .flex-md-85 {
    flex: 1 1 100%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-md-column > .flex-md-85 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 85%;
    box-sizing: border-box; }
  .flex-md-90 {
    flex: 1 1 100%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-md-90 {
    flex: 1 1 100%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-md-90 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 90%;
    box-sizing: border-box; }
  .layout-row > .flex-md-33, .layout-row > .flex-md-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-md-66, .layout-row > .flex-md-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-md-33, .layout-column > .flex-md-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-md-66, .layout-column > .flex-md-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-md-row > .flex-md-90 {
    flex: 1 1 100%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-md-column > .flex-md-90 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 90%;
    box-sizing: border-box; }
  .flex-md-95 {
    flex: 1 1 100%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-md-95 {
    flex: 1 1 100%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-md-95 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 95%;
    box-sizing: border-box; }
  .layout-row > .flex-md-33, .layout-row > .flex-md-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-md-66, .layout-row > .flex-md-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-md-33, .layout-column > .flex-md-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-md-66, .layout-column > .flex-md-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-md-row > .flex-md-95 {
    flex: 1 1 100%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-md-column > .flex-md-95 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 95%;
    box-sizing: border-box; }
  .flex-md-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-md-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-md-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-md-33, .layout-row > .flex-md-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-md-66, .layout-row > .flex-md-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-md-33, .layout-column > .flex-md-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-md-66, .layout-column > .flex-md-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-md-row > .flex-md-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-md-column > .flex-md-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-md-row > .flex-md-33, .layout-md-row > .flex-md-33 {
    flex: 1 1 100%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-md-row > .flex-md-66, .layout-md-row > .flex-md-66 {
    flex: 1 1 100%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-md-row > .flex {
    min-width: 0; }
  .layout-md-column > .flex-md-33, .layout-md-column > .flex-md-33 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-md-column > .flex-md-66, .layout-md-column > .flex-md-66 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .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; }
  .offset-gt-md-0, .flex-offset-gt-md-0 {
    margin-left: 0; }
    [dir=rtl] .offset-gt-md-0, [dir=rtl] .flex-offset-gt-md-0 {
      margin-left: auto;
      margin-right: 0; }
  .offset-gt-md-5, .flex-offset-gt-md-5 {
    margin-left: 5%; }
    [dir=rtl] .offset-gt-md-5, [dir=rtl] .flex-offset-gt-md-5 {
      margin-left: auto;
      margin-right: 5%; }
  .offset-gt-md-10, .flex-offset-gt-md-10 {
    margin-left: 10%; }
    [dir=rtl] .offset-gt-md-10, [dir=rtl] .flex-offset-gt-md-10 {
      margin-left: auto;
      margin-right: 10%; }
  .offset-gt-md-15, .flex-offset-gt-md-15 {
    margin-left: 15%; }
    [dir=rtl] .offset-gt-md-15, [dir=rtl] .flex-offset-gt-md-15 {
      margin-left: auto;
      margin-right: 15%; }
  .offset-gt-md-20, .flex-offset-gt-md-20 {
    margin-left: 20%; }
    [dir=rtl] .offset-gt-md-20, [dir=rtl] .flex-offset-gt-md-20 {
      margin-left: auto;
      margin-right: 20%; }
  .offset-gt-md-25, .flex-offset-gt-md-25 {
    margin-left: 25%; }
    [dir=rtl] .offset-gt-md-25, [dir=rtl] .flex-offset-gt-md-25 {
      margin-left: auto;
      margin-right: 25%; }
  .offset-gt-md-30, .flex-offset-gt-md-30 {
    margin-left: 30%; }
    [dir=rtl] .offset-gt-md-30, [dir=rtl] .flex-offset-gt-md-30 {
      margin-left: auto;
      margin-right: 30%; }
  .offset-gt-md-35, .flex-offset-gt-md-35 {
    margin-left: 35%; }
    [dir=rtl] .offset-gt-md-35, [dir=rtl] .flex-offset-gt-md-35 {
      margin-left: auto;
      margin-right: 35%; }
  .offset-gt-md-40, .flex-offset-gt-md-40 {
    margin-left: 40%; }
    [dir=rtl] .offset-gt-md-40, [dir=rtl] .flex-offset-gt-md-40 {
      margin-left: auto;
      margin-right: 40%; }
  .offset-gt-md-45, .flex-offset-gt-md-45 {
    margin-left: 45%; }
    [dir=rtl] .offset-gt-md-45, [dir=rtl] .flex-offset-gt-md-45 {
      margin-left: auto;
      margin-right: 45%; }
  .offset-gt-md-50, .flex-offset-gt-md-50 {
    margin-left: 50%; }
    [dir=rtl] .offset-gt-md-50, [dir=rtl] .flex-offset-gt-md-50 {
      margin-left: auto;
      margin-right: 50%; }
  .offset-gt-md-55, .flex-offset-gt-md-55 {
    margin-left: 55%; }
    [dir=rtl] .offset-gt-md-55, [dir=rtl] .flex-offset-gt-md-55 {
      margin-left: auto;
      margin-right: 55%; }
  .offset-gt-md-60, .flex-offset-gt-md-60 {
    margin-left: 60%; }
    [dir=rtl] .offset-gt-md-60, [dir=rtl] .flex-offset-gt-md-60 {
      margin-left: auto;
      margin-right: 60%; }
  .offset-gt-md-65, .flex-offset-gt-md-65 {
    margin-left: 65%; }
    [dir=rtl] .offset-gt-md-65, [dir=rtl] .flex-offset-gt-md-65 {
      margin-left: auto;
      margin-right: 65%; }
  .offset-gt-md-70, .flex-offset-gt-md-70 {
    margin-left: 70%; }
    [dir=rtl] .offset-gt-md-70, [dir=rtl] .flex-offset-gt-md-70 {
      margin-left: auto;
      margin-right: 70%; }
  .offset-gt-md-75, .flex-offset-gt-md-75 {
    margin-left: 75%; }
    [dir=rtl] .offset-gt-md-75, [dir=rtl] .flex-offset-gt-md-75 {
      margin-left: auto;
      margin-right: 75%; }
  .offset-gt-md-80, .flex-offset-gt-md-80 {
    margin-left: 80%; }
    [dir=rtl] .offset-gt-md-80, [dir=rtl] .flex-offset-gt-md-80 {
      margin-left: auto;
      margin-right: 80%; }
  .offset-gt-md-85, .flex-offset-gt-md-85 {
    margin-left: 85%; }
    [dir=rtl] .offset-gt-md-85, [dir=rtl] .flex-offset-gt-md-85 {
      margin-left: auto;
      margin-right: 85%; }
  .offset-gt-md-90, .flex-offset-gt-md-90 {
    margin-left: 90%; }
    [dir=rtl] .offset-gt-md-90, [dir=rtl] .flex-offset-gt-md-90 {
      margin-left: auto;
      margin-right: 90%; }
  .offset-gt-md-95, .flex-offset-gt-md-95 {
    margin-left: 95%; }
    [dir=rtl] .offset-gt-md-95, [dir=rtl] .flex-offset-gt-md-95 {
      margin-left: auto;
      margin-right: 95%; }
  .offset-gt-md-33, .flex-offset-gt-md-33 {
    margin-left: calc(100% / 3); }
  .offset-gt-md-66, .flex-offset-gt-md-66 {
    margin-left: calc(200% / 3); }
    [dir=rtl] .offset-gt-md-66, [dir=rtl] .flex-offset-gt-md-66 {
      margin-left: auto;
      margin-right: calc(200% / 3); }
  .layout-align-gt-md,
  .layout-align-gt-md-start-stretch {
    justify-content: flex-start;
    align-content: stretch;
    align-items: stretch; }
  .layout-align-gt-md-start,
  .layout-align-gt-md-start-start,
  .layout-align-gt-md-start-center,
  .layout-align-gt-md-start-end,
  .layout-align-gt-md-start-stretch {
    justify-content: flex-start; }
  .layout-align-gt-md-center,
  .layout-align-gt-md-center-start,
  .layout-align-gt-md-center-center,
  .layout-align-gt-md-center-end,
  .layout-align-gt-md-center-stretch {
    justify-content: center; }
  .layout-align-gt-md-end,
  .layout-align-gt-md-end-start,
  .layout-align-gt-md-end-center,
  .layout-align-gt-md-end-end,
  .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-start,
  .layout-align-gt-md-space-around-end,
  .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-start,
  .layout-align-gt-md-space-between-end,
  .layout-align-gt-md-space-between-stretch {
    justify-content: space-between; }
  .layout-align-gt-md-start-start,
  .layout-align-gt-md-center-start,
  .layout-align-gt-md-end-start,
  .layout-align-gt-md-space-between-start,
  .layout-align-gt-md-space-around-start {
    align-items: flex-start;
    align-content: flex-start; }
  .layout-align-gt-md-start-center,
  .layout-align-gt-md-center-center,
  .layout-align-gt-md-end-center,
  .layout-align-gt-md-space-between-center,
  .layout-align-gt-md-space-around-center {
    align-items: center;
    align-content: center;
    max-width: 100%; }
  .layout-align-gt-md-start-center > *,
  .layout-align-gt-md-center-center > *,
  .layout-align-gt-md-end-center > *,
  .layout-align-gt-md-space-between-center > *,
  .layout-align-gt-md-space-around-center > * {
    max-width: 100%;
    box-sizing: border-box; }
  .layout-align-gt-md-start-end,
  .layout-align-gt-md-center-end,
  .layout-align-gt-md-end-end,
  .layout-align-gt-md-space-between-end,
  .layout-align-gt-md-space-around-end {
    align-items: flex-end;
    align-content: flex-end; }
  .layout-align-gt-md-start-stretch,
  .layout-align-gt-md-center-stretch,
  .layout-align-gt-md-end-stretch,
  .layout-align-gt-md-space-between-stretch,
  .layout-align-gt-md-space-around-stretch {
    align-items: stretch;
    align-content: stretch; }
  .flex-gt-md {
    flex: 1;
    box-sizing: border-box; }
  .flex-gt-md-grow {
    flex: 1 1 100%;
    box-sizing: border-box; }
  .flex-gt-md-initial {
    flex: 0 1 auto;
    box-sizing: border-box; }
  .flex-gt-md-auto {
    flex: 1 1 auto;
    box-sizing: border-box; }
  .flex-gt-md-none {
    flex: 0 0 auto;
    box-sizing: border-box; }
  .flex-gt-md-noshrink {
    flex: 1 0 auto;
    box-sizing: border-box; }
  .flex-gt-md-nogrow {
    flex: 0 1 auto;
    box-sizing: border-box; }
  .flex-gt-md-0 {
    flex: 1 1 100%;
    max-width: 0%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-md-0 {
    flex: 1 1 100%;
    max-width: 0%;
    max-height: 100%;
    box-sizing: border-box;
    min-width: 0; }
  .layout-column > .flex-gt-md-0 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 0%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-md-33, .layout-row > .flex-gt-md-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-md-66, .layout-row > .flex-gt-md-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-md-33, .layout-column > .flex-gt-md-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-md-66, .layout-column > .flex-gt-md-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-md-row > .flex-gt-md-0 {
    flex: 1 1 100%;
    max-width: 0%;
    max-height: 100%;
    box-sizing: border-box;
    min-width: 0; }
  .layout-gt-md-column > .flex-gt-md-0 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 0%;
    box-sizing: border-box;
    min-height: 0; }
  .flex-gt-md-5 {
    flex: 1 1 100%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-md-5 {
    flex: 1 1 100%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-md-5 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 5%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-md-33, .layout-row > .flex-gt-md-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-md-66, .layout-row > .flex-gt-md-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-md-33, .layout-column > .flex-gt-md-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-md-66, .layout-column > .flex-gt-md-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-md-row > .flex-gt-md-5 {
    flex: 1 1 100%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-md-column > .flex-gt-md-5 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 5%;
    box-sizing: border-box; }
  .flex-gt-md-10 {
    flex: 1 1 100%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-md-10 {
    flex: 1 1 100%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-md-10 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 10%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-md-33, .layout-row > .flex-gt-md-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-md-66, .layout-row > .flex-gt-md-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-md-33, .layout-column > .flex-gt-md-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-md-66, .layout-column > .flex-gt-md-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-md-row > .flex-gt-md-10 {
    flex: 1 1 100%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-md-column > .flex-gt-md-10 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 10%;
    box-sizing: border-box; }
  .flex-gt-md-15 {
    flex: 1 1 100%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-md-15 {
    flex: 1 1 100%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-md-15 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 15%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-md-33, .layout-row > .flex-gt-md-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-md-66, .layout-row > .flex-gt-md-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-md-33, .layout-column > .flex-gt-md-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-md-66, .layout-column > .flex-gt-md-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-md-row > .flex-gt-md-15 {
    flex: 1 1 100%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-md-column > .flex-gt-md-15 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 15%;
    box-sizing: border-box; }
  .flex-gt-md-20 {
    flex: 1 1 100%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-md-20 {
    flex: 1 1 100%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-md-20 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 20%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-md-33, .layout-row > .flex-gt-md-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-md-66, .layout-row > .flex-gt-md-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-md-33, .layout-column > .flex-gt-md-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-md-66, .layout-column > .flex-gt-md-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-md-row > .flex-gt-md-20 {
    flex: 1 1 100%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-md-column > .flex-gt-md-20 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 20%;
    box-sizing: border-box; }
  .flex-gt-md-25 {
    flex: 1 1 100%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-md-25 {
    flex: 1 1 100%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-md-25 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 25%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-md-33, .layout-row > .flex-gt-md-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-md-66, .layout-row > .flex-gt-md-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-md-33, .layout-column > .flex-gt-md-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-md-66, .layout-column > .flex-gt-md-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-md-row > .flex-gt-md-25 {
    flex: 1 1 100%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-md-column > .flex-gt-md-25 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 25%;
    box-sizing: border-box; }
  .flex-gt-md-30 {
    flex: 1 1 100%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-md-30 {
    flex: 1 1 100%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-md-30 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 30%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-md-33, .layout-row > .flex-gt-md-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-md-66, .layout-row > .flex-gt-md-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-md-33, .layout-column > .flex-gt-md-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-md-66, .layout-column > .flex-gt-md-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-md-row > .flex-gt-md-30 {
    flex: 1 1 100%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-md-column > .flex-gt-md-30 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 30%;
    box-sizing: border-box; }
  .flex-gt-md-35 {
    flex: 1 1 100%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-md-35 {
    flex: 1 1 100%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-md-35 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 35%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-md-33, .layout-row > .flex-gt-md-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-md-66, .layout-row > .flex-gt-md-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-md-33, .layout-column > .flex-gt-md-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-md-66, .layout-column > .flex-gt-md-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-md-row > .flex-gt-md-35 {
    flex: 1 1 100%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-md-column > .flex-gt-md-35 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 35%;
    box-sizing: border-box; }
  .flex-gt-md-40 {
    flex: 1 1 100%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-md-40 {
    flex: 1 1 100%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-md-40 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 40%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-md-33, .layout-row > .flex-gt-md-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-md-66, .layout-row > .flex-gt-md-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-md-33, .layout-column > .flex-gt-md-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-md-66, .layout-column > .flex-gt-md-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-md-row > .flex-gt-md-40 {
    flex: 1 1 100%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-md-column > .flex-gt-md-40 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 40%;
    box-sizing: border-box; }
  .flex-gt-md-45 {
    flex: 1 1 100%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-md-45 {
    flex: 1 1 100%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-md-45 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 45%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-md-33, .layout-row > .flex-gt-md-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-md-66, .layout-row > .flex-gt-md-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-md-33, .layout-column > .flex-gt-md-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-md-66, .layout-column > .flex-gt-md-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-md-row > .flex-gt-md-45 {
    flex: 1 1 100%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-md-column > .flex-gt-md-45 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 45%;
    box-sizing: border-box; }
  .flex-gt-md-50 {
    flex: 1 1 100%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-md-50 {
    flex: 1 1 100%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-md-50 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 50%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-md-33, .layout-row > .flex-gt-md-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-md-66, .layout-row > .flex-gt-md-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-md-33, .layout-column > .flex-gt-md-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-md-66, .layout-column > .flex-gt-md-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-md-row > .flex-gt-md-50 {
    flex: 1 1 100%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-md-column > .flex-gt-md-50 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 50%;
    box-sizing: border-box; }
  .flex-gt-md-55 {
    flex: 1 1 100%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-md-55 {
    flex: 1 1 100%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-md-55 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 55%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-md-33, .layout-row > .flex-gt-md-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-md-66, .layout-row > .flex-gt-md-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-md-33, .layout-column > .flex-gt-md-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-md-66, .layout-column > .flex-gt-md-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-md-row > .flex-gt-md-55 {
    flex: 1 1 100%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-md-column > .flex-gt-md-55 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 55%;
    box-sizing: border-box; }
  .flex-gt-md-60 {
    flex: 1 1 100%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-md-60 {
    flex: 1 1 100%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-md-60 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 60%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-md-33, .layout-row > .flex-gt-md-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-md-66, .layout-row > .flex-gt-md-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-md-33, .layout-column > .flex-gt-md-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-md-66, .layout-column > .flex-gt-md-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-md-row > .flex-gt-md-60 {
    flex: 1 1 100%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-md-column > .flex-gt-md-60 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 60%;
    box-sizing: border-box; }
  .flex-gt-md-65 {
    flex: 1 1 100%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-md-65 {
    flex: 1 1 100%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-md-65 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 65%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-md-33, .layout-row > .flex-gt-md-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-md-66, .layout-row > .flex-gt-md-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-md-33, .layout-column > .flex-gt-md-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-md-66, .layout-column > .flex-gt-md-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-md-row > .flex-gt-md-65 {
    flex: 1 1 100%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-md-column > .flex-gt-md-65 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 65%;
    box-sizing: border-box; }
  .flex-gt-md-70 {
    flex: 1 1 100%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-md-70 {
    flex: 1 1 100%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-md-70 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 70%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-md-33, .layout-row > .flex-gt-md-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-md-66, .layout-row > .flex-gt-md-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-md-33, .layout-column > .flex-gt-md-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-md-66, .layout-column > .flex-gt-md-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-md-row > .flex-gt-md-70 {
    flex: 1 1 100%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-md-column > .flex-gt-md-70 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 70%;
    box-sizing: border-box; }
  .flex-gt-md-75 {
    flex: 1 1 100%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-md-75 {
    flex: 1 1 100%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-md-75 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 75%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-md-33, .layout-row > .flex-gt-md-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-md-66, .layout-row > .flex-gt-md-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-md-33, .layout-column > .flex-gt-md-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-md-66, .layout-column > .flex-gt-md-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-md-row > .flex-gt-md-75 {
    flex: 1 1 100%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-md-column > .flex-gt-md-75 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 75%;
    box-sizing: border-box; }
  .flex-gt-md-80 {
    flex: 1 1 100%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-md-80 {
    flex: 1 1 100%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-md-80 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 80%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-md-33, .layout-row > .flex-gt-md-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-md-66, .layout-row > .flex-gt-md-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-md-33, .layout-column > .flex-gt-md-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-md-66, .layout-column > .flex-gt-md-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-md-row > .flex-gt-md-80 {
    flex: 1 1 100%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-md-column > .flex-gt-md-80 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 80%;
    box-sizing: border-box; }
  .flex-gt-md-85 {
    flex: 1 1 100%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-md-85 {
    flex: 1 1 100%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-md-85 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 85%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-md-33, .layout-row > .flex-gt-md-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-md-66, .layout-row > .flex-gt-md-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-md-33, .layout-column > .flex-gt-md-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-md-66, .layout-column > .flex-gt-md-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-md-row > .flex-gt-md-85 {
    flex: 1 1 100%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-md-column > .flex-gt-md-85 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 85%;
    box-sizing: border-box; }
  .flex-gt-md-90 {
    flex: 1 1 100%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-md-90 {
    flex: 1 1 100%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-md-90 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 90%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-md-33, .layout-row > .flex-gt-md-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-md-66, .layout-row > .flex-gt-md-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-md-33, .layout-column > .flex-gt-md-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-md-66, .layout-column > .flex-gt-md-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-md-row > .flex-gt-md-90 {
    flex: 1 1 100%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-md-column > .flex-gt-md-90 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 90%;
    box-sizing: border-box; }
  .flex-gt-md-95 {
    flex: 1 1 100%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-md-95 {
    flex: 1 1 100%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-md-95 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 95%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-md-33, .layout-row > .flex-gt-md-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-md-66, .layout-row > .flex-gt-md-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-md-33, .layout-column > .flex-gt-md-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-md-66, .layout-column > .flex-gt-md-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-md-row > .flex-gt-md-95 {
    flex: 1 1 100%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-md-column > .flex-gt-md-95 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 95%;
    box-sizing: border-box; }
  .flex-gt-md-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-md-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-md-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-md-33, .layout-row > .flex-gt-md-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-md-66, .layout-row > .flex-gt-md-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-md-33, .layout-column > .flex-gt-md-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-md-66, .layout-column > .flex-gt-md-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-md-row > .flex-gt-md-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-md-column > .flex-gt-md-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-md-row > .flex-gt-md-33, .layout-gt-md-row > .flex-gt-md-33 {
    flex: 1 1 100%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-md-row > .flex-gt-md-66, .layout-gt-md-row > .flex-gt-md-66 {
    flex: 1 1 100%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-md-row > .flex {
    min-width: 0; }
  .layout-gt-md-column > .flex-gt-md-33, .layout-gt-md-column > .flex-gt-md-33 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-gt-md-column > .flex-gt-md-66, .layout-gt-md-column > .flex-gt-md-66 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .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: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-gt-sm:not(.show-gt-xs):not(.show-gt-sm):not(.show-gt-md):not(.show-lg):not(.show), .hide-gt-md:not(.show-gt-xs):not(.show-gt-sm):not(.show-gt-md):not(.show-lg):not(.show) {
    display: none; }
  .hide-lg:not(.show-lg):not(.show-gt-md):not(.show-gt-sm):not(.show-gt-xs):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; }
  .offset-lg-0, .flex-offset-lg-0 {
    margin-left: 0; }
    [dir=rtl] .offset-lg-0, [dir=rtl] .flex-offset-lg-0 {
      margin-left: auto;
      margin-right: 0; }
  .offset-lg-5, .flex-offset-lg-5 {
    margin-left: 5%; }
    [dir=rtl] .offset-lg-5, [dir=rtl] .flex-offset-lg-5 {
      margin-left: auto;
      margin-right: 5%; }
  .offset-lg-10, .flex-offset-lg-10 {
    margin-left: 10%; }
    [dir=rtl] .offset-lg-10, [dir=rtl] .flex-offset-lg-10 {
      margin-left: auto;
      margin-right: 10%; }
  .offset-lg-15, .flex-offset-lg-15 {
    margin-left: 15%; }
    [dir=rtl] .offset-lg-15, [dir=rtl] .flex-offset-lg-15 {
      margin-left: auto;
      margin-right: 15%; }
  .offset-lg-20, .flex-offset-lg-20 {
    margin-left: 20%; }
    [dir=rtl] .offset-lg-20, [dir=rtl] .flex-offset-lg-20 {
      margin-left: auto;
      margin-right: 20%; }
  .offset-lg-25, .flex-offset-lg-25 {
    margin-left: 25%; }
    [dir=rtl] .offset-lg-25, [dir=rtl] .flex-offset-lg-25 {
      margin-left: auto;
      margin-right: 25%; }
  .offset-lg-30, .flex-offset-lg-30 {
    margin-left: 30%; }
    [dir=rtl] .offset-lg-30, [dir=rtl] .flex-offset-lg-30 {
      margin-left: auto;
      margin-right: 30%; }
  .offset-lg-35, .flex-offset-lg-35 {
    margin-left: 35%; }
    [dir=rtl] .offset-lg-35, [dir=rtl] .flex-offset-lg-35 {
      margin-left: auto;
      margin-right: 35%; }
  .offset-lg-40, .flex-offset-lg-40 {
    margin-left: 40%; }
    [dir=rtl] .offset-lg-40, [dir=rtl] .flex-offset-lg-40 {
      margin-left: auto;
      margin-right: 40%; }
  .offset-lg-45, .flex-offset-lg-45 {
    margin-left: 45%; }
    [dir=rtl] .offset-lg-45, [dir=rtl] .flex-offset-lg-45 {
      margin-left: auto;
      margin-right: 45%; }
  .offset-lg-50, .flex-offset-lg-50 {
    margin-left: 50%; }
    [dir=rtl] .offset-lg-50, [dir=rtl] .flex-offset-lg-50 {
      margin-left: auto;
      margin-right: 50%; }
  .offset-lg-55, .flex-offset-lg-55 {
    margin-left: 55%; }
    [dir=rtl] .offset-lg-55, [dir=rtl] .flex-offset-lg-55 {
      margin-left: auto;
      margin-right: 55%; }
  .offset-lg-60, .flex-offset-lg-60 {
    margin-left: 60%; }
    [dir=rtl] .offset-lg-60, [dir=rtl] .flex-offset-lg-60 {
      margin-left: auto;
      margin-right: 60%; }
  .offset-lg-65, .flex-offset-lg-65 {
    margin-left: 65%; }
    [dir=rtl] .offset-lg-65, [dir=rtl] .flex-offset-lg-65 {
      margin-left: auto;
      margin-right: 65%; }
  .offset-lg-70, .flex-offset-lg-70 {
    margin-left: 70%; }
    [dir=rtl] .offset-lg-70, [dir=rtl] .flex-offset-lg-70 {
      margin-left: auto;
      margin-right: 70%; }
  .offset-lg-75, .flex-offset-lg-75 {
    margin-left: 75%; }
    [dir=rtl] .offset-lg-75, [dir=rtl] .flex-offset-lg-75 {
      margin-left: auto;
      margin-right: 75%; }
  .offset-lg-80, .flex-offset-lg-80 {
    margin-left: 80%; }
    [dir=rtl] .offset-lg-80, [dir=rtl] .flex-offset-lg-80 {
      margin-left: auto;
      margin-right: 80%; }
  .offset-lg-85, .flex-offset-lg-85 {
    margin-left: 85%; }
    [dir=rtl] .offset-lg-85, [dir=rtl] .flex-offset-lg-85 {
      margin-left: auto;
      margin-right: 85%; }
  .offset-lg-90, .flex-offset-lg-90 {
    margin-left: 90%; }
    [dir=rtl] .offset-lg-90, [dir=rtl] .flex-offset-lg-90 {
      margin-left: auto;
      margin-right: 90%; }
  .offset-lg-95, .flex-offset-lg-95 {
    margin-left: 95%; }
    [dir=rtl] .offset-lg-95, [dir=rtl] .flex-offset-lg-95 {
      margin-left: auto;
      margin-right: 95%; }
  .offset-lg-33, .flex-offset-lg-33 {
    margin-left: calc(100% / 3); }
  .offset-lg-66, .flex-offset-lg-66 {
    margin-left: calc(200% / 3); }
    [dir=rtl] .offset-lg-66, [dir=rtl] .flex-offset-lg-66 {
      margin-left: auto;
      margin-right: calc(200% / 3); }
  .layout-align-lg,
  .layout-align-lg-start-stretch {
    justify-content: flex-start;
    align-content: stretch;
    align-items: stretch; }
  .layout-align-lg-start,
  .layout-align-lg-start-start,
  .layout-align-lg-start-center,
  .layout-align-lg-start-end,
  .layout-align-lg-start-stretch {
    justify-content: flex-start; }
  .layout-align-lg-center,
  .layout-align-lg-center-start,
  .layout-align-lg-center-center,
  .layout-align-lg-center-end,
  .layout-align-lg-center-stretch {
    justify-content: center; }
  .layout-align-lg-end,
  .layout-align-lg-end-start,
  .layout-align-lg-end-center,
  .layout-align-lg-end-end,
  .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-start,
  .layout-align-lg-space-around-end,
  .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-start,
  .layout-align-lg-space-between-end,
  .layout-align-lg-space-between-stretch {
    justify-content: space-between; }
  .layout-align-lg-start-start,
  .layout-align-lg-center-start,
  .layout-align-lg-end-start,
  .layout-align-lg-space-between-start,
  .layout-align-lg-space-around-start {
    align-items: flex-start;
    align-content: flex-start; }
  .layout-align-lg-start-center,
  .layout-align-lg-center-center,
  .layout-align-lg-end-center,
  .layout-align-lg-space-between-center,
  .layout-align-lg-space-around-center {
    align-items: center;
    align-content: center;
    max-width: 100%; }
  .layout-align-lg-start-center > *,
  .layout-align-lg-center-center > *,
  .layout-align-lg-end-center > *,
  .layout-align-lg-space-between-center > *,
  .layout-align-lg-space-around-center > * {
    max-width: 100%;
    box-sizing: border-box; }
  .layout-align-lg-start-end,
  .layout-align-lg-center-end,
  .layout-align-lg-end-end,
  .layout-align-lg-space-between-end,
  .layout-align-lg-space-around-end {
    align-items: flex-end;
    align-content: flex-end; }
  .layout-align-lg-start-stretch,
  .layout-align-lg-center-stretch,
  .layout-align-lg-end-stretch,
  .layout-align-lg-space-between-stretch,
  .layout-align-lg-space-around-stretch {
    align-items: stretch;
    align-content: stretch; }
  .flex-lg {
    flex: 1;
    box-sizing: border-box; }
  .flex-lg-grow {
    flex: 1 1 100%;
    box-sizing: border-box; }
  .flex-lg-initial {
    flex: 0 1 auto;
    box-sizing: border-box; }
  .flex-lg-auto {
    flex: 1 1 auto;
    box-sizing: border-box; }
  .flex-lg-none {
    flex: 0 0 auto;
    box-sizing: border-box; }
  .flex-lg-noshrink {
    flex: 1 0 auto;
    box-sizing: border-box; }
  .flex-lg-nogrow {
    flex: 0 1 auto;
    box-sizing: border-box; }
  .flex-lg-0 {
    flex: 1 1 100%;
    max-width: 0%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-lg-0 {
    flex: 1 1 100%;
    max-width: 0%;
    max-height: 100%;
    box-sizing: border-box;
    min-width: 0; }
  .layout-column > .flex-lg-0 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 0%;
    box-sizing: border-box; }
  .layout-row > .flex-lg-33, .layout-row > .flex-lg-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-lg-66, .layout-row > .flex-lg-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-lg-33, .layout-column > .flex-lg-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-lg-66, .layout-column > .flex-lg-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-lg-row > .flex-lg-0 {
    flex: 1 1 100%;
    max-width: 0%;
    max-height: 100%;
    box-sizing: border-box;
    min-width: 0; }
  .layout-lg-column > .flex-lg-0 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 0%;
    box-sizing: border-box;
    min-height: 0; }
  .flex-lg-5 {
    flex: 1 1 100%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-lg-5 {
    flex: 1 1 100%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-lg-5 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 5%;
    box-sizing: border-box; }
  .layout-row > .flex-lg-33, .layout-row > .flex-lg-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-lg-66, .layout-row > .flex-lg-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-lg-33, .layout-column > .flex-lg-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-lg-66, .layout-column > .flex-lg-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-lg-row > .flex-lg-5 {
    flex: 1 1 100%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-lg-column > .flex-lg-5 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 5%;
    box-sizing: border-box; }
  .flex-lg-10 {
    flex: 1 1 100%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-lg-10 {
    flex: 1 1 100%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-lg-10 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 10%;
    box-sizing: border-box; }
  .layout-row > .flex-lg-33, .layout-row > .flex-lg-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-lg-66, .layout-row > .flex-lg-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-lg-33, .layout-column > .flex-lg-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-lg-66, .layout-column > .flex-lg-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-lg-row > .flex-lg-10 {
    flex: 1 1 100%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-lg-column > .flex-lg-10 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 10%;
    box-sizing: border-box; }
  .flex-lg-15 {
    flex: 1 1 100%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-lg-15 {
    flex: 1 1 100%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-lg-15 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 15%;
    box-sizing: border-box; }
  .layout-row > .flex-lg-33, .layout-row > .flex-lg-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-lg-66, .layout-row > .flex-lg-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-lg-33, .layout-column > .flex-lg-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-lg-66, .layout-column > .flex-lg-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-lg-row > .flex-lg-15 {
    flex: 1 1 100%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-lg-column > .flex-lg-15 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 15%;
    box-sizing: border-box; }
  .flex-lg-20 {
    flex: 1 1 100%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-lg-20 {
    flex: 1 1 100%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-lg-20 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 20%;
    box-sizing: border-box; }
  .layout-row > .flex-lg-33, .layout-row > .flex-lg-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-lg-66, .layout-row > .flex-lg-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-lg-33, .layout-column > .flex-lg-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-lg-66, .layout-column > .flex-lg-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-lg-row > .flex-lg-20 {
    flex: 1 1 100%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-lg-column > .flex-lg-20 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 20%;
    box-sizing: border-box; }
  .flex-lg-25 {
    flex: 1 1 100%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-lg-25 {
    flex: 1 1 100%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-lg-25 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 25%;
    box-sizing: border-box; }
  .layout-row > .flex-lg-33, .layout-row > .flex-lg-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-lg-66, .layout-row > .flex-lg-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-lg-33, .layout-column > .flex-lg-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-lg-66, .layout-column > .flex-lg-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-lg-row > .flex-lg-25 {
    flex: 1 1 100%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-lg-column > .flex-lg-25 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 25%;
    box-sizing: border-box; }
  .flex-lg-30 {
    flex: 1 1 100%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-lg-30 {
    flex: 1 1 100%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-lg-30 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 30%;
    box-sizing: border-box; }
  .layout-row > .flex-lg-33, .layout-row > .flex-lg-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-lg-66, .layout-row > .flex-lg-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-lg-33, .layout-column > .flex-lg-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-lg-66, .layout-column > .flex-lg-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-lg-row > .flex-lg-30 {
    flex: 1 1 100%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-lg-column > .flex-lg-30 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 30%;
    box-sizing: border-box; }
  .flex-lg-35 {
    flex: 1 1 100%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-lg-35 {
    flex: 1 1 100%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-lg-35 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 35%;
    box-sizing: border-box; }
  .layout-row > .flex-lg-33, .layout-row > .flex-lg-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-lg-66, .layout-row > .flex-lg-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-lg-33, .layout-column > .flex-lg-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-lg-66, .layout-column > .flex-lg-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-lg-row > .flex-lg-35 {
    flex: 1 1 100%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-lg-column > .flex-lg-35 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 35%;
    box-sizing: border-box; }
  .flex-lg-40 {
    flex: 1 1 100%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-lg-40 {
    flex: 1 1 100%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-lg-40 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 40%;
    box-sizing: border-box; }
  .layout-row > .flex-lg-33, .layout-row > .flex-lg-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-lg-66, .layout-row > .flex-lg-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-lg-33, .layout-column > .flex-lg-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-lg-66, .layout-column > .flex-lg-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-lg-row > .flex-lg-40 {
    flex: 1 1 100%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-lg-column > .flex-lg-40 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 40%;
    box-sizing: border-box; }
  .flex-lg-45 {
    flex: 1 1 100%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-lg-45 {
    flex: 1 1 100%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-lg-45 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 45%;
    box-sizing: border-box; }
  .layout-row > .flex-lg-33, .layout-row > .flex-lg-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-lg-66, .layout-row > .flex-lg-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-lg-33, .layout-column > .flex-lg-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-lg-66, .layout-column > .flex-lg-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-lg-row > .flex-lg-45 {
    flex: 1 1 100%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-lg-column > .flex-lg-45 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 45%;
    box-sizing: border-box; }
  .flex-lg-50 {
    flex: 1 1 100%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-lg-50 {
    flex: 1 1 100%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-lg-50 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 50%;
    box-sizing: border-box; }
  .layout-row > .flex-lg-33, .layout-row > .flex-lg-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-lg-66, .layout-row > .flex-lg-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-lg-33, .layout-column > .flex-lg-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-lg-66, .layout-column > .flex-lg-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-lg-row > .flex-lg-50 {
    flex: 1 1 100%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-lg-column > .flex-lg-50 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 50%;
    box-sizing: border-box; }
  .flex-lg-55 {
    flex: 1 1 100%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-lg-55 {
    flex: 1 1 100%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-lg-55 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 55%;
    box-sizing: border-box; }
  .layout-row > .flex-lg-33, .layout-row > .flex-lg-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-lg-66, .layout-row > .flex-lg-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-lg-33, .layout-column > .flex-lg-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-lg-66, .layout-column > .flex-lg-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-lg-row > .flex-lg-55 {
    flex: 1 1 100%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-lg-column > .flex-lg-55 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 55%;
    box-sizing: border-box; }
  .flex-lg-60 {
    flex: 1 1 100%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-lg-60 {
    flex: 1 1 100%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-lg-60 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 60%;
    box-sizing: border-box; }
  .layout-row > .flex-lg-33, .layout-row > .flex-lg-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-lg-66, .layout-row > .flex-lg-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-lg-33, .layout-column > .flex-lg-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-lg-66, .layout-column > .flex-lg-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-lg-row > .flex-lg-60 {
    flex: 1 1 100%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-lg-column > .flex-lg-60 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 60%;
    box-sizing: border-box; }
  .flex-lg-65 {
    flex: 1 1 100%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-lg-65 {
    flex: 1 1 100%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-lg-65 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 65%;
    box-sizing: border-box; }
  .layout-row > .flex-lg-33, .layout-row > .flex-lg-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-lg-66, .layout-row > .flex-lg-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-lg-33, .layout-column > .flex-lg-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-lg-66, .layout-column > .flex-lg-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-lg-row > .flex-lg-65 {
    flex: 1 1 100%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-lg-column > .flex-lg-65 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 65%;
    box-sizing: border-box; }
  .flex-lg-70 {
    flex: 1 1 100%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-lg-70 {
    flex: 1 1 100%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-lg-70 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 70%;
    box-sizing: border-box; }
  .layout-row > .flex-lg-33, .layout-row > .flex-lg-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-lg-66, .layout-row > .flex-lg-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-lg-33, .layout-column > .flex-lg-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-lg-66, .layout-column > .flex-lg-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-lg-row > .flex-lg-70 {
    flex: 1 1 100%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-lg-column > .flex-lg-70 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 70%;
    box-sizing: border-box; }
  .flex-lg-75 {
    flex: 1 1 100%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-lg-75 {
    flex: 1 1 100%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-lg-75 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 75%;
    box-sizing: border-box; }
  .layout-row > .flex-lg-33, .layout-row > .flex-lg-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-lg-66, .layout-row > .flex-lg-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-lg-33, .layout-column > .flex-lg-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-lg-66, .layout-column > .flex-lg-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-lg-row > .flex-lg-75 {
    flex: 1 1 100%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-lg-column > .flex-lg-75 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 75%;
    box-sizing: border-box; }
  .flex-lg-80 {
    flex: 1 1 100%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-lg-80 {
    flex: 1 1 100%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-lg-80 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 80%;
    box-sizing: border-box; }
  .layout-row > .flex-lg-33, .layout-row > .flex-lg-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-lg-66, .layout-row > .flex-lg-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-lg-33, .layout-column > .flex-lg-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-lg-66, .layout-column > .flex-lg-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-lg-row > .flex-lg-80 {
    flex: 1 1 100%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-lg-column > .flex-lg-80 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 80%;
    box-sizing: border-box; }
  .flex-lg-85 {
    flex: 1 1 100%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-lg-85 {
    flex: 1 1 100%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-lg-85 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 85%;
    box-sizing: border-box; }
  .layout-row > .flex-lg-33, .layout-row > .flex-lg-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-lg-66, .layout-row > .flex-lg-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-lg-33, .layout-column > .flex-lg-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-lg-66, .layout-column > .flex-lg-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-lg-row > .flex-lg-85 {
    flex: 1 1 100%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-lg-column > .flex-lg-85 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 85%;
    box-sizing: border-box; }
  .flex-lg-90 {
    flex: 1 1 100%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-lg-90 {
    flex: 1 1 100%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-lg-90 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 90%;
    box-sizing: border-box; }
  .layout-row > .flex-lg-33, .layout-row > .flex-lg-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-lg-66, .layout-row > .flex-lg-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-lg-33, .layout-column > .flex-lg-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-lg-66, .layout-column > .flex-lg-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-lg-row > .flex-lg-90 {
    flex: 1 1 100%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-lg-column > .flex-lg-90 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 90%;
    box-sizing: border-box; }
  .flex-lg-95 {
    flex: 1 1 100%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-lg-95 {
    flex: 1 1 100%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-lg-95 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 95%;
    box-sizing: border-box; }
  .layout-row > .flex-lg-33, .layout-row > .flex-lg-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-lg-66, .layout-row > .flex-lg-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-lg-33, .layout-column > .flex-lg-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-lg-66, .layout-column > .flex-lg-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-lg-row > .flex-lg-95 {
    flex: 1 1 100%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-lg-column > .flex-lg-95 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 95%;
    box-sizing: border-box; }
  .flex-lg-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-lg-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-lg-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-lg-33, .layout-row > .flex-lg-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-lg-66, .layout-row > .flex-lg-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-lg-33, .layout-column > .flex-lg-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-lg-66, .layout-column > .flex-lg-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-lg-row > .flex-lg-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-lg-column > .flex-lg-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-lg-row > .flex-lg-33, .layout-lg-row > .flex-lg-33 {
    flex: 1 1 100%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-lg-row > .flex-lg-66, .layout-lg-row > .flex-lg-66 {
    flex: 1 1 100%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-lg-row > .flex {
    min-width: 0; }
  .layout-lg-column > .flex-lg-33, .layout-lg-column > .flex-lg-33 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-lg-column > .flex-lg-66, .layout-lg-column > .flex-lg-66 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .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; }
  .offset-gt-lg-0, .flex-offset-gt-lg-0 {
    margin-left: 0; }
    [dir=rtl] .offset-gt-lg-0, [dir=rtl] .flex-offset-gt-lg-0 {
      margin-left: auto;
      margin-right: 0; }
  .offset-gt-lg-5, .flex-offset-gt-lg-5 {
    margin-left: 5%; }
    [dir=rtl] .offset-gt-lg-5, [dir=rtl] .flex-offset-gt-lg-5 {
      margin-left: auto;
      margin-right: 5%; }
  .offset-gt-lg-10, .flex-offset-gt-lg-10 {
    margin-left: 10%; }
    [dir=rtl] .offset-gt-lg-10, [dir=rtl] .flex-offset-gt-lg-10 {
      margin-left: auto;
      margin-right: 10%; }
  .offset-gt-lg-15, .flex-offset-gt-lg-15 {
    margin-left: 15%; }
    [dir=rtl] .offset-gt-lg-15, [dir=rtl] .flex-offset-gt-lg-15 {
      margin-left: auto;
      margin-right: 15%; }
  .offset-gt-lg-20, .flex-offset-gt-lg-20 {
    margin-left: 20%; }
    [dir=rtl] .offset-gt-lg-20, [dir=rtl] .flex-offset-gt-lg-20 {
      margin-left: auto;
      margin-right: 20%; }
  .offset-gt-lg-25, .flex-offset-gt-lg-25 {
    margin-left: 25%; }
    [dir=rtl] .offset-gt-lg-25, [dir=rtl] .flex-offset-gt-lg-25 {
      margin-left: auto;
      margin-right: 25%; }
  .offset-gt-lg-30, .flex-offset-gt-lg-30 {
    margin-left: 30%; }
    [dir=rtl] .offset-gt-lg-30, [dir=rtl] .flex-offset-gt-lg-30 {
      margin-left: auto;
      margin-right: 30%; }
  .offset-gt-lg-35, .flex-offset-gt-lg-35 {
    margin-left: 35%; }
    [dir=rtl] .offset-gt-lg-35, [dir=rtl] .flex-offset-gt-lg-35 {
      margin-left: auto;
      margin-right: 35%; }
  .offset-gt-lg-40, .flex-offset-gt-lg-40 {
    margin-left: 40%; }
    [dir=rtl] .offset-gt-lg-40, [dir=rtl] .flex-offset-gt-lg-40 {
      margin-left: auto;
      margin-right: 40%; }
  .offset-gt-lg-45, .flex-offset-gt-lg-45 {
    margin-left: 45%; }
    [dir=rtl] .offset-gt-lg-45, [dir=rtl] .flex-offset-gt-lg-45 {
      margin-left: auto;
      margin-right: 45%; }
  .offset-gt-lg-50, .flex-offset-gt-lg-50 {
    margin-left: 50%; }
    [dir=rtl] .offset-gt-lg-50, [dir=rtl] .flex-offset-gt-lg-50 {
      margin-left: auto;
      margin-right: 50%; }
  .offset-gt-lg-55, .flex-offset-gt-lg-55 {
    margin-left: 55%; }
    [dir=rtl] .offset-gt-lg-55, [dir=rtl] .flex-offset-gt-lg-55 {
      margin-left: auto;
      margin-right: 55%; }
  .offset-gt-lg-60, .flex-offset-gt-lg-60 {
    margin-left: 60%; }
    [dir=rtl] .offset-gt-lg-60, [dir=rtl] .flex-offset-gt-lg-60 {
      margin-left: auto;
      margin-right: 60%; }
  .offset-gt-lg-65, .flex-offset-gt-lg-65 {
    margin-left: 65%; }
    [dir=rtl] .offset-gt-lg-65, [dir=rtl] .flex-offset-gt-lg-65 {
      margin-left: auto;
      margin-right: 65%; }
  .offset-gt-lg-70, .flex-offset-gt-lg-70 {
    margin-left: 70%; }
    [dir=rtl] .offset-gt-lg-70, [dir=rtl] .flex-offset-gt-lg-70 {
      margin-left: auto;
      margin-right: 70%; }
  .offset-gt-lg-75, .flex-offset-gt-lg-75 {
    margin-left: 75%; }
    [dir=rtl] .offset-gt-lg-75, [dir=rtl] .flex-offset-gt-lg-75 {
      margin-left: auto;
      margin-right: 75%; }
  .offset-gt-lg-80, .flex-offset-gt-lg-80 {
    margin-left: 80%; }
    [dir=rtl] .offset-gt-lg-80, [dir=rtl] .flex-offset-gt-lg-80 {
      margin-left: auto;
      margin-right: 80%; }
  .offset-gt-lg-85, .flex-offset-gt-lg-85 {
    margin-left: 85%; }
    [dir=rtl] .offset-gt-lg-85, [dir=rtl] .flex-offset-gt-lg-85 {
      margin-left: auto;
      margin-right: 85%; }
  .offset-gt-lg-90, .flex-offset-gt-lg-90 {
    margin-left: 90%; }
    [dir=rtl] .offset-gt-lg-90, [dir=rtl] .flex-offset-gt-lg-90 {
      margin-left: auto;
      margin-right: 90%; }
  .offset-gt-lg-95, .flex-offset-gt-lg-95 {
    margin-left: 95%; }
    [dir=rtl] .offset-gt-lg-95, [dir=rtl] .flex-offset-gt-lg-95 {
      margin-left: auto;
      margin-right: 95%; }
  .offset-gt-lg-33, .flex-offset-gt-lg-33 {
    margin-left: calc(100% / 3); }
  .offset-gt-lg-66, .flex-offset-gt-lg-66 {
    margin-left: calc(200% / 3); }
    [dir=rtl] .offset-gt-lg-66, [dir=rtl] .flex-offset-gt-lg-66 {
      margin-left: auto;
      margin-right: calc(200% / 3); }
  .layout-align-gt-lg,
  .layout-align-gt-lg-start-stretch {
    justify-content: flex-start;
    align-content: stretch;
    align-items: stretch; }
  .layout-align-gt-lg-start,
  .layout-align-gt-lg-start-start,
  .layout-align-gt-lg-start-center,
  .layout-align-gt-lg-start-end,
  .layout-align-gt-lg-start-stretch {
    justify-content: flex-start; }
  .layout-align-gt-lg-center,
  .layout-align-gt-lg-center-start,
  .layout-align-gt-lg-center-center,
  .layout-align-gt-lg-center-end,
  .layout-align-gt-lg-center-stretch {
    justify-content: center; }
  .layout-align-gt-lg-end,
  .layout-align-gt-lg-end-start,
  .layout-align-gt-lg-end-center,
  .layout-align-gt-lg-end-end,
  .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-start,
  .layout-align-gt-lg-space-around-end,
  .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-start,
  .layout-align-gt-lg-space-between-end,
  .layout-align-gt-lg-space-between-stretch {
    justify-content: space-between; }
  .layout-align-gt-lg-start-start,
  .layout-align-gt-lg-center-start,
  .layout-align-gt-lg-end-start,
  .layout-align-gt-lg-space-between-start,
  .layout-align-gt-lg-space-around-start {
    align-items: flex-start;
    align-content: flex-start; }
  .layout-align-gt-lg-start-center,
  .layout-align-gt-lg-center-center,
  .layout-align-gt-lg-end-center,
  .layout-align-gt-lg-space-between-center,
  .layout-align-gt-lg-space-around-center {
    align-items: center;
    align-content: center;
    max-width: 100%; }
  .layout-align-gt-lg-start-center > *,
  .layout-align-gt-lg-center-center > *,
  .layout-align-gt-lg-end-center > *,
  .layout-align-gt-lg-space-between-center > *,
  .layout-align-gt-lg-space-around-center > * {
    max-width: 100%;
    box-sizing: border-box; }
  .layout-align-gt-lg-start-end,
  .layout-align-gt-lg-center-end,
  .layout-align-gt-lg-end-end,
  .layout-align-gt-lg-space-between-end,
  .layout-align-gt-lg-space-around-end {
    align-items: flex-end;
    align-content: flex-end; }
  .layout-align-gt-lg-start-stretch,
  .layout-align-gt-lg-center-stretch,
  .layout-align-gt-lg-end-stretch,
  .layout-align-gt-lg-space-between-stretch,
  .layout-align-gt-lg-space-around-stretch {
    align-items: stretch;
    align-content: stretch; }
  .flex-gt-lg {
    flex: 1;
    box-sizing: border-box; }
  .flex-gt-lg-grow {
    flex: 1 1 100%;
    box-sizing: border-box; }
  .flex-gt-lg-initial {
    flex: 0 1 auto;
    box-sizing: border-box; }
  .flex-gt-lg-auto {
    flex: 1 1 auto;
    box-sizing: border-box; }
  .flex-gt-lg-none {
    flex: 0 0 auto;
    box-sizing: border-box; }
  .flex-gt-lg-noshrink {
    flex: 1 0 auto;
    box-sizing: border-box; }
  .flex-gt-lg-nogrow {
    flex: 0 1 auto;
    box-sizing: border-box; }
  .flex-gt-lg-0 {
    flex: 1 1 100%;
    max-width: 0%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-lg-0 {
    flex: 1 1 100%;
    max-width: 0%;
    max-height: 100%;
    box-sizing: border-box;
    min-width: 0; }
  .layout-column > .flex-gt-lg-0 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 0%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-lg-33, .layout-row > .flex-gt-lg-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-lg-66, .layout-row > .flex-gt-lg-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-lg-33, .layout-column > .flex-gt-lg-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-lg-66, .layout-column > .flex-gt-lg-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-lg-row > .flex-gt-lg-0 {
    flex: 1 1 100%;
    max-width: 0%;
    max-height: 100%;
    box-sizing: border-box;
    min-width: 0; }
  .layout-gt-lg-column > .flex-gt-lg-0 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 0%;
    box-sizing: border-box;
    min-height: 0; }
  .flex-gt-lg-5 {
    flex: 1 1 100%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-lg-5 {
    flex: 1 1 100%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-lg-5 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 5%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-lg-33, .layout-row > .flex-gt-lg-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-lg-66, .layout-row > .flex-gt-lg-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-lg-33, .layout-column > .flex-gt-lg-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-lg-66, .layout-column > .flex-gt-lg-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-lg-row > .flex-gt-lg-5 {
    flex: 1 1 100%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-lg-column > .flex-gt-lg-5 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 5%;
    box-sizing: border-box; }
  .flex-gt-lg-10 {
    flex: 1 1 100%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-lg-10 {
    flex: 1 1 100%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-lg-10 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 10%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-lg-33, .layout-row > .flex-gt-lg-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-lg-66, .layout-row > .flex-gt-lg-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-lg-33, .layout-column > .flex-gt-lg-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-lg-66, .layout-column > .flex-gt-lg-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-lg-row > .flex-gt-lg-10 {
    flex: 1 1 100%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-lg-column > .flex-gt-lg-10 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 10%;
    box-sizing: border-box; }
  .flex-gt-lg-15 {
    flex: 1 1 100%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-lg-15 {
    flex: 1 1 100%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-lg-15 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 15%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-lg-33, .layout-row > .flex-gt-lg-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-lg-66, .layout-row > .flex-gt-lg-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-lg-33, .layout-column > .flex-gt-lg-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-lg-66, .layout-column > .flex-gt-lg-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-lg-row > .flex-gt-lg-15 {
    flex: 1 1 100%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-lg-column > .flex-gt-lg-15 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 15%;
    box-sizing: border-box; }
  .flex-gt-lg-20 {
    flex: 1 1 100%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-lg-20 {
    flex: 1 1 100%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-lg-20 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 20%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-lg-33, .layout-row > .flex-gt-lg-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-lg-66, .layout-row > .flex-gt-lg-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-lg-33, .layout-column > .flex-gt-lg-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-lg-66, .layout-column > .flex-gt-lg-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-lg-row > .flex-gt-lg-20 {
    flex: 1 1 100%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-lg-column > .flex-gt-lg-20 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 20%;
    box-sizing: border-box; }
  .flex-gt-lg-25 {
    flex: 1 1 100%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-lg-25 {
    flex: 1 1 100%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-lg-25 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 25%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-lg-33, .layout-row > .flex-gt-lg-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-lg-66, .layout-row > .flex-gt-lg-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-lg-33, .layout-column > .flex-gt-lg-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-lg-66, .layout-column > .flex-gt-lg-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-lg-row > .flex-gt-lg-25 {
    flex: 1 1 100%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-lg-column > .flex-gt-lg-25 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 25%;
    box-sizing: border-box; }
  .flex-gt-lg-30 {
    flex: 1 1 100%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-lg-30 {
    flex: 1 1 100%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-lg-30 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 30%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-lg-33, .layout-row > .flex-gt-lg-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-lg-66, .layout-row > .flex-gt-lg-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-lg-33, .layout-column > .flex-gt-lg-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-lg-66, .layout-column > .flex-gt-lg-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-lg-row > .flex-gt-lg-30 {
    flex: 1 1 100%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-lg-column > .flex-gt-lg-30 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 30%;
    box-sizing: border-box; }
  .flex-gt-lg-35 {
    flex: 1 1 100%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-lg-35 {
    flex: 1 1 100%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-lg-35 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 35%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-lg-33, .layout-row > .flex-gt-lg-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-lg-66, .layout-row > .flex-gt-lg-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-lg-33, .layout-column > .flex-gt-lg-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-lg-66, .layout-column > .flex-gt-lg-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-lg-row > .flex-gt-lg-35 {
    flex: 1 1 100%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-lg-column > .flex-gt-lg-35 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 35%;
    box-sizing: border-box; }
  .flex-gt-lg-40 {
    flex: 1 1 100%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-lg-40 {
    flex: 1 1 100%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-lg-40 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 40%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-lg-33, .layout-row > .flex-gt-lg-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-lg-66, .layout-row > .flex-gt-lg-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-lg-33, .layout-column > .flex-gt-lg-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-lg-66, .layout-column > .flex-gt-lg-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-lg-row > .flex-gt-lg-40 {
    flex: 1 1 100%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-lg-column > .flex-gt-lg-40 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 40%;
    box-sizing: border-box; }
  .flex-gt-lg-45 {
    flex: 1 1 100%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-lg-45 {
    flex: 1 1 100%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-lg-45 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 45%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-lg-33, .layout-row > .flex-gt-lg-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-lg-66, .layout-row > .flex-gt-lg-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-lg-33, .layout-column > .flex-gt-lg-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-lg-66, .layout-column > .flex-gt-lg-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-lg-row > .flex-gt-lg-45 {
    flex: 1 1 100%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-lg-column > .flex-gt-lg-45 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 45%;
    box-sizing: border-box; }
  .flex-gt-lg-50 {
    flex: 1 1 100%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-lg-50 {
    flex: 1 1 100%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-lg-50 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 50%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-lg-33, .layout-row > .flex-gt-lg-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-lg-66, .layout-row > .flex-gt-lg-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-lg-33, .layout-column > .flex-gt-lg-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-lg-66, .layout-column > .flex-gt-lg-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-lg-row > .flex-gt-lg-50 {
    flex: 1 1 100%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-lg-column > .flex-gt-lg-50 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 50%;
    box-sizing: border-box; }
  .flex-gt-lg-55 {
    flex: 1 1 100%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-lg-55 {
    flex: 1 1 100%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-lg-55 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 55%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-lg-33, .layout-row > .flex-gt-lg-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-lg-66, .layout-row > .flex-gt-lg-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-lg-33, .layout-column > .flex-gt-lg-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-lg-66, .layout-column > .flex-gt-lg-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-lg-row > .flex-gt-lg-55 {
    flex: 1 1 100%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-lg-column > .flex-gt-lg-55 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 55%;
    box-sizing: border-box; }
  .flex-gt-lg-60 {
    flex: 1 1 100%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-lg-60 {
    flex: 1 1 100%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-lg-60 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 60%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-lg-33, .layout-row > .flex-gt-lg-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-lg-66, .layout-row > .flex-gt-lg-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-lg-33, .layout-column > .flex-gt-lg-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-lg-66, .layout-column > .flex-gt-lg-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-lg-row > .flex-gt-lg-60 {
    flex: 1 1 100%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-lg-column > .flex-gt-lg-60 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 60%;
    box-sizing: border-box; }
  .flex-gt-lg-65 {
    flex: 1 1 100%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-lg-65 {
    flex: 1 1 100%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-lg-65 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 65%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-lg-33, .layout-row > .flex-gt-lg-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-lg-66, .layout-row > .flex-gt-lg-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-lg-33, .layout-column > .flex-gt-lg-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-lg-66, .layout-column > .flex-gt-lg-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-lg-row > .flex-gt-lg-65 {
    flex: 1 1 100%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-lg-column > .flex-gt-lg-65 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 65%;
    box-sizing: border-box; }
  .flex-gt-lg-70 {
    flex: 1 1 100%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-lg-70 {
    flex: 1 1 100%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-lg-70 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 70%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-lg-33, .layout-row > .flex-gt-lg-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-lg-66, .layout-row > .flex-gt-lg-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-lg-33, .layout-column > .flex-gt-lg-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-lg-66, .layout-column > .flex-gt-lg-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-lg-row > .flex-gt-lg-70 {
    flex: 1 1 100%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-lg-column > .flex-gt-lg-70 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 70%;
    box-sizing: border-box; }
  .flex-gt-lg-75 {
    flex: 1 1 100%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-lg-75 {
    flex: 1 1 100%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-lg-75 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 75%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-lg-33, .layout-row > .flex-gt-lg-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-lg-66, .layout-row > .flex-gt-lg-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-lg-33, .layout-column > .flex-gt-lg-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-lg-66, .layout-column > .flex-gt-lg-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-lg-row > .flex-gt-lg-75 {
    flex: 1 1 100%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-lg-column > .flex-gt-lg-75 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 75%;
    box-sizing: border-box; }
  .flex-gt-lg-80 {
    flex: 1 1 100%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-lg-80 {
    flex: 1 1 100%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-lg-80 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 80%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-lg-33, .layout-row > .flex-gt-lg-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-lg-66, .layout-row > .flex-gt-lg-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-lg-33, .layout-column > .flex-gt-lg-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-lg-66, .layout-column > .flex-gt-lg-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-lg-row > .flex-gt-lg-80 {
    flex: 1 1 100%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-lg-column > .flex-gt-lg-80 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 80%;
    box-sizing: border-box; }
  .flex-gt-lg-85 {
    flex: 1 1 100%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-lg-85 {
    flex: 1 1 100%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-lg-85 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 85%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-lg-33, .layout-row > .flex-gt-lg-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-lg-66, .layout-row > .flex-gt-lg-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-lg-33, .layout-column > .flex-gt-lg-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-lg-66, .layout-column > .flex-gt-lg-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-lg-row > .flex-gt-lg-85 {
    flex: 1 1 100%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-lg-column > .flex-gt-lg-85 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 85%;
    box-sizing: border-box; }
  .flex-gt-lg-90 {
    flex: 1 1 100%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-lg-90 {
    flex: 1 1 100%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-lg-90 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 90%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-lg-33, .layout-row > .flex-gt-lg-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-lg-66, .layout-row > .flex-gt-lg-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-lg-33, .layout-column > .flex-gt-lg-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-lg-66, .layout-column > .flex-gt-lg-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-lg-row > .flex-gt-lg-90 {
    flex: 1 1 100%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-lg-column > .flex-gt-lg-90 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 90%;
    box-sizing: border-box; }
  .flex-gt-lg-95 {
    flex: 1 1 100%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-lg-95 {
    flex: 1 1 100%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-lg-95 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 95%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-lg-33, .layout-row > .flex-gt-lg-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-lg-66, .layout-row > .flex-gt-lg-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-lg-33, .layout-column > .flex-gt-lg-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-lg-66, .layout-column > .flex-gt-lg-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-lg-row > .flex-gt-lg-95 {
    flex: 1 1 100%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-lg-column > .flex-gt-lg-95 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 95%;
    box-sizing: border-box; }
  .flex-gt-lg-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-lg-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-lg-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-lg-33, .layout-row > .flex-gt-lg-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-gt-lg-66, .layout-row > .flex-gt-lg-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-lg-33, .layout-column > .flex-gt-lg-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-gt-lg-66, .layout-column > .flex-gt-lg-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-gt-lg-row > .flex-gt-lg-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-lg-column > .flex-gt-lg-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-lg-row > .flex-gt-lg-33, .layout-gt-lg-row > .flex-gt-lg-33 {
    flex: 1 1 100%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-lg-row > .flex-gt-lg-66, .layout-gt-lg-row > .flex-gt-lg-66 {
    flex: 1 1 100%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-gt-lg-row > .flex {
    min-width: 0; }
  .layout-gt-lg-column > .flex-gt-lg-33, .layout-gt-lg-column > .flex-gt-lg-33 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-gt-lg-column > .flex-gt-lg-66, .layout-gt-lg-column > .flex-gt-lg-66 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .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; }
  .offset-xl-0, .flex-offset-xl-0 {
    margin-left: 0; }
    [dir=rtl] .offset-xl-0, [dir=rtl] .flex-offset-xl-0 {
      margin-left: auto;
      margin-right: 0; }
  .offset-xl-5, .flex-offset-xl-5 {
    margin-left: 5%; }
    [dir=rtl] .offset-xl-5, [dir=rtl] .flex-offset-xl-5 {
      margin-left: auto;
      margin-right: 5%; }
  .offset-xl-10, .flex-offset-xl-10 {
    margin-left: 10%; }
    [dir=rtl] .offset-xl-10, [dir=rtl] .flex-offset-xl-10 {
      margin-left: auto;
      margin-right: 10%; }
  .offset-xl-15, .flex-offset-xl-15 {
    margin-left: 15%; }
    [dir=rtl] .offset-xl-15, [dir=rtl] .flex-offset-xl-15 {
      margin-left: auto;
      margin-right: 15%; }
  .offset-xl-20, .flex-offset-xl-20 {
    margin-left: 20%; }
    [dir=rtl] .offset-xl-20, [dir=rtl] .flex-offset-xl-20 {
      margin-left: auto;
      margin-right: 20%; }
  .offset-xl-25, .flex-offset-xl-25 {
    margin-left: 25%; }
    [dir=rtl] .offset-xl-25, [dir=rtl] .flex-offset-xl-25 {
      margin-left: auto;
      margin-right: 25%; }
  .offset-xl-30, .flex-offset-xl-30 {
    margin-left: 30%; }
    [dir=rtl] .offset-xl-30, [dir=rtl] .flex-offset-xl-30 {
      margin-left: auto;
      margin-right: 30%; }
  .offset-xl-35, .flex-offset-xl-35 {
    margin-left: 35%; }
    [dir=rtl] .offset-xl-35, [dir=rtl] .flex-offset-xl-35 {
      margin-left: auto;
      margin-right: 35%; }
  .offset-xl-40, .flex-offset-xl-40 {
    margin-left: 40%; }
    [dir=rtl] .offset-xl-40, [dir=rtl] .flex-offset-xl-40 {
      margin-left: auto;
      margin-right: 40%; }
  .offset-xl-45, .flex-offset-xl-45 {
    margin-left: 45%; }
    [dir=rtl] .offset-xl-45, [dir=rtl] .flex-offset-xl-45 {
      margin-left: auto;
      margin-right: 45%; }
  .offset-xl-50, .flex-offset-xl-50 {
    margin-left: 50%; }
    [dir=rtl] .offset-xl-50, [dir=rtl] .flex-offset-xl-50 {
      margin-left: auto;
      margin-right: 50%; }
  .offset-xl-55, .flex-offset-xl-55 {
    margin-left: 55%; }
    [dir=rtl] .offset-xl-55, [dir=rtl] .flex-offset-xl-55 {
      margin-left: auto;
      margin-right: 55%; }
  .offset-xl-60, .flex-offset-xl-60 {
    margin-left: 60%; }
    [dir=rtl] .offset-xl-60, [dir=rtl] .flex-offset-xl-60 {
      margin-left: auto;
      margin-right: 60%; }
  .offset-xl-65, .flex-offset-xl-65 {
    margin-left: 65%; }
    [dir=rtl] .offset-xl-65, [dir=rtl] .flex-offset-xl-65 {
      margin-left: auto;
      margin-right: 65%; }
  .offset-xl-70, .flex-offset-xl-70 {
    margin-left: 70%; }
    [dir=rtl] .offset-xl-70, [dir=rtl] .flex-offset-xl-70 {
      margin-left: auto;
      margin-right: 70%; }
  .offset-xl-75, .flex-offset-xl-75 {
    margin-left: 75%; }
    [dir=rtl] .offset-xl-75, [dir=rtl] .flex-offset-xl-75 {
      margin-left: auto;
      margin-right: 75%; }
  .offset-xl-80, .flex-offset-xl-80 {
    margin-left: 80%; }
    [dir=rtl] .offset-xl-80, [dir=rtl] .flex-offset-xl-80 {
      margin-left: auto;
      margin-right: 80%; }
  .offset-xl-85, .flex-offset-xl-85 {
    margin-left: 85%; }
    [dir=rtl] .offset-xl-85, [dir=rtl] .flex-offset-xl-85 {
      margin-left: auto;
      margin-right: 85%; }
  .offset-xl-90, .flex-offset-xl-90 {
    margin-left: 90%; }
    [dir=rtl] .offset-xl-90, [dir=rtl] .flex-offset-xl-90 {
      margin-left: auto;
      margin-right: 90%; }
  .offset-xl-95, .flex-offset-xl-95 {
    margin-left: 95%; }
    [dir=rtl] .offset-xl-95, [dir=rtl] .flex-offset-xl-95 {
      margin-left: auto;
      margin-right: 95%; }
  .offset-xl-33, .flex-offset-xl-33 {
    margin-left: calc(100% / 3); }
  .offset-xl-66, .flex-offset-xl-66 {
    margin-left: calc(200% / 3); }
    [dir=rtl] .offset-xl-66, [dir=rtl] .flex-offset-xl-66 {
      margin-left: auto;
      margin-right: calc(200% / 3); }
  .layout-align-xl,
  .layout-align-xl-start-stretch {
    justify-content: flex-start;
    align-content: stretch;
    align-items: stretch; }
  .layout-align-xl-start,
  .layout-align-xl-start-start,
  .layout-align-xl-start-center,
  .layout-align-xl-start-end,
  .layout-align-xl-start-stretch {
    justify-content: flex-start; }
  .layout-align-xl-center,
  .layout-align-xl-center-start,
  .layout-align-xl-center-center,
  .layout-align-xl-center-end,
  .layout-align-xl-center-stretch {
    justify-content: center; }
  .layout-align-xl-end,
  .layout-align-xl-end-start,
  .layout-align-xl-end-center,
  .layout-align-xl-end-end,
  .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-start,
  .layout-align-xl-space-around-end,
  .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-start,
  .layout-align-xl-space-between-end,
  .layout-align-xl-space-between-stretch {
    justify-content: space-between; }
  .layout-align-xl-start-start,
  .layout-align-xl-center-start,
  .layout-align-xl-end-start,
  .layout-align-xl-space-between-start,
  .layout-align-xl-space-around-start {
    align-items: flex-start;
    align-content: flex-start; }
  .layout-align-xl-start-center,
  .layout-align-xl-center-center,
  .layout-align-xl-end-center,
  .layout-align-xl-space-between-center,
  .layout-align-xl-space-around-center {
    align-items: center;
    align-content: center;
    max-width: 100%; }
  .layout-align-xl-start-center > *,
  .layout-align-xl-center-center > *,
  .layout-align-xl-end-center > *,
  .layout-align-xl-space-between-center > *,
  .layout-align-xl-space-around-center > * {
    max-width: 100%;
    box-sizing: border-box; }
  .layout-align-xl-start-end,
  .layout-align-xl-center-end,
  .layout-align-xl-end-end,
  .layout-align-xl-space-between-end,
  .layout-align-xl-space-around-end {
    align-items: flex-end;
    align-content: flex-end; }
  .layout-align-xl-start-stretch,
  .layout-align-xl-center-stretch,
  .layout-align-xl-end-stretch,
  .layout-align-xl-space-between-stretch,
  .layout-align-xl-space-around-stretch {
    align-items: stretch;
    align-content: stretch; }
  .flex-xl {
    flex: 1;
    box-sizing: border-box; }
  .flex-xl-grow {
    flex: 1 1 100%;
    box-sizing: border-box; }
  .flex-xl-initial {
    flex: 0 1 auto;
    box-sizing: border-box; }
  .flex-xl-auto {
    flex: 1 1 auto;
    box-sizing: border-box; }
  .flex-xl-none {
    flex: 0 0 auto;
    box-sizing: border-box; }
  .flex-xl-noshrink {
    flex: 1 0 auto;
    box-sizing: border-box; }
  .flex-xl-nogrow {
    flex: 0 1 auto;
    box-sizing: border-box; }
  .flex-xl-0 {
    flex: 1 1 100%;
    max-width: 0%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xl-0 {
    flex: 1 1 100%;
    max-width: 0%;
    max-height: 100%;
    box-sizing: border-box;
    min-width: 0; }
  .layout-column > .flex-xl-0 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 0%;
    box-sizing: border-box; }
  .layout-row > .flex-xl-33, .layout-row > .flex-xl-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xl-66, .layout-row > .flex-xl-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xl-33, .layout-column > .flex-xl-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-xl-66, .layout-column > .flex-xl-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-xl-row > .flex-xl-0 {
    flex: 1 1 100%;
    max-width: 0%;
    max-height: 100%;
    box-sizing: border-box;
    min-width: 0; }
  .layout-xl-column > .flex-xl-0 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 0%;
    box-sizing: border-box;
    min-height: 0; }
  .flex-xl-5 {
    flex: 1 1 100%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xl-5 {
    flex: 1 1 100%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xl-5 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 5%;
    box-sizing: border-box; }
  .layout-row > .flex-xl-33, .layout-row > .flex-xl-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xl-66, .layout-row > .flex-xl-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xl-33, .layout-column > .flex-xl-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-xl-66, .layout-column > .flex-xl-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-xl-row > .flex-xl-5 {
    flex: 1 1 100%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-xl-column > .flex-xl-5 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 5%;
    box-sizing: border-box; }
  .flex-xl-10 {
    flex: 1 1 100%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xl-10 {
    flex: 1 1 100%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xl-10 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 10%;
    box-sizing: border-box; }
  .layout-row > .flex-xl-33, .layout-row > .flex-xl-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xl-66, .layout-row > .flex-xl-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xl-33, .layout-column > .flex-xl-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-xl-66, .layout-column > .flex-xl-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-xl-row > .flex-xl-10 {
    flex: 1 1 100%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-xl-column > .flex-xl-10 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 10%;
    box-sizing: border-box; }
  .flex-xl-15 {
    flex: 1 1 100%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xl-15 {
    flex: 1 1 100%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xl-15 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 15%;
    box-sizing: border-box; }
  .layout-row > .flex-xl-33, .layout-row > .flex-xl-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xl-66, .layout-row > .flex-xl-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xl-33, .layout-column > .flex-xl-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-xl-66, .layout-column > .flex-xl-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-xl-row > .flex-xl-15 {
    flex: 1 1 100%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-xl-column > .flex-xl-15 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 15%;
    box-sizing: border-box; }
  .flex-xl-20 {
    flex: 1 1 100%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xl-20 {
    flex: 1 1 100%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xl-20 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 20%;
    box-sizing: border-box; }
  .layout-row > .flex-xl-33, .layout-row > .flex-xl-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xl-66, .layout-row > .flex-xl-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xl-33, .layout-column > .flex-xl-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-xl-66, .layout-column > .flex-xl-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-xl-row > .flex-xl-20 {
    flex: 1 1 100%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-xl-column > .flex-xl-20 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 20%;
    box-sizing: border-box; }
  .flex-xl-25 {
    flex: 1 1 100%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xl-25 {
    flex: 1 1 100%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xl-25 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 25%;
    box-sizing: border-box; }
  .layout-row > .flex-xl-33, .layout-row > .flex-xl-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xl-66, .layout-row > .flex-xl-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xl-33, .layout-column > .flex-xl-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-xl-66, .layout-column > .flex-xl-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-xl-row > .flex-xl-25 {
    flex: 1 1 100%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-xl-column > .flex-xl-25 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 25%;
    box-sizing: border-box; }
  .flex-xl-30 {
    flex: 1 1 100%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xl-30 {
    flex: 1 1 100%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xl-30 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 30%;
    box-sizing: border-box; }
  .layout-row > .flex-xl-33, .layout-row > .flex-xl-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xl-66, .layout-row > .flex-xl-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xl-33, .layout-column > .flex-xl-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-xl-66, .layout-column > .flex-xl-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-xl-row > .flex-xl-30 {
    flex: 1 1 100%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-xl-column > .flex-xl-30 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 30%;
    box-sizing: border-box; }
  .flex-xl-35 {
    flex: 1 1 100%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xl-35 {
    flex: 1 1 100%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xl-35 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 35%;
    box-sizing: border-box; }
  .layout-row > .flex-xl-33, .layout-row > .flex-xl-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xl-66, .layout-row > .flex-xl-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xl-33, .layout-column > .flex-xl-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-xl-66, .layout-column > .flex-xl-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-xl-row > .flex-xl-35 {
    flex: 1 1 100%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-xl-column > .flex-xl-35 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 35%;
    box-sizing: border-box; }
  .flex-xl-40 {
    flex: 1 1 100%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xl-40 {
    flex: 1 1 100%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xl-40 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 40%;
    box-sizing: border-box; }
  .layout-row > .flex-xl-33, .layout-row > .flex-xl-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xl-66, .layout-row > .flex-xl-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xl-33, .layout-column > .flex-xl-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-xl-66, .layout-column > .flex-xl-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-xl-row > .flex-xl-40 {
    flex: 1 1 100%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-xl-column > .flex-xl-40 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 40%;
    box-sizing: border-box; }
  .flex-xl-45 {
    flex: 1 1 100%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xl-45 {
    flex: 1 1 100%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xl-45 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 45%;
    box-sizing: border-box; }
  .layout-row > .flex-xl-33, .layout-row > .flex-xl-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xl-66, .layout-row > .flex-xl-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xl-33, .layout-column > .flex-xl-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-xl-66, .layout-column > .flex-xl-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-xl-row > .flex-xl-45 {
    flex: 1 1 100%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-xl-column > .flex-xl-45 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 45%;
    box-sizing: border-box; }
  .flex-xl-50 {
    flex: 1 1 100%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xl-50 {
    flex: 1 1 100%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xl-50 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 50%;
    box-sizing: border-box; }
  .layout-row > .flex-xl-33, .layout-row > .flex-xl-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xl-66, .layout-row > .flex-xl-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xl-33, .layout-column > .flex-xl-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-xl-66, .layout-column > .flex-xl-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-xl-row > .flex-xl-50 {
    flex: 1 1 100%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-xl-column > .flex-xl-50 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 50%;
    box-sizing: border-box; }
  .flex-xl-55 {
    flex: 1 1 100%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xl-55 {
    flex: 1 1 100%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xl-55 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 55%;
    box-sizing: border-box; }
  .layout-row > .flex-xl-33, .layout-row > .flex-xl-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xl-66, .layout-row > .flex-xl-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xl-33, .layout-column > .flex-xl-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-xl-66, .layout-column > .flex-xl-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-xl-row > .flex-xl-55 {
    flex: 1 1 100%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-xl-column > .flex-xl-55 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 55%;
    box-sizing: border-box; }
  .flex-xl-60 {
    flex: 1 1 100%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xl-60 {
    flex: 1 1 100%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xl-60 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 60%;
    box-sizing: border-box; }
  .layout-row > .flex-xl-33, .layout-row > .flex-xl-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xl-66, .layout-row > .flex-xl-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xl-33, .layout-column > .flex-xl-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-xl-66, .layout-column > .flex-xl-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-xl-row > .flex-xl-60 {
    flex: 1 1 100%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-xl-column > .flex-xl-60 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 60%;
    box-sizing: border-box; }
  .flex-xl-65 {
    flex: 1 1 100%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xl-65 {
    flex: 1 1 100%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xl-65 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 65%;
    box-sizing: border-box; }
  .layout-row > .flex-xl-33, .layout-row > .flex-xl-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xl-66, .layout-row > .flex-xl-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xl-33, .layout-column > .flex-xl-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-xl-66, .layout-column > .flex-xl-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-xl-row > .flex-xl-65 {
    flex: 1 1 100%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-xl-column > .flex-xl-65 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 65%;
    box-sizing: border-box; }
  .flex-xl-70 {
    flex: 1 1 100%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xl-70 {
    flex: 1 1 100%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xl-70 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 70%;
    box-sizing: border-box; }
  .layout-row > .flex-xl-33, .layout-row > .flex-xl-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xl-66, .layout-row > .flex-xl-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xl-33, .layout-column > .flex-xl-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-xl-66, .layout-column > .flex-xl-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-xl-row > .flex-xl-70 {
    flex: 1 1 100%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-xl-column > .flex-xl-70 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 70%;
    box-sizing: border-box; }
  .flex-xl-75 {
    flex: 1 1 100%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xl-75 {
    flex: 1 1 100%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xl-75 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 75%;
    box-sizing: border-box; }
  .layout-row > .flex-xl-33, .layout-row > .flex-xl-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xl-66, .layout-row > .flex-xl-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xl-33, .layout-column > .flex-xl-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-xl-66, .layout-column > .flex-xl-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-xl-row > .flex-xl-75 {
    flex: 1 1 100%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-xl-column > .flex-xl-75 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 75%;
    box-sizing: border-box; }
  .flex-xl-80 {
    flex: 1 1 100%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xl-80 {
    flex: 1 1 100%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xl-80 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 80%;
    box-sizing: border-box; }
  .layout-row > .flex-xl-33, .layout-row > .flex-xl-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xl-66, .layout-row > .flex-xl-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xl-33, .layout-column > .flex-xl-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-xl-66, .layout-column > .flex-xl-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-xl-row > .flex-xl-80 {
    flex: 1 1 100%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-xl-column > .flex-xl-80 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 80%;
    box-sizing: border-box; }
  .flex-xl-85 {
    flex: 1 1 100%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xl-85 {
    flex: 1 1 100%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xl-85 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 85%;
    box-sizing: border-box; }
  .layout-row > .flex-xl-33, .layout-row > .flex-xl-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xl-66, .layout-row > .flex-xl-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xl-33, .layout-column > .flex-xl-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-xl-66, .layout-column > .flex-xl-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-xl-row > .flex-xl-85 {
    flex: 1 1 100%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-xl-column > .flex-xl-85 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 85%;
    box-sizing: border-box; }
  .flex-xl-90 {
    flex: 1 1 100%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xl-90 {
    flex: 1 1 100%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xl-90 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 90%;
    box-sizing: border-box; }
  .layout-row > .flex-xl-33, .layout-row > .flex-xl-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xl-66, .layout-row > .flex-xl-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xl-33, .layout-column > .flex-xl-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-xl-66, .layout-column > .flex-xl-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-xl-row > .flex-xl-90 {
    flex: 1 1 100%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-xl-column > .flex-xl-90 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 90%;
    box-sizing: border-box; }
  .flex-xl-95 {
    flex: 1 1 100%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xl-95 {
    flex: 1 1 100%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xl-95 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 95%;
    box-sizing: border-box; }
  .layout-row > .flex-xl-33, .layout-row > .flex-xl-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xl-66, .layout-row > .flex-xl-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xl-33, .layout-column > .flex-xl-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-xl-66, .layout-column > .flex-xl-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-xl-row > .flex-xl-95 {
    flex: 1 1 100%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-xl-column > .flex-xl-95 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 95%;
    box-sizing: border-box; }
  .flex-xl-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xl-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xl-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xl-33, .layout-row > .flex-xl-33 {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-row > .flex-xl-66, .layout-row > .flex-xl-66 {
    flex: 1 1 66.66%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-column > .flex-xl-33, .layout-column > .flex-xl-33 {
    flex: 1 1 33.33%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-column > .flex-xl-66, .layout-column > .flex-xl-66 {
    flex: 1 1 66.66%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .layout-xl-row > .flex-xl-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-xl-column > .flex-xl-100 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-xl-row > .flex-xl-33, .layout-xl-row > .flex-xl-33 {
    flex: 1 1 100%;
    max-width: 33.33%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-xl-row > .flex-xl-66, .layout-xl-row > .flex-xl-66 {
    flex: 1 1 100%;
    max-width: 66.66%;
    max-height: 100%;
    box-sizing: border-box; }
  .layout-xl-row > .flex {
    min-width: 0; }
  .layout-xl-column > .flex-xl-33, .layout-xl-column > .flex-xl-33 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 33.33%;
    box-sizing: border-box; }
  .layout-xl-column > .flex-xl-66, .layout-xl-column > .flex-xl-66 {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 66.66%;
    box-sizing: border-box; }
  .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: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-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-md:not(.show-gt-xs):not(.show-gt-sm):not(.show-gt-md):not(.show-gt-lg):not(.show-xl):not(.show), .hide-gt-lg:not(.show-gt-xs):not(.show-gt-sm):not(.show-gt-md):not(.show-gt-lg):not(.show-xl):not(.show) {
    display: none; }
  .hide-xl:not(.show-xl):not(.show-gt-lg):not(.show-gt-md):not(.show-gt-sm):not(.show-gt-xs):not(.show) {
    display: none; } }

@media print {
  .hide-print:not(.show-print):not(.show) {
    display: none !important; } }

/**
* Use only as implied by the colors name.
*
* @section Color Palette
*
* @colorPalette
* @color {#1B365D} brand.Brand - Branding, anchoring elements.
* @color {#22232D} text.Text - Base text color.
* @color {#585863} dark.Dark - Disabled, remove/clear buttons, occasional dark backgrounds.
* @color {#DDE1E7} frame.Frame - For general borders and divider lines.
* @color {#F1F2F3} bg.Background – For backgrounds where panels, cards or other content sits on top.
* @color {#FAFAFA} shade.Shade - Background shading where needed.
* @color {#fef7dc} paper.Paper – Background color occasionally used for general detail areas.
* @color {#FFFFFF} default.Default - Default buttons.
* @color {#3EA8DD} primary.Primary Blue - Primary buttons.
* @color {#52C1A3} specialAction.Special Action – Special action and "favorite" buttons.
* @color {#3EA8DD} link.Link Blue - Links.
* @color {#52C1A3} success.Success – Positive result or success.
* @color {#2E91C9} active.Active Blue - Active tabs, tree items, etc.
* @color {#F9CF71} alert.Alert - Warnings, 'test' status, "caution".
* @color {#DF4E71} warning.Warning - Error text, danger buttons, negative or dangerous connotation.
*/
/**
* Because the designers use an 8pt based spacing system to achieve a consistent
* vertical rhythm, these spacing variables can be used instead of `em` units.
* Using these will likely ensure the spacing you implement matches a design.
*
* You can think of `$space-m` as `1em` and `$space-xs` as `0.5em`.
*
* - `$space-xxxs` : 2px;
* - `$space-xxs` : 4px;
* - __`$space-xs`__ : 8px;
* - `$space-s` : 12px;
* - __`$space-m`__ : 16px;
* - `$space-l` : 24px;
* - `$space-xl` : 32px;
* - `$space-xxl` : 40px;
* - `$space-xxxl` : 64px;
*
* @section Spacing Variables
*/
.clearfix:after, .input-w-button:after, .cm-card-header.split:after, .people-card:after, .image-upload-dialog .container:after, .theme-settings-card_selection .tab-list:after, .theme-settings-card_selection .theme-card:after {
  content: "";
  display: table;
  clear: both; }

/**
* Welcome to the CMIX Pattern Library.
*
* Here's the __[repo](https://github.com/dynata/cmix-pattern-library)__.
*
* @section Introduction
*/
/**
* __Get to know title casing__, use it for buttons, styles, labels, etc.
* [Here's handy tool](http://titlecapitalization.com/) to help _(be sure to check the "Chicago Manual of Style" radio)_.
*
* @section General Notes
* @sectionof Introduction
*/
/**
* When using SASS try and only nest 3 levels deep at the most.
*
* __Block Level:__ `.some-specific-block {}` Top level class selectors.
*
* __Element Level:__ `.some-specific-block_child {}` Secondary level class selectors.
* Because the element level class selector contains the block level classname,
* in SASS it can be placed below instead of nested in the parent styles. This helps prevent
* SASS styles that are deeper than 3 levels.
*
* __Sub Element Level:__ `.child_sub-element {}` Sub element selectors should be nested in the
* element level selector.
*
* __Modifyer Classes:__ `.some-element_example.-modifyer {}`
*
* @section Classname Strategy
* @sectionof Introduction
*/
/**
* __Use color variables properly in your apps.__
* 
* Because this system is setup to handle multiple themes for white-labeling the entire application
* suite, color variables must be used with a sass mixin so that there's an output for each theme.
* 
* __Example:__
* ```css
* .my-component {
*   padding: 1em;
*   border: 1px solid transparent;
*   &:hover {
*     transform: scale(1.1);
*   }
* 
*   ﹫include theme() {
*     background-color: color('shade');
*     border-color: color('frame');
*     &:hover {
*       border-color: color('active');
*     }
*   }
* 
* }
* ```
* _Note: don't copy the "at" symbol from this snippet, had to use a special character so it doesn't
* break the documentation._
*
* Notice how most of the styles exist outside of the `theme()` mixin, that's so the output doesn't get
* bloated with repetitive styles:
* ```css
* .my-component {
*   padding: 1em;
*   border: 1px solid transparent;
* }
* .my-component:hover {
*   transform: scale(1.1);
* }
* .theme-cmix .my-component {
*   background-color: #f8f8f8;
*   border-color: #dddddd;
* }
* .theme-cmix .my-component:hover {
*   border-color: #7CA1D5;
* }
* .theme-other .my-component {
*   background-color: #f8f8fd;
*   border-color: #aaaaaa;
* }
* .theme-other .my-component:hover {
*   border-color: blue;
* }
* ```
* With this output, themes can be toggled using a class on the body tag (e.g. `<body class="theme-cmix">`).
*
* @section Using Color Variables in Apps
* @sectionof Introduction
*/
html {
  line-height: 1.15;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

body {
  margin: 0; }

article,
aside,
footer,
header,
nav,
section {
  display: block; }

h1 {
  font-size: 2em;
  margin: 0.67em 0; }

figcaption,
figure,
main {
  /* 1 */
  display: block; }

figure {
  margin: 1em 40px; }

hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */ }

abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */ }

b,
strong {
  font-weight: inherit; }

b,
strong {
  font-weight: bolder; }

code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

dfn {
  font-style: italic; }

mark {
  background-color: #ff0;
  color: #000; }

small {
  font-size: 80%; }

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

audio,
video {
  display: inline-block; }

audio:not([controls]) {
  display: none;
  height: 0; }

img {
  border-style: none; }

svg:not(:root) {
  overflow: hidden; }


button,
label.label-btn,
md-dialog md-dialog-actions .md-cancel-button,
md-dialog md-dialog-actions .md-confirm-button,
input,
optgroup,
select,
textarea,
.fr-inline-editor .fr-view {
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }


button,
label.label-btn,
md-dialog md-dialog-actions .md-cancel-button,
md-dialog md-dialog-actions .md-confirm-button,
input {
  /* 1 */
  overflow: visible; }


button,
label.label-btn,
md-dialog md-dialog-actions .md-cancel-button,
md-dialog md-dialog-actions .md-confirm-button,
select {
  /* 1 */
  text-transform: none; }


button,
label.label-btn,
md-dialog md-dialog-actions .md-cancel-button,
md-dialog md-dialog-actions .md-confirm-button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */ }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner, label.label-btn::-moz-focus-inner, md-dialog md-dialog-actions .md-cancel-button::-moz-focus-inner, md-dialog md-dialog-actions .md-confirm-button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring, label.label-btn:-moz-focusring, md-dialog md-dialog-actions .md-cancel-button:-moz-focusring, md-dialog md-dialog-actions .md-confirm-button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Remove the default vertical scrollbar in IE.
 */

textarea,
.fr-inline-editor .fr-view {
  overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block; }

/**
 * Add the correct display in IE.
 */
template {
  display: none; }

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none; }

/**
* @section Typography
*/
/**
* CMIX uses Open Sans as the base font family. Use the `$font-family` variable if needed.
*
* @section Base Font
* @sectionof Typography
*
* @hideCode
* @example
* <h4>Open Sans Styles Available:</h4>
* <ul>
*   <li><p>Regular</p></li>
*   <li><p style="font-weight:700;">Bold</p></li>
*   <li><p style="font-style:italic;">Italic</p></li>
* </ul>
*/
@font-face {
  font-family: 'open-sans';
  src: url("../fonts/open-sans/opensans-regular-webfont.woff2") format("woff2"), url("../fonts/open-sans/opensans-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'open-sans';
  src: url("../fonts/open-sans/opensans-regularitalic-webfont.woff2") format("woff2"), url("../fonts/open-sans/opensans-regularitalic-webfont.woff") format("woff");
  font-weight: normal;
  font-style: italic; }

@font-face {
  font-family: 'open-sans';
  src: url("../fonts/open-sans/opensans-bold-webfont.woff2") format("woff2"), url("../fonts/open-sans/opensans-bold-webfont.woff") format("woff");
  font-weight: 700;
  font-style: normal; }

html {
  font-size: 14px;
  box-sizing: border-box; }

*, *:before, *:after {
  box-sizing: inherit; }

body {
  font-size: 14px;
  font-family: "open-sans", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-weight: 400; }
  .theme-cmix body {
    color: #22232D; }
  .theme-marketview body {
    color: #414042; }

a {
  cursor: pointer;
  text-decoration: none; }
  a:hover, a:focus {
    text-decoration: underline; }
  .theme-cmix a {
    color: #3EA8DD; }
    .theme-cmix a:hover, .theme-cmix a:focus {
      color: #238fc5; }
  .theme-marketview a {
    color: #115FA6; }
    .theme-marketview a:hover, .theme-marketview a:focus {
      color: #0c4578; }

p, time, a, em, strong {
  font-family: "open-sans", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; }


button,
label.label-btn,
md-dialog md-dialog-actions .md-cancel-button,
md-dialog md-dialog-actions .md-confirm-button,
input,
optgroup,
select,
textarea,
.fr-inline-editor .fr-view {
  font-family: "open-sans", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 14px;
  line-height: 1.4; }

/**
* @section Headers
* @sectionof Typography
*
* @example
* <h1>Heading 1</h1>
* <h2>Heading 2</h2>
* <h3>Heading 3</h3>
* <h4>Heading 4</h4>
* <h5>Heading 5</h5>
* <h6>Heading 6</h6>
*/
h1, h2, h3, h4, h5, h6 {
  font-family: "open-sans", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-weight: 400;
  line-height: 1.184; }

h1 {
  font-size: 2.104em; }

h2 {
  font-size: 1.579em; }

h3 {
  font-size: 1.333em; }

h4 {
  font-size: 1em;
  font-weight: 700; }

h5 {
  font-size: 1em;
  font-weight: normal; }

h6 {
  font-size: 1em;
  font-weight: normal; }

/**
* Paragraphs, header & lists do not have margin unless they are followed by another paragraph or header.
*
* Add the class `flush` to strip the automatic spacing.
*
* @section Auto Type Spacing
* @sectionof Typography
*
* @hideCode
* @example
* <div style="background-color: #f5f5f5;border: 1px solid #ddd;margin-bottom: 1em;padding: 0 0.5em;">
*   <h2>Header w/no Following Content</h2>
* </div>
* <div style="background-color: #f5f5f5;border: 1px solid #ddd;margin-bottom: 1em;padding: 0 0.5em;">
*   <p>Here is a paragraph in a div with no following paragraph. Notice how no margin is applied to the bottom of this &lt;p&gt; tag.</p>
* </div>
* <div style="background-color: #f5f5f5;border: 1px solid #ddd;margin-bottom: 1em;padding: 0 0.5em;">
*   <p>Here is a paragraph with another paragraph following it. Notice that natural paragraph spacing is added in the way of margin, but the bottom paragraph does not have bottom spacing.</p>
*   <p>This spacing technique allows paragraphs to fit nicely into containers, cards, tables, modals etc. The padding of the container can create the necessary spacing, although for this example no top or bottom padding has been applied.</p>
* </div>
* <div style="background-color: #f5f5f5;border: 1px solid #ddd;margin-bottom: 1em;padding: 0 0.5em;">
*   <h2>Header Followed by Content</h2>
*   <p>Here is some text after a header. It has no bottom spacing unless it's followed by another paragraph or header. Things fit nicely into boxes by themselves, but also have nice typography when written in a document.</p>
*   <h3>Header After Content</h3>
*   <p>Some paragraph content after the second header. Otherwise the header above would have no bottom spacing and fit flush with the bottom of this here box.</p>
* </div>
* <div style="background-color: #f5f5f5;border: 1px solid #ddd;padding: 0 0.5em;">
*   <p>A pagragraph followed by another paragraph.</p>
*   <p class="flush">No spacing between these because the class 'flush' was applied to this one.</p>
* </div>
*
* @code
* <div class="box">
*   <h2>Header w/no Following Content</h2>
* </div>
* <div class="box">
*   <p>Here is a paragraph in a div with no following paragraph. Notice how no margin is applied to the bottom of this &lt;p&gt; tag.</p>
* </div>
* <div class="box">
*   <p>Here is a paragraph with another paragraph following it. Notice that natural paragraph spacing is added in the way of margin, but the bottom paragraph does not have bottom spacing.</p>
*   <p>This spacing technique allows paragraphs to fit nicely into containers, cards, tables, modals etc. The padding of the container can create the necessary spacing, although for this example no top or bottom padding has been applied.</p>
* </div>
* <div class="box">
*   <h2>Header Followed by Content</h2>
*   <p>Here is some text after a header. It has no bottom spacing unless it's followed by another paragraph or header. Things fit nicely into boxes by themselves, but also have nice typography when written in a document.</p>
*   <h3>Header After Content</h3>
*   <p>Some paragraph content after the second header. Otherwise the header above would have no bottom spacing and fit flush with the bottom of this here box.</p>
* </div>
* <div class="box">
*   <p>A pagragraph followed by another paragraph.</p>
*   <p class="flush">No spacing between these because the class 'flush' was applied to this one.</p>
* </div>
*/
h1, h2, h3, h4, h5, h6 {
  margin: 0; }
  h1 + p,
  h1 + ul,
  h1 + ol,
  h1 + table,
  h1 + .responsive-table, h2 + p,
  h2 + ul,
  h2 + ol,
  h2 + table,
  h2 + .responsive-table, h3 + p,
  h3 + ul,
  h3 + ol,
  h3 + table,
  h3 + .responsive-table, h4 + p,
  h4 + ul,
  h4 + ol,
  h4 + table,
  h4 + .responsive-table, h5 + p,
  h5 + ul,
  h5 + ol,
  h5 + table,
  h5 + .responsive-table, h6 + p,
  h6 + ul,
  h6 + ol,
  h6 + table,
  h6 + .responsive-table {
    margin-top: 12px; }
  p + h1,
  ul + h1,
  ol + h1,
  table + h1,
  .responsive-table + h1,
  h1 + h1, p + h2,
  ul + h2,
  ol + h2,
  table + h2,
  .responsive-table + h2,
  h2 + h1, p + h3,
  ul + h3,
  ol + h3,
  table + h3,
  .responsive-table + h3,
  h3 + h1, p + h4,
  ul + h4,
  ol + h4,
  table + h4,
  .responsive-table + h4,
  h4 + h1, p + h5,
  ul + h5,
  ol + h5,
  table + h5,
  .responsive-table + h5,
  h5 + h1, p + h6,
  ul + h6,
  ol + h6,
  table + h6,
  .responsive-table + h6,
  h6 + h1,
  h1 + h2,
  h2 + h2,
  h3 + h2,
  h4 + h2,
  h5 + h2,
  h6 + h2,
  h1 + h3,
  h2 + h3,
  h3 + h3,
  h4 + h3,
  h5 + h3,
  h6 + h3,
  h1 + h4,
  h2 + h4,
  h3 + h4,
  h4 + h4,
  h5 + h4,
  h6 + h4,
  h1 + h5,
  h2 + h5,
  h3 + h5,
  h4 + h5,
  h5 + h5,
  h6 + h5,
  h1 + h6,
  h2 + h6,
  h3 + h6,
  h4 + h6,
  h5 + h6,
  h6 + h6 {
    margin-top: 16px; }

p {
  line-height: 1.4;
  margin: 0; }
  p + p,
  p + ul,
  ul + p,
  p + ol,
  ol + p,
  p + table,
  table + p,
  .responsive-table + p,
  p + .responsive-table {
    margin-top: 8px; }

ul + ul,
ul + table,
table + ul,
.responsive-table + ul,
ul + .responsive-table,
ol + ul,
ol + table,
table +
ol,
.responsive-table +
ol,
ol + .responsive-table, ul +
ol,
ol +
ol {
  margin-top: 12px; }

/**
* Add the class `flush` to strip any auto-spacing.
*
* Add the class `list-style-none` to strip the left spacing and bullets/numbers _(although you may consider not using a list in this case)_.
*
* @section Lists
* @sectionof Typography
*
* @example
* <h4>Unordered List</h4>
* <ul>
*   <li>Item 1</li>
*   <li>Item 2</li>
*   <li>Item 3
*     <ul>
*       <li>Item 3.1</li>
*       <li>Item 3.2</li>
*       <li>Item 3.3</li>
*     </ul>
*   </li>
* </ul>
* <h4>Ordered List</h4>
* <ol>
*   <li>Item</li>
*   <li>Item</li>
*   <li>Item
*     <ol>
*       <li>Item</li>
*       <li>Item</li>
*       <li>Item</li>
*     </ol>
*   </li>
* </ol>
* <h4>List Style None</h4>
* <ul class="list-style-none">
*   <li>Item 1</li>
*   <li>Item 2</li>
*   <li>Item 3</li>
* </ul>
*/
ul.list-style-none,
ol.list-style-none {
  padding-left: 0;
  list-style: none; }

/**
* For general purpose error messaging.
*
* Add the class `light` to `.error-msg` when the error appears on a dark background.
*
* @section Error and Warning Messaging
* @sectionof Typography
* @example
* <p class="error-msg">An error message.</p>
* <p class="warning-msg">A warning message.</p>
* <div style="background-color:#636363;padding:1em;margin-top:0.5em;">
*   <p class="error-msg light">A light error message on a dark background.</p>
*   <p class="warning-msg light">A light warning message on a dark background.</p>
* </div>
*/
.error-msg {
  font-weight: bold; }
  .theme-cmix .error-msg {
    color: #DF4E71; }
    .theme-cmix .error-msg.light {
      color: #eb93a8; }
  .theme-marketview .error-msg {
    color: #DF4E71; }
    .theme-marketview .error-msg.light {
      color: #eb93a8; }

.warning-msg {
  font-weight: bold; }
  .theme-cmix .warning-msg {
    color: #f5ac0a; }
    .theme-cmix .warning-msg.light {
      color: #F9CF71; }
  .theme-marketview .warning-msg {
    color: #b07e10; }
    .theme-marketview .warning-msg.light {
      color: #EDB73E; }

/**
* A number of helper classes are provided for quick adjustment and alignment within a composition.
*
* @section Helpers
* @sectionof Typography
*
* @example
* <div style="text-align: right;">
*   <p class="left">Left align.</p>
* </div>
* <p class="center">Center</p>
* <p class="right">Right align.</p>
* <p class="large">Larger Font Size</p>
* <p class="small">Smaller Font Size</p>
* <h4 class="flush">Remove all margin.</h4>
*/
.left {
  text-align: left; }

.center {
  text-align: center; }

.right {
  text-align: right; }

.large {
  font-size: 16px; }

small,
.small {
  font-size: 12px; }

.flush, .people-card.-expandable button.expand-user, .people-card.-expandable label.expand-user.label-btn, .people-card.-expandable md-dialog md-dialog-actions .expand-user.md-cancel-button, md-dialog md-dialog-actions .people-card.-expandable .expand-user.md-cancel-button, .people-card.-expandable md-dialog md-dialog-actions .expand-user.md-confirm-button, md-dialog md-dialog-actions .people-card.-expandable .expand-user.md-confirm-button {
  margin: 0; }

/**
* The `sr-only` class will hide text needed only for users of screen readers. This is useful for icon buttons and stuff screen readers would otherwise not be able to interact with.
*
* @section Screen Reader Only
* @sectionof Typography
*
* @example
* <button class="btn-symbol icon-menu">
*   <span class="sr-only">Menu</span>
* </button>
*/
.sr-only, label.label-btn + input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

/**
* For displaying the status of a survey.
*
* @section Status Pills
*
* @example
* <span class="pill design">Design</span>
* <span class="pill test">Test</span>
* <span class="pill live">Live</span>
* <span class="pill closed">Closed</span>
* <div style="margin-top: 8px;">
*   <span class="pill small design">Design</span>
* </div>
*/
span.pill {
  line-height: 24px;
  text-transform: uppercase;
  border-radius: 3em;
  padding: 0 12px;
  display: inline-block;
  vertical-align: middle; }
  span.pill.live {
    color: white; }
  span.pill.closed {
    color: white; }
  span.pill.small {
    line-height: 16px;
    padding: 0 8px; }
  .theme-cmix span.pill {
    background-color: #DDE1E7; }
    .theme-cmix span.pill.test {
      background-color: #F9CF71; }
    .theme-cmix span.pill.live {
      background-color: #52C1A3; }
    .theme-cmix span.pill.closed {
      background-color: #585863; }
  .theme-marketview span.pill {
    background-color: #DDE1E7; }
    .theme-marketview span.pill.test {
      background-color: #EDB73E; }
    .theme-marketview span.pill.live {
      background-color: #5BB78A; }
    .theme-marketview span.pill.closed {
      background-color: #666666; }

/**
* For qutestion/answer markers and the like. Typically viewed in the survey authoring tool and survey QA.
*
* When markers and buttons follow eachother they automatically get margin applied between them,
* add the class `no-autospace` to the following item to remove this.
*
* @section Item Marker
*
* @example
* <span class="marker">Q1</span>
* <span class="small marker">Q1_1</span>
*/
.marker, .grid-cell .grid-question .grid-question__name,
.grid-cell .grid-question .grid-question__response {
  color: white;
  border-radius: 2px;
  line-height: 36px;
  height: 36px;
  display: inline-block;
  vertical-align: middle;
  padding: 0 16px; }
  .marker + .marker, .grid-cell .grid-question .grid-question__name + .marker, .grid-cell .grid-question .grid-question__response + .marker, .grid-cell .grid-question .marker + .grid-question__name, .grid-cell .grid-question .grid-question__name + .grid-question__name, .grid-cell .grid-question .grid-question__response + .grid-question__name,
  .grid-cell .grid-question .marker + .grid-question__response,
  .grid-cell .grid-question .grid-question__name + .grid-question__response,
  .grid-cell .grid-question .grid-question__response + .grid-question__response {
    margin-left: 2px; }
  .marker + button:not(.no-autospace), .grid-cell .grid-question .grid-question__name + button:not(.no-autospace), .grid-cell .grid-question .grid-question__response + button:not(.no-autospace), .marker + label.label-btn:not(.no-autospace), .grid-cell .grid-question .grid-question__name + label.label-btn:not(.no-autospace), .grid-cell .grid-question .grid-question__response + label.label-btn:not(.no-autospace), md-dialog md-dialog-actions .marker + .md-cancel-button:not(.no-autospace), .grid-cell .grid-question md-dialog md-dialog-actions .grid-question__name + .md-cancel-button:not(.no-autospace), md-dialog md-dialog-actions .grid-cell .grid-question .grid-question__name + .md-cancel-button:not(.no-autospace), .grid-cell .grid-question md-dialog md-dialog-actions .grid-question__response + .md-cancel-button:not(.no-autospace), md-dialog md-dialog-actions .grid-cell .grid-question .grid-question__response + .md-cancel-button:not(.no-autospace), md-dialog md-dialog-actions .marker + .md-confirm-button:not(.no-autospace), .grid-cell .grid-question md-dialog md-dialog-actions .grid-question__name + .md-confirm-button:not(.no-autospace), md-dialog md-dialog-actions .grid-cell .grid-question .grid-question__name + .md-confirm-button:not(.no-autospace), .grid-cell .grid-question md-dialog md-dialog-actions .grid-question__response + .md-confirm-button:not(.no-autospace), md-dialog md-dialog-actions .grid-cell .grid-question .grid-question__response + .md-confirm-button:not(.no-autospace),
  button + .marker:not(.no-autospace),
  label.label-btn + .marker:not(.no-autospace),
  md-dialog md-dialog-actions .md-cancel-button + .marker:not(.no-autospace),
  md-dialog md-dialog-actions .md-confirm-button + .marker:not(.no-autospace),
  .grid-cell .grid-question button + .grid-question__name:not(.no-autospace),
  .grid-cell .grid-question label.label-btn + .grid-question__name:not(.no-autospace),
  md-dialog md-dialog-actions .grid-cell .grid-question .md-cancel-button + .grid-question__name:not(.no-autospace),
  .grid-cell .grid-question md-dialog md-dialog-actions .md-cancel-button + .grid-question__name:not(.no-autospace),
  md-dialog md-dialog-actions .grid-cell .grid-question .md-confirm-button + .grid-question__name:not(.no-autospace),
  .grid-cell .grid-question md-dialog md-dialog-actions .md-confirm-button + .grid-question__name:not(.no-autospace),
  .grid-cell .grid-question button + .grid-question__response:not(.no-autospace),
  .grid-cell .grid-question label.label-btn + .grid-question__response:not(.no-autospace),
  md-dialog md-dialog-actions .grid-cell .grid-question .md-cancel-button + .grid-question__response:not(.no-autospace),
  .grid-cell .grid-question md-dialog md-dialog-actions .md-cancel-button + .grid-question__response:not(.no-autospace),
  md-dialog md-dialog-actions .grid-cell .grid-question .md-confirm-button + .grid-question__response:not(.no-autospace),
  .grid-cell .grid-question md-dialog md-dialog-actions .md-confirm-button + .grid-question__response:not(.no-autospace) {
    margin-left: 12px; }
  .marker.small, .grid-cell .grid-question .grid-question__name,
  .grid-cell .grid-question .grid-question__response {
    line-height: 24px;
    height: 24px;
    padding: 0 8px; }
  .theme-cmix .marker, .theme-cmix .grid-cell .grid-question .grid-question__name, .grid-cell .grid-question .theme-cmix .grid-question__name,
  .theme-cmix .grid-cell .grid-question .grid-question__response, .grid-cell .grid-question .theme-cmix .grid-question__response {
    background-color: #585863; }
  .theme-marketview .marker, .theme-marketview .grid-cell .grid-question .grid-question__name, .grid-cell .grid-question .theme-marketview .grid-question__name,
  .theme-marketview .grid-cell .grid-question .grid-question__response, .grid-cell .grid-question .theme-marketview .grid-question__response {
    background-color: #666666; }

/**
* We use the well known [bootstrap 3 grid system](https://getbootstrap.com/css/#grid), modified to have 24 columns.
*
* Rows that follow other rows are automatically given a `1em` margin-top. Add the class `flush` to remove this.
*
* Add the class `no-gutters` to a row to strip the gutter spacing between columns.
*
* @section Grid
* @example
* <div class="row">
*   <div class="col-sm-8"><p style="text-align: center;background-color: #f5f5f5;border: 1px solid #ddd;">8</p></div>
*   <div class="col-sm-8"><p style="text-align: center;background-color: #f5f5f5;border: 1px solid #ddd;">8</p></div>
*   <div class="col-sm-8"><p style="text-align: center;background-color: #f5f5f5;border: 1px solid #ddd;">8</p></div>
* </div>
* <div class="row flush">
*   <div class="col-xs-8 col-xs-offset-8"><p style="text-align: center;background-color: #f5f5f5;border: 1px solid #ddd;">8 offset by 8, flush</p></div>
* </div>
* <div class="row no-gutters">
*   <div class="col-sm-12"><p style="text-align: center;background-color: #f5f5f5;border: 1px solid #ddd;">12</p></div>
*   <div class="col-sm-12"><p style="text-align: center;background-color: #f5f5f5;border: 1px solid #ddd;">12</p></div>
* </div>
* <div class="row">
*   <div class="col-sm-12"><p style="text-align: center;background-color: #f5f5f5;border: 1px solid #ddd;">12</p></div>
*   <div class="col-sm-12"><p style="text-align: center;background-color: #f5f5f5;border: 1px solid #ddd;">12</p></div>
* </div>
*
* @code
* <div class="row">
*   <div class="col-sm-8"><p style="text-align: center;background-color: #f5f5f5;border: 1px solid #ddd;">8</p></div>
*   <div class="col-sm-8"><p style="text-align: center;background-color: #f5f5f5;border: 1px solid #ddd;">8</p></div>
*   <div class="col-sm-8"><p style="text-align: center;background-color: #f5f5f5;border: 1px solid #ddd;">8</p></div>
* </div>
* <div class="row flush">
*   <div class="col-xs-8 col-xs-offset-8"><p style="text-align: center;background-color: #f5f5f5;border: 1px solid #ddd;">8 offset by 8</p></div>
* </div>
* <div class="row no-gutters">
*   <div class="col-sm-12"><p style="text-align: center;background-color: #f5f5f5;border: 1px solid #ddd;">12</p></div>
*   <div class="col-sm-12"><p style="text-align: center;background-color: #f5f5f5;border: 1px solid #ddd;">12</p></div>
* </div>
* <div class="row">
*   <div class="col-sm-12"><p style="text-align: center;background-color: #f5f5f5;border: 1px solid #ddd;">12</p></div>
*   <div class="col-sm-12"><p style="text-align: center;background-color: #f5f5f5;border: 1px solid #ddd;">12</p></div>
* </div>
*
* @code
* <div class="row">
*   <div class="col-sm-8"><p>8</p></div>
*   <div class="col-sm-8"><p>8</p></div>
*   <div class="col-sm-8"><p>8</p></div>
* </div>
* <div class="row flush">
*   <div class="col-xs-8 col-xs-offset-8"><p>8 offset by 8, flush</p></div>
* </div>
* <div class="row no-gutters">
*   <div class="col-sm-12"><p>12</p></div>
*   <div class="col-sm-12"><p>12</p></div>
* </div>
* <div class="row">
*   <div class="col-sm-12"><p>12</p></div>
*   <div class="col-sm-12"><p>12</p></div>
* </div>
*
* @code
* <div class="row">
*   <div class="col-sm-8"><p>8</p></div>
*   <div class="col-sm-8"><p>8</p></div>
*   <div class="col-sm-8"><p>8</p></div>
* </div>
* <div class="row flush">
*   <div class="col-xs-8 col-xs-offset-8"><p>8 offset by 8</p></div>
* </div>
* <div class="row no-gutters">
*   <div class="col-sm-12"><p>12</p></div>
*   <div class="col-sm-12"><p>12</p></div>
* </div>
* <div class="row">
*   <div class="col-sm-12"><p>12</p></div>
*   <div class="col-sm-12"><p>12</p></div>
* </div>
*/
.row + .row {
  margin-top: 16px; }

.row.flush, .people-card.-expandable button.row.expand-user, .people-card.-expandable label.row.expand-user.label-btn, .people-card.-expandable md-dialog md-dialog-actions .row.expand-user.md-cancel-button, md-dialog md-dialog-actions .people-card.-expandable .row.expand-user.md-cancel-button, .people-card.-expandable md-dialog md-dialog-actions .row.expand-user.md-confirm-button, md-dialog md-dialog-actions .people-card.-expandable .row.expand-user.md-confirm-button {
  margin-top: 0; }

.row.no-gutters {
  margin-right: 0;
  margin-left: 0; }
  .row.no-gutters > [class^="col-"],
  .row.no-gutters > [class*=" col-"] {
    padding-right: 0;
    padding-left: 0; }

/**
* Use only as implied by the icon's name.
*
* Consistent use of icons in the form of a visual language is key to the user being able to successfully interpret them with as little cognitive load as possible. Otherwise just show them text if it becomes cryptic, the user should never have to guess.
*
* Add the class `flush-icon` to remove the default margin-right on an icon.
*
* `icon-spinner` will automatically spin.
*
* Use the `$icon-font-family` variable if needed.
*
* To add to or modify the icon font, checkout the [readme](https://bitbucket.org/criticalmix/criticalmix.bitbucket.org/src/697b63576d19a020b8cbfa0d90ded0aea70264d1/fonts/cmix-icons/?at=master) in `../fonts/cmix-icons/README.md`
*
* @section Icons
* @iconsList
* @icon {icon-menu}
* @icon {icon-settings}
* @icon {icon-more-options}
* @icon {icon-add}
* @icon {icon-remove}
* @icon {icon-close}
* @icon {icon-edit}
* @icon {icon-refresh}
* @icon {icon-copy}
* @icon {icon-print}
* @icon {icon-calendar}
* @icon {icon-info}
* @icon {icon-success}
* @icon {icon-attention}
* @icon {icon-search}
* @icon {icon-preview}
* @icon {icon-external-link}
* @icon {icon-locked}
* @icon {icon-unlocked}
* @icon {icon-pin}
* @icon {icon-group}
* @icon {icon-color-picker}
* @icon {icon-format-text}
* @icon {icon-code}
* @icon {icon-code-file}
* @icon {icon-file}
* @icon {icon-audio-file}
* @icon {icon-video-file}
* @icon {icon-up}
* @icon {icon-down}
* @icon {icon-left}
* @icon {icon-right}
* @icon {icon-drop-down}
* @icon {icon-sortable}
* @icon {icon-sort-up}
* @icon {icon-sort-down}
* @icon {icon-backwards}
* @icon {icon-forwards}
* @icon {icon-stop}
* @icon {icon-drag-handle}
* @icon {icon-favorite}
* @icon {icon-favorited}
* @icon {icon-tasks}
* @icon {icon-tasks-active}
* @icon {icon-add-page}
* @icon {icon-add-section}
* @icon {icon-add-question}
* @icon {icon-add-variable}
* @icon {icon-add-logic}
* @icon {icon-logic}
* @icon {icon-loop}
* @icon {icon-facebook}
* @icon {icon-linkedin}
* @icon {icon-spinner}
* @icon {icon-rectangle}
* @icon {icon-oval}
* @icon {icon-polygon}
*/
@font-face {
  font-family: 'cmix-icons';
  src: url("../fonts/cmix-icons/cmix-icons.eot?47810483");
  src: url("../fonts/cmix-icons/cmix-icons.eot?47810483#iefix") format("embedded-opentype"), url("../fonts/cmix-icons/cmix-icons.woff2?47810483") format("woff2"), url("../fonts/cmix-icons/cmix-icons.woff?47810483") format("woff"), url("../fonts/cmix-icons/cmix-icons.ttf?47810483") format("truetype"), url("../fonts/cmix-icons/cmix-icons.svg?47810483#cmix-icons") format("svg");
  font-weight: normal;
  font-style: normal; }

[class^="icon-"]:before, .promise-indicator:before, .people-card.-expandable button.expand-user:before, .people-card.-expandable label.expand-user.label-btn:before, .people-card.-expandable md-dialog md-dialog-actions .expand-user.md-cancel-button:before, md-dialog md-dialog-actions .people-card.-expandable .expand-user.md-cancel-button:before, .people-card.-expandable md-dialog md-dialog-actions .expand-user.md-confirm-button:before, md-dialog md-dialog-actions .people-card.-expandable .expand-user.md-confirm-button:before, .group-tag p:before, table th.sortable .sort-btn:after, .collapse-ctrl:before, md-autocomplete .md-show-clear-button button, md-autocomplete .md-show-clear-button label.label-btn, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-cancel-button, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-cancel-button, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-confirm-button, md-dialog .close-dialog:before, .colorpicker .close-colorpicker:before,
[class*=" icon-"]:before {
  font-family: "cmix-icons";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 4px;
  text-align: center;
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none; }

.flush-icon:before {
  margin: 0; }

.icon-spinner:before, .promise-indicator.pending:before {
  animation: icon-spin 2.5s infinite linear; }

@keyframes icon-spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(359deg); } }

/**
* Any time you use `icon-info`, it will inherit the help icon styling.
*
* This is to be used to provide more detailed information in an app where
* the interaction or functionality might not be completely obvious.
*
* The different apps may have their own tooltip library based on the framework used.
* Add a tooltip to an `icon-info` to provide the detailed information. It's also a
* good idea to add the same information in an `.sr-only` span for screen readers.
*
* @section Help Icon
* @sectionof Icons
* @example
* <span class="icon-info">
*   <span class="sr-only">More information...</span>
* </span>
*/
.icon-info {
  cursor: help; }
  .theme-cmix .icon-info {
    color: #1B365D; }
  .theme-marketview .icon-info {
    color: #122D59; }

.icon-drop-down:before, .dropdown-input:before {
  content: '\e800'; }

/* '' */
.icon-menu:before {
  content: '\e801'; }

/* '' */
.icon-settings:before {
  content: '\e802'; }

/* '' */
.icon-more-options:before {
  content: '\e803'; }

/* '' */
.icon-add:before {
  content: '\e804'; }

/* '' */
.icon-remove:before, md-autocomplete .md-show-clear-button button:before, md-autocomplete .md-show-clear-button label.label-btn:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-cancel-button:before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-cancel-button:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button:before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-confirm-button:before {
  content: '\e805'; }

/* '' */
.icon-close:before, md-dialog .close-dialog:before, .colorpicker .close-colorpicker:before {
  content: '\e806'; }

/* '' */
.icon-edit:before {
  content: '\e807'; }

/* '' */
.icon-refresh:before {
  content: '\e808'; }

/* '' */
.icon-copy:before {
  content: '\e809'; }

/* '' */
.icon-print:before {
  content: '\e80a'; }

/* '' */
.icon-calendar:before {
  content: '\e80b'; }

/* '' */
.icon-info:before {
  content: '\e80c'; }

/* '' */
.icon-success:before, .promise-indicator:before {
  content: '\e80d'; }

/* '' */
.icon-attention:before, .promise-indicator.rejected:before {
  content: '\e80e'; }

/* '' */
.icon-search:before {
  content: '\e80f'; }

/* '' */
.icon-preview:before {
  content: '\e810'; }

/* '' */
.icon-external-link:before {
  content: '\e811'; }

/* '' */
.icon-locked:before {
  content: '\e812'; }

/* '' */
.icon-unlocked:before {
  content: '\e813'; }

/* '' */
.icon-pin:before {
  content: '\e814'; }

/* '' */
.icon-group:before, .group-tag p:before {
  content: '\e815'; }

/* '' */
.icon-format-text:before {
  content: '\e816'; }

/* '' */
.icon-code:before {
  content: '\e817'; }

/* '' */
.icon-code-file:before {
  content: '\e818'; }

/* '' */
.icon-file:before {
  content: '\e819'; }

/* '' */
.icon-audio-file:before {
  content: '\e81a'; }

/* '' */
.icon-video-file:before {
  content: '\e81b'; }

/* '' */
.icon-up:before {
  content: '\e81c'; }

/* '' */
.icon-sort-down:before, table th.sortable.active-down .sort-btn:after {
  content: '\e81d'; }

/* '' */
.icon-left:before {
  content: '\e81e'; }

/* '' */
.icon-right:before, .people-card.-expandable button.expand-user:before, .people-card.-expandable label.expand-user.label-btn:before, .people-card.-expandable md-dialog md-dialog-actions .expand-user.md-cancel-button:before, md-dialog md-dialog-actions .people-card.-expandable .expand-user.md-cancel-button:before, .people-card.-expandable md-dialog md-dialog-actions .expand-user.md-confirm-button:before, md-dialog md-dialog-actions .people-card.-expandable .expand-user.md-confirm-button:before {
  content: '\e81f'; }

/* '' */
.icon-backwards:before {
  content: '\e820'; }

/* '' */
.icon-forwards:before {
  content: '\e821'; }

/* '' */
.icon-stop:before {
  content: '\e822'; }

/* '' */
.icon-drag-handle:before {
  content: '\e823'; }

/* '' */
.icon-favorite:before {
  content: '\e824'; }

/* '' */
.icon-favorited:before {
  content: '\e825'; }

/* '' */
.icon-add-page:before {
  content: '\e826'; }

/* '' */
.icon-add-question:before {
  content: '\e827'; }

/* '' */
.icon-add-logic:before {
  content: '\e828'; }

/* '' */
.icon-logic:before {
  content: '\e829'; }

/* '' */
.icon-add-section:before {
  content: '\e82a'; }

/* '' */
.icon-loop:before {
  content: '\e82b'; }

/* '' */
.icon-facebook:before {
  content: '\e82c'; }

/* '' */
.icon-linkedin:before {
  content: '\e82d'; }

/* '' */
.icon-rectangle:before {
  content: '\e82e'; }

/* '' */
.icon-oval:before {
  content: '\e82f'; }

/* '' */
.icon-polygon:before {
  content: '\e830'; }

/* '' */
.icon-spinner:before, .promise-indicator.pending:before {
  content: '\e831'; }

/* '' */
.icon-tasks:before {
  content: '\e832'; }

/* '' */
.icon-tasks-active:before {
  content: '\e833'; }

/* '' */
.icon-color-picker:before {
  content: '\e834'; }

/* '' */
.icon-down:before, .collapse-ctrl:before {
  content: '\e835'; }

/* '' */
.icon-sortable:before, table th.sortable .sort-btn:after {
  content: '\e836'; }

/* '' */
.icon-sort-up:before, table th.sortable.active-up .sort-btn:after {
  content: '\e837'; }

/* '' */
.icon-add-variable:before {
  content: '\e838'; }

/* '' */
/**
* @section Buttons
*/
/**
* __Usage:__ For general actions and secondary actions. Make sure to use title cased text within all buttons.
*
* Buttons that follow other buttons automatically get left margin for nice spacing. If you don't want this behavior, add the class `no-autospace` to any buttons that you don't want margin-left automatically applied.
*
* Add the class `danger` for buttons with irreversible/dangerous actions.
*
* When adding an icon in a button, the class `flush-icon` will strip the default `margin-right` from the icon.
*
* @section Default Button
* @sectionof Buttons
* @example
* <button>Default Button</button>
* <button class="disabled">Disabled Default Button</button>
* <div style="margin-top: 1em;">
*   <button>Button</button>
*   <button class="no-autospace">Button</button>
*   <button class="danger">Danger button</button>
* </div>
* <div style="margin-top: 1em;">
*   <button class="icon-add">Icon in Button</button>
* </div>
*/

button,
label.label-btn,
md-dialog md-dialog-actions .md-cancel-button,
md-dialog md-dialog-actions .md-confirm-button {
  background-image: none;
  border: 1px solid transparent;
  line-height: 34px;
  text-align: center;
  border-radius: 4px;
  margin-bottom: 0;
  padding: 0 16px;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  white-space: nowrap;
  touch-action: manipulation;
  -webkit-user-select: none;
          user-select: none; }
  button + button:not(.no-autospace), label.label-btn + button:not(.no-autospace), md-dialog md-dialog-actions .md-cancel-button + button:not(.no-autospace), md-dialog md-dialog-actions .md-confirm-button + button:not(.no-autospace), button + label.label-btn:not(.no-autospace), label.label-btn + label.label-btn:not(.no-autospace), md-dialog md-dialog-actions .md-cancel-button + label.label-btn:not(.no-autospace), md-dialog md-dialog-actions .md-confirm-button + label.label-btn:not(.no-autospace), md-dialog md-dialog-actions button + .md-cancel-button:not(.no-autospace), md-dialog md-dialog-actions label.label-btn + .md-cancel-button:not(.no-autospace), md-dialog md-dialog-actions .md-cancel-button + .md-cancel-button:not(.no-autospace), md-dialog md-dialog-actions .md-confirm-button + .md-cancel-button:not(.no-autospace), md-dialog md-dialog-actions button + .md-confirm-button:not(.no-autospace), md-dialog md-dialog-actions label.label-btn + .md-confirm-button:not(.no-autospace), md-dialog md-dialog-actions .md-cancel-button + .md-confirm-button:not(.no-autospace), md-dialog md-dialog-actions .md-confirm-button + .md-confirm-button:not(.no-autospace),
  button + a.button-spacing:not(.no-autospace),
  label.label-btn + a.button-spacing:not(.no-autospace),
  md-dialog md-dialog-actions .md-cancel-button + a.button-spacing:not(.no-autospace),
  md-dialog md-dialog-actions .md-confirm-button + a.button-spacing:not(.no-autospace) {
    margin-left: 16px; }
  button:before, label.label-btn:before, md-dialog md-dialog-actions .md-cancel-button:before, md-dialog md-dialog-actions .md-confirm-button:before, button[class^="icon-"]:before, label.label-btn[class^="icon-"]:before, label.label-btn.promise-indicator:before, table th.sortable label.label-btn.sort-btn:after, label.label-btn.collapse-ctrl:before, md-dialog label.label-btn.close-dialog:before, .colorpicker label.label-btn.close-colorpicker:before, button.promise-indicator:before, md-dialog md-dialog-actions .promise-indicator.md-cancel-button:before, md-dialog md-dialog-actions .promise-indicator.md-confirm-button:before, .people-card.-expandable button.expand-user:before, .people-card.-expandable label.expand-user.label-btn:before, .people-card.-expandable md-dialog md-dialog-actions .expand-user.md-cancel-button:before, md-dialog md-dialog-actions .people-card.-expandable .expand-user.md-cancel-button:before, .people-card.-expandable md-dialog md-dialog-actions .expand-user.md-confirm-button:before, md-dialog md-dialog-actions .people-card.-expandable .expand-user.md-confirm-button:before, table th.sortable button.sort-btn:after, table th.sortable md-dialog md-dialog-actions .sort-btn.md-cancel-button:after, md-dialog md-dialog-actions table th.sortable .sort-btn.md-cancel-button:after, table th.sortable md-dialog md-dialog-actions .sort-btn.md-confirm-button:after, md-dialog md-dialog-actions table th.sortable .sort-btn.md-confirm-button:after, button.collapse-ctrl:before, md-dialog md-dialog-actions .collapse-ctrl.md-cancel-button:before, md-dialog md-dialog-actions .collapse-ctrl.md-confirm-button:before, md-autocomplete .md-show-clear-button button, md-autocomplete .md-show-clear-button label.label-btn, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-cancel-button, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-cancel-button, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-confirm-button, md-dialog button.close-dialog:before, md-dialog md-dialog-actions .close-dialog.md-cancel-button:before, md-dialog md-dialog-actions .close-dialog.md-confirm-button:before, md-dialog md-dialog-actions .md-cancel-button[class^="icon-"]:before, md-dialog md-dialog-actions .group-tag p.md-cancel-button:before, .group-tag md-dialog md-dialog-actions p.md-cancel-button:before, md-dialog md-dialog-actions .colorpicker .md-cancel-button.close-colorpicker:before, .colorpicker md-dialog md-dialog-actions .md-cancel-button.close-colorpicker:before, md-dialog md-dialog-actions .md-confirm-button[class^="icon-"]:before, md-dialog md-dialog-actions .group-tag p.md-confirm-button:before, .group-tag md-dialog md-dialog-actions p.md-confirm-button:before, md-dialog md-dialog-actions .colorpicker .md-confirm-button.close-colorpicker:before, .colorpicker md-dialog md-dialog-actions .md-confirm-button.close-colorpicker:before, .colorpicker button.close-colorpicker:before, button[class*=" icon-"]:before, label.label-btn[class*=" icon-"]:before, md-dialog md-dialog-actions .md-cancel-button[class*=" icon-"]:before, md-dialog md-dialog-actions .md-confirm-button[class*=" icon-"]:before {
    margin-right: 10px; }
  button span[class^="icon-"]:before, label.label-btn span[class^="icon-"]:before, md-dialog md-dialog-actions .md-cancel-button span[class^="icon-"]:before, md-dialog md-dialog-actions .md-confirm-button span[class^="icon-"]:before, button span.promise-indicator:before, label.label-btn span.promise-indicator:before, md-dialog md-dialog-actions .md-cancel-button span.promise-indicator:before, md-dialog md-dialog-actions .md-confirm-button span.promise-indicator:before, button table th.sortable span.sort-btn:after, table th.sortable button span.sort-btn:after, label.label-btn table th.sortable span.sort-btn:after, table th.sortable label.label-btn span.sort-btn:after, md-dialog md-dialog-actions .md-cancel-button table th.sortable span.sort-btn:after, table th.sortable md-dialog md-dialog-actions .md-cancel-button span.sort-btn:after, md-dialog md-dialog-actions .md-confirm-button table th.sortable span.sort-btn:after, table th.sortable md-dialog md-dialog-actions .md-confirm-button span.sort-btn:after, button span.collapse-ctrl:before, label.label-btn span.collapse-ctrl:before, md-dialog md-dialog-actions .md-cancel-button span.collapse-ctrl:before, md-dialog md-dialog-actions .md-confirm-button span.collapse-ctrl:before, button md-dialog span.close-dialog:before, md-dialog button span.close-dialog:before, label.label-btn md-dialog span.close-dialog:before, md-dialog label.label-btn span.close-dialog:before, md-dialog md-dialog-actions .md-cancel-button span.close-dialog:before, md-dialog md-dialog-actions .md-confirm-button span.close-dialog:before, button .colorpicker span.close-colorpicker:before, .colorpicker button span.close-colorpicker:before, label.label-btn .colorpicker span.close-colorpicker:before, .colorpicker label.label-btn span.close-colorpicker:before, md-dialog md-dialog-actions .md-cancel-button .colorpicker span.close-colorpicker:before, .colorpicker md-dialog md-dialog-actions .md-cancel-button span.close-colorpicker:before, md-dialog md-dialog-actions .md-confirm-button .colorpicker span.close-colorpicker:before, .colorpicker md-dialog md-dialog-actions .md-confirm-button span.close-colorpicker:before,
  button span[class*=" icon-"]:before,
  label.label-btn span[class*=" icon-"]:before,
  md-dialog md-dialog-actions .md-cancel-button span[class*=" icon-"]:before,
  md-dialog md-dialog-actions .md-confirm-button span[class*=" icon-"]:before {
    line-height: 1; }
  button:hover, label.label-btn:hover, md-dialog md-dialog-actions .md-cancel-button:hover, md-dialog md-dialog-actions .md-confirm-button:hover, button:focus, label.label-btn:focus, md-dialog md-dialog-actions .md-cancel-button:focus, md-dialog md-dialog-actions .md-confirm-button:focus {
    text-decoration: none;
    outline: none; }
  button.danger:active, label.danger.label-btn:active, md-dialog md-dialog-actions .danger.md-cancel-button:active, md-dialog md-dialog-actions .danger.md-confirm-button:active {
    color: white; }
  button:active, label.label-btn:active, md-dialog md-dialog-actions .md-cancel-button:active, md-dialog md-dialog-actions .md-confirm-button:active {
    background-image: none;
    color: white; }
    button:active:before, label.label-btn:active:before, md-dialog md-dialog-actions .md-cancel-button:active:before, md-dialog md-dialog-actions .md-confirm-button:active:before,
    button:active span[class^="icon-"]:before,
    label.label-btn:active span[class^="icon-"]:before,
    md-dialog md-dialog-actions .md-cancel-button:active span[class^="icon-"]:before,
    md-dialog md-dialog-actions .md-confirm-button:active span[class^="icon-"]:before,
    button:active span.promise-indicator:before,
    label.label-btn:active span.promise-indicator:before,
    md-dialog md-dialog-actions .md-cancel-button:active span.promise-indicator:before,
    md-dialog md-dialog-actions .md-confirm-button:active span.promise-indicator:before,
    button:active table th.sortable span.sort-btn:after,
    table th.sortable button:active span.sort-btn:after,
    label.label-btn:active table th.sortable span.sort-btn:after,
    table th.sortable label.label-btn:active span.sort-btn:after,
    md-dialog md-dialog-actions .md-cancel-button:active table th.sortable span.sort-btn:after,
    table th.sortable md-dialog md-dialog-actions .md-cancel-button:active span.sort-btn:after,
    md-dialog md-dialog-actions .md-confirm-button:active table th.sortable span.sort-btn:after,
    table th.sortable md-dialog md-dialog-actions .md-confirm-button:active span.sort-btn:after,
    button:active span.collapse-ctrl:before,
    label.label-btn:active span.collapse-ctrl:before,
    md-dialog md-dialog-actions .md-cancel-button:active span.collapse-ctrl:before,
    md-dialog md-dialog-actions .md-confirm-button:active span.collapse-ctrl:before,
    button:active md-dialog span.close-dialog:before,
    md-dialog button:active span.close-dialog:before,
    label.label-btn:active md-dialog span.close-dialog:before,
    md-dialog label.label-btn:active span.close-dialog:before,
    md-dialog md-dialog-actions .md-cancel-button:active span.close-dialog:before,
    md-dialog md-dialog-actions .md-confirm-button:active span.close-dialog:before,
    button:active .colorpicker span.close-colorpicker:before,
    .colorpicker button:active span.close-colorpicker:before,
    label.label-btn:active .colorpicker span.close-colorpicker:before,
    .colorpicker label.label-btn:active span.close-colorpicker:before,
    md-dialog md-dialog-actions .md-cancel-button:active .colorpicker span.close-colorpicker:before,
    .colorpicker md-dialog md-dialog-actions .md-cancel-button:active span.close-colorpicker:before,
    md-dialog md-dialog-actions .md-confirm-button:active .colorpicker span.close-colorpicker:before,
    .colorpicker md-dialog md-dialog-actions .md-confirm-button:active span.close-colorpicker:before,
    button:active span[class*=" icon-"]:before,
    label.label-btn:active span[class*=" icon-"]:before,
    md-dialog md-dialog-actions .md-cancel-button:active span[class*=" icon-"]:before,
    md-dialog md-dialog-actions .md-confirm-button:active span[class*=" icon-"]:before {
      color: white; }
  button.disabled, label.disabled.label-btn, .input-w-inlay input.disabled + button, .input-w-inlay input.disabled + label.label-btn, .input-w-inlay md-dialog md-dialog-actions input.disabled + .md-cancel-button, md-dialog md-dialog-actions .input-w-inlay input.disabled + .md-cancel-button, .input-w-inlay md-dialog md-dialog-actions input.disabled + .md-confirm-button, md-dialog md-dialog-actions .input-w-inlay input.disabled + .md-confirm-button, .input-w-inlay input[disabled] + button, .input-w-inlay input[disabled] + label.label-btn, .input-w-inlay md-dialog md-dialog-actions input[disabled] + .md-cancel-button, md-dialog md-dialog-actions .input-w-inlay input[disabled] + .md-cancel-button, .input-w-inlay md-dialog md-dialog-actions input[disabled] + .md-confirm-button, md-dialog md-dialog-actions .input-w-inlay input[disabled] + .md-confirm-button,
  fieldset[disabled] .input-w-inlay input + button, fieldset[disabled] .input-w-inlay input + label.label-btn, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .md-cancel-button, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .md-cancel-button, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .md-confirm-button, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .md-confirm-button, .input-w-clear input.disabled + button, .input-w-clear input.disabled + label.label-btn, .input-w-clear md-dialog md-dialog-actions input.disabled + .md-cancel-button, md-dialog md-dialog-actions .input-w-clear input.disabled + .md-cancel-button, .input-w-clear md-dialog md-dialog-actions input.disabled + .md-confirm-button, md-dialog md-dialog-actions .input-w-clear input.disabled + .md-confirm-button, .input-w-clear input[disabled] + button, .input-w-clear input[disabled] + label.label-btn, .input-w-clear md-dialog md-dialog-actions input[disabled] + .md-cancel-button, md-dialog md-dialog-actions .input-w-clear input[disabled] + .md-cancel-button, .input-w-clear md-dialog md-dialog-actions input[disabled] + .md-confirm-button, md-dialog md-dialog-actions .input-w-clear input[disabled] + .md-confirm-button,
  fieldset[disabled] .input-w-clear input + button, fieldset[disabled] .input-w-clear input + label.label-btn, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .md-cancel-button, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .md-cancel-button, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .md-confirm-button, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .md-confirm-button, .input-w-button input.disabled + button, .input-w-button input.disabled + label.label-btn, .input-w-button md-dialog md-dialog-actions input.disabled + .md-cancel-button, md-dialog md-dialog-actions .input-w-button input.disabled + .md-cancel-button, .input-w-button md-dialog md-dialog-actions input.disabled + .md-confirm-button, md-dialog md-dialog-actions .input-w-button input.disabled + .md-confirm-button, .input-w-button input[disabled] + button, .input-w-button input[disabled] + label.label-btn, .input-w-button md-dialog md-dialog-actions input[disabled] + .md-cancel-button, md-dialog md-dialog-actions .input-w-button input[disabled] + .md-cancel-button, .input-w-button md-dialog md-dialog-actions input[disabled] + .md-confirm-button, md-dialog md-dialog-actions .input-w-button input[disabled] + .md-confirm-button,
  fieldset[disabled] .input-w-button input + button, fieldset[disabled] .input-w-button input + label.label-btn, fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .md-cancel-button, md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .md-cancel-button, fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .md-confirm-button, md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .md-confirm-button, md-dialog md-dialog-actions .disabled.md-cancel-button, md-dialog md-dialog-actions .disabled.md-confirm-button,
  button[disabled],
  label.label-btn[disabled],
  md-dialog md-dialog-actions .md-cancel-button[disabled],
  md-dialog md-dialog-actions .md-confirm-button[disabled],
  fieldset[disabled] button,
  fieldset[disabled] label.label-btn,
  fieldset[disabled] md-dialog md-dialog-actions .md-cancel-button,
  md-dialog md-dialog-actions fieldset[disabled] .md-cancel-button,
  fieldset[disabled] md-dialog md-dialog-actions .md-confirm-button,
  md-dialog md-dialog-actions fieldset[disabled] .md-confirm-button {
    cursor: not-allowed;
    opacity: 0.65;
    pointer-events: none; }
  .theme-cmix button, .theme-cmix label.label-btn, .theme-cmix md-dialog md-dialog-actions .md-cancel-button, md-dialog md-dialog-actions .theme-cmix .md-cancel-button, .theme-cmix md-dialog md-dialog-actions .md-confirm-button, md-dialog md-dialog-actions .theme-cmix .md-confirm-button {
    background-color: #FFFFFF;
    color: #22232D;
    border-color: #DDE1E7; }
    .theme-cmix button:before, .theme-cmix label.label-btn:before, .theme-cmix md-dialog md-dialog-actions .md-cancel-button:before, md-dialog md-dialog-actions .theme-cmix .md-cancel-button:before, .theme-cmix md-dialog md-dialog-actions .md-confirm-button:before, md-dialog md-dialog-actions .theme-cmix .md-confirm-button:before,
    .theme-cmix button span[class^="icon-"]:before,
    .theme-cmix label.label-btn span[class^="icon-"]:before,
    .theme-cmix md-dialog md-dialog-actions .md-cancel-button span[class^="icon-"]:before,
    md-dialog md-dialog-actions .theme-cmix .md-cancel-button span[class^="icon-"]:before,
    .theme-cmix md-dialog md-dialog-actions .md-confirm-button span[class^="icon-"]:before,
    md-dialog md-dialog-actions .theme-cmix .md-confirm-button span[class^="icon-"]:before,
    .theme-cmix button span.promise-indicator:before,
    .theme-cmix label.label-btn span.promise-indicator:before,
    .theme-cmix md-dialog md-dialog-actions .md-cancel-button span.promise-indicator:before,
    md-dialog md-dialog-actions .theme-cmix .md-cancel-button span.promise-indicator:before,
    .theme-cmix md-dialog md-dialog-actions .md-confirm-button span.promise-indicator:before,
    md-dialog md-dialog-actions .theme-cmix .md-confirm-button span.promise-indicator:before,
    .theme-cmix button table th.sortable span.sort-btn:after,
    table th.sortable .theme-cmix button span.sort-btn:after,
    .theme-cmix label.label-btn table th.sortable span.sort-btn:after,
    table th.sortable .theme-cmix label.label-btn span.sort-btn:after,
    .theme-cmix md-dialog md-dialog-actions .md-cancel-button table th.sortable span.sort-btn:after,
    table th.sortable .theme-cmix md-dialog md-dialog-actions .md-cancel-button span.sort-btn:after,
    md-dialog md-dialog-actions .theme-cmix .md-cancel-button table th.sortable span.sort-btn:after,
    table th.sortable md-dialog md-dialog-actions .theme-cmix .md-cancel-button span.sort-btn:after,
    .theme-cmix md-dialog md-dialog-actions .md-confirm-button table th.sortable span.sort-btn:after,
    table th.sortable .theme-cmix md-dialog md-dialog-actions .md-confirm-button span.sort-btn:after,
    md-dialog md-dialog-actions .theme-cmix .md-confirm-button table th.sortable span.sort-btn:after,
    table th.sortable md-dialog md-dialog-actions .theme-cmix .md-confirm-button span.sort-btn:after,
    .theme-cmix button span.collapse-ctrl:before,
    .theme-cmix label.label-btn span.collapse-ctrl:before,
    .theme-cmix md-dialog md-dialog-actions .md-cancel-button span.collapse-ctrl:before,
    md-dialog md-dialog-actions .theme-cmix .md-cancel-button span.collapse-ctrl:before,
    .theme-cmix md-dialog md-dialog-actions .md-confirm-button span.collapse-ctrl:before,
    md-dialog md-dialog-actions .theme-cmix .md-confirm-button span.collapse-ctrl:before,
    .theme-cmix button md-dialog span.close-dialog:before,
    md-dialog .theme-cmix button span.close-dialog:before,
    .theme-cmix label.label-btn md-dialog span.close-dialog:before,
    md-dialog .theme-cmix label.label-btn span.close-dialog:before,
    .theme-cmix md-dialog md-dialog-actions .md-cancel-button span.close-dialog:before,
    md-dialog md-dialog-actions .theme-cmix .md-cancel-button span.close-dialog:before,
    .theme-cmix md-dialog md-dialog-actions .md-confirm-button span.close-dialog:before,
    md-dialog md-dialog-actions .theme-cmix .md-confirm-button span.close-dialog:before,
    .theme-cmix button .colorpicker span.close-colorpicker:before,
    .colorpicker .theme-cmix button span.close-colorpicker:before,
    .theme-cmix label.label-btn .colorpicker span.close-colorpicker:before,
    .colorpicker .theme-cmix label.label-btn span.close-colorpicker:before,
    .theme-cmix md-dialog md-dialog-actions .md-cancel-button .colorpicker span.close-colorpicker:before,
    .colorpicker .theme-cmix md-dialog md-dialog-actions .md-cancel-button span.close-colorpicker:before,
    md-dialog md-dialog-actions .theme-cmix .md-cancel-button .colorpicker span.close-colorpicker:before,
    .colorpicker md-dialog md-dialog-actions .theme-cmix .md-cancel-button span.close-colorpicker:before,
    .theme-cmix md-dialog md-dialog-actions .md-confirm-button .colorpicker span.close-colorpicker:before,
    .colorpicker .theme-cmix md-dialog md-dialog-actions .md-confirm-button span.close-colorpicker:before,
    md-dialog md-dialog-actions .theme-cmix .md-confirm-button .colorpicker span.close-colorpicker:before,
    .colorpicker md-dialog md-dialog-actions .theme-cmix .md-confirm-button span.close-colorpicker:before,
    .theme-cmix button span[class*=" icon-"]:before,
    .theme-cmix label.label-btn span[class*=" icon-"]:before,
    .theme-cmix md-dialog md-dialog-actions .md-cancel-button span[class*=" icon-"]:before,
    md-dialog md-dialog-actions .theme-cmix .md-cancel-button span[class*=" icon-"]:before,
    .theme-cmix md-dialog md-dialog-actions .md-confirm-button span[class*=" icon-"]:before,
    md-dialog md-dialog-actions .theme-cmix .md-confirm-button span[class*=" icon-"]:before {
      color: #3EA8DD; }
    .theme-cmix button.danger, .theme-cmix label.danger.label-btn, .theme-cmix md-dialog md-dialog-actions .danger.md-cancel-button, md-dialog md-dialog-actions .theme-cmix .danger.md-cancel-button, .theme-cmix md-dialog md-dialog-actions .danger.md-confirm-button, md-dialog md-dialog-actions .theme-cmix .danger.md-confirm-button {
      color: #DF4E71; }
      .theme-cmix button.danger:before, .theme-cmix label.danger.label-btn:before, .theme-cmix md-dialog md-dialog-actions .danger.md-cancel-button:before, md-dialog md-dialog-actions .theme-cmix .danger.md-cancel-button:before, .theme-cmix md-dialog md-dialog-actions .danger.md-confirm-button:before, md-dialog md-dialog-actions .theme-cmix .danger.md-confirm-button:before,
      .theme-cmix button.danger span[class^="icon-"]:before,
      .theme-cmix label.danger.label-btn span[class^="icon-"]:before,
      .theme-cmix md-dialog md-dialog-actions .danger.md-cancel-button span[class^="icon-"]:before,
      md-dialog md-dialog-actions .theme-cmix .danger.md-cancel-button span[class^="icon-"]:before,
      .theme-cmix md-dialog md-dialog-actions .danger.md-confirm-button span[class^="icon-"]:before,
      md-dialog md-dialog-actions .theme-cmix .danger.md-confirm-button span[class^="icon-"]:before,
      .theme-cmix button.danger span.promise-indicator:before,
      .theme-cmix label.danger.label-btn span.promise-indicator:before,
      .theme-cmix md-dialog md-dialog-actions .danger.md-cancel-button span.promise-indicator:before,
      md-dialog md-dialog-actions .theme-cmix .danger.md-cancel-button span.promise-indicator:before,
      .theme-cmix md-dialog md-dialog-actions .danger.md-confirm-button span.promise-indicator:before,
      md-dialog md-dialog-actions .theme-cmix .danger.md-confirm-button span.promise-indicator:before,
      .theme-cmix button.danger table th.sortable span.sort-btn:after,
      table th.sortable .theme-cmix button.danger span.sort-btn:after,
      .theme-cmix label.danger.label-btn table th.sortable span.sort-btn:after,
      table th.sortable .theme-cmix label.danger.label-btn span.sort-btn:after,
      .theme-cmix md-dialog md-dialog-actions .danger.md-cancel-button table th.sortable span.sort-btn:after,
      table th.sortable .theme-cmix md-dialog md-dialog-actions .danger.md-cancel-button span.sort-btn:after,
      md-dialog md-dialog-actions .theme-cmix .danger.md-cancel-button table th.sortable span.sort-btn:after,
      table th.sortable md-dialog md-dialog-actions .theme-cmix .danger.md-cancel-button span.sort-btn:after,
      .theme-cmix md-dialog md-dialog-actions .danger.md-confirm-button table th.sortable span.sort-btn:after,
      table th.sortable .theme-cmix md-dialog md-dialog-actions .danger.md-confirm-button span.sort-btn:after,
      md-dialog md-dialog-actions .theme-cmix .danger.md-confirm-button table th.sortable span.sort-btn:after,
      table th.sortable md-dialog md-dialog-actions .theme-cmix .danger.md-confirm-button span.sort-btn:after,
      .theme-cmix button.danger span.collapse-ctrl:before,
      .theme-cmix label.danger.label-btn span.collapse-ctrl:before,
      .theme-cmix md-dialog md-dialog-actions .danger.md-cancel-button span.collapse-ctrl:before,
      md-dialog md-dialog-actions .theme-cmix .danger.md-cancel-button span.collapse-ctrl:before,
      .theme-cmix md-dialog md-dialog-actions .danger.md-confirm-button span.collapse-ctrl:before,
      md-dialog md-dialog-actions .theme-cmix .danger.md-confirm-button span.collapse-ctrl:before,
      .theme-cmix button.danger md-dialog span.close-dialog:before,
      md-dialog .theme-cmix button.danger span.close-dialog:before,
      .theme-cmix label.danger.label-btn md-dialog span.close-dialog:before,
      md-dialog .theme-cmix label.danger.label-btn span.close-dialog:before,
      .theme-cmix md-dialog md-dialog-actions .danger.md-cancel-button span.close-dialog:before,
      md-dialog md-dialog-actions .theme-cmix .danger.md-cancel-button span.close-dialog:before,
      .theme-cmix md-dialog md-dialog-actions .danger.md-confirm-button span.close-dialog:before,
      md-dialog md-dialog-actions .theme-cmix .danger.md-confirm-button span.close-dialog:before,
      .theme-cmix button.danger .colorpicker span.close-colorpicker:before,
      .colorpicker .theme-cmix button.danger span.close-colorpicker:before,
      .theme-cmix label.danger.label-btn .colorpicker span.close-colorpicker:before,
      .colorpicker .theme-cmix label.danger.label-btn span.close-colorpicker:before,
      .theme-cmix md-dialog md-dialog-actions .danger.md-cancel-button .colorpicker span.close-colorpicker:before,
      .colorpicker .theme-cmix md-dialog md-dialog-actions .danger.md-cancel-button span.close-colorpicker:before,
      md-dialog md-dialog-actions .theme-cmix .danger.md-cancel-button .colorpicker span.close-colorpicker:before,
      .colorpicker md-dialog md-dialog-actions .theme-cmix .danger.md-cancel-button span.close-colorpicker:before,
      .theme-cmix md-dialog md-dialog-actions .danger.md-confirm-button .colorpicker span.close-colorpicker:before,
      .colorpicker .theme-cmix md-dialog md-dialog-actions .danger.md-confirm-button span.close-colorpicker:before,
      md-dialog md-dialog-actions .theme-cmix .danger.md-confirm-button .colorpicker span.close-colorpicker:before,
      .colorpicker md-dialog md-dialog-actions .theme-cmix .danger.md-confirm-button span.close-colorpicker:before,
      .theme-cmix button.danger span[class*=" icon-"]:before,
      .theme-cmix label.danger.label-btn span[class*=" icon-"]:before,
      .theme-cmix md-dialog md-dialog-actions .danger.md-cancel-button span[class*=" icon-"]:before,
      md-dialog md-dialog-actions .theme-cmix .danger.md-cancel-button span[class*=" icon-"]:before,
      .theme-cmix md-dialog md-dialog-actions .danger.md-confirm-button span[class*=" icon-"]:before,
      md-dialog md-dialog-actions .theme-cmix .danger.md-confirm-button span[class*=" icon-"]:before {
        color: #DF4E71; }
      .theme-cmix button.danger:active, .theme-cmix label.danger.label-btn:active, .theme-cmix md-dialog md-dialog-actions .danger.md-cancel-button:active, md-dialog md-dialog-actions .theme-cmix .danger.md-cancel-button:active, .theme-cmix md-dialog md-dialog-actions .danger.md-confirm-button:active, md-dialog md-dialog-actions .theme-cmix .danger.md-confirm-button:active {
        color: white;
        background-color: #DF4E71;
        border-color: #DF4E71; }
        .theme-cmix button.danger:active:before, .theme-cmix label.danger.label-btn:active:before, .theme-cmix md-dialog md-dialog-actions .danger.md-cancel-button:active:before, md-dialog md-dialog-actions .theme-cmix .danger.md-cancel-button:active:before, .theme-cmix md-dialog md-dialog-actions .danger.md-confirm-button:active:before, md-dialog md-dialog-actions .theme-cmix .danger.md-confirm-button:active:before,
        .theme-cmix button.danger:active span[class^="icon-"]:before,
        .theme-cmix label.danger.label-btn:active span[class^="icon-"]:before,
        .theme-cmix md-dialog md-dialog-actions .danger.md-cancel-button:active span[class^="icon-"]:before,
        md-dialog md-dialog-actions .theme-cmix .danger.md-cancel-button:active span[class^="icon-"]:before,
        .theme-cmix md-dialog md-dialog-actions .danger.md-confirm-button:active span[class^="icon-"]:before,
        md-dialog md-dialog-actions .theme-cmix .danger.md-confirm-button:active span[class^="icon-"]:before,
        .theme-cmix button.danger:active span.promise-indicator:before,
        .theme-cmix label.danger.label-btn:active span.promise-indicator:before,
        .theme-cmix md-dialog md-dialog-actions .danger.md-cancel-button:active span.promise-indicator:before,
        md-dialog md-dialog-actions .theme-cmix .danger.md-cancel-button:active span.promise-indicator:before,
        .theme-cmix md-dialog md-dialog-actions .danger.md-confirm-button:active span.promise-indicator:before,
        md-dialog md-dialog-actions .theme-cmix .danger.md-confirm-button:active span.promise-indicator:before,
        .theme-cmix button.danger:active table th.sortable span.sort-btn:after,
        table th.sortable .theme-cmix button.danger:active span.sort-btn:after,
        .theme-cmix label.danger.label-btn:active table th.sortable span.sort-btn:after,
        table th.sortable .theme-cmix label.danger.label-btn:active span.sort-btn:after,
        .theme-cmix md-dialog md-dialog-actions .danger.md-cancel-button:active table th.sortable span.sort-btn:after,
        table th.sortable .theme-cmix md-dialog md-dialog-actions .danger.md-cancel-button:active span.sort-btn:after,
        md-dialog md-dialog-actions .theme-cmix .danger.md-cancel-button:active table th.sortable span.sort-btn:after,
        table th.sortable md-dialog md-dialog-actions .theme-cmix .danger.md-cancel-button:active span.sort-btn:after,
        .theme-cmix md-dialog md-dialog-actions .danger.md-confirm-button:active table th.sortable span.sort-btn:after,
        table th.sortable .theme-cmix md-dialog md-dialog-actions .danger.md-confirm-button:active span.sort-btn:after,
        md-dialog md-dialog-actions .theme-cmix .danger.md-confirm-button:active table th.sortable span.sort-btn:after,
        table th.sortable md-dialog md-dialog-actions .theme-cmix .danger.md-confirm-button:active span.sort-btn:after,
        .theme-cmix button.danger:active span.collapse-ctrl:before,
        .theme-cmix label.danger.label-btn:active span.collapse-ctrl:before,
        .theme-cmix md-dialog md-dialog-actions .danger.md-cancel-button:active span.collapse-ctrl:before,
        md-dialog md-dialog-actions .theme-cmix .danger.md-cancel-button:active span.collapse-ctrl:before,
        .theme-cmix md-dialog md-dialog-actions .danger.md-confirm-button:active span.collapse-ctrl:before,
        md-dialog md-dialog-actions .theme-cmix .danger.md-confirm-button:active span.collapse-ctrl:before,
        .theme-cmix button.danger:active md-dialog span.close-dialog:before,
        md-dialog .theme-cmix button.danger:active span.close-dialog:before,
        .theme-cmix label.danger.label-btn:active md-dialog span.close-dialog:before,
        md-dialog .theme-cmix label.danger.label-btn:active span.close-dialog:before,
        .theme-cmix md-dialog md-dialog-actions .danger.md-cancel-button:active span.close-dialog:before,
        md-dialog md-dialog-actions .theme-cmix .danger.md-cancel-button:active span.close-dialog:before,
        .theme-cmix md-dialog md-dialog-actions .danger.md-confirm-button:active span.close-dialog:before,
        md-dialog md-dialog-actions .theme-cmix .danger.md-confirm-button:active span.close-dialog:before,
        .theme-cmix button.danger:active .colorpicker span.close-colorpicker:before,
        .colorpicker .theme-cmix button.danger:active span.close-colorpicker:before,
        .theme-cmix label.danger.label-btn:active .colorpicker span.close-colorpicker:before,
        .colorpicker .theme-cmix label.danger.label-btn:active span.close-colorpicker:before,
        .theme-cmix md-dialog md-dialog-actions .danger.md-cancel-button:active .colorpicker span.close-colorpicker:before,
        .colorpicker .theme-cmix md-dialog md-dialog-actions .danger.md-cancel-button:active span.close-colorpicker:before,
        md-dialog md-dialog-actions .theme-cmix .danger.md-cancel-button:active .colorpicker span.close-colorpicker:before,
        .colorpicker md-dialog md-dialog-actions .theme-cmix .danger.md-cancel-button:active span.close-colorpicker:before,
        .theme-cmix md-dialog md-dialog-actions .danger.md-confirm-button:active .colorpicker span.close-colorpicker:before,
        .colorpicker .theme-cmix md-dialog md-dialog-actions .danger.md-confirm-button:active span.close-colorpicker:before,
        md-dialog md-dialog-actions .theme-cmix .danger.md-confirm-button:active .colorpicker span.close-colorpicker:before,
        .colorpicker md-dialog md-dialog-actions .theme-cmix .danger.md-confirm-button:active span.close-colorpicker:before,
        .theme-cmix button.danger:active span[class*=" icon-"]:before,
        .theme-cmix label.danger.label-btn:active span[class*=" icon-"]:before,
        .theme-cmix md-dialog md-dialog-actions .danger.md-cancel-button:active span[class*=" icon-"]:before,
        md-dialog md-dialog-actions .theme-cmix .danger.md-cancel-button:active span[class*=" icon-"]:before,
        .theme-cmix md-dialog md-dialog-actions .danger.md-confirm-button:active span[class*=" icon-"]:before,
        md-dialog md-dialog-actions .theme-cmix .danger.md-confirm-button:active span[class*=" icon-"]:before {
          color: white; }
    .theme-cmix button:hover, .theme-cmix label.label-btn:hover, .theme-cmix md-dialog md-dialog-actions .md-cancel-button:hover, md-dialog md-dialog-actions .theme-cmix .md-cancel-button:hover, .theme-cmix md-dialog md-dialog-actions .md-confirm-button:hover, md-dialog md-dialog-actions .theme-cmix .md-confirm-button:hover, .theme-cmix button:focus, .theme-cmix label.label-btn:focus, .theme-cmix md-dialog md-dialog-actions .md-cancel-button:focus, md-dialog md-dialog-actions .theme-cmix .md-cancel-button:focus, .theme-cmix md-dialog md-dialog-actions .md-confirm-button:focus, md-dialog md-dialog-actions .theme-cmix .md-confirm-button:focus {
      background-color: #DDE1E7; }
    .theme-cmix button:active, .theme-cmix label.label-btn:active, .theme-cmix md-dialog md-dialog-actions .md-cancel-button:active, md-dialog md-dialog-actions .theme-cmix .md-cancel-button:active, .theme-cmix md-dialog md-dialog-actions .md-confirm-button:active, md-dialog md-dialog-actions .theme-cmix .md-confirm-button:active {
      color: white;
      background-color: #2E91C9;
      border-color: #2E91C9; }
      .theme-cmix button:active:before, .theme-cmix label.label-btn:active:before, .theme-cmix md-dialog md-dialog-actions .md-cancel-button:active:before, md-dialog md-dialog-actions .theme-cmix .md-cancel-button:active:before, .theme-cmix md-dialog md-dialog-actions .md-confirm-button:active:before, md-dialog md-dialog-actions .theme-cmix .md-confirm-button:active:before,
      .theme-cmix button:active span[class^="icon-"]:before,
      .theme-cmix label.label-btn:active span[class^="icon-"]:before,
      .theme-cmix md-dialog md-dialog-actions .md-cancel-button:active span[class^="icon-"]:before,
      md-dialog md-dialog-actions .theme-cmix .md-cancel-button:active span[class^="icon-"]:before,
      .theme-cmix md-dialog md-dialog-actions .md-confirm-button:active span[class^="icon-"]:before,
      md-dialog md-dialog-actions .theme-cmix .md-confirm-button:active span[class^="icon-"]:before,
      .theme-cmix button:active span.promise-indicator:before,
      .theme-cmix label.label-btn:active span.promise-indicator:before,
      .theme-cmix md-dialog md-dialog-actions .md-cancel-button:active span.promise-indicator:before,
      md-dialog md-dialog-actions .theme-cmix .md-cancel-button:active span.promise-indicator:before,
      .theme-cmix md-dialog md-dialog-actions .md-confirm-button:active span.promise-indicator:before,
      md-dialog md-dialog-actions .theme-cmix .md-confirm-button:active span.promise-indicator:before,
      .theme-cmix button:active table th.sortable span.sort-btn:after,
      table th.sortable .theme-cmix button:active span.sort-btn:after,
      .theme-cmix label.label-btn:active table th.sortable span.sort-btn:after,
      table th.sortable .theme-cmix label.label-btn:active span.sort-btn:after,
      .theme-cmix md-dialog md-dialog-actions .md-cancel-button:active table th.sortable span.sort-btn:after,
      table th.sortable .theme-cmix md-dialog md-dialog-actions .md-cancel-button:active span.sort-btn:after,
      md-dialog md-dialog-actions .theme-cmix .md-cancel-button:active table th.sortable span.sort-btn:after,
      table th.sortable md-dialog md-dialog-actions .theme-cmix .md-cancel-button:active span.sort-btn:after,
      .theme-cmix md-dialog md-dialog-actions .md-confirm-button:active table th.sortable span.sort-btn:after,
      table th.sortable .theme-cmix md-dialog md-dialog-actions .md-confirm-button:active span.sort-btn:after,
      md-dialog md-dialog-actions .theme-cmix .md-confirm-button:active table th.sortable span.sort-btn:after,
      table th.sortable md-dialog md-dialog-actions .theme-cmix .md-confirm-button:active span.sort-btn:after,
      .theme-cmix button:active span.collapse-ctrl:before,
      .theme-cmix label.label-btn:active span.collapse-ctrl:before,
      .theme-cmix md-dialog md-dialog-actions .md-cancel-button:active span.collapse-ctrl:before,
      md-dialog md-dialog-actions .theme-cmix .md-cancel-button:active span.collapse-ctrl:before,
      .theme-cmix md-dialog md-dialog-actions .md-confirm-button:active span.collapse-ctrl:before,
      md-dialog md-dialog-actions .theme-cmix .md-confirm-button:active span.collapse-ctrl:before,
      .theme-cmix button:active md-dialog span.close-dialog:before,
      md-dialog .theme-cmix button:active span.close-dialog:before,
      .theme-cmix label.label-btn:active md-dialog span.close-dialog:before,
      md-dialog .theme-cmix label.label-btn:active span.close-dialog:before,
      .theme-cmix md-dialog md-dialog-actions .md-cancel-button:active span.close-dialog:before,
      md-dialog md-dialog-actions .theme-cmix .md-cancel-button:active span.close-dialog:before,
      .theme-cmix md-dialog md-dialog-actions .md-confirm-button:active span.close-dialog:before,
      md-dialog md-dialog-actions .theme-cmix .md-confirm-button:active span.close-dialog:before,
      .theme-cmix button:active .colorpicker span.close-colorpicker:before,
      .colorpicker .theme-cmix button:active span.close-colorpicker:before,
      .theme-cmix label.label-btn:active .colorpicker span.close-colorpicker:before,
      .colorpicker .theme-cmix label.label-btn:active span.close-colorpicker:before,
      .theme-cmix md-dialog md-dialog-actions .md-cancel-button:active .colorpicker span.close-colorpicker:before,
      .colorpicker .theme-cmix md-dialog md-dialog-actions .md-cancel-button:active span.close-colorpicker:before,
      md-dialog md-dialog-actions .theme-cmix .md-cancel-button:active .colorpicker span.close-colorpicker:before,
      .colorpicker md-dialog md-dialog-actions .theme-cmix .md-cancel-button:active span.close-colorpicker:before,
      .theme-cmix md-dialog md-dialog-actions .md-confirm-button:active .colorpicker span.close-colorpicker:before,
      .colorpicker .theme-cmix md-dialog md-dialog-actions .md-confirm-button:active span.close-colorpicker:before,
      md-dialog md-dialog-actions .theme-cmix .md-confirm-button:active .colorpicker span.close-colorpicker:before,
      .colorpicker md-dialog md-dialog-actions .theme-cmix .md-confirm-button:active span.close-colorpicker:before,
      .theme-cmix button:active span[class*=" icon-"]:before,
      .theme-cmix label.label-btn:active span[class*=" icon-"]:before,
      .theme-cmix md-dialog md-dialog-actions .md-cancel-button:active span[class*=" icon-"]:before,
      md-dialog md-dialog-actions .theme-cmix .md-cancel-button:active span[class*=" icon-"]:before,
      .theme-cmix md-dialog md-dialog-actions .md-confirm-button:active span[class*=" icon-"]:before,
      md-dialog md-dialog-actions .theme-cmix .md-confirm-button:active span[class*=" icon-"]:before {
        color: white; }
    .theme-cmix button.disabled:hover, .theme-cmix label.disabled.label-btn:hover, .theme-cmix .input-w-inlay input.disabled + button:hover, .input-w-inlay .theme-cmix input.disabled + button:hover, .theme-cmix .input-w-inlay input.disabled + label.label-btn:hover, .input-w-inlay .theme-cmix input.disabled + label.label-btn:hover, .theme-cmix .input-w-inlay md-dialog md-dialog-actions input.disabled + .md-cancel-button:hover, .input-w-inlay md-dialog md-dialog-actions .theme-cmix input.disabled + .md-cancel-button:hover, .theme-cmix md-dialog md-dialog-actions .input-w-inlay input.disabled + .md-cancel-button:hover, md-dialog md-dialog-actions .input-w-inlay .theme-cmix input.disabled + .md-cancel-button:hover, .theme-cmix .input-w-inlay md-dialog md-dialog-actions input.disabled + .md-confirm-button:hover, .input-w-inlay md-dialog md-dialog-actions .theme-cmix input.disabled + .md-confirm-button:hover, .theme-cmix md-dialog md-dialog-actions .input-w-inlay input.disabled + .md-confirm-button:hover, md-dialog md-dialog-actions .input-w-inlay .theme-cmix input.disabled + .md-confirm-button:hover, .theme-cmix .input-w-inlay input[disabled] + button:hover, .input-w-inlay .theme-cmix input[disabled] + button:hover, .theme-cmix .input-w-inlay input[disabled] + label.label-btn:hover, .input-w-inlay .theme-cmix input[disabled] + label.label-btn:hover, .theme-cmix .input-w-inlay md-dialog md-dialog-actions input[disabled] + .md-cancel-button:hover, .input-w-inlay md-dialog md-dialog-actions .theme-cmix input[disabled] + .md-cancel-button:hover, .theme-cmix md-dialog md-dialog-actions .input-w-inlay input[disabled] + .md-cancel-button:hover, md-dialog md-dialog-actions .input-w-inlay .theme-cmix input[disabled] + .md-cancel-button:hover, .theme-cmix .input-w-inlay md-dialog md-dialog-actions input[disabled] + .md-confirm-button:hover, .input-w-inlay md-dialog md-dialog-actions .theme-cmix input[disabled] + .md-confirm-button:hover, .theme-cmix md-dialog md-dialog-actions .input-w-inlay input[disabled] + .md-confirm-button:hover, md-dialog md-dialog-actions .input-w-inlay .theme-cmix input[disabled] + .md-confirm-button:hover,
    .theme-cmix fieldset[disabled] .input-w-inlay input + button:hover, fieldset[disabled] .input-w-inlay .theme-cmix input + button:hover, .theme-cmix fieldset[disabled] .input-w-inlay input + label.label-btn:hover, fieldset[disabled] .input-w-inlay .theme-cmix input + label.label-btn:hover, .theme-cmix fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .md-cancel-button:hover, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions .theme-cmix input + .md-cancel-button:hover, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .md-cancel-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay .theme-cmix input + .md-cancel-button:hover, .theme-cmix fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .md-confirm-button:hover, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions .theme-cmix input + .md-confirm-button:hover, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .md-confirm-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay .theme-cmix input + .md-confirm-button:hover, .theme-cmix .input-w-clear input.disabled + button:hover, .input-w-clear .theme-cmix input.disabled + button:hover, .theme-cmix .input-w-clear input.disabled + label.label-btn:hover, .input-w-clear .theme-cmix input.disabled + label.label-btn:hover, .theme-cmix .input-w-clear md-dialog md-dialog-actions input.disabled + .md-cancel-button:hover, .input-w-clear md-dialog md-dialog-actions .theme-cmix input.disabled + .md-cancel-button:hover, .theme-cmix md-dialog md-dialog-actions .input-w-clear input.disabled + .md-cancel-button:hover, md-dialog md-dialog-actions .input-w-clear .theme-cmix input.disabled + .md-cancel-button:hover, .theme-cmix .input-w-clear md-dialog md-dialog-actions input.disabled + .md-confirm-button:hover, .input-w-clear md-dialog md-dialog-actions .theme-cmix input.disabled + .md-confirm-button:hover, .theme-cmix md-dialog md-dialog-actions .input-w-clear input.disabled + .md-confirm-button:hover, md-dialog md-dialog-actions .input-w-clear .theme-cmix input.disabled + .md-confirm-button:hover, .theme-cmix .input-w-clear input[disabled] + button:hover, .input-w-clear .theme-cmix input[disabled] + button:hover, .theme-cmix .input-w-clear input[disabled] + label.label-btn:hover, .input-w-clear .theme-cmix input[disabled] + label.label-btn:hover, .theme-cmix .input-w-clear md-dialog md-dialog-actions input[disabled] + .md-cancel-button:hover, .input-w-clear md-dialog md-dialog-actions .theme-cmix input[disabled] + .md-cancel-button:hover, .theme-cmix md-dialog md-dialog-actions .input-w-clear input[disabled] + .md-cancel-button:hover, md-dialog md-dialog-actions .input-w-clear .theme-cmix input[disabled] + .md-cancel-button:hover, .theme-cmix .input-w-clear md-dialog md-dialog-actions input[disabled] + .md-confirm-button:hover, .input-w-clear md-dialog md-dialog-actions .theme-cmix input[disabled] + .md-confirm-button:hover, .theme-cmix md-dialog md-dialog-actions .input-w-clear input[disabled] + .md-confirm-button:hover, md-dialog md-dialog-actions .input-w-clear .theme-cmix input[disabled] + .md-confirm-button:hover,
    .theme-cmix fieldset[disabled] .input-w-clear input + button:hover, fieldset[disabled] .input-w-clear .theme-cmix input + button:hover, .theme-cmix fieldset[disabled] .input-w-clear input + label.label-btn:hover, fieldset[disabled] .input-w-clear .theme-cmix input + label.label-btn:hover, .theme-cmix fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .md-cancel-button:hover, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions .theme-cmix input + .md-cancel-button:hover, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .md-cancel-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear .theme-cmix input + .md-cancel-button:hover, .theme-cmix fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .md-confirm-button:hover, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions .theme-cmix input + .md-confirm-button:hover, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .md-confirm-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear .theme-cmix input + .md-confirm-button:hover, .theme-cmix .input-w-button input.disabled + button:hover, .input-w-button .theme-cmix input.disabled + button:hover, .theme-cmix .input-w-button input.disabled + label.label-btn:hover, .input-w-button .theme-cmix input.disabled + label.label-btn:hover, .theme-cmix .input-w-button md-dialog md-dialog-actions input.disabled + .md-cancel-button:hover, .input-w-button md-dialog md-dialog-actions .theme-cmix input.disabled + .md-cancel-button:hover, .theme-cmix md-dialog md-dialog-actions .input-w-button input.disabled + .md-cancel-button:hover, md-dialog md-dialog-actions .input-w-button .theme-cmix input.disabled + .md-cancel-button:hover, .theme-cmix .input-w-button md-dialog md-dialog-actions input.disabled + .md-confirm-button:hover, .input-w-button md-dialog md-dialog-actions .theme-cmix input.disabled + .md-confirm-button:hover, .theme-cmix md-dialog md-dialog-actions .input-w-button input.disabled + .md-confirm-button:hover, md-dialog md-dialog-actions .input-w-button .theme-cmix input.disabled + .md-confirm-button:hover, .theme-cmix .input-w-button input[disabled] + button:hover, .input-w-button .theme-cmix input[disabled] + button:hover, .theme-cmix .input-w-button input[disabled] + label.label-btn:hover, .input-w-button .theme-cmix input[disabled] + label.label-btn:hover, .theme-cmix .input-w-button md-dialog md-dialog-actions input[disabled] + .md-cancel-button:hover, .input-w-button md-dialog md-dialog-actions .theme-cmix input[disabled] + .md-cancel-button:hover, .theme-cmix md-dialog md-dialog-actions .input-w-button input[disabled] + .md-cancel-button:hover, md-dialog md-dialog-actions .input-w-button .theme-cmix input[disabled] + .md-cancel-button:hover, .theme-cmix .input-w-button md-dialog md-dialog-actions input[disabled] + .md-confirm-button:hover, .input-w-button md-dialog md-dialog-actions .theme-cmix input[disabled] + .md-confirm-button:hover, .theme-cmix md-dialog md-dialog-actions .input-w-button input[disabled] + .md-confirm-button:hover, md-dialog md-dialog-actions .input-w-button .theme-cmix input[disabled] + .md-confirm-button:hover,
    .theme-cmix fieldset[disabled] .input-w-button input + button:hover, fieldset[disabled] .input-w-button .theme-cmix input + button:hover, .theme-cmix fieldset[disabled] .input-w-button input + label.label-btn:hover, fieldset[disabled] .input-w-button .theme-cmix input + label.label-btn:hover, .theme-cmix fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .md-cancel-button:hover, fieldset[disabled] .input-w-button md-dialog md-dialog-actions .theme-cmix input + .md-cancel-button:hover, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .md-cancel-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-button .theme-cmix input + .md-cancel-button:hover, .theme-cmix fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .md-confirm-button:hover, fieldset[disabled] .input-w-button md-dialog md-dialog-actions .theme-cmix input + .md-confirm-button:hover, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .md-confirm-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-button .theme-cmix input + .md-confirm-button:hover, .theme-cmix md-dialog md-dialog-actions .disabled.md-cancel-button:hover, md-dialog md-dialog-actions .theme-cmix .disabled.md-cancel-button:hover, .theme-cmix md-dialog md-dialog-actions .disabled.md-confirm-button:hover, md-dialog md-dialog-actions .theme-cmix .disabled.md-confirm-button:hover, .theme-cmix button.disabled:focus, .theme-cmix label.disabled.label-btn:focus, .theme-cmix .input-w-inlay input.disabled + button:focus, .input-w-inlay .theme-cmix input.disabled + button:focus, .theme-cmix .input-w-inlay input.disabled + label.label-btn:focus, .input-w-inlay .theme-cmix input.disabled + label.label-btn:focus, .theme-cmix .input-w-inlay md-dialog md-dialog-actions input.disabled + .md-cancel-button:focus, .input-w-inlay md-dialog md-dialog-actions .theme-cmix input.disabled + .md-cancel-button:focus, .theme-cmix md-dialog md-dialog-actions .input-w-inlay input.disabled + .md-cancel-button:focus, md-dialog md-dialog-actions .input-w-inlay .theme-cmix input.disabled + .md-cancel-button:focus, .theme-cmix .input-w-inlay md-dialog md-dialog-actions input.disabled + .md-confirm-button:focus, .input-w-inlay md-dialog md-dialog-actions .theme-cmix input.disabled + .md-confirm-button:focus, .theme-cmix md-dialog md-dialog-actions .input-w-inlay input.disabled + .md-confirm-button:focus, md-dialog md-dialog-actions .input-w-inlay .theme-cmix input.disabled + .md-confirm-button:focus, .theme-cmix .input-w-inlay input[disabled] + button:focus, .input-w-inlay .theme-cmix input[disabled] + button:focus, .theme-cmix .input-w-inlay input[disabled] + label.label-btn:focus, .input-w-inlay .theme-cmix input[disabled] + label.label-btn:focus, .theme-cmix .input-w-inlay md-dialog md-dialog-actions input[disabled] + .md-cancel-button:focus, .input-w-inlay md-dialog md-dialog-actions .theme-cmix input[disabled] + .md-cancel-button:focus, .theme-cmix md-dialog md-dialog-actions .input-w-inlay input[disabled] + .md-cancel-button:focus, md-dialog md-dialog-actions .input-w-inlay .theme-cmix input[disabled] + .md-cancel-button:focus, .theme-cmix .input-w-inlay md-dialog md-dialog-actions input[disabled] + .md-confirm-button:focus, .input-w-inlay md-dialog md-dialog-actions .theme-cmix input[disabled] + .md-confirm-button:focus, .theme-cmix md-dialog md-dialog-actions .input-w-inlay input[disabled] + .md-confirm-button:focus, md-dialog md-dialog-actions .input-w-inlay .theme-cmix input[disabled] + .md-confirm-button:focus,
    .theme-cmix fieldset[disabled] .input-w-inlay input + button:focus, fieldset[disabled] .input-w-inlay .theme-cmix input + button:focus, .theme-cmix fieldset[disabled] .input-w-inlay input + label.label-btn:focus, fieldset[disabled] .input-w-inlay .theme-cmix input + label.label-btn:focus, .theme-cmix fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .md-cancel-button:focus, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions .theme-cmix input + .md-cancel-button:focus, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .md-cancel-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay .theme-cmix input + .md-cancel-button:focus, .theme-cmix fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .md-confirm-button:focus, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions .theme-cmix input + .md-confirm-button:focus, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .md-confirm-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay .theme-cmix input + .md-confirm-button:focus, .theme-cmix .input-w-clear input.disabled + button:focus, .input-w-clear .theme-cmix input.disabled + button:focus, .theme-cmix .input-w-clear input.disabled + label.label-btn:focus, .input-w-clear .theme-cmix input.disabled + label.label-btn:focus, .theme-cmix .input-w-clear md-dialog md-dialog-actions input.disabled + .md-cancel-button:focus, .input-w-clear md-dialog md-dialog-actions .theme-cmix input.disabled + .md-cancel-button:focus, .theme-cmix md-dialog md-dialog-actions .input-w-clear input.disabled + .md-cancel-button:focus, md-dialog md-dialog-actions .input-w-clear .theme-cmix input.disabled + .md-cancel-button:focus, .theme-cmix .input-w-clear md-dialog md-dialog-actions input.disabled + .md-confirm-button:focus, .input-w-clear md-dialog md-dialog-actions .theme-cmix input.disabled + .md-confirm-button:focus, .theme-cmix md-dialog md-dialog-actions .input-w-clear input.disabled + .md-confirm-button:focus, md-dialog md-dialog-actions .input-w-clear .theme-cmix input.disabled + .md-confirm-button:focus, .theme-cmix .input-w-clear input[disabled] + button:focus, .input-w-clear .theme-cmix input[disabled] + button:focus, .theme-cmix .input-w-clear input[disabled] + label.label-btn:focus, .input-w-clear .theme-cmix input[disabled] + label.label-btn:focus, .theme-cmix .input-w-clear md-dialog md-dialog-actions input[disabled] + .md-cancel-button:focus, .input-w-clear md-dialog md-dialog-actions .theme-cmix input[disabled] + .md-cancel-button:focus, .theme-cmix md-dialog md-dialog-actions .input-w-clear input[disabled] + .md-cancel-button:focus, md-dialog md-dialog-actions .input-w-clear .theme-cmix input[disabled] + .md-cancel-button:focus, .theme-cmix .input-w-clear md-dialog md-dialog-actions input[disabled] + .md-confirm-button:focus, .input-w-clear md-dialog md-dialog-actions .theme-cmix input[disabled] + .md-confirm-button:focus, .theme-cmix md-dialog md-dialog-actions .input-w-clear input[disabled] + .md-confirm-button:focus, md-dialog md-dialog-actions .input-w-clear .theme-cmix input[disabled] + .md-confirm-button:focus,
    .theme-cmix fieldset[disabled] .input-w-clear input + button:focus, fieldset[disabled] .input-w-clear .theme-cmix input + button:focus, .theme-cmix fieldset[disabled] .input-w-clear input + label.label-btn:focus, fieldset[disabled] .input-w-clear .theme-cmix input + label.label-btn:focus, .theme-cmix fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .md-cancel-button:focus, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions .theme-cmix input + .md-cancel-button:focus, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .md-cancel-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear .theme-cmix input + .md-cancel-button:focus, .theme-cmix fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .md-confirm-button:focus, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions .theme-cmix input + .md-confirm-button:focus, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .md-confirm-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear .theme-cmix input + .md-confirm-button:focus, .theme-cmix .input-w-button input.disabled + button:focus, .input-w-button .theme-cmix input.disabled + button:focus, .theme-cmix .input-w-button input.disabled + label.label-btn:focus, .input-w-button .theme-cmix input.disabled + label.label-btn:focus, .theme-cmix .input-w-button md-dialog md-dialog-actions input.disabled + .md-cancel-button:focus, .input-w-button md-dialog md-dialog-actions .theme-cmix input.disabled + .md-cancel-button:focus, .theme-cmix md-dialog md-dialog-actions .input-w-button input.disabled + .md-cancel-button:focus, md-dialog md-dialog-actions .input-w-button .theme-cmix input.disabled + .md-cancel-button:focus, .theme-cmix .input-w-button md-dialog md-dialog-actions input.disabled + .md-confirm-button:focus, .input-w-button md-dialog md-dialog-actions .theme-cmix input.disabled + .md-confirm-button:focus, .theme-cmix md-dialog md-dialog-actions .input-w-button input.disabled + .md-confirm-button:focus, md-dialog md-dialog-actions .input-w-button .theme-cmix input.disabled + .md-confirm-button:focus, .theme-cmix .input-w-button input[disabled] + button:focus, .input-w-button .theme-cmix input[disabled] + button:focus, .theme-cmix .input-w-button input[disabled] + label.label-btn:focus, .input-w-button .theme-cmix input[disabled] + label.label-btn:focus, .theme-cmix .input-w-button md-dialog md-dialog-actions input[disabled] + .md-cancel-button:focus, .input-w-button md-dialog md-dialog-actions .theme-cmix input[disabled] + .md-cancel-button:focus, .theme-cmix md-dialog md-dialog-actions .input-w-button input[disabled] + .md-cancel-button:focus, md-dialog md-dialog-actions .input-w-button .theme-cmix input[disabled] + .md-cancel-button:focus, .theme-cmix .input-w-button md-dialog md-dialog-actions input[disabled] + .md-confirm-button:focus, .input-w-button md-dialog md-dialog-actions .theme-cmix input[disabled] + .md-confirm-button:focus, .theme-cmix md-dialog md-dialog-actions .input-w-button input[disabled] + .md-confirm-button:focus, md-dialog md-dialog-actions .input-w-button .theme-cmix input[disabled] + .md-confirm-button:focus,
    .theme-cmix fieldset[disabled] .input-w-button input + button:focus, fieldset[disabled] .input-w-button .theme-cmix input + button:focus, .theme-cmix fieldset[disabled] .input-w-button input + label.label-btn:focus, fieldset[disabled] .input-w-button .theme-cmix input + label.label-btn:focus, .theme-cmix fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .md-cancel-button:focus, fieldset[disabled] .input-w-button md-dialog md-dialog-actions .theme-cmix input + .md-cancel-button:focus, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .md-cancel-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-button .theme-cmix input + .md-cancel-button:focus, .theme-cmix fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .md-confirm-button:focus, fieldset[disabled] .input-w-button md-dialog md-dialog-actions .theme-cmix input + .md-confirm-button:focus, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .md-confirm-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-button .theme-cmix input + .md-confirm-button:focus, .theme-cmix md-dialog md-dialog-actions .disabled.md-cancel-button:focus, md-dialog md-dialog-actions .theme-cmix .disabled.md-cancel-button:focus, .theme-cmix md-dialog md-dialog-actions .disabled.md-confirm-button:focus, md-dialog md-dialog-actions .theme-cmix .disabled.md-confirm-button:focus, .theme-cmix button[disabled]:hover, .theme-cmix label.label-btn[disabled]:hover, .theme-cmix md-dialog md-dialog-actions .md-cancel-button[disabled]:hover, md-dialog md-dialog-actions .theme-cmix .md-cancel-button[disabled]:hover, .theme-cmix md-dialog md-dialog-actions .md-confirm-button[disabled]:hover, md-dialog md-dialog-actions .theme-cmix .md-confirm-button[disabled]:hover, .theme-cmix button[disabled]:focus, .theme-cmix label.label-btn[disabled]:focus, .theme-cmix md-dialog md-dialog-actions .md-cancel-button[disabled]:focus, md-dialog md-dialog-actions .theme-cmix .md-cancel-button[disabled]:focus, .theme-cmix md-dialog md-dialog-actions .md-confirm-button[disabled]:focus, md-dialog md-dialog-actions .theme-cmix .md-confirm-button[disabled]:focus,
    fieldset[disabled] .theme-cmix button:hover,
    fieldset[disabled] .theme-cmix label.label-btn:hover,
    fieldset[disabled] .theme-cmix md-dialog md-dialog-actions .md-cancel-button:hover,
    md-dialog md-dialog-actions fieldset[disabled] .theme-cmix .md-cancel-button:hover,
    fieldset[disabled] .theme-cmix md-dialog md-dialog-actions .md-confirm-button:hover,
    md-dialog md-dialog-actions fieldset[disabled] .theme-cmix .md-confirm-button:hover,
    fieldset[disabled] .theme-cmix button:focus,
    fieldset[disabled] .theme-cmix label.label-btn:focus,
    fieldset[disabled] .theme-cmix md-dialog md-dialog-actions .md-cancel-button:focus,
    md-dialog md-dialog-actions fieldset[disabled] .theme-cmix .md-cancel-button:focus,
    fieldset[disabled] .theme-cmix md-dialog md-dialog-actions .md-confirm-button:focus,
    md-dialog md-dialog-actions fieldset[disabled] .theme-cmix .md-confirm-button:focus {
      background-color: #FFFFFF; }
  .theme-marketview button, .theme-marketview label.label-btn, .theme-marketview md-dialog md-dialog-actions .md-cancel-button, md-dialog md-dialog-actions .theme-marketview .md-cancel-button, .theme-marketview md-dialog md-dialog-actions .md-confirm-button, md-dialog md-dialog-actions .theme-marketview .md-confirm-button {
    background-color: #FFFFFF;
    color: #414042;
    border-color: #DDE1E7; }
    .theme-marketview button:before, .theme-marketview label.label-btn:before, .theme-marketview md-dialog md-dialog-actions .md-cancel-button:before, md-dialog md-dialog-actions .theme-marketview .md-cancel-button:before, .theme-marketview md-dialog md-dialog-actions .md-confirm-button:before, md-dialog md-dialog-actions .theme-marketview .md-confirm-button:before,
    .theme-marketview button span[class^="icon-"]:before,
    .theme-marketview label.label-btn span[class^="icon-"]:before,
    .theme-marketview md-dialog md-dialog-actions .md-cancel-button span[class^="icon-"]:before,
    md-dialog md-dialog-actions .theme-marketview .md-cancel-button span[class^="icon-"]:before,
    .theme-marketview md-dialog md-dialog-actions .md-confirm-button span[class^="icon-"]:before,
    md-dialog md-dialog-actions .theme-marketview .md-confirm-button span[class^="icon-"]:before,
    .theme-marketview button span.promise-indicator:before,
    .theme-marketview label.label-btn span.promise-indicator:before,
    .theme-marketview md-dialog md-dialog-actions .md-cancel-button span.promise-indicator:before,
    md-dialog md-dialog-actions .theme-marketview .md-cancel-button span.promise-indicator:before,
    .theme-marketview md-dialog md-dialog-actions .md-confirm-button span.promise-indicator:before,
    md-dialog md-dialog-actions .theme-marketview .md-confirm-button span.promise-indicator:before,
    .theme-marketview button table th.sortable span.sort-btn:after,
    table th.sortable .theme-marketview button span.sort-btn:after,
    .theme-marketview label.label-btn table th.sortable span.sort-btn:after,
    table th.sortable .theme-marketview label.label-btn span.sort-btn:after,
    .theme-marketview md-dialog md-dialog-actions .md-cancel-button table th.sortable span.sort-btn:after,
    table th.sortable .theme-marketview md-dialog md-dialog-actions .md-cancel-button span.sort-btn:after,
    md-dialog md-dialog-actions .theme-marketview .md-cancel-button table th.sortable span.sort-btn:after,
    table th.sortable md-dialog md-dialog-actions .theme-marketview .md-cancel-button span.sort-btn:after,
    .theme-marketview md-dialog md-dialog-actions .md-confirm-button table th.sortable span.sort-btn:after,
    table th.sortable .theme-marketview md-dialog md-dialog-actions .md-confirm-button span.sort-btn:after,
    md-dialog md-dialog-actions .theme-marketview .md-confirm-button table th.sortable span.sort-btn:after,
    table th.sortable md-dialog md-dialog-actions .theme-marketview .md-confirm-button span.sort-btn:after,
    .theme-marketview button span.collapse-ctrl:before,
    .theme-marketview label.label-btn span.collapse-ctrl:before,
    .theme-marketview md-dialog md-dialog-actions .md-cancel-button span.collapse-ctrl:before,
    md-dialog md-dialog-actions .theme-marketview .md-cancel-button span.collapse-ctrl:before,
    .theme-marketview md-dialog md-dialog-actions .md-confirm-button span.collapse-ctrl:before,
    md-dialog md-dialog-actions .theme-marketview .md-confirm-button span.collapse-ctrl:before,
    .theme-marketview button md-dialog span.close-dialog:before,
    md-dialog .theme-marketview button span.close-dialog:before,
    .theme-marketview label.label-btn md-dialog span.close-dialog:before,
    md-dialog .theme-marketview label.label-btn span.close-dialog:before,
    .theme-marketview md-dialog md-dialog-actions .md-cancel-button span.close-dialog:before,
    md-dialog md-dialog-actions .theme-marketview .md-cancel-button span.close-dialog:before,
    .theme-marketview md-dialog md-dialog-actions .md-confirm-button span.close-dialog:before,
    md-dialog md-dialog-actions .theme-marketview .md-confirm-button span.close-dialog:before,
    .theme-marketview button .colorpicker span.close-colorpicker:before,
    .colorpicker .theme-marketview button span.close-colorpicker:before,
    .theme-marketview label.label-btn .colorpicker span.close-colorpicker:before,
    .colorpicker .theme-marketview label.label-btn span.close-colorpicker:before,
    .theme-marketview md-dialog md-dialog-actions .md-cancel-button .colorpicker span.close-colorpicker:before,
    .colorpicker .theme-marketview md-dialog md-dialog-actions .md-cancel-button span.close-colorpicker:before,
    md-dialog md-dialog-actions .theme-marketview .md-cancel-button .colorpicker span.close-colorpicker:before,
    .colorpicker md-dialog md-dialog-actions .theme-marketview .md-cancel-button span.close-colorpicker:before,
    .theme-marketview md-dialog md-dialog-actions .md-confirm-button .colorpicker span.close-colorpicker:before,
    .colorpicker .theme-marketview md-dialog md-dialog-actions .md-confirm-button span.close-colorpicker:before,
    md-dialog md-dialog-actions .theme-marketview .md-confirm-button .colorpicker span.close-colorpicker:before,
    .colorpicker md-dialog md-dialog-actions .theme-marketview .md-confirm-button span.close-colorpicker:before,
    .theme-marketview button span[class*=" icon-"]:before,
    .theme-marketview label.label-btn span[class*=" icon-"]:before,
    .theme-marketview md-dialog md-dialog-actions .md-cancel-button span[class*=" icon-"]:before,
    md-dialog md-dialog-actions .theme-marketview .md-cancel-button span[class*=" icon-"]:before,
    .theme-marketview md-dialog md-dialog-actions .md-confirm-button span[class*=" icon-"]:before,
    md-dialog md-dialog-actions .theme-marketview .md-confirm-button span[class*=" icon-"]:before {
      color: #115FA6; }
    .theme-marketview button.danger, .theme-marketview label.danger.label-btn, .theme-marketview md-dialog md-dialog-actions .danger.md-cancel-button, md-dialog md-dialog-actions .theme-marketview .danger.md-cancel-button, .theme-marketview md-dialog md-dialog-actions .danger.md-confirm-button, md-dialog md-dialog-actions .theme-marketview .danger.md-confirm-button {
      color: #DF4E71; }
      .theme-marketview button.danger:before, .theme-marketview label.danger.label-btn:before, .theme-marketview md-dialog md-dialog-actions .danger.md-cancel-button:before, md-dialog md-dialog-actions .theme-marketview .danger.md-cancel-button:before, .theme-marketview md-dialog md-dialog-actions .danger.md-confirm-button:before, md-dialog md-dialog-actions .theme-marketview .danger.md-confirm-button:before,
      .theme-marketview button.danger span[class^="icon-"]:before,
      .theme-marketview label.danger.label-btn span[class^="icon-"]:before,
      .theme-marketview md-dialog md-dialog-actions .danger.md-cancel-button span[class^="icon-"]:before,
      md-dialog md-dialog-actions .theme-marketview .danger.md-cancel-button span[class^="icon-"]:before,
      .theme-marketview md-dialog md-dialog-actions .danger.md-confirm-button span[class^="icon-"]:before,
      md-dialog md-dialog-actions .theme-marketview .danger.md-confirm-button span[class^="icon-"]:before,
      .theme-marketview button.danger span.promise-indicator:before,
      .theme-marketview label.danger.label-btn span.promise-indicator:before,
      .theme-marketview md-dialog md-dialog-actions .danger.md-cancel-button span.promise-indicator:before,
      md-dialog md-dialog-actions .theme-marketview .danger.md-cancel-button span.promise-indicator:before,
      .theme-marketview md-dialog md-dialog-actions .danger.md-confirm-button span.promise-indicator:before,
      md-dialog md-dialog-actions .theme-marketview .danger.md-confirm-button span.promise-indicator:before,
      .theme-marketview button.danger table th.sortable span.sort-btn:after,
      table th.sortable .theme-marketview button.danger span.sort-btn:after,
      .theme-marketview label.danger.label-btn table th.sortable span.sort-btn:after,
      table th.sortable .theme-marketview label.danger.label-btn span.sort-btn:after,
      .theme-marketview md-dialog md-dialog-actions .danger.md-cancel-button table th.sortable span.sort-btn:after,
      table th.sortable .theme-marketview md-dialog md-dialog-actions .danger.md-cancel-button span.sort-btn:after,
      md-dialog md-dialog-actions .theme-marketview .danger.md-cancel-button table th.sortable span.sort-btn:after,
      table th.sortable md-dialog md-dialog-actions .theme-marketview .danger.md-cancel-button span.sort-btn:after,
      .theme-marketview md-dialog md-dialog-actions .danger.md-confirm-button table th.sortable span.sort-btn:after,
      table th.sortable .theme-marketview md-dialog md-dialog-actions .danger.md-confirm-button span.sort-btn:after,
      md-dialog md-dialog-actions .theme-marketview .danger.md-confirm-button table th.sortable span.sort-btn:after,
      table th.sortable md-dialog md-dialog-actions .theme-marketview .danger.md-confirm-button span.sort-btn:after,
      .theme-marketview button.danger span.collapse-ctrl:before,
      .theme-marketview label.danger.label-btn span.collapse-ctrl:before,
      .theme-marketview md-dialog md-dialog-actions .danger.md-cancel-button span.collapse-ctrl:before,
      md-dialog md-dialog-actions .theme-marketview .danger.md-cancel-button span.collapse-ctrl:before,
      .theme-marketview md-dialog md-dialog-actions .danger.md-confirm-button span.collapse-ctrl:before,
      md-dialog md-dialog-actions .theme-marketview .danger.md-confirm-button span.collapse-ctrl:before,
      .theme-marketview button.danger md-dialog span.close-dialog:before,
      md-dialog .theme-marketview button.danger span.close-dialog:before,
      .theme-marketview label.danger.label-btn md-dialog span.close-dialog:before,
      md-dialog .theme-marketview label.danger.label-btn span.close-dialog:before,
      .theme-marketview md-dialog md-dialog-actions .danger.md-cancel-button span.close-dialog:before,
      md-dialog md-dialog-actions .theme-marketview .danger.md-cancel-button span.close-dialog:before,
      .theme-marketview md-dialog md-dialog-actions .danger.md-confirm-button span.close-dialog:before,
      md-dialog md-dialog-actions .theme-marketview .danger.md-confirm-button span.close-dialog:before,
      .theme-marketview button.danger .colorpicker span.close-colorpicker:before,
      .colorpicker .theme-marketview button.danger span.close-colorpicker:before,
      .theme-marketview label.danger.label-btn .colorpicker span.close-colorpicker:before,
      .colorpicker .theme-marketview label.danger.label-btn span.close-colorpicker:before,
      .theme-marketview md-dialog md-dialog-actions .danger.md-cancel-button .colorpicker span.close-colorpicker:before,
      .colorpicker .theme-marketview md-dialog md-dialog-actions .danger.md-cancel-button span.close-colorpicker:before,
      md-dialog md-dialog-actions .theme-marketview .danger.md-cancel-button .colorpicker span.close-colorpicker:before,
      .colorpicker md-dialog md-dialog-actions .theme-marketview .danger.md-cancel-button span.close-colorpicker:before,
      .theme-marketview md-dialog md-dialog-actions .danger.md-confirm-button .colorpicker span.close-colorpicker:before,
      .colorpicker .theme-marketview md-dialog md-dialog-actions .danger.md-confirm-button span.close-colorpicker:before,
      md-dialog md-dialog-actions .theme-marketview .danger.md-confirm-button .colorpicker span.close-colorpicker:before,
      .colorpicker md-dialog md-dialog-actions .theme-marketview .danger.md-confirm-button span.close-colorpicker:before,
      .theme-marketview button.danger span[class*=" icon-"]:before,
      .theme-marketview label.danger.label-btn span[class*=" icon-"]:before,
      .theme-marketview md-dialog md-dialog-actions .danger.md-cancel-button span[class*=" icon-"]:before,
      md-dialog md-dialog-actions .theme-marketview .danger.md-cancel-button span[class*=" icon-"]:before,
      .theme-marketview md-dialog md-dialog-actions .danger.md-confirm-button span[class*=" icon-"]:before,
      md-dialog md-dialog-actions .theme-marketview .danger.md-confirm-button span[class*=" icon-"]:before {
        color: #DF4E71; }
      .theme-marketview button.danger:active, .theme-marketview label.danger.label-btn:active, .theme-marketview md-dialog md-dialog-actions .danger.md-cancel-button:active, md-dialog md-dialog-actions .theme-marketview .danger.md-cancel-button:active, .theme-marketview md-dialog md-dialog-actions .danger.md-confirm-button:active, md-dialog md-dialog-actions .theme-marketview .danger.md-confirm-button:active {
        color: white;
        background-color: #DF4E71;
        border-color: #DF4E71; }
        .theme-marketview button.danger:active:before, .theme-marketview label.danger.label-btn:active:before, .theme-marketview md-dialog md-dialog-actions .danger.md-cancel-button:active:before, md-dialog md-dialog-actions .theme-marketview .danger.md-cancel-button:active:before, .theme-marketview md-dialog md-dialog-actions .danger.md-confirm-button:active:before, md-dialog md-dialog-actions .theme-marketview .danger.md-confirm-button:active:before,
        .theme-marketview button.danger:active span[class^="icon-"]:before,
        .theme-marketview label.danger.label-btn:active span[class^="icon-"]:before,
        .theme-marketview md-dialog md-dialog-actions .danger.md-cancel-button:active span[class^="icon-"]:before,
        md-dialog md-dialog-actions .theme-marketview .danger.md-cancel-button:active span[class^="icon-"]:before,
        .theme-marketview md-dialog md-dialog-actions .danger.md-confirm-button:active span[class^="icon-"]:before,
        md-dialog md-dialog-actions .theme-marketview .danger.md-confirm-button:active span[class^="icon-"]:before,
        .theme-marketview button.danger:active span.promise-indicator:before,
        .theme-marketview label.danger.label-btn:active span.promise-indicator:before,
        .theme-marketview md-dialog md-dialog-actions .danger.md-cancel-button:active span.promise-indicator:before,
        md-dialog md-dialog-actions .theme-marketview .danger.md-cancel-button:active span.promise-indicator:before,
        .theme-marketview md-dialog md-dialog-actions .danger.md-confirm-button:active span.promise-indicator:before,
        md-dialog md-dialog-actions .theme-marketview .danger.md-confirm-button:active span.promise-indicator:before,
        .theme-marketview button.danger:active table th.sortable span.sort-btn:after,
        table th.sortable .theme-marketview button.danger:active span.sort-btn:after,
        .theme-marketview label.danger.label-btn:active table th.sortable span.sort-btn:after,
        table th.sortable .theme-marketview label.danger.label-btn:active span.sort-btn:after,
        .theme-marketview md-dialog md-dialog-actions .danger.md-cancel-button:active table th.sortable span.sort-btn:after,
        table th.sortable .theme-marketview md-dialog md-dialog-actions .danger.md-cancel-button:active span.sort-btn:after,
        md-dialog md-dialog-actions .theme-marketview .danger.md-cancel-button:active table th.sortable span.sort-btn:after,
        table th.sortable md-dialog md-dialog-actions .theme-marketview .danger.md-cancel-button:active span.sort-btn:after,
        .theme-marketview md-dialog md-dialog-actions .danger.md-confirm-button:active table th.sortable span.sort-btn:after,
        table th.sortable .theme-marketview md-dialog md-dialog-actions .danger.md-confirm-button:active span.sort-btn:after,
        md-dialog md-dialog-actions .theme-marketview .danger.md-confirm-button:active table th.sortable span.sort-btn:after,
        table th.sortable md-dialog md-dialog-actions .theme-marketview .danger.md-confirm-button:active span.sort-btn:after,
        .theme-marketview button.danger:active span.collapse-ctrl:before,
        .theme-marketview label.danger.label-btn:active span.collapse-ctrl:before,
        .theme-marketview md-dialog md-dialog-actions .danger.md-cancel-button:active span.collapse-ctrl:before,
        md-dialog md-dialog-actions .theme-marketview .danger.md-cancel-button:active span.collapse-ctrl:before,
        .theme-marketview md-dialog md-dialog-actions .danger.md-confirm-button:active span.collapse-ctrl:before,
        md-dialog md-dialog-actions .theme-marketview .danger.md-confirm-button:active span.collapse-ctrl:before,
        .theme-marketview button.danger:active md-dialog span.close-dialog:before,
        md-dialog .theme-marketview button.danger:active span.close-dialog:before,
        .theme-marketview label.danger.label-btn:active md-dialog span.close-dialog:before,
        md-dialog .theme-marketview label.danger.label-btn:active span.close-dialog:before,
        .theme-marketview md-dialog md-dialog-actions .danger.md-cancel-button:active span.close-dialog:before,
        md-dialog md-dialog-actions .theme-marketview .danger.md-cancel-button:active span.close-dialog:before,
        .theme-marketview md-dialog md-dialog-actions .danger.md-confirm-button:active span.close-dialog:before,
        md-dialog md-dialog-actions .theme-marketview .danger.md-confirm-button:active span.close-dialog:before,
        .theme-marketview button.danger:active .colorpicker span.close-colorpicker:before,
        .colorpicker .theme-marketview button.danger:active span.close-colorpicker:before,
        .theme-marketview label.danger.label-btn:active .colorpicker span.close-colorpicker:before,
        .colorpicker .theme-marketview label.danger.label-btn:active span.close-colorpicker:before,
        .theme-marketview md-dialog md-dialog-actions .danger.md-cancel-button:active .colorpicker span.close-colorpicker:before,
        .colorpicker .theme-marketview md-dialog md-dialog-actions .danger.md-cancel-button:active span.close-colorpicker:before,
        md-dialog md-dialog-actions .theme-marketview .danger.md-cancel-button:active .colorpicker span.close-colorpicker:before,
        .colorpicker md-dialog md-dialog-actions .theme-marketview .danger.md-cancel-button:active span.close-colorpicker:before,
        .theme-marketview md-dialog md-dialog-actions .danger.md-confirm-button:active .colorpicker span.close-colorpicker:before,
        .colorpicker .theme-marketview md-dialog md-dialog-actions .danger.md-confirm-button:active span.close-colorpicker:before,
        md-dialog md-dialog-actions .theme-marketview .danger.md-confirm-button:active .colorpicker span.close-colorpicker:before,
        .colorpicker md-dialog md-dialog-actions .theme-marketview .danger.md-confirm-button:active span.close-colorpicker:before,
        .theme-marketview button.danger:active span[class*=" icon-"]:before,
        .theme-marketview label.danger.label-btn:active span[class*=" icon-"]:before,
        .theme-marketview md-dialog md-dialog-actions .danger.md-cancel-button:active span[class*=" icon-"]:before,
        md-dialog md-dialog-actions .theme-marketview .danger.md-cancel-button:active span[class*=" icon-"]:before,
        .theme-marketview md-dialog md-dialog-actions .danger.md-confirm-button:active span[class*=" icon-"]:before,
        md-dialog md-dialog-actions .theme-marketview .danger.md-confirm-button:active span[class*=" icon-"]:before {
          color: white; }
    .theme-marketview button:hover, .theme-marketview label.label-btn:hover, .theme-marketview md-dialog md-dialog-actions .md-cancel-button:hover, md-dialog md-dialog-actions .theme-marketview .md-cancel-button:hover, .theme-marketview md-dialog md-dialog-actions .md-confirm-button:hover, md-dialog md-dialog-actions .theme-marketview .md-confirm-button:hover, .theme-marketview button:focus, .theme-marketview label.label-btn:focus, .theme-marketview md-dialog md-dialog-actions .md-cancel-button:focus, md-dialog md-dialog-actions .theme-marketview .md-cancel-button:focus, .theme-marketview md-dialog md-dialog-actions .md-confirm-button:focus, md-dialog md-dialog-actions .theme-marketview .md-confirm-button:focus {
      background-color: #DDE1E7; }
    .theme-marketview button:active, .theme-marketview label.label-btn:active, .theme-marketview md-dialog md-dialog-actions .md-cancel-button:active, md-dialog md-dialog-actions .theme-marketview .md-cancel-button:active, .theme-marketview md-dialog md-dialog-actions .md-confirm-button:active, md-dialog md-dialog-actions .theme-marketview .md-confirm-button:active {
      color: white;
      background-color: #5B9CB7;
      border-color: #5B9CB7; }
      .theme-marketview button:active:before, .theme-marketview label.label-btn:active:before, .theme-marketview md-dialog md-dialog-actions .md-cancel-button:active:before, md-dialog md-dialog-actions .theme-marketview .md-cancel-button:active:before, .theme-marketview md-dialog md-dialog-actions .md-confirm-button:active:before, md-dialog md-dialog-actions .theme-marketview .md-confirm-button:active:before,
      .theme-marketview button:active span[class^="icon-"]:before,
      .theme-marketview label.label-btn:active span[class^="icon-"]:before,
      .theme-marketview md-dialog md-dialog-actions .md-cancel-button:active span[class^="icon-"]:before,
      md-dialog md-dialog-actions .theme-marketview .md-cancel-button:active span[class^="icon-"]:before,
      .theme-marketview md-dialog md-dialog-actions .md-confirm-button:active span[class^="icon-"]:before,
      md-dialog md-dialog-actions .theme-marketview .md-confirm-button:active span[class^="icon-"]:before,
      .theme-marketview button:active span.promise-indicator:before,
      .theme-marketview label.label-btn:active span.promise-indicator:before,
      .theme-marketview md-dialog md-dialog-actions .md-cancel-button:active span.promise-indicator:before,
      md-dialog md-dialog-actions .theme-marketview .md-cancel-button:active span.promise-indicator:before,
      .theme-marketview md-dialog md-dialog-actions .md-confirm-button:active span.promise-indicator:before,
      md-dialog md-dialog-actions .theme-marketview .md-confirm-button:active span.promise-indicator:before,
      .theme-marketview button:active table th.sortable span.sort-btn:after,
      table th.sortable .theme-marketview button:active span.sort-btn:after,
      .theme-marketview label.label-btn:active table th.sortable span.sort-btn:after,
      table th.sortable .theme-marketview label.label-btn:active span.sort-btn:after,
      .theme-marketview md-dialog md-dialog-actions .md-cancel-button:active table th.sortable span.sort-btn:after,
      table th.sortable .theme-marketview md-dialog md-dialog-actions .md-cancel-button:active span.sort-btn:after,
      md-dialog md-dialog-actions .theme-marketview .md-cancel-button:active table th.sortable span.sort-btn:after,
      table th.sortable md-dialog md-dialog-actions .theme-marketview .md-cancel-button:active span.sort-btn:after,
      .theme-marketview md-dialog md-dialog-actions .md-confirm-button:active table th.sortable span.sort-btn:after,
      table th.sortable .theme-marketview md-dialog md-dialog-actions .md-confirm-button:active span.sort-btn:after,
      md-dialog md-dialog-actions .theme-marketview .md-confirm-button:active table th.sortable span.sort-btn:after,
      table th.sortable md-dialog md-dialog-actions .theme-marketview .md-confirm-button:active span.sort-btn:after,
      .theme-marketview button:active span.collapse-ctrl:before,
      .theme-marketview label.label-btn:active span.collapse-ctrl:before,
      .theme-marketview md-dialog md-dialog-actions .md-cancel-button:active span.collapse-ctrl:before,
      md-dialog md-dialog-actions .theme-marketview .md-cancel-button:active span.collapse-ctrl:before,
      .theme-marketview md-dialog md-dialog-actions .md-confirm-button:active span.collapse-ctrl:before,
      md-dialog md-dialog-actions .theme-marketview .md-confirm-button:active span.collapse-ctrl:before,
      .theme-marketview button:active md-dialog span.close-dialog:before,
      md-dialog .theme-marketview button:active span.close-dialog:before,
      .theme-marketview label.label-btn:active md-dialog span.close-dialog:before,
      md-dialog .theme-marketview label.label-btn:active span.close-dialog:before,
      .theme-marketview md-dialog md-dialog-actions .md-cancel-button:active span.close-dialog:before,
      md-dialog md-dialog-actions .theme-marketview .md-cancel-button:active span.close-dialog:before,
      .theme-marketview md-dialog md-dialog-actions .md-confirm-button:active span.close-dialog:before,
      md-dialog md-dialog-actions .theme-marketview .md-confirm-button:active span.close-dialog:before,
      .theme-marketview button:active .colorpicker span.close-colorpicker:before,
      .colorpicker .theme-marketview button:active span.close-colorpicker:before,
      .theme-marketview label.label-btn:active .colorpicker span.close-colorpicker:before,
      .colorpicker .theme-marketview label.label-btn:active span.close-colorpicker:before,
      .theme-marketview md-dialog md-dialog-actions .md-cancel-button:active .colorpicker span.close-colorpicker:before,
      .colorpicker .theme-marketview md-dialog md-dialog-actions .md-cancel-button:active span.close-colorpicker:before,
      md-dialog md-dialog-actions .theme-marketview .md-cancel-button:active .colorpicker span.close-colorpicker:before,
      .colorpicker md-dialog md-dialog-actions .theme-marketview .md-cancel-button:active span.close-colorpicker:before,
      .theme-marketview md-dialog md-dialog-actions .md-confirm-button:active .colorpicker span.close-colorpicker:before,
      .colorpicker .theme-marketview md-dialog md-dialog-actions .md-confirm-button:active span.close-colorpicker:before,
      md-dialog md-dialog-actions .theme-marketview .md-confirm-button:active .colorpicker span.close-colorpicker:before,
      .colorpicker md-dialog md-dialog-actions .theme-marketview .md-confirm-button:active span.close-colorpicker:before,
      .theme-marketview button:active span[class*=" icon-"]:before,
      .theme-marketview label.label-btn:active span[class*=" icon-"]:before,
      .theme-marketview md-dialog md-dialog-actions .md-cancel-button:active span[class*=" icon-"]:before,
      md-dialog md-dialog-actions .theme-marketview .md-cancel-button:active span[class*=" icon-"]:before,
      .theme-marketview md-dialog md-dialog-actions .md-confirm-button:active span[class*=" icon-"]:before,
      md-dialog md-dialog-actions .theme-marketview .md-confirm-button:active span[class*=" icon-"]:before {
        color: white; }
    .theme-marketview button.disabled:hover, .theme-marketview label.disabled.label-btn:hover, .theme-marketview .input-w-inlay input.disabled + button:hover, .input-w-inlay .theme-marketview input.disabled + button:hover, .theme-marketview .input-w-inlay input.disabled + label.label-btn:hover, .input-w-inlay .theme-marketview input.disabled + label.label-btn:hover, .theme-marketview .input-w-inlay md-dialog md-dialog-actions input.disabled + .md-cancel-button:hover, .input-w-inlay md-dialog md-dialog-actions .theme-marketview input.disabled + .md-cancel-button:hover, .theme-marketview md-dialog md-dialog-actions .input-w-inlay input.disabled + .md-cancel-button:hover, md-dialog md-dialog-actions .input-w-inlay .theme-marketview input.disabled + .md-cancel-button:hover, .theme-marketview .input-w-inlay md-dialog md-dialog-actions input.disabled + .md-confirm-button:hover, .input-w-inlay md-dialog md-dialog-actions .theme-marketview input.disabled + .md-confirm-button:hover, .theme-marketview md-dialog md-dialog-actions .input-w-inlay input.disabled + .md-confirm-button:hover, md-dialog md-dialog-actions .input-w-inlay .theme-marketview input.disabled + .md-confirm-button:hover, .theme-marketview .input-w-inlay input[disabled] + button:hover, .input-w-inlay .theme-marketview input[disabled] + button:hover, .theme-marketview .input-w-inlay input[disabled] + label.label-btn:hover, .input-w-inlay .theme-marketview input[disabled] + label.label-btn:hover, .theme-marketview .input-w-inlay md-dialog md-dialog-actions input[disabled] + .md-cancel-button:hover, .input-w-inlay md-dialog md-dialog-actions .theme-marketview input[disabled] + .md-cancel-button:hover, .theme-marketview md-dialog md-dialog-actions .input-w-inlay input[disabled] + .md-cancel-button:hover, md-dialog md-dialog-actions .input-w-inlay .theme-marketview input[disabled] + .md-cancel-button:hover, .theme-marketview .input-w-inlay md-dialog md-dialog-actions input[disabled] + .md-confirm-button:hover, .input-w-inlay md-dialog md-dialog-actions .theme-marketview input[disabled] + .md-confirm-button:hover, .theme-marketview md-dialog md-dialog-actions .input-w-inlay input[disabled] + .md-confirm-button:hover, md-dialog md-dialog-actions .input-w-inlay .theme-marketview input[disabled] + .md-confirm-button:hover,
    .theme-marketview fieldset[disabled] .input-w-inlay input + button:hover, fieldset[disabled] .input-w-inlay .theme-marketview input + button:hover, .theme-marketview fieldset[disabled] .input-w-inlay input + label.label-btn:hover, fieldset[disabled] .input-w-inlay .theme-marketview input + label.label-btn:hover, .theme-marketview fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .md-cancel-button:hover, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions .theme-marketview input + .md-cancel-button:hover, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .md-cancel-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay .theme-marketview input + .md-cancel-button:hover, .theme-marketview fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .md-confirm-button:hover, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions .theme-marketview input + .md-confirm-button:hover, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .md-confirm-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay .theme-marketview input + .md-confirm-button:hover, .theme-marketview .input-w-clear input.disabled + button:hover, .input-w-clear .theme-marketview input.disabled + button:hover, .theme-marketview .input-w-clear input.disabled + label.label-btn:hover, .input-w-clear .theme-marketview input.disabled + label.label-btn:hover, .theme-marketview .input-w-clear md-dialog md-dialog-actions input.disabled + .md-cancel-button:hover, .input-w-clear md-dialog md-dialog-actions .theme-marketview input.disabled + .md-cancel-button:hover, .theme-marketview md-dialog md-dialog-actions .input-w-clear input.disabled + .md-cancel-button:hover, md-dialog md-dialog-actions .input-w-clear .theme-marketview input.disabled + .md-cancel-button:hover, .theme-marketview .input-w-clear md-dialog md-dialog-actions input.disabled + .md-confirm-button:hover, .input-w-clear md-dialog md-dialog-actions .theme-marketview input.disabled + .md-confirm-button:hover, .theme-marketview md-dialog md-dialog-actions .input-w-clear input.disabled + .md-confirm-button:hover, md-dialog md-dialog-actions .input-w-clear .theme-marketview input.disabled + .md-confirm-button:hover, .theme-marketview .input-w-clear input[disabled] + button:hover, .input-w-clear .theme-marketview input[disabled] + button:hover, .theme-marketview .input-w-clear input[disabled] + label.label-btn:hover, .input-w-clear .theme-marketview input[disabled] + label.label-btn:hover, .theme-marketview .input-w-clear md-dialog md-dialog-actions input[disabled] + .md-cancel-button:hover, .input-w-clear md-dialog md-dialog-actions .theme-marketview input[disabled] + .md-cancel-button:hover, .theme-marketview md-dialog md-dialog-actions .input-w-clear input[disabled] + .md-cancel-button:hover, md-dialog md-dialog-actions .input-w-clear .theme-marketview input[disabled] + .md-cancel-button:hover, .theme-marketview .input-w-clear md-dialog md-dialog-actions input[disabled] + .md-confirm-button:hover, .input-w-clear md-dialog md-dialog-actions .theme-marketview input[disabled] + .md-confirm-button:hover, .theme-marketview md-dialog md-dialog-actions .input-w-clear input[disabled] + .md-confirm-button:hover, md-dialog md-dialog-actions .input-w-clear .theme-marketview input[disabled] + .md-confirm-button:hover,
    .theme-marketview fieldset[disabled] .input-w-clear input + button:hover, fieldset[disabled] .input-w-clear .theme-marketview input + button:hover, .theme-marketview fieldset[disabled] .input-w-clear input + label.label-btn:hover, fieldset[disabled] .input-w-clear .theme-marketview input + label.label-btn:hover, .theme-marketview fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .md-cancel-button:hover, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions .theme-marketview input + .md-cancel-button:hover, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .md-cancel-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear .theme-marketview input + .md-cancel-button:hover, .theme-marketview fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .md-confirm-button:hover, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions .theme-marketview input + .md-confirm-button:hover, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .md-confirm-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear .theme-marketview input + .md-confirm-button:hover, .theme-marketview .input-w-button input.disabled + button:hover, .input-w-button .theme-marketview input.disabled + button:hover, .theme-marketview .input-w-button input.disabled + label.label-btn:hover, .input-w-button .theme-marketview input.disabled + label.label-btn:hover, .theme-marketview .input-w-button md-dialog md-dialog-actions input.disabled + .md-cancel-button:hover, .input-w-button md-dialog md-dialog-actions .theme-marketview input.disabled + .md-cancel-button:hover, .theme-marketview md-dialog md-dialog-actions .input-w-button input.disabled + .md-cancel-button:hover, md-dialog md-dialog-actions .input-w-button .theme-marketview input.disabled + .md-cancel-button:hover, .theme-marketview .input-w-button md-dialog md-dialog-actions input.disabled + .md-confirm-button:hover, .input-w-button md-dialog md-dialog-actions .theme-marketview input.disabled + .md-confirm-button:hover, .theme-marketview md-dialog md-dialog-actions .input-w-button input.disabled + .md-confirm-button:hover, md-dialog md-dialog-actions .input-w-button .theme-marketview input.disabled + .md-confirm-button:hover, .theme-marketview .input-w-button input[disabled] + button:hover, .input-w-button .theme-marketview input[disabled] + button:hover, .theme-marketview .input-w-button input[disabled] + label.label-btn:hover, .input-w-button .theme-marketview input[disabled] + label.label-btn:hover, .theme-marketview .input-w-button md-dialog md-dialog-actions input[disabled] + .md-cancel-button:hover, .input-w-button md-dialog md-dialog-actions .theme-marketview input[disabled] + .md-cancel-button:hover, .theme-marketview md-dialog md-dialog-actions .input-w-button input[disabled] + .md-cancel-button:hover, md-dialog md-dialog-actions .input-w-button .theme-marketview input[disabled] + .md-cancel-button:hover, .theme-marketview .input-w-button md-dialog md-dialog-actions input[disabled] + .md-confirm-button:hover, .input-w-button md-dialog md-dialog-actions .theme-marketview input[disabled] + .md-confirm-button:hover, .theme-marketview md-dialog md-dialog-actions .input-w-button input[disabled] + .md-confirm-button:hover, md-dialog md-dialog-actions .input-w-button .theme-marketview input[disabled] + .md-confirm-button:hover,
    .theme-marketview fieldset[disabled] .input-w-button input + button:hover, fieldset[disabled] .input-w-button .theme-marketview input + button:hover, .theme-marketview fieldset[disabled] .input-w-button input + label.label-btn:hover, fieldset[disabled] .input-w-button .theme-marketview input + label.label-btn:hover, .theme-marketview fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .md-cancel-button:hover, fieldset[disabled] .input-w-button md-dialog md-dialog-actions .theme-marketview input + .md-cancel-button:hover, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .md-cancel-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-button .theme-marketview input + .md-cancel-button:hover, .theme-marketview fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .md-confirm-button:hover, fieldset[disabled] .input-w-button md-dialog md-dialog-actions .theme-marketview input + .md-confirm-button:hover, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .md-confirm-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-button .theme-marketview input + .md-confirm-button:hover, .theme-marketview md-dialog md-dialog-actions .disabled.md-cancel-button:hover, md-dialog md-dialog-actions .theme-marketview .disabled.md-cancel-button:hover, .theme-marketview md-dialog md-dialog-actions .disabled.md-confirm-button:hover, md-dialog md-dialog-actions .theme-marketview .disabled.md-confirm-button:hover, .theme-marketview button.disabled:focus, .theme-marketview label.disabled.label-btn:focus, .theme-marketview .input-w-inlay input.disabled + button:focus, .input-w-inlay .theme-marketview input.disabled + button:focus, .theme-marketview .input-w-inlay input.disabled + label.label-btn:focus, .input-w-inlay .theme-marketview input.disabled + label.label-btn:focus, .theme-marketview .input-w-inlay md-dialog md-dialog-actions input.disabled + .md-cancel-button:focus, .input-w-inlay md-dialog md-dialog-actions .theme-marketview input.disabled + .md-cancel-button:focus, .theme-marketview md-dialog md-dialog-actions .input-w-inlay input.disabled + .md-cancel-button:focus, md-dialog md-dialog-actions .input-w-inlay .theme-marketview input.disabled + .md-cancel-button:focus, .theme-marketview .input-w-inlay md-dialog md-dialog-actions input.disabled + .md-confirm-button:focus, .input-w-inlay md-dialog md-dialog-actions .theme-marketview input.disabled + .md-confirm-button:focus, .theme-marketview md-dialog md-dialog-actions .input-w-inlay input.disabled + .md-confirm-button:focus, md-dialog md-dialog-actions .input-w-inlay .theme-marketview input.disabled + .md-confirm-button:focus, .theme-marketview .input-w-inlay input[disabled] + button:focus, .input-w-inlay .theme-marketview input[disabled] + button:focus, .theme-marketview .input-w-inlay input[disabled] + label.label-btn:focus, .input-w-inlay .theme-marketview input[disabled] + label.label-btn:focus, .theme-marketview .input-w-inlay md-dialog md-dialog-actions input[disabled] + .md-cancel-button:focus, .input-w-inlay md-dialog md-dialog-actions .theme-marketview input[disabled] + .md-cancel-button:focus, .theme-marketview md-dialog md-dialog-actions .input-w-inlay input[disabled] + .md-cancel-button:focus, md-dialog md-dialog-actions .input-w-inlay .theme-marketview input[disabled] + .md-cancel-button:focus, .theme-marketview .input-w-inlay md-dialog md-dialog-actions input[disabled] + .md-confirm-button:focus, .input-w-inlay md-dialog md-dialog-actions .theme-marketview input[disabled] + .md-confirm-button:focus, .theme-marketview md-dialog md-dialog-actions .input-w-inlay input[disabled] + .md-confirm-button:focus, md-dialog md-dialog-actions .input-w-inlay .theme-marketview input[disabled] + .md-confirm-button:focus,
    .theme-marketview fieldset[disabled] .input-w-inlay input + button:focus, fieldset[disabled] .input-w-inlay .theme-marketview input + button:focus, .theme-marketview fieldset[disabled] .input-w-inlay input + label.label-btn:focus, fieldset[disabled] .input-w-inlay .theme-marketview input + label.label-btn:focus, .theme-marketview fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .md-cancel-button:focus, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions .theme-marketview input + .md-cancel-button:focus, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .md-cancel-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay .theme-marketview input + .md-cancel-button:focus, .theme-marketview fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .md-confirm-button:focus, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions .theme-marketview input + .md-confirm-button:focus, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .md-confirm-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay .theme-marketview input + .md-confirm-button:focus, .theme-marketview .input-w-clear input.disabled + button:focus, .input-w-clear .theme-marketview input.disabled + button:focus, .theme-marketview .input-w-clear input.disabled + label.label-btn:focus, .input-w-clear .theme-marketview input.disabled + label.label-btn:focus, .theme-marketview .input-w-clear md-dialog md-dialog-actions input.disabled + .md-cancel-button:focus, .input-w-clear md-dialog md-dialog-actions .theme-marketview input.disabled + .md-cancel-button:focus, .theme-marketview md-dialog md-dialog-actions .input-w-clear input.disabled + .md-cancel-button:focus, md-dialog md-dialog-actions .input-w-clear .theme-marketview input.disabled + .md-cancel-button:focus, .theme-marketview .input-w-clear md-dialog md-dialog-actions input.disabled + .md-confirm-button:focus, .input-w-clear md-dialog md-dialog-actions .theme-marketview input.disabled + .md-confirm-button:focus, .theme-marketview md-dialog md-dialog-actions .input-w-clear input.disabled + .md-confirm-button:focus, md-dialog md-dialog-actions .input-w-clear .theme-marketview input.disabled + .md-confirm-button:focus, .theme-marketview .input-w-clear input[disabled] + button:focus, .input-w-clear .theme-marketview input[disabled] + button:focus, .theme-marketview .input-w-clear input[disabled] + label.label-btn:focus, .input-w-clear .theme-marketview input[disabled] + label.label-btn:focus, .theme-marketview .input-w-clear md-dialog md-dialog-actions input[disabled] + .md-cancel-button:focus, .input-w-clear md-dialog md-dialog-actions .theme-marketview input[disabled] + .md-cancel-button:focus, .theme-marketview md-dialog md-dialog-actions .input-w-clear input[disabled] + .md-cancel-button:focus, md-dialog md-dialog-actions .input-w-clear .theme-marketview input[disabled] + .md-cancel-button:focus, .theme-marketview .input-w-clear md-dialog md-dialog-actions input[disabled] + .md-confirm-button:focus, .input-w-clear md-dialog md-dialog-actions .theme-marketview input[disabled] + .md-confirm-button:focus, .theme-marketview md-dialog md-dialog-actions .input-w-clear input[disabled] + .md-confirm-button:focus, md-dialog md-dialog-actions .input-w-clear .theme-marketview input[disabled] + .md-confirm-button:focus,
    .theme-marketview fieldset[disabled] .input-w-clear input + button:focus, fieldset[disabled] .input-w-clear .theme-marketview input + button:focus, .theme-marketview fieldset[disabled] .input-w-clear input + label.label-btn:focus, fieldset[disabled] .input-w-clear .theme-marketview input + label.label-btn:focus, .theme-marketview fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .md-cancel-button:focus, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions .theme-marketview input + .md-cancel-button:focus, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .md-cancel-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear .theme-marketview input + .md-cancel-button:focus, .theme-marketview fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .md-confirm-button:focus, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions .theme-marketview input + .md-confirm-button:focus, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .md-confirm-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear .theme-marketview input + .md-confirm-button:focus, .theme-marketview .input-w-button input.disabled + button:focus, .input-w-button .theme-marketview input.disabled + button:focus, .theme-marketview .input-w-button input.disabled + label.label-btn:focus, .input-w-button .theme-marketview input.disabled + label.label-btn:focus, .theme-marketview .input-w-button md-dialog md-dialog-actions input.disabled + .md-cancel-button:focus, .input-w-button md-dialog md-dialog-actions .theme-marketview input.disabled + .md-cancel-button:focus, .theme-marketview md-dialog md-dialog-actions .input-w-button input.disabled + .md-cancel-button:focus, md-dialog md-dialog-actions .input-w-button .theme-marketview input.disabled + .md-cancel-button:focus, .theme-marketview .input-w-button md-dialog md-dialog-actions input.disabled + .md-confirm-button:focus, .input-w-button md-dialog md-dialog-actions .theme-marketview input.disabled + .md-confirm-button:focus, .theme-marketview md-dialog md-dialog-actions .input-w-button input.disabled + .md-confirm-button:focus, md-dialog md-dialog-actions .input-w-button .theme-marketview input.disabled + .md-confirm-button:focus, .theme-marketview .input-w-button input[disabled] + button:focus, .input-w-button .theme-marketview input[disabled] + button:focus, .theme-marketview .input-w-button input[disabled] + label.label-btn:focus, .input-w-button .theme-marketview input[disabled] + label.label-btn:focus, .theme-marketview .input-w-button md-dialog md-dialog-actions input[disabled] + .md-cancel-button:focus, .input-w-button md-dialog md-dialog-actions .theme-marketview input[disabled] + .md-cancel-button:focus, .theme-marketview md-dialog md-dialog-actions .input-w-button input[disabled] + .md-cancel-button:focus, md-dialog md-dialog-actions .input-w-button .theme-marketview input[disabled] + .md-cancel-button:focus, .theme-marketview .input-w-button md-dialog md-dialog-actions input[disabled] + .md-confirm-button:focus, .input-w-button md-dialog md-dialog-actions .theme-marketview input[disabled] + .md-confirm-button:focus, .theme-marketview md-dialog md-dialog-actions .input-w-button input[disabled] + .md-confirm-button:focus, md-dialog md-dialog-actions .input-w-button .theme-marketview input[disabled] + .md-confirm-button:focus,
    .theme-marketview fieldset[disabled] .input-w-button input + button:focus, fieldset[disabled] .input-w-button .theme-marketview input + button:focus, .theme-marketview fieldset[disabled] .input-w-button input + label.label-btn:focus, fieldset[disabled] .input-w-button .theme-marketview input + label.label-btn:focus, .theme-marketview fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .md-cancel-button:focus, fieldset[disabled] .input-w-button md-dialog md-dialog-actions .theme-marketview input + .md-cancel-button:focus, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .md-cancel-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-button .theme-marketview input + .md-cancel-button:focus, .theme-marketview fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .md-confirm-button:focus, fieldset[disabled] .input-w-button md-dialog md-dialog-actions .theme-marketview input + .md-confirm-button:focus, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .md-confirm-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-button .theme-marketview input + .md-confirm-button:focus, .theme-marketview md-dialog md-dialog-actions .disabled.md-cancel-button:focus, md-dialog md-dialog-actions .theme-marketview .disabled.md-cancel-button:focus, .theme-marketview md-dialog md-dialog-actions .disabled.md-confirm-button:focus, md-dialog md-dialog-actions .theme-marketview .disabled.md-confirm-button:focus, .theme-marketview button[disabled]:hover, .theme-marketview label.label-btn[disabled]:hover, .theme-marketview md-dialog md-dialog-actions .md-cancel-button[disabled]:hover, md-dialog md-dialog-actions .theme-marketview .md-cancel-button[disabled]:hover, .theme-marketview md-dialog md-dialog-actions .md-confirm-button[disabled]:hover, md-dialog md-dialog-actions .theme-marketview .md-confirm-button[disabled]:hover, .theme-marketview button[disabled]:focus, .theme-marketview label.label-btn[disabled]:focus, .theme-marketview md-dialog md-dialog-actions .md-cancel-button[disabled]:focus, md-dialog md-dialog-actions .theme-marketview .md-cancel-button[disabled]:focus, .theme-marketview md-dialog md-dialog-actions .md-confirm-button[disabled]:focus, md-dialog md-dialog-actions .theme-marketview .md-confirm-button[disabled]:focus,
    fieldset[disabled] .theme-marketview button:hover,
    fieldset[disabled] .theme-marketview label.label-btn:hover,
    fieldset[disabled] .theme-marketview md-dialog md-dialog-actions .md-cancel-button:hover,
    md-dialog md-dialog-actions fieldset[disabled] .theme-marketview .md-cancel-button:hover,
    fieldset[disabled] .theme-marketview md-dialog md-dialog-actions .md-confirm-button:hover,
    md-dialog md-dialog-actions fieldset[disabled] .theme-marketview .md-confirm-button:hover,
    fieldset[disabled] .theme-marketview button:focus,
    fieldset[disabled] .theme-marketview label.label-btn:focus,
    fieldset[disabled] .theme-marketview md-dialog md-dialog-actions .md-cancel-button:focus,
    md-dialog md-dialog-actions fieldset[disabled] .theme-marketview .md-cancel-button:focus,
    fieldset[disabled] .theme-marketview md-dialog md-dialog-actions .md-confirm-button:focus,
    md-dialog md-dialog-actions fieldset[disabled] .theme-marketview .md-confirm-button:focus {
      background-color: #FFFFFF; }
  button.flush-icon:before, label.flush-icon.label-btn:before, md-dialog md-dialog-actions .flush-icon.md-cancel-button:before, md-dialog md-dialog-actions .flush-icon.md-confirm-button:before {
    margin: 0; }

/**
* When using a default button with just an icon, add the class `btn-symbol`.
*
* @section Default Symbol Button
* @sectionof Buttons
* @example
* <button class="btn-symbol icon-menu">
*   <span class="sr-only">Icon in Button</span>
* </button>
* <button class="btn-symbol primary danger icon-locked">
*   <span class="sr-only">Danger Primary Button</span>
* </button>
*/
button.btn-symbol, label.btn-symbol.label-btn, md-dialog md-dialog-actions .btn-symbol.md-cancel-button, md-dialog md-dialog-actions .btn-symbol.md-confirm-button {
  padding: 0 10px; }
  button.btn-symbol:before, label.btn-symbol.label-btn:before, md-dialog md-dialog-actions .btn-symbol.md-cancel-button:before, md-dialog md-dialog-actions .btn-symbol.md-confirm-button:before, button.btn-symbol[class^="icon-"]:before, label.btn-symbol.label-btn[class^="icon-"]:before, label.btn-symbol.label-btn.promise-indicator:before, table th.sortable label.btn-symbol.label-btn.sort-btn:after, label.btn-symbol.label-btn.collapse-ctrl:before, md-dialog label.btn-symbol.label-btn.close-dialog:before, .colorpicker label.btn-symbol.label-btn.close-colorpicker:before, button.btn-symbol.promise-indicator:before, md-dialog md-dialog-actions .btn-symbol.promise-indicator.md-cancel-button:before, md-dialog md-dialog-actions .btn-symbol.promise-indicator.md-confirm-button:before, .people-card.-expandable button.btn-symbol.expand-user:before, .people-card.-expandable label.btn-symbol.expand-user.label-btn:before, .people-card.-expandable md-dialog md-dialog-actions .btn-symbol.expand-user.md-cancel-button:before, md-dialog md-dialog-actions .people-card.-expandable .btn-symbol.expand-user.md-cancel-button:before, .people-card.-expandable md-dialog md-dialog-actions .btn-symbol.expand-user.md-confirm-button:before, md-dialog md-dialog-actions .people-card.-expandable .btn-symbol.expand-user.md-confirm-button:before, table th.sortable button.btn-symbol.sort-btn:after, table th.sortable md-dialog md-dialog-actions .btn-symbol.sort-btn.md-cancel-button:after, md-dialog md-dialog-actions table th.sortable .btn-symbol.sort-btn.md-cancel-button:after, table th.sortable md-dialog md-dialog-actions .btn-symbol.sort-btn.md-confirm-button:after, md-dialog md-dialog-actions table th.sortable .btn-symbol.sort-btn.md-confirm-button:after, button.btn-symbol.collapse-ctrl:before, md-dialog md-dialog-actions .btn-symbol.collapse-ctrl.md-cancel-button:before, md-dialog md-dialog-actions .btn-symbol.collapse-ctrl.md-confirm-button:before, md-autocomplete .md-show-clear-button button.btn-symbol, md-autocomplete .md-show-clear-button label.btn-symbol.label-btn, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .btn-symbol.md-cancel-button, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .btn-symbol.md-cancel-button, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .btn-symbol.md-confirm-button, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .btn-symbol.md-confirm-button, md-dialog button.btn-symbol.close-dialog:before, md-dialog md-dialog-actions .btn-symbol.close-dialog.md-cancel-button:before, md-dialog md-dialog-actions .btn-symbol.close-dialog.md-confirm-button:before, md-dialog md-dialog-actions .btn-symbol.md-cancel-button[class^="icon-"]:before, md-dialog md-dialog-actions .group-tag p.btn-symbol.md-cancel-button:before, .group-tag md-dialog md-dialog-actions p.btn-symbol.md-cancel-button:before, md-dialog md-dialog-actions .colorpicker .btn-symbol.md-cancel-button.close-colorpicker:before, .colorpicker md-dialog md-dialog-actions .btn-symbol.md-cancel-button.close-colorpicker:before, md-dialog md-dialog-actions .btn-symbol.md-confirm-button[class^="icon-"]:before, md-dialog md-dialog-actions .group-tag p.btn-symbol.md-confirm-button:before, .group-tag md-dialog md-dialog-actions p.btn-symbol.md-confirm-button:before, md-dialog md-dialog-actions .colorpicker .btn-symbol.md-confirm-button.close-colorpicker:before, .colorpicker md-dialog md-dialog-actions .btn-symbol.md-confirm-button.close-colorpicker:before, .colorpicker button.btn-symbol.close-colorpicker:before, button.btn-symbol[class*=" icon-"]:before, label.btn-symbol.label-btn[class*=" icon-"]:before, md-dialog md-dialog-actions .btn-symbol.md-cancel-button[class*=" icon-"]:before, md-dialog md-dialog-actions .btn-symbol.md-confirm-button[class*=" icon-"]:before,
  button.btn-symbol span[class^="icon-"]:before,
  label.btn-symbol.label-btn span[class^="icon-"]:before,
  md-dialog md-dialog-actions .btn-symbol.md-cancel-button span[class^="icon-"]:before,
  md-dialog md-dialog-actions .btn-symbol.md-confirm-button span[class^="icon-"]:before,
  button.btn-symbol span.promise-indicator:before,
  label.btn-symbol.label-btn span.promise-indicator:before,
  md-dialog md-dialog-actions .btn-symbol.md-cancel-button span.promise-indicator:before,
  md-dialog md-dialog-actions .btn-symbol.md-confirm-button span.promise-indicator:before,
  button.btn-symbol table th.sortable span.sort-btn:after,
  table th.sortable button.btn-symbol span.sort-btn:after,
  label.btn-symbol.label-btn table th.sortable span.sort-btn:after,
  table th.sortable label.btn-symbol.label-btn span.sort-btn:after,
  md-dialog md-dialog-actions .btn-symbol.md-cancel-button table th.sortable span.sort-btn:after,
  table th.sortable md-dialog md-dialog-actions .btn-symbol.md-cancel-button span.sort-btn:after,
  md-dialog md-dialog-actions .btn-symbol.md-confirm-button table th.sortable span.sort-btn:after,
  table th.sortable md-dialog md-dialog-actions .btn-symbol.md-confirm-button span.sort-btn:after,
  button.btn-symbol span.collapse-ctrl:before,
  label.btn-symbol.label-btn span.collapse-ctrl:before,
  md-dialog md-dialog-actions .btn-symbol.md-cancel-button span.collapse-ctrl:before,
  md-dialog md-dialog-actions .btn-symbol.md-confirm-button span.collapse-ctrl:before,
  button.btn-symbol md-dialog span.close-dialog:before,
  md-dialog button.btn-symbol span.close-dialog:before,
  label.btn-symbol.label-btn md-dialog span.close-dialog:before,
  md-dialog label.btn-symbol.label-btn span.close-dialog:before,
  md-dialog md-dialog-actions .btn-symbol.md-cancel-button span.close-dialog:before,
  md-dialog md-dialog-actions .btn-symbol.md-confirm-button span.close-dialog:before,
  button.btn-symbol .colorpicker span.close-colorpicker:before,
  .colorpicker button.btn-symbol span.close-colorpicker:before,
  label.btn-symbol.label-btn .colorpicker span.close-colorpicker:before,
  .colorpicker label.btn-symbol.label-btn span.close-colorpicker:before,
  md-dialog md-dialog-actions .btn-symbol.md-cancel-button .colorpicker span.close-colorpicker:before,
  .colorpicker md-dialog md-dialog-actions .btn-symbol.md-cancel-button span.close-colorpicker:before,
  md-dialog md-dialog-actions .btn-symbol.md-confirm-button .colorpicker span.close-colorpicker:before,
  .colorpicker md-dialog md-dialog-actions .btn-symbol.md-confirm-button span.close-colorpicker:before,
  button.btn-symbol span[class*=" icon-"]:before,
  label.btn-symbol.label-btn span[class*=" icon-"]:before,
  md-dialog md-dialog-actions .btn-symbol.md-cancel-button span[class*=" icon-"]:before,
  md-dialog md-dialog-actions .btn-symbol.md-confirm-button span[class*=" icon-"]:before {
    margin: 0; }
    .theme-cmix button.btn-symbol:before, .theme-cmix label.btn-symbol.label-btn:before, .theme-cmix md-dialog md-dialog-actions .btn-symbol.md-cancel-button:before, md-dialog md-dialog-actions .theme-cmix .btn-symbol.md-cancel-button:before, .theme-cmix md-dialog md-dialog-actions .btn-symbol.md-confirm-button:before, md-dialog md-dialog-actions .theme-cmix .btn-symbol.md-confirm-button:before, .theme-cmix button.btn-symbol[class^="icon-"]:before, .theme-cmix label.btn-symbol.label-btn[class^="icon-"]:before, .theme-cmix label.btn-symbol.label-btn.promise-indicator:before, .theme-cmix table th.sortable label.btn-symbol.label-btn.sort-btn:after, table th.sortable .theme-cmix label.btn-symbol.label-btn.sort-btn:after, .theme-cmix label.btn-symbol.label-btn.collapse-ctrl:before, .theme-cmix md-dialog label.btn-symbol.label-btn.close-dialog:before, md-dialog .theme-cmix label.btn-symbol.label-btn.close-dialog:before, .theme-cmix .colorpicker label.btn-symbol.label-btn.close-colorpicker:before, .colorpicker .theme-cmix label.btn-symbol.label-btn.close-colorpicker:before, .theme-cmix button.btn-symbol.promise-indicator:before, .theme-cmix md-dialog md-dialog-actions .btn-symbol.promise-indicator.md-cancel-button:before, md-dialog md-dialog-actions .theme-cmix .btn-symbol.promise-indicator.md-cancel-button:before, .theme-cmix md-dialog md-dialog-actions .btn-symbol.promise-indicator.md-confirm-button:before, md-dialog md-dialog-actions .theme-cmix .btn-symbol.promise-indicator.md-confirm-button:before, .theme-cmix .people-card.-expandable button.btn-symbol.expand-user:before, .people-card.-expandable .theme-cmix button.btn-symbol.expand-user:before, .theme-cmix .people-card.-expandable label.btn-symbol.expand-user.label-btn:before, .people-card.-expandable .theme-cmix label.btn-symbol.expand-user.label-btn:before, .theme-cmix .people-card.-expandable md-dialog md-dialog-actions .btn-symbol.expand-user.md-cancel-button:before, .people-card.-expandable md-dialog md-dialog-actions .theme-cmix .btn-symbol.expand-user.md-cancel-button:before, .theme-cmix md-dialog md-dialog-actions .people-card.-expandable .btn-symbol.expand-user.md-cancel-button:before, md-dialog md-dialog-actions .people-card.-expandable .theme-cmix .btn-symbol.expand-user.md-cancel-button:before, .theme-cmix .people-card.-expandable md-dialog md-dialog-actions .btn-symbol.expand-user.md-confirm-button:before, .people-card.-expandable md-dialog md-dialog-actions .theme-cmix .btn-symbol.expand-user.md-confirm-button:before, .theme-cmix md-dialog md-dialog-actions .people-card.-expandable .btn-symbol.expand-user.md-confirm-button:before, md-dialog md-dialog-actions .people-card.-expandable .theme-cmix .btn-symbol.expand-user.md-confirm-button:before, .theme-cmix table th.sortable button.btn-symbol.sort-btn:after, table th.sortable .theme-cmix button.btn-symbol.sort-btn:after, .theme-cmix table th.sortable md-dialog md-dialog-actions .btn-symbol.sort-btn.md-cancel-button:after, table th.sortable md-dialog md-dialog-actions .theme-cmix .btn-symbol.sort-btn.md-cancel-button:after, .theme-cmix md-dialog md-dialog-actions table th.sortable .btn-symbol.sort-btn.md-cancel-button:after, md-dialog md-dialog-actions table th.sortable .theme-cmix .btn-symbol.sort-btn.md-cancel-button:after, .theme-cmix table th.sortable md-dialog md-dialog-actions .btn-symbol.sort-btn.md-confirm-button:after, table th.sortable md-dialog md-dialog-actions .theme-cmix .btn-symbol.sort-btn.md-confirm-button:after, .theme-cmix md-dialog md-dialog-actions table th.sortable .btn-symbol.sort-btn.md-confirm-button:after, md-dialog md-dialog-actions table th.sortable .theme-cmix .btn-symbol.sort-btn.md-confirm-button:after, .theme-cmix button.btn-symbol.collapse-ctrl:before, .theme-cmix md-dialog md-dialog-actions .btn-symbol.collapse-ctrl.md-cancel-button:before, md-dialog md-dialog-actions .theme-cmix .btn-symbol.collapse-ctrl.md-cancel-button:before, .theme-cmix md-dialog md-dialog-actions .btn-symbol.collapse-ctrl.md-confirm-button:before, md-dialog md-dialog-actions .theme-cmix .btn-symbol.collapse-ctrl.md-confirm-button:before, .theme-cmix md-autocomplete .md-show-clear-button button.btn-symbol, md-autocomplete .md-show-clear-button .theme-cmix button.btn-symbol, .theme-cmix md-autocomplete .md-show-clear-button label.btn-symbol.label-btn, md-autocomplete .md-show-clear-button .theme-cmix label.btn-symbol.label-btn, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .btn-symbol.md-cancel-button, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-cmix .btn-symbol.md-cancel-button, .theme-cmix md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .btn-symbol.md-cancel-button, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix .btn-symbol.md-cancel-button, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .btn-symbol.md-confirm-button, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-cmix .btn-symbol.md-confirm-button, .theme-cmix md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .btn-symbol.md-confirm-button, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix .btn-symbol.md-confirm-button, .theme-cmix md-dialog button.btn-symbol.close-dialog:before, md-dialog .theme-cmix button.btn-symbol.close-dialog:before, .theme-cmix md-dialog md-dialog-actions .btn-symbol.close-dialog.md-cancel-button:before, md-dialog md-dialog-actions .theme-cmix .btn-symbol.close-dialog.md-cancel-button:before, .theme-cmix md-dialog md-dialog-actions .btn-symbol.close-dialog.md-confirm-button:before, md-dialog md-dialog-actions .theme-cmix .btn-symbol.close-dialog.md-confirm-button:before, .theme-cmix md-dialog md-dialog-actions .btn-symbol.md-cancel-button[class^="icon-"]:before, md-dialog md-dialog-actions .theme-cmix .btn-symbol.md-cancel-button[class^="icon-"]:before, .theme-cmix md-dialog md-dialog-actions .group-tag p.btn-symbol.md-cancel-button:before, md-dialog md-dialog-actions .group-tag .theme-cmix p.btn-symbol.md-cancel-button:before, .theme-cmix .group-tag md-dialog md-dialog-actions p.btn-symbol.md-cancel-button:before, .group-tag md-dialog md-dialog-actions .theme-cmix p.btn-symbol.md-cancel-button:before, .theme-cmix md-dialog md-dialog-actions .colorpicker .btn-symbol.md-cancel-button.close-colorpicker:before, md-dialog md-dialog-actions .colorpicker .theme-cmix .btn-symbol.md-cancel-button.close-colorpicker:before, .theme-cmix .colorpicker md-dialog md-dialog-actions .btn-symbol.md-cancel-button.close-colorpicker:before, .colorpicker md-dialog md-dialog-actions .theme-cmix .btn-symbol.md-cancel-button.close-colorpicker:before, .theme-cmix md-dialog md-dialog-actions .btn-symbol.md-confirm-button[class^="icon-"]:before, md-dialog md-dialog-actions .theme-cmix .btn-symbol.md-confirm-button[class^="icon-"]:before, .theme-cmix md-dialog md-dialog-actions .group-tag p.btn-symbol.md-confirm-button:before, md-dialog md-dialog-actions .group-tag .theme-cmix p.btn-symbol.md-confirm-button:before, .theme-cmix .group-tag md-dialog md-dialog-actions p.btn-symbol.md-confirm-button:before, .group-tag md-dialog md-dialog-actions .theme-cmix p.btn-symbol.md-confirm-button:before, .theme-cmix md-dialog md-dialog-actions .colorpicker .btn-symbol.md-confirm-button.close-colorpicker:before, md-dialog md-dialog-actions .colorpicker .theme-cmix .btn-symbol.md-confirm-button.close-colorpicker:before, .theme-cmix .colorpicker md-dialog md-dialog-actions .btn-symbol.md-confirm-button.close-colorpicker:before, .colorpicker md-dialog md-dialog-actions .theme-cmix .btn-symbol.md-confirm-button.close-colorpicker:before, .theme-cmix .colorpicker button.btn-symbol.close-colorpicker:before, .colorpicker .theme-cmix button.btn-symbol.close-colorpicker:before, .theme-cmix button.btn-symbol[class*=" icon-"]:before, .theme-cmix label.btn-symbol.label-btn[class*=" icon-"]:before, .theme-cmix md-dialog md-dialog-actions .btn-symbol.md-cancel-button[class*=" icon-"]:before, md-dialog md-dialog-actions .theme-cmix .btn-symbol.md-cancel-button[class*=" icon-"]:before, .theme-cmix md-dialog md-dialog-actions .btn-symbol.md-confirm-button[class*=" icon-"]:before, md-dialog md-dialog-actions .theme-cmix .btn-symbol.md-confirm-button[class*=" icon-"]:before, .theme-cmix button.btn-symbol span[class^="icon-"]:before, .theme-cmix label.btn-symbol.label-btn span[class^="icon-"]:before, .theme-cmix md-dialog md-dialog-actions .btn-symbol.md-cancel-button span[class^="icon-"]:before, md-dialog md-dialog-actions .theme-cmix .btn-symbol.md-cancel-button span[class^="icon-"]:before, .theme-cmix md-dialog md-dialog-actions .btn-symbol.md-confirm-button span[class^="icon-"]:before, md-dialog md-dialog-actions .theme-cmix .btn-symbol.md-confirm-button span[class^="icon-"]:before, .theme-cmix button.btn-symbol span.promise-indicator:before, .theme-cmix label.btn-symbol.label-btn span.promise-indicator:before, .theme-cmix md-dialog md-dialog-actions .btn-symbol.md-cancel-button span.promise-indicator:before, md-dialog md-dialog-actions .theme-cmix .btn-symbol.md-cancel-button span.promise-indicator:before, .theme-cmix md-dialog md-dialog-actions .btn-symbol.md-confirm-button span.promise-indicator:before, md-dialog md-dialog-actions .theme-cmix .btn-symbol.md-confirm-button span.promise-indicator:before, .theme-cmix button.btn-symbol table th.sortable span.sort-btn:after, table th.sortable .theme-cmix button.btn-symbol span.sort-btn:after, .theme-cmix label.btn-symbol.label-btn table th.sortable span.sort-btn:after, table th.sortable .theme-cmix label.btn-symbol.label-btn span.sort-btn:after, .theme-cmix md-dialog md-dialog-actions .btn-symbol.md-cancel-button table th.sortable span.sort-btn:after, table th.sortable .theme-cmix md-dialog md-dialog-actions .btn-symbol.md-cancel-button span.sort-btn:after, md-dialog md-dialog-actions .theme-cmix .btn-symbol.md-cancel-button table th.sortable span.sort-btn:after, table th.sortable md-dialog md-dialog-actions .theme-cmix .btn-symbol.md-cancel-button span.sort-btn:after, .theme-cmix md-dialog md-dialog-actions .btn-symbol.md-confirm-button table th.sortable span.sort-btn:after, table th.sortable .theme-cmix md-dialog md-dialog-actions .btn-symbol.md-confirm-button span.sort-btn:after, md-dialog md-dialog-actions .theme-cmix .btn-symbol.md-confirm-button table th.sortable span.sort-btn:after, table th.sortable md-dialog md-dialog-actions .theme-cmix .btn-symbol.md-confirm-button span.sort-btn:after, .theme-cmix button.btn-symbol span.collapse-ctrl:before, .theme-cmix label.btn-symbol.label-btn span.collapse-ctrl:before, .theme-cmix md-dialog md-dialog-actions .btn-symbol.md-cancel-button span.collapse-ctrl:before, md-dialog md-dialog-actions .theme-cmix .btn-symbol.md-cancel-button span.collapse-ctrl:before, .theme-cmix md-dialog md-dialog-actions .btn-symbol.md-confirm-button span.collapse-ctrl:before, md-dialog md-dialog-actions .theme-cmix .btn-symbol.md-confirm-button span.collapse-ctrl:before, .theme-cmix button.btn-symbol md-dialog span.close-dialog:before, md-dialog .theme-cmix button.btn-symbol span.close-dialog:before, .theme-cmix label.btn-symbol.label-btn md-dialog span.close-dialog:before, md-dialog .theme-cmix label.btn-symbol.label-btn span.close-dialog:before, .theme-cmix md-dialog md-dialog-actions .btn-symbol.md-cancel-button span.close-dialog:before, md-dialog md-dialog-actions .theme-cmix .btn-symbol.md-cancel-button span.close-dialog:before, .theme-cmix md-dialog md-dialog-actions .btn-symbol.md-confirm-button span.close-dialog:before, md-dialog md-dialog-actions .theme-cmix .btn-symbol.md-confirm-button span.close-dialog:before, .theme-cmix button.btn-symbol .colorpicker span.close-colorpicker:before, .colorpicker .theme-cmix button.btn-symbol span.close-colorpicker:before, .theme-cmix label.btn-symbol.label-btn .colorpicker span.close-colorpicker:before, .colorpicker .theme-cmix label.btn-symbol.label-btn span.close-colorpicker:before, .theme-cmix md-dialog md-dialog-actions .btn-symbol.md-cancel-button .colorpicker span.close-colorpicker:before, .colorpicker .theme-cmix md-dialog md-dialog-actions .btn-symbol.md-cancel-button span.close-colorpicker:before, md-dialog md-dialog-actions .theme-cmix .btn-symbol.md-cancel-button .colorpicker span.close-colorpicker:before, .colorpicker md-dialog md-dialog-actions .theme-cmix .btn-symbol.md-cancel-button span.close-colorpicker:before, .theme-cmix md-dialog md-dialog-actions .btn-symbol.md-confirm-button .colorpicker span.close-colorpicker:before, .colorpicker .theme-cmix md-dialog md-dialog-actions .btn-symbol.md-confirm-button span.close-colorpicker:before, md-dialog md-dialog-actions .theme-cmix .btn-symbol.md-confirm-button .colorpicker span.close-colorpicker:before, .colorpicker md-dialog md-dialog-actions .theme-cmix .btn-symbol.md-confirm-button span.close-colorpicker:before, .theme-cmix button.btn-symbol span[class*=" icon-"]:before, .theme-cmix label.btn-symbol.label-btn span[class*=" icon-"]:before, .theme-cmix md-dialog md-dialog-actions .btn-symbol.md-cancel-button span[class*=" icon-"]:before, md-dialog md-dialog-actions .theme-cmix .btn-symbol.md-cancel-button span[class*=" icon-"]:before, .theme-cmix md-dialog md-dialog-actions .btn-symbol.md-confirm-button span[class*=" icon-"]:before, md-dialog md-dialog-actions .theme-cmix .btn-symbol.md-confirm-button span[class*=" icon-"]:before {
      color: #22232D; }
    .theme-marketview button.btn-symbol:before, .theme-marketview label.btn-symbol.label-btn:before, .theme-marketview md-dialog md-dialog-actions .btn-symbol.md-cancel-button:before, md-dialog md-dialog-actions .theme-marketview .btn-symbol.md-cancel-button:before, .theme-marketview md-dialog md-dialog-actions .btn-symbol.md-confirm-button:before, md-dialog md-dialog-actions .theme-marketview .btn-symbol.md-confirm-button:before, .theme-marketview button.btn-symbol[class^="icon-"]:before, .theme-marketview label.btn-symbol.label-btn[class^="icon-"]:before, .theme-marketview label.btn-symbol.label-btn.promise-indicator:before, .theme-marketview table th.sortable label.btn-symbol.label-btn.sort-btn:after, table th.sortable .theme-marketview label.btn-symbol.label-btn.sort-btn:after, .theme-marketview label.btn-symbol.label-btn.collapse-ctrl:before, .theme-marketview md-dialog label.btn-symbol.label-btn.close-dialog:before, md-dialog .theme-marketview label.btn-symbol.label-btn.close-dialog:before, .theme-marketview .colorpicker label.btn-symbol.label-btn.close-colorpicker:before, .colorpicker .theme-marketview label.btn-symbol.label-btn.close-colorpicker:before, .theme-marketview button.btn-symbol.promise-indicator:before, .theme-marketview md-dialog md-dialog-actions .btn-symbol.promise-indicator.md-cancel-button:before, md-dialog md-dialog-actions .theme-marketview .btn-symbol.promise-indicator.md-cancel-button:before, .theme-marketview md-dialog md-dialog-actions .btn-symbol.promise-indicator.md-confirm-button:before, md-dialog md-dialog-actions .theme-marketview .btn-symbol.promise-indicator.md-confirm-button:before, .theme-marketview .people-card.-expandable button.btn-symbol.expand-user:before, .people-card.-expandable .theme-marketview button.btn-symbol.expand-user:before, .theme-marketview .people-card.-expandable label.btn-symbol.expand-user.label-btn:before, .people-card.-expandable .theme-marketview label.btn-symbol.expand-user.label-btn:before, .theme-marketview .people-card.-expandable md-dialog md-dialog-actions .btn-symbol.expand-user.md-cancel-button:before, .people-card.-expandable md-dialog md-dialog-actions .theme-marketview .btn-symbol.expand-user.md-cancel-button:before, .theme-marketview md-dialog md-dialog-actions .people-card.-expandable .btn-symbol.expand-user.md-cancel-button:before, md-dialog md-dialog-actions .people-card.-expandable .theme-marketview .btn-symbol.expand-user.md-cancel-button:before, .theme-marketview .people-card.-expandable md-dialog md-dialog-actions .btn-symbol.expand-user.md-confirm-button:before, .people-card.-expandable md-dialog md-dialog-actions .theme-marketview .btn-symbol.expand-user.md-confirm-button:before, .theme-marketview md-dialog md-dialog-actions .people-card.-expandable .btn-symbol.expand-user.md-confirm-button:before, md-dialog md-dialog-actions .people-card.-expandable .theme-marketview .btn-symbol.expand-user.md-confirm-button:before, .theme-marketview table th.sortable button.btn-symbol.sort-btn:after, table th.sortable .theme-marketview button.btn-symbol.sort-btn:after, .theme-marketview table th.sortable md-dialog md-dialog-actions .btn-symbol.sort-btn.md-cancel-button:after, table th.sortable md-dialog md-dialog-actions .theme-marketview .btn-symbol.sort-btn.md-cancel-button:after, .theme-marketview md-dialog md-dialog-actions table th.sortable .btn-symbol.sort-btn.md-cancel-button:after, md-dialog md-dialog-actions table th.sortable .theme-marketview .btn-symbol.sort-btn.md-cancel-button:after, .theme-marketview table th.sortable md-dialog md-dialog-actions .btn-symbol.sort-btn.md-confirm-button:after, table th.sortable md-dialog md-dialog-actions .theme-marketview .btn-symbol.sort-btn.md-confirm-button:after, .theme-marketview md-dialog md-dialog-actions table th.sortable .btn-symbol.sort-btn.md-confirm-button:after, md-dialog md-dialog-actions table th.sortable .theme-marketview .btn-symbol.sort-btn.md-confirm-button:after, .theme-marketview button.btn-symbol.collapse-ctrl:before, .theme-marketview md-dialog md-dialog-actions .btn-symbol.collapse-ctrl.md-cancel-button:before, md-dialog md-dialog-actions .theme-marketview .btn-symbol.collapse-ctrl.md-cancel-button:before, .theme-marketview md-dialog md-dialog-actions .btn-symbol.collapse-ctrl.md-confirm-button:before, md-dialog md-dialog-actions .theme-marketview .btn-symbol.collapse-ctrl.md-confirm-button:before, .theme-marketview md-autocomplete .md-show-clear-button button.btn-symbol, md-autocomplete .md-show-clear-button .theme-marketview button.btn-symbol, .theme-marketview md-autocomplete .md-show-clear-button label.btn-symbol.label-btn, md-autocomplete .md-show-clear-button .theme-marketview label.btn-symbol.label-btn, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .btn-symbol.md-cancel-button, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-marketview .btn-symbol.md-cancel-button, .theme-marketview md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .btn-symbol.md-cancel-button, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview .btn-symbol.md-cancel-button, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .btn-symbol.md-confirm-button, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-marketview .btn-symbol.md-confirm-button, .theme-marketview md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .btn-symbol.md-confirm-button, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview .btn-symbol.md-confirm-button, .theme-marketview md-dialog button.btn-symbol.close-dialog:before, md-dialog .theme-marketview button.btn-symbol.close-dialog:before, .theme-marketview md-dialog md-dialog-actions .btn-symbol.close-dialog.md-cancel-button:before, md-dialog md-dialog-actions .theme-marketview .btn-symbol.close-dialog.md-cancel-button:before, .theme-marketview md-dialog md-dialog-actions .btn-symbol.close-dialog.md-confirm-button:before, md-dialog md-dialog-actions .theme-marketview .btn-symbol.close-dialog.md-confirm-button:before, .theme-marketview md-dialog md-dialog-actions .btn-symbol.md-cancel-button[class^="icon-"]:before, md-dialog md-dialog-actions .theme-marketview .btn-symbol.md-cancel-button[class^="icon-"]:before, .theme-marketview md-dialog md-dialog-actions .group-tag p.btn-symbol.md-cancel-button:before, md-dialog md-dialog-actions .group-tag .theme-marketview p.btn-symbol.md-cancel-button:before, .theme-marketview .group-tag md-dialog md-dialog-actions p.btn-symbol.md-cancel-button:before, .group-tag md-dialog md-dialog-actions .theme-marketview p.btn-symbol.md-cancel-button:before, .theme-marketview md-dialog md-dialog-actions .colorpicker .btn-symbol.md-cancel-button.close-colorpicker:before, md-dialog md-dialog-actions .colorpicker .theme-marketview .btn-symbol.md-cancel-button.close-colorpicker:before, .theme-marketview .colorpicker md-dialog md-dialog-actions .btn-symbol.md-cancel-button.close-colorpicker:before, .colorpicker md-dialog md-dialog-actions .theme-marketview .btn-symbol.md-cancel-button.close-colorpicker:before, .theme-marketview md-dialog md-dialog-actions .btn-symbol.md-confirm-button[class^="icon-"]:before, md-dialog md-dialog-actions .theme-marketview .btn-symbol.md-confirm-button[class^="icon-"]:before, .theme-marketview md-dialog md-dialog-actions .group-tag p.btn-symbol.md-confirm-button:before, md-dialog md-dialog-actions .group-tag .theme-marketview p.btn-symbol.md-confirm-button:before, .theme-marketview .group-tag md-dialog md-dialog-actions p.btn-symbol.md-confirm-button:before, .group-tag md-dialog md-dialog-actions .theme-marketview p.btn-symbol.md-confirm-button:before, .theme-marketview md-dialog md-dialog-actions .colorpicker .btn-symbol.md-confirm-button.close-colorpicker:before, md-dialog md-dialog-actions .colorpicker .theme-marketview .btn-symbol.md-confirm-button.close-colorpicker:before, .theme-marketview .colorpicker md-dialog md-dialog-actions .btn-symbol.md-confirm-button.close-colorpicker:before, .colorpicker md-dialog md-dialog-actions .theme-marketview .btn-symbol.md-confirm-button.close-colorpicker:before, .theme-marketview .colorpicker button.btn-symbol.close-colorpicker:before, .colorpicker .theme-marketview button.btn-symbol.close-colorpicker:before, .theme-marketview button.btn-symbol[class*=" icon-"]:before, .theme-marketview label.btn-symbol.label-btn[class*=" icon-"]:before, .theme-marketview md-dialog md-dialog-actions .btn-symbol.md-cancel-button[class*=" icon-"]:before, md-dialog md-dialog-actions .theme-marketview .btn-symbol.md-cancel-button[class*=" icon-"]:before, .theme-marketview md-dialog md-dialog-actions .btn-symbol.md-confirm-button[class*=" icon-"]:before, md-dialog md-dialog-actions .theme-marketview .btn-symbol.md-confirm-button[class*=" icon-"]:before, .theme-marketview button.btn-symbol span[class^="icon-"]:before, .theme-marketview label.btn-symbol.label-btn span[class^="icon-"]:before, .theme-marketview md-dialog md-dialog-actions .btn-symbol.md-cancel-button span[class^="icon-"]:before, md-dialog md-dialog-actions .theme-marketview .btn-symbol.md-cancel-button span[class^="icon-"]:before, .theme-marketview md-dialog md-dialog-actions .btn-symbol.md-confirm-button span[class^="icon-"]:before, md-dialog md-dialog-actions .theme-marketview .btn-symbol.md-confirm-button span[class^="icon-"]:before, .theme-marketview button.btn-symbol span.promise-indicator:before, .theme-marketview label.btn-symbol.label-btn span.promise-indicator:before, .theme-marketview md-dialog md-dialog-actions .btn-symbol.md-cancel-button span.promise-indicator:before, md-dialog md-dialog-actions .theme-marketview .btn-symbol.md-cancel-button span.promise-indicator:before, .theme-marketview md-dialog md-dialog-actions .btn-symbol.md-confirm-button span.promise-indicator:before, md-dialog md-dialog-actions .theme-marketview .btn-symbol.md-confirm-button span.promise-indicator:before, .theme-marketview button.btn-symbol table th.sortable span.sort-btn:after, table th.sortable .theme-marketview button.btn-symbol span.sort-btn:after, .theme-marketview label.btn-symbol.label-btn table th.sortable span.sort-btn:after, table th.sortable .theme-marketview label.btn-symbol.label-btn span.sort-btn:after, .theme-marketview md-dialog md-dialog-actions .btn-symbol.md-cancel-button table th.sortable span.sort-btn:after, table th.sortable .theme-marketview md-dialog md-dialog-actions .btn-symbol.md-cancel-button span.sort-btn:after, md-dialog md-dialog-actions .theme-marketview .btn-symbol.md-cancel-button table th.sortable span.sort-btn:after, table th.sortable md-dialog md-dialog-actions .theme-marketview .btn-symbol.md-cancel-button span.sort-btn:after, .theme-marketview md-dialog md-dialog-actions .btn-symbol.md-confirm-button table th.sortable span.sort-btn:after, table th.sortable .theme-marketview md-dialog md-dialog-actions .btn-symbol.md-confirm-button span.sort-btn:after, md-dialog md-dialog-actions .theme-marketview .btn-symbol.md-confirm-button table th.sortable span.sort-btn:after, table th.sortable md-dialog md-dialog-actions .theme-marketview .btn-symbol.md-confirm-button span.sort-btn:after, .theme-marketview button.btn-symbol span.collapse-ctrl:before, .theme-marketview label.btn-symbol.label-btn span.collapse-ctrl:before, .theme-marketview md-dialog md-dialog-actions .btn-symbol.md-cancel-button span.collapse-ctrl:before, md-dialog md-dialog-actions .theme-marketview .btn-symbol.md-cancel-button span.collapse-ctrl:before, .theme-marketview md-dialog md-dialog-actions .btn-symbol.md-confirm-button span.collapse-ctrl:before, md-dialog md-dialog-actions .theme-marketview .btn-symbol.md-confirm-button span.collapse-ctrl:before, .theme-marketview button.btn-symbol md-dialog span.close-dialog:before, md-dialog .theme-marketview button.btn-symbol span.close-dialog:before, .theme-marketview label.btn-symbol.label-btn md-dialog span.close-dialog:before, md-dialog .theme-marketview label.btn-symbol.label-btn span.close-dialog:before, .theme-marketview md-dialog md-dialog-actions .btn-symbol.md-cancel-button span.close-dialog:before, md-dialog md-dialog-actions .theme-marketview .btn-symbol.md-cancel-button span.close-dialog:before, .theme-marketview md-dialog md-dialog-actions .btn-symbol.md-confirm-button span.close-dialog:before, md-dialog md-dialog-actions .theme-marketview .btn-symbol.md-confirm-button span.close-dialog:before, .theme-marketview button.btn-symbol .colorpicker span.close-colorpicker:before, .colorpicker .theme-marketview button.btn-symbol span.close-colorpicker:before, .theme-marketview label.btn-symbol.label-btn .colorpicker span.close-colorpicker:before, .colorpicker .theme-marketview label.btn-symbol.label-btn span.close-colorpicker:before, .theme-marketview md-dialog md-dialog-actions .btn-symbol.md-cancel-button .colorpicker span.close-colorpicker:before, .colorpicker .theme-marketview md-dialog md-dialog-actions .btn-symbol.md-cancel-button span.close-colorpicker:before, md-dialog md-dialog-actions .theme-marketview .btn-symbol.md-cancel-button .colorpicker span.close-colorpicker:before, .colorpicker md-dialog md-dialog-actions .theme-marketview .btn-symbol.md-cancel-button span.close-colorpicker:before, .theme-marketview md-dialog md-dialog-actions .btn-symbol.md-confirm-button .colorpicker span.close-colorpicker:before, .colorpicker .theme-marketview md-dialog md-dialog-actions .btn-symbol.md-confirm-button span.close-colorpicker:before, md-dialog md-dialog-actions .theme-marketview .btn-symbol.md-confirm-button .colorpicker span.close-colorpicker:before, .colorpicker md-dialog md-dialog-actions .theme-marketview .btn-symbol.md-confirm-button span.close-colorpicker:before, .theme-marketview button.btn-symbol span[class*=" icon-"]:before, .theme-marketview label.btn-symbol.label-btn span[class*=" icon-"]:before, .theme-marketview md-dialog md-dialog-actions .btn-symbol.md-cancel-button span[class*=" icon-"]:before, md-dialog md-dialog-actions .theme-marketview .btn-symbol.md-cancel-button span[class*=" icon-"]:before, .theme-marketview md-dialog md-dialog-actions .btn-symbol.md-confirm-button span[class*=" icon-"]:before, md-dialog md-dialog-actions .theme-marketview .btn-symbol.md-confirm-button span[class*=" icon-"]:before {
      color: #414042; }
  button.btn-symbol.primary, label.btn-symbol.primary.label-btn, md-dialog md-dialog-actions .btn-symbol.primary.md-cancel-button, md-dialog md-dialog-actions .btn-symbol.md-confirm-button {
    padding: 0 11px; }
    button.btn-symbol.primary:before, label.btn-symbol.primary.label-btn:before, md-dialog md-dialog-actions .btn-symbol.primary.md-cancel-button:before, md-dialog md-dialog-actions .btn-symbol.md-confirm-button:before, button.btn-symbol.primary[class^="icon-"]:before, label.btn-symbol.primary.label-btn[class^="icon-"]:before, label.btn-symbol.primary.label-btn.promise-indicator:before, table th.sortable label.btn-symbol.primary.label-btn.sort-btn:after, label.btn-symbol.primary.label-btn.collapse-ctrl:before, md-dialog label.btn-symbol.primary.label-btn.close-dialog:before, .colorpicker label.btn-symbol.primary.label-btn.close-colorpicker:before, button.btn-symbol.primary.promise-indicator:before, md-dialog md-dialog-actions .btn-symbol.primary.promise-indicator.md-cancel-button:before, md-dialog md-dialog-actions .btn-symbol.promise-indicator.md-confirm-button:before, .people-card.-expandable button.btn-symbol.primary.expand-user:before, .people-card.-expandable label.btn-symbol.primary.expand-user.label-btn:before, .people-card.-expandable md-dialog md-dialog-actions .btn-symbol.primary.expand-user.md-cancel-button:before, md-dialog md-dialog-actions .people-card.-expandable .btn-symbol.primary.expand-user.md-cancel-button:before, .people-card.-expandable md-dialog md-dialog-actions .btn-symbol.expand-user.md-confirm-button:before, md-dialog md-dialog-actions .people-card.-expandable .btn-symbol.expand-user.md-confirm-button:before, table th.sortable button.btn-symbol.primary.sort-btn:after, table th.sortable md-dialog md-dialog-actions .btn-symbol.primary.sort-btn.md-cancel-button:after, md-dialog md-dialog-actions table th.sortable .btn-symbol.primary.sort-btn.md-cancel-button:after, table th.sortable md-dialog md-dialog-actions .btn-symbol.sort-btn.md-confirm-button:after, md-dialog md-dialog-actions table th.sortable .btn-symbol.sort-btn.md-confirm-button:after, button.btn-symbol.primary.collapse-ctrl:before, md-dialog md-dialog-actions .btn-symbol.primary.collapse-ctrl.md-cancel-button:before, md-dialog md-dialog-actions .btn-symbol.collapse-ctrl.md-confirm-button:before, md-autocomplete .md-show-clear-button button.btn-symbol.primary, md-autocomplete .md-show-clear-button label.btn-symbol.primary.label-btn, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .btn-symbol.primary.md-cancel-button, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .btn-symbol.primary.md-cancel-button, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .btn-symbol.md-confirm-button, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .btn-symbol.md-confirm-button, md-dialog button.btn-symbol.primary.close-dialog:before, md-dialog md-dialog-actions .btn-symbol.primary.close-dialog.md-cancel-button:before, md-dialog md-dialog-actions .btn-symbol.close-dialog.md-confirm-button:before, md-dialog md-dialog-actions .btn-symbol.primary.md-cancel-button[class^="icon-"]:before, md-dialog md-dialog-actions .group-tag p.btn-symbol.primary.md-cancel-button:before, .group-tag md-dialog md-dialog-actions p.btn-symbol.primary.md-cancel-button:before, md-dialog md-dialog-actions .colorpicker .btn-symbol.primary.md-cancel-button.close-colorpicker:before, .colorpicker md-dialog md-dialog-actions .btn-symbol.primary.md-cancel-button.close-colorpicker:before, md-dialog md-dialog-actions .btn-symbol.md-confirm-button[class^="icon-"]:before, md-dialog md-dialog-actions .group-tag p.btn-symbol.md-confirm-button:before, .group-tag md-dialog md-dialog-actions p.btn-symbol.md-confirm-button:before, md-dialog md-dialog-actions .colorpicker .btn-symbol.md-confirm-button.close-colorpicker:before, .colorpicker md-dialog md-dialog-actions .btn-symbol.md-confirm-button.close-colorpicker:before, .colorpicker button.btn-symbol.primary.close-colorpicker:before, button.btn-symbol.primary[class*=" icon-"]:before, label.btn-symbol.primary.label-btn[class*=" icon-"]:before, md-dialog md-dialog-actions .btn-symbol.primary.md-cancel-button[class*=" icon-"]:before, md-dialog md-dialog-actions .btn-symbol.md-confirm-button[class*=" icon-"]:before,
    button.btn-symbol.primary span[class^="icon-"]:before,
    label.btn-symbol.primary.label-btn span[class^="icon-"]:before,
    md-dialog md-dialog-actions .btn-symbol.primary.md-cancel-button span[class^="icon-"]:before,
    md-dialog md-dialog-actions .btn-symbol.md-confirm-button span[class^="icon-"]:before,
    button.btn-symbol.primary span.promise-indicator:before,
    label.btn-symbol.primary.label-btn span.promise-indicator:before,
    md-dialog md-dialog-actions .btn-symbol.primary.md-cancel-button span.promise-indicator:before,
    md-dialog md-dialog-actions .btn-symbol.md-confirm-button span.promise-indicator:before,
    button.btn-symbol.primary table th.sortable span.sort-btn:after,
    table th.sortable button.btn-symbol.primary span.sort-btn:after,
    label.btn-symbol.primary.label-btn table th.sortable span.sort-btn:after,
    table th.sortable label.btn-symbol.primary.label-btn span.sort-btn:after,
    md-dialog md-dialog-actions .btn-symbol.primary.md-cancel-button table th.sortable span.sort-btn:after,
    table th.sortable md-dialog md-dialog-actions .btn-symbol.primary.md-cancel-button span.sort-btn:after,
    md-dialog md-dialog-actions .btn-symbol.md-confirm-button table th.sortable span.sort-btn:after,
    table th.sortable md-dialog md-dialog-actions .btn-symbol.md-confirm-button span.sort-btn:after,
    button.btn-symbol.primary span.collapse-ctrl:before,
    label.btn-symbol.primary.label-btn span.collapse-ctrl:before,
    md-dialog md-dialog-actions .btn-symbol.primary.md-cancel-button span.collapse-ctrl:before,
    md-dialog md-dialog-actions .btn-symbol.md-confirm-button span.collapse-ctrl:before,
    button.btn-symbol.primary md-dialog span.close-dialog:before,
    md-dialog button.btn-symbol.primary span.close-dialog:before,
    label.btn-symbol.primary.label-btn md-dialog span.close-dialog:before,
    md-dialog label.btn-symbol.primary.label-btn span.close-dialog:before,
    md-dialog md-dialog-actions .btn-symbol.primary.md-cancel-button span.close-dialog:before,
    md-dialog md-dialog-actions .btn-symbol.md-confirm-button span.close-dialog:before,
    button.btn-symbol.primary .colorpicker span.close-colorpicker:before,
    .colorpicker button.btn-symbol.primary span.close-colorpicker:before,
    label.btn-symbol.primary.label-btn .colorpicker span.close-colorpicker:before,
    .colorpicker label.btn-symbol.primary.label-btn span.close-colorpicker:before,
    md-dialog md-dialog-actions .btn-symbol.primary.md-cancel-button .colorpicker span.close-colorpicker:before,
    .colorpicker md-dialog md-dialog-actions .btn-symbol.primary.md-cancel-button span.close-colorpicker:before,
    md-dialog md-dialog-actions .btn-symbol.md-confirm-button .colorpicker span.close-colorpicker:before,
    .colorpicker md-dialog md-dialog-actions .btn-symbol.md-confirm-button span.close-colorpicker:before,
    button.btn-symbol.primary span[class*=" icon-"]:before,
    label.btn-symbol.primary.label-btn span[class*=" icon-"]:before,
    md-dialog md-dialog-actions .btn-symbol.primary.md-cancel-button span[class*=" icon-"]:before,
    md-dialog md-dialog-actions .btn-symbol.md-confirm-button span[class*=" icon-"]:before {
      margin: 0; }
      .theme-cmix button.btn-symbol.primary:before, .theme-cmix label.btn-symbol.primary.label-btn:before, .theme-cmix md-dialog md-dialog-actions .btn-symbol.primary.md-cancel-button:before, md-dialog md-dialog-actions .theme-cmix .btn-symbol.primary.md-cancel-button:before, .theme-cmix md-dialog md-dialog-actions .btn-symbol.md-confirm-button:before, md-dialog md-dialog-actions .theme-cmix .btn-symbol.md-confirm-button:before, .theme-cmix button.btn-symbol.primary[class^="icon-"]:before, .theme-cmix label.btn-symbol.primary.label-btn[class^="icon-"]:before, .theme-cmix label.btn-symbol.primary.label-btn.promise-indicator:before, .theme-cmix table th.sortable label.btn-symbol.primary.label-btn.sort-btn:after, table th.sortable .theme-cmix label.btn-symbol.primary.label-btn.sort-btn:after, .theme-cmix label.btn-symbol.primary.label-btn.collapse-ctrl:before, .theme-cmix md-dialog label.btn-symbol.primary.label-btn.close-dialog:before, md-dialog .theme-cmix label.btn-symbol.primary.label-btn.close-dialog:before, .theme-cmix .colorpicker label.btn-symbol.primary.label-btn.close-colorpicker:before, .colorpicker .theme-cmix label.btn-symbol.primary.label-btn.close-colorpicker:before, .theme-cmix button.btn-symbol.primary.promise-indicator:before, .theme-cmix md-dialog md-dialog-actions .btn-symbol.primary.promise-indicator.md-cancel-button:before, md-dialog md-dialog-actions .theme-cmix .btn-symbol.primary.promise-indicator.md-cancel-button:before, .theme-cmix md-dialog md-dialog-actions .btn-symbol.promise-indicator.md-confirm-button:before, md-dialog md-dialog-actions .theme-cmix .btn-symbol.promise-indicator.md-confirm-button:before, .theme-cmix .people-card.-expandable button.btn-symbol.primary.expand-user:before, .people-card.-expandable .theme-cmix button.btn-symbol.primary.expand-user:before, .theme-cmix .people-card.-expandable label.btn-symbol.primary.expand-user.label-btn:before, .people-card.-expandable .theme-cmix label.btn-symbol.primary.expand-user.label-btn:before, .theme-cmix .people-card.-expandable md-dialog md-dialog-actions .btn-symbol.primary.expand-user.md-cancel-button:before, .people-card.-expandable md-dialog md-dialog-actions .theme-cmix .btn-symbol.primary.expand-user.md-cancel-button:before, .theme-cmix md-dialog md-dialog-actions .people-card.-expandable .btn-symbol.primary.expand-user.md-cancel-button:before, md-dialog md-dialog-actions .people-card.-expandable .theme-cmix .btn-symbol.primary.expand-user.md-cancel-button:before, .theme-cmix .people-card.-expandable md-dialog md-dialog-actions .btn-symbol.expand-user.md-confirm-button:before, .people-card.-expandable md-dialog md-dialog-actions .theme-cmix .btn-symbol.expand-user.md-confirm-button:before, .theme-cmix md-dialog md-dialog-actions .people-card.-expandable .btn-symbol.expand-user.md-confirm-button:before, md-dialog md-dialog-actions .people-card.-expandable .theme-cmix .btn-symbol.expand-user.md-confirm-button:before, .theme-cmix table th.sortable button.btn-symbol.primary.sort-btn:after, table th.sortable .theme-cmix button.btn-symbol.primary.sort-btn:after, .theme-cmix table th.sortable md-dialog md-dialog-actions .btn-symbol.primary.sort-btn.md-cancel-button:after, table th.sortable md-dialog md-dialog-actions .theme-cmix .btn-symbol.primary.sort-btn.md-cancel-button:after, .theme-cmix md-dialog md-dialog-actions table th.sortable .btn-symbol.primary.sort-btn.md-cancel-button:after, md-dialog md-dialog-actions table th.sortable .theme-cmix .btn-symbol.primary.sort-btn.md-cancel-button:after, .theme-cmix table th.sortable md-dialog md-dialog-actions .btn-symbol.sort-btn.md-confirm-button:after, table th.sortable md-dialog md-dialog-actions .theme-cmix .btn-symbol.sort-btn.md-confirm-button:after, .theme-cmix md-dialog md-dialog-actions table th.sortable .btn-symbol.sort-btn.md-confirm-button:after, md-dialog md-dialog-actions table th.sortable .theme-cmix .btn-symbol.sort-btn.md-confirm-button:after, .theme-cmix button.btn-symbol.primary.collapse-ctrl:before, .theme-cmix md-dialog md-dialog-actions .btn-symbol.primary.collapse-ctrl.md-cancel-button:before, md-dialog md-dialog-actions .theme-cmix .btn-symbol.primary.collapse-ctrl.md-cancel-button:before, .theme-cmix md-dialog md-dialog-actions .btn-symbol.collapse-ctrl.md-confirm-button:before, md-dialog md-dialog-actions .theme-cmix .btn-symbol.collapse-ctrl.md-confirm-button:before, .theme-cmix md-autocomplete .md-show-clear-button button.btn-symbol.primary, md-autocomplete .md-show-clear-button .theme-cmix button.btn-symbol.primary, .theme-cmix md-autocomplete .md-show-clear-button label.btn-symbol.primary.label-btn, md-autocomplete .md-show-clear-button .theme-cmix label.btn-symbol.primary.label-btn, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .btn-symbol.primary.md-cancel-button, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-cmix .btn-symbol.primary.md-cancel-button, .theme-cmix md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .btn-symbol.primary.md-cancel-button, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix .btn-symbol.primary.md-cancel-button, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .btn-symbol.md-confirm-button, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-cmix .btn-symbol.md-confirm-button, .theme-cmix md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .btn-symbol.md-confirm-button, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix .btn-symbol.md-confirm-button, .theme-cmix md-dialog button.btn-symbol.primary.close-dialog:before, md-dialog .theme-cmix button.btn-symbol.primary.close-dialog:before, .theme-cmix md-dialog md-dialog-actions .btn-symbol.primary.close-dialog.md-cancel-button:before, md-dialog md-dialog-actions .theme-cmix .btn-symbol.primary.close-dialog.md-cancel-button:before, .theme-cmix md-dialog md-dialog-actions .btn-symbol.close-dialog.md-confirm-button:before, md-dialog md-dialog-actions .theme-cmix .btn-symbol.close-dialog.md-confirm-button:before, .theme-cmix md-dialog md-dialog-actions .btn-symbol.primary.md-cancel-button[class^="icon-"]:before, md-dialog md-dialog-actions .theme-cmix .btn-symbol.primary.md-cancel-button[class^="icon-"]:before, .theme-cmix md-dialog md-dialog-actions .group-tag p.btn-symbol.primary.md-cancel-button:before, md-dialog md-dialog-actions .group-tag .theme-cmix p.btn-symbol.primary.md-cancel-button:before, .theme-cmix .group-tag md-dialog md-dialog-actions p.btn-symbol.primary.md-cancel-button:before, .group-tag md-dialog md-dialog-actions .theme-cmix p.btn-symbol.primary.md-cancel-button:before, .theme-cmix md-dialog md-dialog-actions .colorpicker .btn-symbol.primary.md-cancel-button.close-colorpicker:before, md-dialog md-dialog-actions .colorpicker .theme-cmix .btn-symbol.primary.md-cancel-button.close-colorpicker:before, .theme-cmix .colorpicker md-dialog md-dialog-actions .btn-symbol.primary.md-cancel-button.close-colorpicker:before, .colorpicker md-dialog md-dialog-actions .theme-cmix .btn-symbol.primary.md-cancel-button.close-colorpicker:before, .theme-cmix md-dialog md-dialog-actions .btn-symbol.md-confirm-button[class^="icon-"]:before, md-dialog md-dialog-actions .theme-cmix .btn-symbol.md-confirm-button[class^="icon-"]:before, .theme-cmix md-dialog md-dialog-actions .group-tag p.btn-symbol.md-confirm-button:before, md-dialog md-dialog-actions .group-tag .theme-cmix p.btn-symbol.md-confirm-button:before, .theme-cmix .group-tag md-dialog md-dialog-actions p.btn-symbol.md-confirm-button:before, .group-tag md-dialog md-dialog-actions .theme-cmix p.btn-symbol.md-confirm-button:before, .theme-cmix md-dialog md-dialog-actions .colorpicker .btn-symbol.md-confirm-button.close-colorpicker:before, md-dialog md-dialog-actions .colorpicker .theme-cmix .btn-symbol.md-confirm-button.close-colorpicker:before, .theme-cmix .colorpicker md-dialog md-dialog-actions .btn-symbol.md-confirm-button.close-colorpicker:before, .colorpicker md-dialog md-dialog-actions .theme-cmix .btn-symbol.md-confirm-button.close-colorpicker:before, .theme-cmix .colorpicker button.btn-symbol.primary.close-colorpicker:before, .colorpicker .theme-cmix button.btn-symbol.primary.close-colorpicker:before, .theme-cmix button.btn-symbol.primary[class*=" icon-"]:before, .theme-cmix label.btn-symbol.primary.label-btn[class*=" icon-"]:before, .theme-cmix md-dialog md-dialog-actions .btn-symbol.primary.md-cancel-button[class*=" icon-"]:before, md-dialog md-dialog-actions .theme-cmix .btn-symbol.primary.md-cancel-button[class*=" icon-"]:before, .theme-cmix md-dialog md-dialog-actions .btn-symbol.md-confirm-button[class*=" icon-"]:before, md-dialog md-dialog-actions .theme-cmix .btn-symbol.md-confirm-button[class*=" icon-"]:before, .theme-cmix button.btn-symbol.primary span[class^="icon-"]:before, .theme-cmix label.btn-symbol.primary.label-btn span[class^="icon-"]:before, .theme-cmix md-dialog md-dialog-actions .btn-symbol.primary.md-cancel-button span[class^="icon-"]:before, md-dialog md-dialog-actions .theme-cmix .btn-symbol.primary.md-cancel-button span[class^="icon-"]:before, .theme-cmix md-dialog md-dialog-actions .btn-symbol.md-confirm-button span[class^="icon-"]:before, md-dialog md-dialog-actions .theme-cmix .btn-symbol.md-confirm-button span[class^="icon-"]:before, .theme-cmix button.btn-symbol.primary span.promise-indicator:before, .theme-cmix label.btn-symbol.primary.label-btn span.promise-indicator:before, .theme-cmix md-dialog md-dialog-actions .btn-symbol.primary.md-cancel-button span.promise-indicator:before, md-dialog md-dialog-actions .theme-cmix .btn-symbol.primary.md-cancel-button span.promise-indicator:before, .theme-cmix md-dialog md-dialog-actions .btn-symbol.md-confirm-button span.promise-indicator:before, md-dialog md-dialog-actions .theme-cmix .btn-symbol.md-confirm-button span.promise-indicator:before, .theme-cmix button.btn-symbol.primary table th.sortable span.sort-btn:after, table th.sortable .theme-cmix button.btn-symbol.primary span.sort-btn:after, .theme-cmix label.btn-symbol.primary.label-btn table th.sortable span.sort-btn:after, table th.sortable .theme-cmix label.btn-symbol.primary.label-btn span.sort-btn:after, .theme-cmix md-dialog md-dialog-actions .btn-symbol.primary.md-cancel-button table th.sortable span.sort-btn:after, table th.sortable .theme-cmix md-dialog md-dialog-actions .btn-symbol.primary.md-cancel-button span.sort-btn:after, md-dialog md-dialog-actions .theme-cmix .btn-symbol.primary.md-cancel-button table th.sortable span.sort-btn:after, table th.sortable md-dialog md-dialog-actions .theme-cmix .btn-symbol.primary.md-cancel-button span.sort-btn:after, .theme-cmix md-dialog md-dialog-actions .btn-symbol.md-confirm-button table th.sortable span.sort-btn:after, table th.sortable .theme-cmix md-dialog md-dialog-actions .btn-symbol.md-confirm-button span.sort-btn:after, md-dialog md-dialog-actions .theme-cmix .btn-symbol.md-confirm-button table th.sortable span.sort-btn:after, table th.sortable md-dialog md-dialog-actions .theme-cmix .btn-symbol.md-confirm-button span.sort-btn:after, .theme-cmix button.btn-symbol.primary span.collapse-ctrl:before, .theme-cmix label.btn-symbol.primary.label-btn span.collapse-ctrl:before, .theme-cmix md-dialog md-dialog-actions .btn-symbol.primary.md-cancel-button span.collapse-ctrl:before, md-dialog md-dialog-actions .theme-cmix .btn-symbol.primary.md-cancel-button span.collapse-ctrl:before, .theme-cmix md-dialog md-dialog-actions .btn-symbol.md-confirm-button span.collapse-ctrl:before, md-dialog md-dialog-actions .theme-cmix .btn-symbol.md-confirm-button span.collapse-ctrl:before, .theme-cmix button.btn-symbol.primary md-dialog span.close-dialog:before, md-dialog .theme-cmix button.btn-symbol.primary span.close-dialog:before, .theme-cmix label.btn-symbol.primary.label-btn md-dialog span.close-dialog:before, md-dialog .theme-cmix label.btn-symbol.primary.label-btn span.close-dialog:before, .theme-cmix md-dialog md-dialog-actions .btn-symbol.primary.md-cancel-button span.close-dialog:before, md-dialog md-dialog-actions .theme-cmix .btn-symbol.primary.md-cancel-button span.close-dialog:before, .theme-cmix md-dialog md-dialog-actions .btn-symbol.md-confirm-button span.close-dialog:before, md-dialog md-dialog-actions .theme-cmix .btn-symbol.md-confirm-button span.close-dialog:before, .theme-cmix button.btn-symbol.primary .colorpicker span.close-colorpicker:before, .colorpicker .theme-cmix button.btn-symbol.primary span.close-colorpicker:before, .theme-cmix label.btn-symbol.primary.label-btn .colorpicker span.close-colorpicker:before, .colorpicker .theme-cmix label.btn-symbol.primary.label-btn span.close-colorpicker:before, .theme-cmix md-dialog md-dialog-actions .btn-symbol.primary.md-cancel-button .colorpicker span.close-colorpicker:before, .colorpicker .theme-cmix md-dialog md-dialog-actions .btn-symbol.primary.md-cancel-button span.close-colorpicker:before, md-dialog md-dialog-actions .theme-cmix .btn-symbol.primary.md-cancel-button .colorpicker span.close-colorpicker:before, .colorpicker md-dialog md-dialog-actions .theme-cmix .btn-symbol.primary.md-cancel-button span.close-colorpicker:before, .theme-cmix md-dialog md-dialog-actions .btn-symbol.md-confirm-button .colorpicker span.close-colorpicker:before, .colorpicker .theme-cmix md-dialog md-dialog-actions .btn-symbol.md-confirm-button span.close-colorpicker:before, md-dialog md-dialog-actions .theme-cmix .btn-symbol.md-confirm-button .colorpicker span.close-colorpicker:before, .colorpicker md-dialog md-dialog-actions .theme-cmix .btn-symbol.md-confirm-button span.close-colorpicker:before, .theme-cmix button.btn-symbol.primary span[class*=" icon-"]:before, .theme-cmix label.btn-symbol.primary.label-btn span[class*=" icon-"]:before, .theme-cmix md-dialog md-dialog-actions .btn-symbol.primary.md-cancel-button span[class*=" icon-"]:before, md-dialog md-dialog-actions .theme-cmix .btn-symbol.primary.md-cancel-button span[class*=" icon-"]:before, .theme-cmix md-dialog md-dialog-actions .btn-symbol.md-confirm-button span[class*=" icon-"]:before, md-dialog md-dialog-actions .theme-cmix .btn-symbol.md-confirm-button span[class*=" icon-"]:before {
        color: white; }
      .theme-marketview button.btn-symbol.primary:before, .theme-marketview label.btn-symbol.primary.label-btn:before, .theme-marketview md-dialog md-dialog-actions .btn-symbol.primary.md-cancel-button:before, md-dialog md-dialog-actions .theme-marketview .btn-symbol.primary.md-cancel-button:before, .theme-marketview md-dialog md-dialog-actions .btn-symbol.md-confirm-button:before, md-dialog md-dialog-actions .theme-marketview .btn-symbol.md-confirm-button:before, .theme-marketview button.btn-symbol.primary[class^="icon-"]:before, .theme-marketview label.btn-symbol.primary.label-btn[class^="icon-"]:before, .theme-marketview label.btn-symbol.primary.label-btn.promise-indicator:before, .theme-marketview table th.sortable label.btn-symbol.primary.label-btn.sort-btn:after, table th.sortable .theme-marketview label.btn-symbol.primary.label-btn.sort-btn:after, .theme-marketview label.btn-symbol.primary.label-btn.collapse-ctrl:before, .theme-marketview md-dialog label.btn-symbol.primary.label-btn.close-dialog:before, md-dialog .theme-marketview label.btn-symbol.primary.label-btn.close-dialog:before, .theme-marketview .colorpicker label.btn-symbol.primary.label-btn.close-colorpicker:before, .colorpicker .theme-marketview label.btn-symbol.primary.label-btn.close-colorpicker:before, .theme-marketview button.btn-symbol.primary.promise-indicator:before, .theme-marketview md-dialog md-dialog-actions .btn-symbol.primary.promise-indicator.md-cancel-button:before, md-dialog md-dialog-actions .theme-marketview .btn-symbol.primary.promise-indicator.md-cancel-button:before, .theme-marketview md-dialog md-dialog-actions .btn-symbol.promise-indicator.md-confirm-button:before, md-dialog md-dialog-actions .theme-marketview .btn-symbol.promise-indicator.md-confirm-button:before, .theme-marketview .people-card.-expandable button.btn-symbol.primary.expand-user:before, .people-card.-expandable .theme-marketview button.btn-symbol.primary.expand-user:before, .theme-marketview .people-card.-expandable label.btn-symbol.primary.expand-user.label-btn:before, .people-card.-expandable .theme-marketview label.btn-symbol.primary.expand-user.label-btn:before, .theme-marketview .people-card.-expandable md-dialog md-dialog-actions .btn-symbol.primary.expand-user.md-cancel-button:before, .people-card.-expandable md-dialog md-dialog-actions .theme-marketview .btn-symbol.primary.expand-user.md-cancel-button:before, .theme-marketview md-dialog md-dialog-actions .people-card.-expandable .btn-symbol.primary.expand-user.md-cancel-button:before, md-dialog md-dialog-actions .people-card.-expandable .theme-marketview .btn-symbol.primary.expand-user.md-cancel-button:before, .theme-marketview .people-card.-expandable md-dialog md-dialog-actions .btn-symbol.expand-user.md-confirm-button:before, .people-card.-expandable md-dialog md-dialog-actions .theme-marketview .btn-symbol.expand-user.md-confirm-button:before, .theme-marketview md-dialog md-dialog-actions .people-card.-expandable .btn-symbol.expand-user.md-confirm-button:before, md-dialog md-dialog-actions .people-card.-expandable .theme-marketview .btn-symbol.expand-user.md-confirm-button:before, .theme-marketview table th.sortable button.btn-symbol.primary.sort-btn:after, table th.sortable .theme-marketview button.btn-symbol.primary.sort-btn:after, .theme-marketview table th.sortable md-dialog md-dialog-actions .btn-symbol.primary.sort-btn.md-cancel-button:after, table th.sortable md-dialog md-dialog-actions .theme-marketview .btn-symbol.primary.sort-btn.md-cancel-button:after, .theme-marketview md-dialog md-dialog-actions table th.sortable .btn-symbol.primary.sort-btn.md-cancel-button:after, md-dialog md-dialog-actions table th.sortable .theme-marketview .btn-symbol.primary.sort-btn.md-cancel-button:after, .theme-marketview table th.sortable md-dialog md-dialog-actions .btn-symbol.sort-btn.md-confirm-button:after, table th.sortable md-dialog md-dialog-actions .theme-marketview .btn-symbol.sort-btn.md-confirm-button:after, .theme-marketview md-dialog md-dialog-actions table th.sortable .btn-symbol.sort-btn.md-confirm-button:after, md-dialog md-dialog-actions table th.sortable .theme-marketview .btn-symbol.sort-btn.md-confirm-button:after, .theme-marketview button.btn-symbol.primary.collapse-ctrl:before, .theme-marketview md-dialog md-dialog-actions .btn-symbol.primary.collapse-ctrl.md-cancel-button:before, md-dialog md-dialog-actions .theme-marketview .btn-symbol.primary.collapse-ctrl.md-cancel-button:before, .theme-marketview md-dialog md-dialog-actions .btn-symbol.collapse-ctrl.md-confirm-button:before, md-dialog md-dialog-actions .theme-marketview .btn-symbol.collapse-ctrl.md-confirm-button:before, .theme-marketview md-autocomplete .md-show-clear-button button.btn-symbol.primary, md-autocomplete .md-show-clear-button .theme-marketview button.btn-symbol.primary, .theme-marketview md-autocomplete .md-show-clear-button label.btn-symbol.primary.label-btn, md-autocomplete .md-show-clear-button .theme-marketview label.btn-symbol.primary.label-btn, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .btn-symbol.primary.md-cancel-button, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-marketview .btn-symbol.primary.md-cancel-button, .theme-marketview md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .btn-symbol.primary.md-cancel-button, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview .btn-symbol.primary.md-cancel-button, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .btn-symbol.md-confirm-button, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-marketview .btn-symbol.md-confirm-button, .theme-marketview md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .btn-symbol.md-confirm-button, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview .btn-symbol.md-confirm-button, .theme-marketview md-dialog button.btn-symbol.primary.close-dialog:before, md-dialog .theme-marketview button.btn-symbol.primary.close-dialog:before, .theme-marketview md-dialog md-dialog-actions .btn-symbol.primary.close-dialog.md-cancel-button:before, md-dialog md-dialog-actions .theme-marketview .btn-symbol.primary.close-dialog.md-cancel-button:before, .theme-marketview md-dialog md-dialog-actions .btn-symbol.close-dialog.md-confirm-button:before, md-dialog md-dialog-actions .theme-marketview .btn-symbol.close-dialog.md-confirm-button:before, .theme-marketview md-dialog md-dialog-actions .btn-symbol.primary.md-cancel-button[class^="icon-"]:before, md-dialog md-dialog-actions .theme-marketview .btn-symbol.primary.md-cancel-button[class^="icon-"]:before, .theme-marketview md-dialog md-dialog-actions .group-tag p.btn-symbol.primary.md-cancel-button:before, md-dialog md-dialog-actions .group-tag .theme-marketview p.btn-symbol.primary.md-cancel-button:before, .theme-marketview .group-tag md-dialog md-dialog-actions p.btn-symbol.primary.md-cancel-button:before, .group-tag md-dialog md-dialog-actions .theme-marketview p.btn-symbol.primary.md-cancel-button:before, .theme-marketview md-dialog md-dialog-actions .colorpicker .btn-symbol.primary.md-cancel-button.close-colorpicker:before, md-dialog md-dialog-actions .colorpicker .theme-marketview .btn-symbol.primary.md-cancel-button.close-colorpicker:before, .theme-marketview .colorpicker md-dialog md-dialog-actions .btn-symbol.primary.md-cancel-button.close-colorpicker:before, .colorpicker md-dialog md-dialog-actions .theme-marketview .btn-symbol.primary.md-cancel-button.close-colorpicker:before, .theme-marketview md-dialog md-dialog-actions .btn-symbol.md-confirm-button[class^="icon-"]:before, md-dialog md-dialog-actions .theme-marketview .btn-symbol.md-confirm-button[class^="icon-"]:before, .theme-marketview md-dialog md-dialog-actions .group-tag p.btn-symbol.md-confirm-button:before, md-dialog md-dialog-actions .group-tag .theme-marketview p.btn-symbol.md-confirm-button:before, .theme-marketview .group-tag md-dialog md-dialog-actions p.btn-symbol.md-confirm-button:before, .group-tag md-dialog md-dialog-actions .theme-marketview p.btn-symbol.md-confirm-button:before, .theme-marketview md-dialog md-dialog-actions .colorpicker .btn-symbol.md-confirm-button.close-colorpicker:before, md-dialog md-dialog-actions .colorpicker .theme-marketview .btn-symbol.md-confirm-button.close-colorpicker:before, .theme-marketview .colorpicker md-dialog md-dialog-actions .btn-symbol.md-confirm-button.close-colorpicker:before, .colorpicker md-dialog md-dialog-actions .theme-marketview .btn-symbol.md-confirm-button.close-colorpicker:before, .theme-marketview .colorpicker button.btn-symbol.primary.close-colorpicker:before, .colorpicker .theme-marketview button.btn-symbol.primary.close-colorpicker:before, .theme-marketview button.btn-symbol.primary[class*=" icon-"]:before, .theme-marketview label.btn-symbol.primary.label-btn[class*=" icon-"]:before, .theme-marketview md-dialog md-dialog-actions .btn-symbol.primary.md-cancel-button[class*=" icon-"]:before, md-dialog md-dialog-actions .theme-marketview .btn-symbol.primary.md-cancel-button[class*=" icon-"]:before, .theme-marketview md-dialog md-dialog-actions .btn-symbol.md-confirm-button[class*=" icon-"]:before, md-dialog md-dialog-actions .theme-marketview .btn-symbol.md-confirm-button[class*=" icon-"]:before, .theme-marketview button.btn-symbol.primary span[class^="icon-"]:before, .theme-marketview label.btn-symbol.primary.label-btn span[class^="icon-"]:before, .theme-marketview md-dialog md-dialog-actions .btn-symbol.primary.md-cancel-button span[class^="icon-"]:before, md-dialog md-dialog-actions .theme-marketview .btn-symbol.primary.md-cancel-button span[class^="icon-"]:before, .theme-marketview md-dialog md-dialog-actions .btn-symbol.md-confirm-button span[class^="icon-"]:before, md-dialog md-dialog-actions .theme-marketview .btn-symbol.md-confirm-button span[class^="icon-"]:before, .theme-marketview button.btn-symbol.primary span.promise-indicator:before, .theme-marketview label.btn-symbol.primary.label-btn span.promise-indicator:before, .theme-marketview md-dialog md-dialog-actions .btn-symbol.primary.md-cancel-button span.promise-indicator:before, md-dialog md-dialog-actions .theme-marketview .btn-symbol.primary.md-cancel-button span.promise-indicator:before, .theme-marketview md-dialog md-dialog-actions .btn-symbol.md-confirm-button span.promise-indicator:before, md-dialog md-dialog-actions .theme-marketview .btn-symbol.md-confirm-button span.promise-indicator:before, .theme-marketview button.btn-symbol.primary table th.sortable span.sort-btn:after, table th.sortable .theme-marketview button.btn-symbol.primary span.sort-btn:after, .theme-marketview label.btn-symbol.primary.label-btn table th.sortable span.sort-btn:after, table th.sortable .theme-marketview label.btn-symbol.primary.label-btn span.sort-btn:after, .theme-marketview md-dialog md-dialog-actions .btn-symbol.primary.md-cancel-button table th.sortable span.sort-btn:after, table th.sortable .theme-marketview md-dialog md-dialog-actions .btn-symbol.primary.md-cancel-button span.sort-btn:after, md-dialog md-dialog-actions .theme-marketview .btn-symbol.primary.md-cancel-button table th.sortable span.sort-btn:after, table th.sortable md-dialog md-dialog-actions .theme-marketview .btn-symbol.primary.md-cancel-button span.sort-btn:after, .theme-marketview md-dialog md-dialog-actions .btn-symbol.md-confirm-button table th.sortable span.sort-btn:after, table th.sortable .theme-marketview md-dialog md-dialog-actions .btn-symbol.md-confirm-button span.sort-btn:after, md-dialog md-dialog-actions .theme-marketview .btn-symbol.md-confirm-button table th.sortable span.sort-btn:after, table th.sortable md-dialog md-dialog-actions .theme-marketview .btn-symbol.md-confirm-button span.sort-btn:after, .theme-marketview button.btn-symbol.primary span.collapse-ctrl:before, .theme-marketview label.btn-symbol.primary.label-btn span.collapse-ctrl:before, .theme-marketview md-dialog md-dialog-actions .btn-symbol.primary.md-cancel-button span.collapse-ctrl:before, md-dialog md-dialog-actions .theme-marketview .btn-symbol.primary.md-cancel-button span.collapse-ctrl:before, .theme-marketview md-dialog md-dialog-actions .btn-symbol.md-confirm-button span.collapse-ctrl:before, md-dialog md-dialog-actions .theme-marketview .btn-symbol.md-confirm-button span.collapse-ctrl:before, .theme-marketview button.btn-symbol.primary md-dialog span.close-dialog:before, md-dialog .theme-marketview button.btn-symbol.primary span.close-dialog:before, .theme-marketview label.btn-symbol.primary.label-btn md-dialog span.close-dialog:before, md-dialog .theme-marketview label.btn-symbol.primary.label-btn span.close-dialog:before, .theme-marketview md-dialog md-dialog-actions .btn-symbol.primary.md-cancel-button span.close-dialog:before, md-dialog md-dialog-actions .theme-marketview .btn-symbol.primary.md-cancel-button span.close-dialog:before, .theme-marketview md-dialog md-dialog-actions .btn-symbol.md-confirm-button span.close-dialog:before, md-dialog md-dialog-actions .theme-marketview .btn-symbol.md-confirm-button span.close-dialog:before, .theme-marketview button.btn-symbol.primary .colorpicker span.close-colorpicker:before, .colorpicker .theme-marketview button.btn-symbol.primary span.close-colorpicker:before, .theme-marketview label.btn-symbol.primary.label-btn .colorpicker span.close-colorpicker:before, .colorpicker .theme-marketview label.btn-symbol.primary.label-btn span.close-colorpicker:before, .theme-marketview md-dialog md-dialog-actions .btn-symbol.primary.md-cancel-button .colorpicker span.close-colorpicker:before, .colorpicker .theme-marketview md-dialog md-dialog-actions .btn-symbol.primary.md-cancel-button span.close-colorpicker:before, md-dialog md-dialog-actions .theme-marketview .btn-symbol.primary.md-cancel-button .colorpicker span.close-colorpicker:before, .colorpicker md-dialog md-dialog-actions .theme-marketview .btn-symbol.primary.md-cancel-button span.close-colorpicker:before, .theme-marketview md-dialog md-dialog-actions .btn-symbol.md-confirm-button .colorpicker span.close-colorpicker:before, .colorpicker .theme-marketview md-dialog md-dialog-actions .btn-symbol.md-confirm-button span.close-colorpicker:before, md-dialog md-dialog-actions .theme-marketview .btn-symbol.md-confirm-button .colorpicker span.close-colorpicker:before, .colorpicker md-dialog md-dialog-actions .theme-marketview .btn-symbol.md-confirm-button span.close-colorpicker:before, .theme-marketview button.btn-symbol.primary span[class*=" icon-"]:before, .theme-marketview label.btn-symbol.primary.label-btn span[class*=" icon-"]:before, .theme-marketview md-dialog md-dialog-actions .btn-symbol.primary.md-cancel-button span[class*=" icon-"]:before, md-dialog md-dialog-actions .theme-marketview .btn-symbol.primary.md-cancel-button span[class*=" icon-"]:before, .theme-marketview md-dialog md-dialog-actions .btn-symbol.md-confirm-button span[class*=" icon-"]:before, md-dialog md-dialog-actions .theme-marketview .btn-symbol.md-confirm-button span[class*=" icon-"]:before {
        color: white; }
  button.btn-symbol:active:before, label.btn-symbol.label-btn:active:before, md-dialog md-dialog-actions .btn-symbol.md-cancel-button:active:before, md-dialog md-dialog-actions .btn-symbol.md-confirm-button:active:before, button.btn-symbol:active[class^="icon-"]:before, label.btn-symbol.label-btn:active[class^="icon-"]:before, label.btn-symbol.label-btn.promise-indicator:active:before, table th.sortable label.btn-symbol.label-btn.sort-btn:active:after, label.btn-symbol.label-btn.collapse-ctrl:active:before, md-dialog label.btn-symbol.label-btn.close-dialog:active:before, .colorpicker label.btn-symbol.label-btn.close-colorpicker:active:before, button.btn-symbol.promise-indicator:active:before, md-dialog md-dialog-actions .btn-symbol.promise-indicator.md-cancel-button:active:before, md-dialog md-dialog-actions .btn-symbol.promise-indicator.md-confirm-button:active:before, .people-card.-expandable button.btn-symbol.expand-user:active:before, .people-card.-expandable label.btn-symbol.expand-user.label-btn:active:before, .people-card.-expandable md-dialog md-dialog-actions .btn-symbol.expand-user.md-cancel-button:active:before, md-dialog md-dialog-actions .people-card.-expandable .btn-symbol.expand-user.md-cancel-button:active:before, .people-card.-expandable md-dialog md-dialog-actions .btn-symbol.expand-user.md-confirm-button:active:before, md-dialog md-dialog-actions .people-card.-expandable .btn-symbol.expand-user.md-confirm-button:active:before, table th.sortable button.btn-symbol.sort-btn:active:after, table th.sortable md-dialog md-dialog-actions .btn-symbol.sort-btn.md-cancel-button:active:after, md-dialog md-dialog-actions table th.sortable .btn-symbol.sort-btn.md-cancel-button:active:after, table th.sortable md-dialog md-dialog-actions .btn-symbol.sort-btn.md-confirm-button:active:after, md-dialog md-dialog-actions table th.sortable .btn-symbol.sort-btn.md-confirm-button:active:after, button.btn-symbol.collapse-ctrl:active:before, md-dialog md-dialog-actions .btn-symbol.collapse-ctrl.md-cancel-button:active:before, md-dialog md-dialog-actions .btn-symbol.collapse-ctrl.md-confirm-button:active:before, md-autocomplete .md-show-clear-button button.btn-symbol:active, md-autocomplete .md-show-clear-button label.btn-symbol.label-btn:active, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .btn-symbol.md-cancel-button:active, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .btn-symbol.md-cancel-button:active, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .btn-symbol.md-confirm-button:active, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .btn-symbol.md-confirm-button:active, md-dialog button.btn-symbol.close-dialog:active:before, md-dialog md-dialog-actions .btn-symbol.close-dialog.md-cancel-button:active:before, md-dialog md-dialog-actions .btn-symbol.close-dialog.md-confirm-button:active:before, md-dialog md-dialog-actions .btn-symbol.md-cancel-button:active[class^="icon-"]:before, md-dialog md-dialog-actions .group-tag p.btn-symbol.md-cancel-button:active:before, .group-tag md-dialog md-dialog-actions p.btn-symbol.md-cancel-button:active:before, md-dialog md-dialog-actions .colorpicker .btn-symbol.md-cancel-button.close-colorpicker:active:before, .colorpicker md-dialog md-dialog-actions .btn-symbol.md-cancel-button.close-colorpicker:active:before, md-dialog md-dialog-actions .btn-symbol.md-confirm-button:active[class^="icon-"]:before, md-dialog md-dialog-actions .group-tag p.btn-symbol.md-confirm-button:active:before, .group-tag md-dialog md-dialog-actions p.btn-symbol.md-confirm-button:active:before, md-dialog md-dialog-actions .colorpicker .btn-symbol.md-confirm-button.close-colorpicker:active:before, .colorpicker md-dialog md-dialog-actions .btn-symbol.md-confirm-button.close-colorpicker:active:before, .colorpicker button.btn-symbol.close-colorpicker:active:before, button.btn-symbol:active[class*=" icon-"]:before, label.btn-symbol.label-btn:active[class*=" icon-"]:before, md-dialog md-dialog-actions .btn-symbol.md-cancel-button:active[class*=" icon-"]:before, md-dialog md-dialog-actions .btn-symbol.md-confirm-button:active[class*=" icon-"]:before,
  button.btn-symbol:active span[class^="icon-"]:before,
  label.btn-symbol.label-btn:active span[class^="icon-"]:before,
  md-dialog md-dialog-actions .btn-symbol.md-cancel-button:active span[class^="icon-"]:before,
  md-dialog md-dialog-actions .btn-symbol.md-confirm-button:active span[class^="icon-"]:before,
  button.btn-symbol:active span.promise-indicator:before,
  label.btn-symbol.label-btn:active span.promise-indicator:before,
  md-dialog md-dialog-actions .btn-symbol.md-cancel-button:active span.promise-indicator:before,
  md-dialog md-dialog-actions .btn-symbol.md-confirm-button:active span.promise-indicator:before,
  button.btn-symbol:active table th.sortable span.sort-btn:after,
  table th.sortable button.btn-symbol:active span.sort-btn:after,
  label.btn-symbol.label-btn:active table th.sortable span.sort-btn:after,
  table th.sortable label.btn-symbol.label-btn:active span.sort-btn:after,
  md-dialog md-dialog-actions .btn-symbol.md-cancel-button:active table th.sortable span.sort-btn:after,
  table th.sortable md-dialog md-dialog-actions .btn-symbol.md-cancel-button:active span.sort-btn:after,
  md-dialog md-dialog-actions .btn-symbol.md-confirm-button:active table th.sortable span.sort-btn:after,
  table th.sortable md-dialog md-dialog-actions .btn-symbol.md-confirm-button:active span.sort-btn:after,
  button.btn-symbol:active span.collapse-ctrl:before,
  label.btn-symbol.label-btn:active span.collapse-ctrl:before,
  md-dialog md-dialog-actions .btn-symbol.md-cancel-button:active span.collapse-ctrl:before,
  md-dialog md-dialog-actions .btn-symbol.md-confirm-button:active span.collapse-ctrl:before,
  button.btn-symbol:active md-dialog span.close-dialog:before,
  md-dialog button.btn-symbol:active span.close-dialog:before,
  label.btn-symbol.label-btn:active md-dialog span.close-dialog:before,
  md-dialog label.btn-symbol.label-btn:active span.close-dialog:before,
  md-dialog md-dialog-actions .btn-symbol.md-cancel-button:active span.close-dialog:before,
  md-dialog md-dialog-actions .btn-symbol.md-confirm-button:active span.close-dialog:before,
  button.btn-symbol:active .colorpicker span.close-colorpicker:before,
  .colorpicker button.btn-symbol:active span.close-colorpicker:before,
  label.btn-symbol.label-btn:active .colorpicker span.close-colorpicker:before,
  .colorpicker label.btn-symbol.label-btn:active span.close-colorpicker:before,
  md-dialog md-dialog-actions .btn-symbol.md-cancel-button:active .colorpicker span.close-colorpicker:before,
  .colorpicker md-dialog md-dialog-actions .btn-symbol.md-cancel-button:active span.close-colorpicker:before,
  md-dialog md-dialog-actions .btn-symbol.md-confirm-button:active .colorpicker span.close-colorpicker:before,
  .colorpicker md-dialog md-dialog-actions .btn-symbol.md-confirm-button:active span.close-colorpicker:before,
  button.btn-symbol:active span[class*=" icon-"]:before,
  label.btn-symbol.label-btn:active span[class*=" icon-"]:before,
  md-dialog md-dialog-actions .btn-symbol.md-cancel-button:active span[class*=" icon-"]:before,
  md-dialog md-dialog-actions .btn-symbol.md-confirm-button:active span[class*=" icon-"]:before, button.btn-symbol.active:before, label.btn-symbol.active.label-btn:before, md-dialog md-dialog-actions .btn-symbol.active.md-cancel-button:before, md-dialog md-dialog-actions .btn-symbol.active.md-confirm-button:before, button.btn-symbol.active[class^="icon-"]:before, label.btn-symbol.active.label-btn[class^="icon-"]:before, label.btn-symbol.active.label-btn.promise-indicator:before, table th.sortable label.btn-symbol.active.label-btn.sort-btn:after, label.btn-symbol.active.label-btn.collapse-ctrl:before, md-dialog label.btn-symbol.active.label-btn.close-dialog:before, .colorpicker label.btn-symbol.active.label-btn.close-colorpicker:before, button.btn-symbol.active.promise-indicator:before, md-dialog md-dialog-actions .btn-symbol.active.promise-indicator.md-cancel-button:before, md-dialog md-dialog-actions .btn-symbol.active.promise-indicator.md-confirm-button:before, .people-card.-expandable button.btn-symbol.active.expand-user:before, .people-card.-expandable label.btn-symbol.active.expand-user.label-btn:before, .people-card.-expandable md-dialog md-dialog-actions .btn-symbol.active.expand-user.md-cancel-button:before, md-dialog md-dialog-actions .people-card.-expandable .btn-symbol.active.expand-user.md-cancel-button:before, .people-card.-expandable md-dialog md-dialog-actions .btn-symbol.active.expand-user.md-confirm-button:before, md-dialog md-dialog-actions .people-card.-expandable .btn-symbol.active.expand-user.md-confirm-button:before, table th.sortable button.btn-symbol.active.sort-btn:after, table th.sortable md-dialog md-dialog-actions .btn-symbol.active.sort-btn.md-cancel-button:after, md-dialog md-dialog-actions table th.sortable .btn-symbol.active.sort-btn.md-cancel-button:after, table th.sortable md-dialog md-dialog-actions .btn-symbol.active.sort-btn.md-confirm-button:after, md-dialog md-dialog-actions table th.sortable .btn-symbol.active.sort-btn.md-confirm-button:after, button.btn-symbol.active.collapse-ctrl:before, md-dialog md-dialog-actions .btn-symbol.active.collapse-ctrl.md-cancel-button:before, md-dialog md-dialog-actions .btn-symbol.active.collapse-ctrl.md-confirm-button:before, md-autocomplete .md-show-clear-button button.btn-symbol.active, md-autocomplete .md-show-clear-button label.btn-symbol.active.label-btn, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .btn-symbol.active.md-cancel-button, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .btn-symbol.active.md-cancel-button, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .btn-symbol.active.md-confirm-button, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .btn-symbol.active.md-confirm-button, md-dialog button.btn-symbol.active.close-dialog:before, md-dialog md-dialog-actions .btn-symbol.active.close-dialog.md-cancel-button:before, md-dialog md-dialog-actions .btn-symbol.active.close-dialog.md-confirm-button:before, md-dialog md-dialog-actions .btn-symbol.active.md-cancel-button[class^="icon-"]:before, md-dialog md-dialog-actions .group-tag p.btn-symbol.active.md-cancel-button:before, .group-tag md-dialog md-dialog-actions p.btn-symbol.active.md-cancel-button:before, md-dialog md-dialog-actions .colorpicker .btn-symbol.active.md-cancel-button.close-colorpicker:before, .colorpicker md-dialog md-dialog-actions .btn-symbol.active.md-cancel-button.close-colorpicker:before, md-dialog md-dialog-actions .btn-symbol.active.md-confirm-button[class^="icon-"]:before, md-dialog md-dialog-actions .group-tag p.btn-symbol.active.md-confirm-button:before, .group-tag md-dialog md-dialog-actions p.btn-symbol.active.md-confirm-button:before, md-dialog md-dialog-actions .colorpicker .btn-symbol.active.md-confirm-button.close-colorpicker:before, .colorpicker md-dialog md-dialog-actions .btn-symbol.active.md-confirm-button.close-colorpicker:before, .colorpicker button.btn-symbol.active.close-colorpicker:before, button.btn-symbol.active[class*=" icon-"]:before, label.btn-symbol.active.label-btn[class*=" icon-"]:before, md-dialog md-dialog-actions .btn-symbol.active.md-cancel-button[class*=" icon-"]:before, md-dialog md-dialog-actions .btn-symbol.active.md-confirm-button[class*=" icon-"]:before,
  button.btn-symbol.active span[class^="icon-"]:before,
  label.btn-symbol.active.label-btn span[class^="icon-"]:before,
  md-dialog md-dialog-actions .btn-symbol.active.md-cancel-button span[class^="icon-"]:before,
  md-dialog md-dialog-actions .btn-symbol.active.md-confirm-button span[class^="icon-"]:before,
  button.btn-symbol.active span.promise-indicator:before,
  label.btn-symbol.active.label-btn span.promise-indicator:before,
  md-dialog md-dialog-actions .btn-symbol.active.md-cancel-button span.promise-indicator:before,
  md-dialog md-dialog-actions .btn-symbol.active.md-confirm-button span.promise-indicator:before,
  button.btn-symbol.active table th.sortable span.sort-btn:after,
  table th.sortable button.btn-symbol.active span.sort-btn:after,
  label.btn-symbol.active.label-btn table th.sortable span.sort-btn:after,
  table th.sortable label.btn-symbol.active.label-btn span.sort-btn:after,
  md-dialog md-dialog-actions .btn-symbol.active.md-cancel-button table th.sortable span.sort-btn:after,
  table th.sortable md-dialog md-dialog-actions .btn-symbol.active.md-cancel-button span.sort-btn:after,
  md-dialog md-dialog-actions .btn-symbol.active.md-confirm-button table th.sortable span.sort-btn:after,
  table th.sortable md-dialog md-dialog-actions .btn-symbol.active.md-confirm-button span.sort-btn:after,
  button.btn-symbol.active span.collapse-ctrl:before,
  label.btn-symbol.active.label-btn span.collapse-ctrl:before,
  md-dialog md-dialog-actions .btn-symbol.active.md-cancel-button span.collapse-ctrl:before,
  md-dialog md-dialog-actions .btn-symbol.active.md-confirm-button span.collapse-ctrl:before,
  button.btn-symbol.active md-dialog span.close-dialog:before,
  md-dialog button.btn-symbol.active span.close-dialog:before,
  label.btn-symbol.active.label-btn md-dialog span.close-dialog:before,
  md-dialog label.btn-symbol.active.label-btn span.close-dialog:before,
  md-dialog md-dialog-actions .btn-symbol.active.md-cancel-button span.close-dialog:before,
  md-dialog md-dialog-actions .btn-symbol.active.md-confirm-button span.close-dialog:before,
  button.btn-symbol.active .colorpicker span.close-colorpicker:before,
  .colorpicker button.btn-symbol.active span.close-colorpicker:before,
  label.btn-symbol.active.label-btn .colorpicker span.close-colorpicker:before,
  .colorpicker label.btn-symbol.active.label-btn span.close-colorpicker:before,
  md-dialog md-dialog-actions .btn-symbol.active.md-cancel-button .colorpicker span.close-colorpicker:before,
  .colorpicker md-dialog md-dialog-actions .btn-symbol.active.md-cancel-button span.close-colorpicker:before,
  md-dialog md-dialog-actions .btn-symbol.active.md-confirm-button .colorpicker span.close-colorpicker:before,
  .colorpicker md-dialog md-dialog-actions .btn-symbol.active.md-confirm-button span.close-colorpicker:before,
  button.btn-symbol.active span[class*=" icon-"]:before,
  label.btn-symbol.active.label-btn span[class*=" icon-"]:before,
  md-dialog md-dialog-actions .btn-symbol.active.md-cancel-button span[class*=" icon-"]:before,
  md-dialog md-dialog-actions .btn-symbol.active.md-confirm-button span[class*=" icon-"]:before {
    color: white; }

/**
* __Usage:__ Only for the "next logical step", such as "save", "next", etc. Only one per view.
*
* The user should expect that they can reliably click this to progress without necessarily having to really read it.
*
* Add the class `danger` to make a red primary button. For when an action is irreversible/dangerous.
*
* @section Primary Button
* @sectionof Buttons
* @example
* <button class="primary">Primary Button</button>
* <button class="primary disabled">Disabled Primary Button</button>
* <button class="primary danger">Dangerous Primary Button</button>
*/
button.primary, label.primary.label-btn, md-dialog md-dialog-actions .primary.md-cancel-button, md-dialog md-dialog-actions .md-confirm-button {
  color: white;
  border: none;
  line-height: 36px; }
  button.primary.danger, label.primary.danger.label-btn, md-dialog md-dialog-actions .primary.danger.md-cancel-button, md-dialog md-dialog-actions .danger.md-confirm-button {
    color: white; }
    button.primary.danger:hover, label.primary.danger.label-btn:hover, md-dialog md-dialog-actions .primary.danger.md-cancel-button:hover, md-dialog md-dialog-actions .danger.md-confirm-button:hover, button.primary.danger:focus, label.primary.danger.label-btn:focus, md-dialog md-dialog-actions .primary.danger.md-cancel-button:focus, md-dialog md-dialog-actions .danger.md-confirm-button:focus {
      color: white; }
  button.primary:hover, label.primary.label-btn:hover, md-dialog md-dialog-actions .primary.md-cancel-button:hover, md-dialog md-dialog-actions .md-confirm-button:hover, button.primary:focus, label.primary.label-btn:focus, md-dialog md-dialog-actions .primary.md-cancel-button:focus, md-dialog md-dialog-actions .md-confirm-button:focus {
    color: white; }
  .theme-cmix button.primary, .theme-cmix label.primary.label-btn, .theme-cmix md-dialog md-dialog-actions .primary.md-cancel-button, md-dialog md-dialog-actions .theme-cmix .primary.md-cancel-button, .theme-cmix md-dialog md-dialog-actions .md-confirm-button, md-dialog md-dialog-actions .theme-cmix .md-confirm-button {
    background-color: #3EA8DD; }
    .theme-cmix button.primary:before, .theme-cmix label.primary.label-btn:before, .theme-cmix md-dialog md-dialog-actions .primary.md-cancel-button:before, md-dialog md-dialog-actions .theme-cmix .primary.md-cancel-button:before, .theme-cmix md-dialog md-dialog-actions .md-confirm-button:before, md-dialog md-dialog-actions .theme-cmix .md-confirm-button:before,
    .theme-cmix button.primary span[class^="icon-"]:before,
    .theme-cmix label.primary.label-btn span[class^="icon-"]:before,
    .theme-cmix md-dialog md-dialog-actions .primary.md-cancel-button span[class^="icon-"]:before,
    md-dialog md-dialog-actions .theme-cmix .primary.md-cancel-button span[class^="icon-"]:before,
    .theme-cmix md-dialog md-dialog-actions .md-confirm-button span[class^="icon-"]:before,
    md-dialog md-dialog-actions .theme-cmix .md-confirm-button span[class^="icon-"]:before,
    .theme-cmix button.primary span.promise-indicator:before,
    .theme-cmix label.primary.label-btn span.promise-indicator:before,
    .theme-cmix md-dialog md-dialog-actions .primary.md-cancel-button span.promise-indicator:before,
    md-dialog md-dialog-actions .theme-cmix .primary.md-cancel-button span.promise-indicator:before,
    .theme-cmix md-dialog md-dialog-actions .md-confirm-button span.promise-indicator:before,
    md-dialog md-dialog-actions .theme-cmix .md-confirm-button span.promise-indicator:before,
    .theme-cmix button.primary table th.sortable span.sort-btn:after,
    table th.sortable .theme-cmix button.primary span.sort-btn:after,
    .theme-cmix label.primary.label-btn table th.sortable span.sort-btn:after,
    table th.sortable .theme-cmix label.primary.label-btn span.sort-btn:after,
    .theme-cmix md-dialog md-dialog-actions .primary.md-cancel-button table th.sortable span.sort-btn:after,
    table th.sortable .theme-cmix md-dialog md-dialog-actions .primary.md-cancel-button span.sort-btn:after,
    md-dialog md-dialog-actions .theme-cmix .primary.md-cancel-button table th.sortable span.sort-btn:after,
    table th.sortable md-dialog md-dialog-actions .theme-cmix .primary.md-cancel-button span.sort-btn:after,
    .theme-cmix md-dialog md-dialog-actions .md-confirm-button table th.sortable span.sort-btn:after,
    table th.sortable .theme-cmix md-dialog md-dialog-actions .md-confirm-button span.sort-btn:after,
    md-dialog md-dialog-actions .theme-cmix .md-confirm-button table th.sortable span.sort-btn:after,
    table th.sortable md-dialog md-dialog-actions .theme-cmix .md-confirm-button span.sort-btn:after,
    .theme-cmix button.primary span.collapse-ctrl:before,
    .theme-cmix label.primary.label-btn span.collapse-ctrl:before,
    .theme-cmix md-dialog md-dialog-actions .primary.md-cancel-button span.collapse-ctrl:before,
    md-dialog md-dialog-actions .theme-cmix .primary.md-cancel-button span.collapse-ctrl:before,
    .theme-cmix md-dialog md-dialog-actions .md-confirm-button span.collapse-ctrl:before,
    md-dialog md-dialog-actions .theme-cmix .md-confirm-button span.collapse-ctrl:before,
    .theme-cmix button.primary md-dialog span.close-dialog:before,
    md-dialog .theme-cmix button.primary span.close-dialog:before,
    .theme-cmix label.primary.label-btn md-dialog span.close-dialog:before,
    md-dialog .theme-cmix label.primary.label-btn span.close-dialog:before,
    .theme-cmix md-dialog md-dialog-actions .primary.md-cancel-button span.close-dialog:before,
    md-dialog md-dialog-actions .theme-cmix .primary.md-cancel-button span.close-dialog:before,
    .theme-cmix md-dialog md-dialog-actions .md-confirm-button span.close-dialog:before,
    md-dialog md-dialog-actions .theme-cmix .md-confirm-button span.close-dialog:before,
    .theme-cmix button.primary .colorpicker span.close-colorpicker:before,
    .colorpicker .theme-cmix button.primary span.close-colorpicker:before,
    .theme-cmix label.primary.label-btn .colorpicker span.close-colorpicker:before,
    .colorpicker .theme-cmix label.primary.label-btn span.close-colorpicker:before,
    .theme-cmix md-dialog md-dialog-actions .primary.md-cancel-button .colorpicker span.close-colorpicker:before,
    .colorpicker .theme-cmix md-dialog md-dialog-actions .primary.md-cancel-button span.close-colorpicker:before,
    md-dialog md-dialog-actions .theme-cmix .primary.md-cancel-button .colorpicker span.close-colorpicker:before,
    .colorpicker md-dialog md-dialog-actions .theme-cmix .primary.md-cancel-button span.close-colorpicker:before,
    .theme-cmix md-dialog md-dialog-actions .md-confirm-button .colorpicker span.close-colorpicker:before,
    .colorpicker .theme-cmix md-dialog md-dialog-actions .md-confirm-button span.close-colorpicker:before,
    md-dialog md-dialog-actions .theme-cmix .md-confirm-button .colorpicker span.close-colorpicker:before,
    .colorpicker md-dialog md-dialog-actions .theme-cmix .md-confirm-button span.close-colorpicker:before,
    .theme-cmix button.primary span[class*=" icon-"]:before,
    .theme-cmix label.primary.label-btn span[class*=" icon-"]:before,
    .theme-cmix md-dialog md-dialog-actions .primary.md-cancel-button span[class*=" icon-"]:before,
    md-dialog md-dialog-actions .theme-cmix .primary.md-cancel-button span[class*=" icon-"]:before,
    .theme-cmix md-dialog md-dialog-actions .md-confirm-button span[class*=" icon-"]:before,
    md-dialog md-dialog-actions .theme-cmix .md-confirm-button span[class*=" icon-"]:before {
      color: white; }
    .theme-cmix button.primary.danger, .theme-cmix label.primary.danger.label-btn, .theme-cmix md-dialog md-dialog-actions .primary.danger.md-cancel-button, md-dialog md-dialog-actions .theme-cmix .primary.danger.md-cancel-button, .theme-cmix md-dialog md-dialog-actions .danger.md-confirm-button, md-dialog md-dialog-actions .theme-cmix .danger.md-confirm-button {
      background-color: #DF4E71; }
      .theme-cmix button.primary.danger:hover, .theme-cmix label.primary.danger.label-btn:hover, .theme-cmix md-dialog md-dialog-actions .primary.danger.md-cancel-button:hover, md-dialog md-dialog-actions .theme-cmix .primary.danger.md-cancel-button:hover, .theme-cmix md-dialog md-dialog-actions .danger.md-confirm-button:hover, md-dialog md-dialog-actions .theme-cmix .danger.md-confirm-button:hover, .theme-cmix button.primary.danger:focus, .theme-cmix label.primary.danger.label-btn:focus, .theme-cmix md-dialog md-dialog-actions .primary.danger.md-cancel-button:focus, md-dialog md-dialog-actions .theme-cmix .primary.danger.md-cancel-button:focus, .theme-cmix md-dialog md-dialog-actions .danger.md-confirm-button:focus, md-dialog md-dialog-actions .theme-cmix .danger.md-confirm-button:focus {
        background-color: #db3860; }
      .theme-cmix button.primary.danger:active, .theme-cmix label.primary.danger.label-btn:active, .theme-cmix md-dialog md-dialog-actions .primary.danger.md-cancel-button:active, md-dialog md-dialog-actions .theme-cmix .primary.danger.md-cancel-button:active, .theme-cmix md-dialog md-dialog-actions .danger.md-confirm-button:active, md-dialog md-dialog-actions .theme-cmix .danger.md-confirm-button:active {
        background-color: #d42650; }
    .theme-cmix button.primary:hover, .theme-cmix label.primary.label-btn:hover, .theme-cmix md-dialog md-dialog-actions .primary.md-cancel-button:hover, md-dialog md-dialog-actions .theme-cmix .primary.md-cancel-button:hover, .theme-cmix md-dialog md-dialog-actions .md-confirm-button:hover, md-dialog md-dialog-actions .theme-cmix .md-confirm-button:hover, .theme-cmix button.primary:focus, .theme-cmix label.primary.label-btn:focus, .theme-cmix md-dialog md-dialog-actions .primary.md-cancel-button:focus, md-dialog md-dialog-actions .theme-cmix .primary.md-cancel-button:focus, .theme-cmix md-dialog md-dialog-actions .md-confirm-button:focus, md-dialog md-dialog-actions .theme-cmix .md-confirm-button:focus {
      background-color: #289ed9; }
    .theme-cmix button.primary:active, .theme-cmix label.primary.label-btn:active, .theme-cmix md-dialog md-dialog-actions .primary.md-cancel-button:active, md-dialog md-dialog-actions .theme-cmix .primary.md-cancel-button:active, .theme-cmix md-dialog md-dialog-actions .md-confirm-button:active, md-dialog md-dialog-actions .theme-cmix .md-confirm-button:active {
      background-color: #238fc5; }
  .theme-marketview button.primary, .theme-marketview label.primary.label-btn, .theme-marketview md-dialog md-dialog-actions .primary.md-cancel-button, md-dialog md-dialog-actions .theme-marketview .primary.md-cancel-button, .theme-marketview md-dialog md-dialog-actions .md-confirm-button, md-dialog md-dialog-actions .theme-marketview .md-confirm-button {
    background-color: #115FA6; }
    .theme-marketview button.primary:before, .theme-marketview label.primary.label-btn:before, .theme-marketview md-dialog md-dialog-actions .primary.md-cancel-button:before, md-dialog md-dialog-actions .theme-marketview .primary.md-cancel-button:before, .theme-marketview md-dialog md-dialog-actions .md-confirm-button:before, md-dialog md-dialog-actions .theme-marketview .md-confirm-button:before,
    .theme-marketview button.primary span[class^="icon-"]:before,
    .theme-marketview label.primary.label-btn span[class^="icon-"]:before,
    .theme-marketview md-dialog md-dialog-actions .primary.md-cancel-button span[class^="icon-"]:before,
    md-dialog md-dialog-actions .theme-marketview .primary.md-cancel-button span[class^="icon-"]:before,
    .theme-marketview md-dialog md-dialog-actions .md-confirm-button span[class^="icon-"]:before,
    md-dialog md-dialog-actions .theme-marketview .md-confirm-button span[class^="icon-"]:before,
    .theme-marketview button.primary span.promise-indicator:before,
    .theme-marketview label.primary.label-btn span.promise-indicator:before,
    .theme-marketview md-dialog md-dialog-actions .primary.md-cancel-button span.promise-indicator:before,
    md-dialog md-dialog-actions .theme-marketview .primary.md-cancel-button span.promise-indicator:before,
    .theme-marketview md-dialog md-dialog-actions .md-confirm-button span.promise-indicator:before,
    md-dialog md-dialog-actions .theme-marketview .md-confirm-button span.promise-indicator:before,
    .theme-marketview button.primary table th.sortable span.sort-btn:after,
    table th.sortable .theme-marketview button.primary span.sort-btn:after,
    .theme-marketview label.primary.label-btn table th.sortable span.sort-btn:after,
    table th.sortable .theme-marketview label.primary.label-btn span.sort-btn:after,
    .theme-marketview md-dialog md-dialog-actions .primary.md-cancel-button table th.sortable span.sort-btn:after,
    table th.sortable .theme-marketview md-dialog md-dialog-actions .primary.md-cancel-button span.sort-btn:after,
    md-dialog md-dialog-actions .theme-marketview .primary.md-cancel-button table th.sortable span.sort-btn:after,
    table th.sortable md-dialog md-dialog-actions .theme-marketview .primary.md-cancel-button span.sort-btn:after,
    .theme-marketview md-dialog md-dialog-actions .md-confirm-button table th.sortable span.sort-btn:after,
    table th.sortable .theme-marketview md-dialog md-dialog-actions .md-confirm-button span.sort-btn:after,
    md-dialog md-dialog-actions .theme-marketview .md-confirm-button table th.sortable span.sort-btn:after,
    table th.sortable md-dialog md-dialog-actions .theme-marketview .md-confirm-button span.sort-btn:after,
    .theme-marketview button.primary span.collapse-ctrl:before,
    .theme-marketview label.primary.label-btn span.collapse-ctrl:before,
    .theme-marketview md-dialog md-dialog-actions .primary.md-cancel-button span.collapse-ctrl:before,
    md-dialog md-dialog-actions .theme-marketview .primary.md-cancel-button span.collapse-ctrl:before,
    .theme-marketview md-dialog md-dialog-actions .md-confirm-button span.collapse-ctrl:before,
    md-dialog md-dialog-actions .theme-marketview .md-confirm-button span.collapse-ctrl:before,
    .theme-marketview button.primary md-dialog span.close-dialog:before,
    md-dialog .theme-marketview button.primary span.close-dialog:before,
    .theme-marketview label.primary.label-btn md-dialog span.close-dialog:before,
    md-dialog .theme-marketview label.primary.label-btn span.close-dialog:before,
    .theme-marketview md-dialog md-dialog-actions .primary.md-cancel-button span.close-dialog:before,
    md-dialog md-dialog-actions .theme-marketview .primary.md-cancel-button span.close-dialog:before,
    .theme-marketview md-dialog md-dialog-actions .md-confirm-button span.close-dialog:before,
    md-dialog md-dialog-actions .theme-marketview .md-confirm-button span.close-dialog:before,
    .theme-marketview button.primary .colorpicker span.close-colorpicker:before,
    .colorpicker .theme-marketview button.primary span.close-colorpicker:before,
    .theme-marketview label.primary.label-btn .colorpicker span.close-colorpicker:before,
    .colorpicker .theme-marketview label.primary.label-btn span.close-colorpicker:before,
    .theme-marketview md-dialog md-dialog-actions .primary.md-cancel-button .colorpicker span.close-colorpicker:before,
    .colorpicker .theme-marketview md-dialog md-dialog-actions .primary.md-cancel-button span.close-colorpicker:before,
    md-dialog md-dialog-actions .theme-marketview .primary.md-cancel-button .colorpicker span.close-colorpicker:before,
    .colorpicker md-dialog md-dialog-actions .theme-marketview .primary.md-cancel-button span.close-colorpicker:before,
    .theme-marketview md-dialog md-dialog-actions .md-confirm-button .colorpicker span.close-colorpicker:before,
    .colorpicker .theme-marketview md-dialog md-dialog-actions .md-confirm-button span.close-colorpicker:before,
    md-dialog md-dialog-actions .theme-marketview .md-confirm-button .colorpicker span.close-colorpicker:before,
    .colorpicker md-dialog md-dialog-actions .theme-marketview .md-confirm-button span.close-colorpicker:before,
    .theme-marketview button.primary span[class*=" icon-"]:before,
    .theme-marketview label.primary.label-btn span[class*=" icon-"]:before,
    .theme-marketview md-dialog md-dialog-actions .primary.md-cancel-button span[class*=" icon-"]:before,
    md-dialog md-dialog-actions .theme-marketview .primary.md-cancel-button span[class*=" icon-"]:before,
    .theme-marketview md-dialog md-dialog-actions .md-confirm-button span[class*=" icon-"]:before,
    md-dialog md-dialog-actions .theme-marketview .md-confirm-button span[class*=" icon-"]:before {
      color: white; }
    .theme-marketview button.primary.danger, .theme-marketview label.primary.danger.label-btn, .theme-marketview md-dialog md-dialog-actions .primary.danger.md-cancel-button, md-dialog md-dialog-actions .theme-marketview .primary.danger.md-cancel-button, .theme-marketview md-dialog md-dialog-actions .danger.md-confirm-button, md-dialog md-dialog-actions .theme-marketview .danger.md-confirm-button {
      background-color: #DF4E71; }
      .theme-marketview button.primary.danger:hover, .theme-marketview label.primary.danger.label-btn:hover, .theme-marketview md-dialog md-dialog-actions .primary.danger.md-cancel-button:hover, md-dialog md-dialog-actions .theme-marketview .primary.danger.md-cancel-button:hover, .theme-marketview md-dialog md-dialog-actions .danger.md-confirm-button:hover, md-dialog md-dialog-actions .theme-marketview .danger.md-confirm-button:hover, .theme-marketview button.primary.danger:focus, .theme-marketview label.primary.danger.label-btn:focus, .theme-marketview md-dialog md-dialog-actions .primary.danger.md-cancel-button:focus, md-dialog md-dialog-actions .theme-marketview .primary.danger.md-cancel-button:focus, .theme-marketview md-dialog md-dialog-actions .danger.md-confirm-button:focus, md-dialog md-dialog-actions .theme-marketview .danger.md-confirm-button:focus {
        background-color: #db3860; }
      .theme-marketview button.primary.danger:active, .theme-marketview label.primary.danger.label-btn:active, .theme-marketview md-dialog md-dialog-actions .primary.danger.md-cancel-button:active, md-dialog md-dialog-actions .theme-marketview .primary.danger.md-cancel-button:active, .theme-marketview md-dialog md-dialog-actions .danger.md-confirm-button:active, md-dialog md-dialog-actions .theme-marketview .danger.md-confirm-button:active {
        background-color: #d42650; }
    .theme-marketview button.primary:hover, .theme-marketview label.primary.label-btn:hover, .theme-marketview md-dialog md-dialog-actions .primary.md-cancel-button:hover, md-dialog md-dialog-actions .theme-marketview .primary.md-cancel-button:hover, .theme-marketview md-dialog md-dialog-actions .md-confirm-button:hover, md-dialog md-dialog-actions .theme-marketview .md-confirm-button:hover, .theme-marketview button.primary:focus, .theme-marketview label.primary.label-btn:focus, .theme-marketview md-dialog md-dialog-actions .primary.md-cancel-button:focus, md-dialog md-dialog-actions .theme-marketview .primary.md-cancel-button:focus, .theme-marketview md-dialog md-dialog-actions .md-confirm-button:focus, md-dialog md-dialog-actions .theme-marketview .md-confirm-button:focus {
      background-color: #0f528f; }
    .theme-marketview button.primary:active, .theme-marketview label.primary.label-btn:active, .theme-marketview md-dialog md-dialog-actions .primary.md-cancel-button:active, md-dialog md-dialog-actions .theme-marketview .primary.md-cancel-button:active, .theme-marketview md-dialog md-dialog-actions .md-confirm-button:active, md-dialog md-dialog-actions .theme-marketview .md-confirm-button:active {
      background-color: #0c4578; }

/**
* __Usage:__ Rarely used. Only for actions that trigger a journey, such as "+ New Survey". Only 1 per view (if any).
*
* @section Special Action Button
* @sectionof Buttons
* @example
* <button class="special-action">Special Action Button</button>
* <button class="special-action disabled">Disabled Special Action Button</button>
*/
button.special-action, label.special-action.label-btn, md-dialog md-dialog-actions .special-action.md-cancel-button, md-dialog md-dialog-actions .special-action.md-confirm-button {
  color: white;
  border: none;
  line-height: 36px; }
  button.special-action:hover, label.special-action.label-btn:hover, md-dialog md-dialog-actions .special-action.md-cancel-button:hover, md-dialog md-dialog-actions .special-action.md-confirm-button:hover, button.special-action:focus, label.special-action.label-btn:focus, md-dialog md-dialog-actions .special-action.md-cancel-button:focus, md-dialog md-dialog-actions .special-action.md-confirm-button:focus {
    color: white; }
  .theme-cmix button.special-action, .theme-cmix label.special-action.label-btn, .theme-cmix md-dialog md-dialog-actions .special-action.md-cancel-button, md-dialog md-dialog-actions .theme-cmix .special-action.md-cancel-button, .theme-cmix md-dialog md-dialog-actions .special-action.md-confirm-button, md-dialog md-dialog-actions .theme-cmix .special-action.md-confirm-button {
    background-color: #52C1A3; }
    .theme-cmix button.special-action:before, .theme-cmix label.special-action.label-btn:before, .theme-cmix md-dialog md-dialog-actions .special-action.md-cancel-button:before, md-dialog md-dialog-actions .theme-cmix .special-action.md-cancel-button:before, .theme-cmix md-dialog md-dialog-actions .special-action.md-confirm-button:before, md-dialog md-dialog-actions .theme-cmix .special-action.md-confirm-button:before,
    .theme-cmix button.special-action span[class^="icon-"]:before,
    .theme-cmix label.special-action.label-btn span[class^="icon-"]:before,
    .theme-cmix md-dialog md-dialog-actions .special-action.md-cancel-button span[class^="icon-"]:before,
    md-dialog md-dialog-actions .theme-cmix .special-action.md-cancel-button span[class^="icon-"]:before,
    .theme-cmix md-dialog md-dialog-actions .special-action.md-confirm-button span[class^="icon-"]:before,
    md-dialog md-dialog-actions .theme-cmix .special-action.md-confirm-button span[class^="icon-"]:before,
    .theme-cmix button.special-action span.promise-indicator:before,
    .theme-cmix label.special-action.label-btn span.promise-indicator:before,
    .theme-cmix md-dialog md-dialog-actions .special-action.md-cancel-button span.promise-indicator:before,
    md-dialog md-dialog-actions .theme-cmix .special-action.md-cancel-button span.promise-indicator:before,
    .theme-cmix md-dialog md-dialog-actions .special-action.md-confirm-button span.promise-indicator:before,
    md-dialog md-dialog-actions .theme-cmix .special-action.md-confirm-button span.promise-indicator:before,
    .theme-cmix button.special-action table th.sortable span.sort-btn:after,
    table th.sortable .theme-cmix button.special-action span.sort-btn:after,
    .theme-cmix label.special-action.label-btn table th.sortable span.sort-btn:after,
    table th.sortable .theme-cmix label.special-action.label-btn span.sort-btn:after,
    .theme-cmix md-dialog md-dialog-actions .special-action.md-cancel-button table th.sortable span.sort-btn:after,
    table th.sortable .theme-cmix md-dialog md-dialog-actions .special-action.md-cancel-button span.sort-btn:after,
    md-dialog md-dialog-actions .theme-cmix .special-action.md-cancel-button table th.sortable span.sort-btn:after,
    table th.sortable md-dialog md-dialog-actions .theme-cmix .special-action.md-cancel-button span.sort-btn:after,
    .theme-cmix md-dialog md-dialog-actions .special-action.md-confirm-button table th.sortable span.sort-btn:after,
    table th.sortable .theme-cmix md-dialog md-dialog-actions .special-action.md-confirm-button span.sort-btn:after,
    md-dialog md-dialog-actions .theme-cmix .special-action.md-confirm-button table th.sortable span.sort-btn:after,
    table th.sortable md-dialog md-dialog-actions .theme-cmix .special-action.md-confirm-button span.sort-btn:after,
    .theme-cmix button.special-action span.collapse-ctrl:before,
    .theme-cmix label.special-action.label-btn span.collapse-ctrl:before,
    .theme-cmix md-dialog md-dialog-actions .special-action.md-cancel-button span.collapse-ctrl:before,
    md-dialog md-dialog-actions .theme-cmix .special-action.md-cancel-button span.collapse-ctrl:before,
    .theme-cmix md-dialog md-dialog-actions .special-action.md-confirm-button span.collapse-ctrl:before,
    md-dialog md-dialog-actions .theme-cmix .special-action.md-confirm-button span.collapse-ctrl:before,
    .theme-cmix button.special-action md-dialog span.close-dialog:before,
    md-dialog .theme-cmix button.special-action span.close-dialog:before,
    .theme-cmix label.special-action.label-btn md-dialog span.close-dialog:before,
    md-dialog .theme-cmix label.special-action.label-btn span.close-dialog:before,
    .theme-cmix md-dialog md-dialog-actions .special-action.md-cancel-button span.close-dialog:before,
    md-dialog md-dialog-actions .theme-cmix .special-action.md-cancel-button span.close-dialog:before,
    .theme-cmix md-dialog md-dialog-actions .special-action.md-confirm-button span.close-dialog:before,
    md-dialog md-dialog-actions .theme-cmix .special-action.md-confirm-button span.close-dialog:before,
    .theme-cmix button.special-action .colorpicker span.close-colorpicker:before,
    .colorpicker .theme-cmix button.special-action span.close-colorpicker:before,
    .theme-cmix label.special-action.label-btn .colorpicker span.close-colorpicker:before,
    .colorpicker .theme-cmix label.special-action.label-btn span.close-colorpicker:before,
    .theme-cmix md-dialog md-dialog-actions .special-action.md-cancel-button .colorpicker span.close-colorpicker:before,
    .colorpicker .theme-cmix md-dialog md-dialog-actions .special-action.md-cancel-button span.close-colorpicker:before,
    md-dialog md-dialog-actions .theme-cmix .special-action.md-cancel-button .colorpicker span.close-colorpicker:before,
    .colorpicker md-dialog md-dialog-actions .theme-cmix .special-action.md-cancel-button span.close-colorpicker:before,
    .theme-cmix md-dialog md-dialog-actions .special-action.md-confirm-button .colorpicker span.close-colorpicker:before,
    .colorpicker .theme-cmix md-dialog md-dialog-actions .special-action.md-confirm-button span.close-colorpicker:before,
    md-dialog md-dialog-actions .theme-cmix .special-action.md-confirm-button .colorpicker span.close-colorpicker:before,
    .colorpicker md-dialog md-dialog-actions .theme-cmix .special-action.md-confirm-button span.close-colorpicker:before,
    .theme-cmix button.special-action span[class*=" icon-"]:before,
    .theme-cmix label.special-action.label-btn span[class*=" icon-"]:before,
    .theme-cmix md-dialog md-dialog-actions .special-action.md-cancel-button span[class*=" icon-"]:before,
    md-dialog md-dialog-actions .theme-cmix .special-action.md-cancel-button span[class*=" icon-"]:before,
    .theme-cmix md-dialog md-dialog-actions .special-action.md-confirm-button span[class*=" icon-"]:before,
    md-dialog md-dialog-actions .theme-cmix .special-action.md-confirm-button span[class*=" icon-"]:before {
      color: white; }
    .theme-cmix button.special-action:hover, .theme-cmix label.special-action.label-btn:hover, .theme-cmix md-dialog md-dialog-actions .special-action.md-cancel-button:hover, md-dialog md-dialog-actions .theme-cmix .special-action.md-cancel-button:hover, .theme-cmix md-dialog md-dialog-actions .special-action.md-confirm-button:hover, md-dialog md-dialog-actions .theme-cmix .special-action.md-confirm-button:hover, .theme-cmix button.special-action:focus, .theme-cmix label.special-action.label-btn:focus, .theme-cmix md-dialog md-dialog-actions .special-action.md-cancel-button:focus, md-dialog md-dialog-actions .theme-cmix .special-action.md-cancel-button:focus, .theme-cmix md-dialog md-dialog-actions .special-action.md-confirm-button:focus, md-dialog md-dialog-actions .theme-cmix .special-action.md-confirm-button:focus {
      background-color: #47a595; }
    .theme-cmix button.special-action:active, .theme-cmix label.special-action.label-btn:active, .theme-cmix md-dialog md-dialog-actions .special-action.md-cancel-button:active, md-dialog md-dialog-actions .theme-cmix .special-action.md-cancel-button:active, .theme-cmix md-dialog md-dialog-actions .special-action.md-confirm-button:active, md-dialog md-dialog-actions .theme-cmix .special-action.md-confirm-button:active {
      background-color: #1B365D; }
  .theme-marketview button.special-action, .theme-marketview label.special-action.label-btn, .theme-marketview md-dialog md-dialog-actions .special-action.md-cancel-button, md-dialog md-dialog-actions .theme-marketview .special-action.md-cancel-button, .theme-marketview md-dialog md-dialog-actions .special-action.md-confirm-button, md-dialog md-dialog-actions .theme-marketview .special-action.md-confirm-button {
    background-color: #5BB78A; }
    .theme-marketview button.special-action:before, .theme-marketview label.special-action.label-btn:before, .theme-marketview md-dialog md-dialog-actions .special-action.md-cancel-button:before, md-dialog md-dialog-actions .theme-marketview .special-action.md-cancel-button:before, .theme-marketview md-dialog md-dialog-actions .special-action.md-confirm-button:before, md-dialog md-dialog-actions .theme-marketview .special-action.md-confirm-button:before,
    .theme-marketview button.special-action span[class^="icon-"]:before,
    .theme-marketview label.special-action.label-btn span[class^="icon-"]:before,
    .theme-marketview md-dialog md-dialog-actions .special-action.md-cancel-button span[class^="icon-"]:before,
    md-dialog md-dialog-actions .theme-marketview .special-action.md-cancel-button span[class^="icon-"]:before,
    .theme-marketview md-dialog md-dialog-actions .special-action.md-confirm-button span[class^="icon-"]:before,
    md-dialog md-dialog-actions .theme-marketview .special-action.md-confirm-button span[class^="icon-"]:before,
    .theme-marketview button.special-action span.promise-indicator:before,
    .theme-marketview label.special-action.label-btn span.promise-indicator:before,
    .theme-marketview md-dialog md-dialog-actions .special-action.md-cancel-button span.promise-indicator:before,
    md-dialog md-dialog-actions .theme-marketview .special-action.md-cancel-button span.promise-indicator:before,
    .theme-marketview md-dialog md-dialog-actions .special-action.md-confirm-button span.promise-indicator:before,
    md-dialog md-dialog-actions .theme-marketview .special-action.md-confirm-button span.promise-indicator:before,
    .theme-marketview button.special-action table th.sortable span.sort-btn:after,
    table th.sortable .theme-marketview button.special-action span.sort-btn:after,
    .theme-marketview label.special-action.label-btn table th.sortable span.sort-btn:after,
    table th.sortable .theme-marketview label.special-action.label-btn span.sort-btn:after,
    .theme-marketview md-dialog md-dialog-actions .special-action.md-cancel-button table th.sortable span.sort-btn:after,
    table th.sortable .theme-marketview md-dialog md-dialog-actions .special-action.md-cancel-button span.sort-btn:after,
    md-dialog md-dialog-actions .theme-marketview .special-action.md-cancel-button table th.sortable span.sort-btn:after,
    table th.sortable md-dialog md-dialog-actions .theme-marketview .special-action.md-cancel-button span.sort-btn:after,
    .theme-marketview md-dialog md-dialog-actions .special-action.md-confirm-button table th.sortable span.sort-btn:after,
    table th.sortable .theme-marketview md-dialog md-dialog-actions .special-action.md-confirm-button span.sort-btn:after,
    md-dialog md-dialog-actions .theme-marketview .special-action.md-confirm-button table th.sortable span.sort-btn:after,
    table th.sortable md-dialog md-dialog-actions .theme-marketview .special-action.md-confirm-button span.sort-btn:after,
    .theme-marketview button.special-action span.collapse-ctrl:before,
    .theme-marketview label.special-action.label-btn span.collapse-ctrl:before,
    .theme-marketview md-dialog md-dialog-actions .special-action.md-cancel-button span.collapse-ctrl:before,
    md-dialog md-dialog-actions .theme-marketview .special-action.md-cancel-button span.collapse-ctrl:before,
    .theme-marketview md-dialog md-dialog-actions .special-action.md-confirm-button span.collapse-ctrl:before,
    md-dialog md-dialog-actions .theme-marketview .special-action.md-confirm-button span.collapse-ctrl:before,
    .theme-marketview button.special-action md-dialog span.close-dialog:before,
    md-dialog .theme-marketview button.special-action span.close-dialog:before,
    .theme-marketview label.special-action.label-btn md-dialog span.close-dialog:before,
    md-dialog .theme-marketview label.special-action.label-btn span.close-dialog:before,
    .theme-marketview md-dialog md-dialog-actions .special-action.md-cancel-button span.close-dialog:before,
    md-dialog md-dialog-actions .theme-marketview .special-action.md-cancel-button span.close-dialog:before,
    .theme-marketview md-dialog md-dialog-actions .special-action.md-confirm-button span.close-dialog:before,
    md-dialog md-dialog-actions .theme-marketview .special-action.md-confirm-button span.close-dialog:before,
    .theme-marketview button.special-action .colorpicker span.close-colorpicker:before,
    .colorpicker .theme-marketview button.special-action span.close-colorpicker:before,
    .theme-marketview label.special-action.label-btn .colorpicker span.close-colorpicker:before,
    .colorpicker .theme-marketview label.special-action.label-btn span.close-colorpicker:before,
    .theme-marketview md-dialog md-dialog-actions .special-action.md-cancel-button .colorpicker span.close-colorpicker:before,
    .colorpicker .theme-marketview md-dialog md-dialog-actions .special-action.md-cancel-button span.close-colorpicker:before,
    md-dialog md-dialog-actions .theme-marketview .special-action.md-cancel-button .colorpicker span.close-colorpicker:before,
    .colorpicker md-dialog md-dialog-actions .theme-marketview .special-action.md-cancel-button span.close-colorpicker:before,
    .theme-marketview md-dialog md-dialog-actions .special-action.md-confirm-button .colorpicker span.close-colorpicker:before,
    .colorpicker .theme-marketview md-dialog md-dialog-actions .special-action.md-confirm-button span.close-colorpicker:before,
    md-dialog md-dialog-actions .theme-marketview .special-action.md-confirm-button .colorpicker span.close-colorpicker:before,
    .colorpicker md-dialog md-dialog-actions .theme-marketview .special-action.md-confirm-button span.close-colorpicker:before,
    .theme-marketview button.special-action span[class*=" icon-"]:before,
    .theme-marketview label.special-action.label-btn span[class*=" icon-"]:before,
    .theme-marketview md-dialog md-dialog-actions .special-action.md-cancel-button span[class*=" icon-"]:before,
    md-dialog md-dialog-actions .theme-marketview .special-action.md-cancel-button span[class*=" icon-"]:before,
    .theme-marketview md-dialog md-dialog-actions .special-action.md-confirm-button span[class*=" icon-"]:before,
    md-dialog md-dialog-actions .theme-marketview .special-action.md-confirm-button span[class*=" icon-"]:before {
      color: white; }
    .theme-marketview button.special-action:hover, .theme-marketview label.special-action.label-btn:hover, .theme-marketview md-dialog md-dialog-actions .special-action.md-cancel-button:hover, md-dialog md-dialog-actions .theme-marketview .special-action.md-cancel-button:hover, .theme-marketview md-dialog md-dialog-actions .special-action.md-confirm-button:hover, md-dialog md-dialog-actions .theme-marketview .special-action.md-confirm-button:hover, .theme-marketview button.special-action:focus, .theme-marketview label.special-action.label-btn:focus, .theme-marketview md-dialog md-dialog-actions .special-action.md-cancel-button:focus, md-dialog md-dialog-actions .theme-marketview .special-action.md-cancel-button:focus, .theme-marketview md-dialog md-dialog-actions .special-action.md-confirm-button:focus, md-dialog md-dialog-actions .theme-marketview .special-action.md-confirm-button:focus {
      background-color: #4c9b80; }
    .theme-marketview button.special-action:active, .theme-marketview label.special-action.label-btn:active, .theme-marketview md-dialog md-dialog-actions .special-action.md-cancel-button:active, md-dialog md-dialog-actions .theme-marketview .special-action.md-cancel-button:active, .theme-marketview md-dialog md-dialog-actions .special-action.md-confirm-button:active, md-dialog md-dialog-actions .theme-marketview .special-action.md-confirm-button:active {
      background-color: #122D59; }

/**
* __Usage:__ Indicates a commonly used supporting action.
*
* __Only use icon buttons for common interactions__ such as "Edit" or "Preview". Otherwise just use a default button.
*
* __Always provide a tooltip__ (or at least a `title` attribute) to indicate what the button will do.
*
* Make sure to add a `sr-only` description of the button for screen readers.
*
* Add the class `light` if placing an symbol button on a dark background.
*
* Add the class `flush` to remove button padding.
*
* Add the class `flush-sides` to remove only the left/right padding, but be careful if you plan on using the `.active` class, you'll endup with a tall oval.
*
* @section Symbol (Icon) Button
* @sectionof Buttons
* @example
* <button class="symbol icon-edit" title="Edit">
*   <span class="sr-only">Edit</span>
* </button>
* <button class="symbol icon-edit disabled" title="Edit">
*   <span class="sr-only">Edit</span>
* </button>
* <div style="display:inline-block;margin-left:0.75em;padding:1em;background-color:#636363;">
*   <button class="light symbol icon-edit" title="Edit">
*     <span class="sr-only">Edit</span>
*   </button>
* </div>
*/
button.symbol, button.icon-favorite, label.icon-favorite.label-btn, md-dialog md-dialog-actions .icon-favorite.md-cancel-button, md-dialog md-dialog-actions .icon-favorite.md-confirm-button,
button.icon-favorited, label.icon-favorited.label-btn, md-dialog md-dialog-actions .icon-favorited.md-cancel-button, md-dialog md-dialog-actions .icon-favorited.md-confirm-button, label.symbol.label-btn, md-dialog md-dialog-actions .symbol.md-cancel-button, md-dialog md-dialog-actions .symbol.md-confirm-button {
  background-color: transparent;
  border: none;
  line-height: 36px; }
  button.symbol:before, button.icon-favorite:before, label.icon-favorite.label-btn:before, md-dialog md-dialog-actions .icon-favorite.md-cancel-button:before, md-dialog md-dialog-actions .icon-favorite.md-confirm-button:before,
  button.icon-favorited:before, label.icon-favorited.label-btn:before, md-dialog md-dialog-actions .icon-favorited.md-cancel-button:before, md-dialog md-dialog-actions .icon-favorited.md-confirm-button:before, label.symbol.label-btn:before, md-dialog md-dialog-actions .symbol.md-cancel-button:before, md-dialog md-dialog-actions .symbol.md-confirm-button:before {
    margin-right: 0; }
  button.symbol.flush, button.flush.icon-favorite, label.flush.icon-favorite.label-btn, .people-card.-expandable button.icon-favorite.expand-user, .people-card.-expandable label.icon-favorite.expand-user.label-btn, .people-card.-expandable md-dialog md-dialog-actions .icon-favorite.expand-user.md-cancel-button, md-dialog md-dialog-actions .people-card.-expandable .icon-favorite.expand-user.md-cancel-button, .people-card.-expandable md-dialog md-dialog-actions .icon-favorite.expand-user.md-confirm-button, md-dialog md-dialog-actions .people-card.-expandable .icon-favorite.expand-user.md-confirm-button, md-dialog md-dialog-actions .flush.icon-favorite.md-cancel-button, md-dialog md-dialog-actions .flush.icon-favorite.md-confirm-button,
  button.flush.icon-favorited, label.flush.icon-favorited.label-btn, .people-card.-expandable button.icon-favorited.expand-user, .people-card.-expandable label.icon-favorited.expand-user.label-btn, .people-card.-expandable md-dialog md-dialog-actions .icon-favorited.expand-user.md-cancel-button, md-dialog md-dialog-actions .people-card.-expandable .icon-favorited.expand-user.md-cancel-button, .people-card.-expandable md-dialog md-dialog-actions .icon-favorited.expand-user.md-confirm-button, md-dialog md-dialog-actions .people-card.-expandable .icon-favorited.expand-user.md-confirm-button, md-dialog md-dialog-actions .flush.icon-favorited.md-cancel-button, md-dialog md-dialog-actions .flush.icon-favorited.md-confirm-button, label.symbol.flush.label-btn, .people-card.-expandable button.symbol.expand-user, .people-card.-expandable label.symbol.expand-user.label-btn, .people-card.-expandable md-dialog md-dialog-actions .symbol.expand-user.md-cancel-button, md-dialog md-dialog-actions .people-card.-expandable .symbol.expand-user.md-cancel-button, .people-card.-expandable md-dialog md-dialog-actions .symbol.expand-user.md-confirm-button, md-dialog md-dialog-actions .people-card.-expandable .symbol.expand-user.md-confirm-button, md-dialog md-dialog-actions .symbol.flush.md-cancel-button, md-dialog md-dialog-actions .symbol.flush.md-confirm-button {
    line-height: 1;
    padding: 0; }
  button.symbol.flush-sides, button.flush-sides.icon-favorite, label.flush-sides.icon-favorite.label-btn, md-dialog md-dialog-actions .flush-sides.icon-favorite.md-cancel-button, md-dialog md-dialog-actions .flush-sides.icon-favorite.md-confirm-button,
  button.flush-sides.icon-favorited, label.flush-sides.icon-favorited.label-btn, md-dialog md-dialog-actions .flush-sides.icon-favorited.md-cancel-button, md-dialog md-dialog-actions .flush-sides.icon-favorited.md-confirm-button, label.symbol.flush-sides.label-btn, md-dialog md-dialog-actions .symbol.flush-sides.md-cancel-button, md-dialog md-dialog-actions .symbol.flush-sides.md-confirm-button {
    padding-left: 0;
    padding-right: 0; }
  button.symbol:hover, button.icon-favorite:hover, label.icon-favorite.label-btn:hover, md-dialog md-dialog-actions .icon-favorite.md-cancel-button:hover, md-dialog md-dialog-actions .icon-favorite.md-confirm-button:hover,
  button.icon-favorited:hover, label.icon-favorited.label-btn:hover, md-dialog md-dialog-actions .icon-favorited.md-cancel-button:hover, md-dialog md-dialog-actions .icon-favorited.md-confirm-button:hover, label.symbol.label-btn:hover, md-dialog md-dialog-actions .symbol.md-cancel-button:hover, md-dialog md-dialog-actions .symbol.md-confirm-button:hover, button.symbol:focus, button.icon-favorite:focus, label.icon-favorite.label-btn:focus, md-dialog md-dialog-actions .icon-favorite.md-cancel-button:focus, md-dialog md-dialog-actions .icon-favorite.md-confirm-button:focus,
  button.icon-favorited:focus, label.icon-favorited.label-btn:focus, md-dialog md-dialog-actions .icon-favorited.md-cancel-button:focus, md-dialog md-dialog-actions .icon-favorited.md-confirm-button:focus, label.symbol.label-btn:focus, md-dialog md-dialog-actions .symbol.md-cancel-button:focus, md-dialog md-dialog-actions .symbol.md-confirm-button:focus {
    background-color: transparent;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); }
  button.symbol:active, button.icon-favorite:active, label.icon-favorite.label-btn:active, md-dialog md-dialog-actions .icon-favorite.md-cancel-button:active, md-dialog md-dialog-actions .icon-favorite.md-confirm-button:active,
  button.icon-favorited:active, label.icon-favorited.label-btn:active, md-dialog md-dialog-actions .icon-favorited.md-cancel-button:active, md-dialog md-dialog-actions .icon-favorited.md-confirm-button:active, label.symbol.label-btn:active, md-dialog md-dialog-actions .symbol.md-cancel-button:active, md-dialog md-dialog-actions .symbol.md-confirm-button:active {
    background-color: transparent;
    text-shadow: none; }
  button.symbol.light:hover, button.light.icon-favorite:hover, label.light.icon-favorite.label-btn:hover, md-dialog md-dialog-actions .light.icon-favorite.md-cancel-button:hover, md-dialog md-dialog-actions .light.icon-favorite.md-confirm-button:hover,
  button.light.icon-favorited:hover, label.light.icon-favorited.label-btn:hover, md-dialog md-dialog-actions .light.icon-favorited.md-cancel-button:hover, md-dialog md-dialog-actions .light.icon-favorited.md-confirm-button:hover, label.symbol.light.label-btn:hover, md-dialog md-dialog-actions .symbol.light.md-cancel-button:hover, md-dialog md-dialog-actions .symbol.light.md-confirm-button:hover, button.symbol.light:focus, button.light.icon-favorite:focus, label.light.icon-favorite.label-btn:focus, md-dialog md-dialog-actions .light.icon-favorite.md-cancel-button:focus, md-dialog md-dialog-actions .light.icon-favorite.md-confirm-button:focus,
  button.light.icon-favorited:focus, label.light.icon-favorited.label-btn:focus, md-dialog md-dialog-actions .light.icon-favorited.md-cancel-button:focus, md-dialog md-dialog-actions .light.icon-favorited.md-confirm-button:focus, label.symbol.light.label-btn:focus, md-dialog md-dialog-actions .symbol.light.md-cancel-button:focus, md-dialog md-dialog-actions .symbol.light.md-confirm-button:focus {
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.7); }
  button.symbol.light:active, button.light.icon-favorite:active, label.light.icon-favorite.label-btn:active, md-dialog md-dialog-actions .light.icon-favorite.md-cancel-button:active, md-dialog md-dialog-actions .light.icon-favorite.md-confirm-button:active,
  button.light.icon-favorited:active, label.light.icon-favorited.label-btn:active, md-dialog md-dialog-actions .light.icon-favorited.md-cancel-button:active, md-dialog md-dialog-actions .light.icon-favorited.md-confirm-button:active, label.symbol.light.label-btn:active, md-dialog md-dialog-actions .symbol.light.md-cancel-button:active, md-dialog md-dialog-actions .symbol.light.md-confirm-button:active {
    text-shadow: none; }
  button.symbol.disabled:hover, button.disabled.icon-favorite:hover, label.disabled.icon-favorite.label-btn:hover, .input-w-inlay input.disabled + button.icon-favorite:hover, .input-w-inlay input.disabled + label.icon-favorite.label-btn:hover, .input-w-inlay md-dialog md-dialog-actions input.disabled + .icon-favorite.md-cancel-button:hover, md-dialog md-dialog-actions .input-w-inlay input.disabled + .icon-favorite.md-cancel-button:hover, .input-w-inlay md-dialog md-dialog-actions input.disabled + .icon-favorite.md-confirm-button:hover, md-dialog md-dialog-actions .input-w-inlay input.disabled + .icon-favorite.md-confirm-button:hover, .input-w-inlay input[disabled] + button.icon-favorite:hover, .input-w-inlay input[disabled] + label.icon-favorite.label-btn:hover, .input-w-inlay md-dialog md-dialog-actions input[disabled] + .icon-favorite.md-cancel-button:hover, md-dialog md-dialog-actions .input-w-inlay input[disabled] + .icon-favorite.md-cancel-button:hover, .input-w-inlay md-dialog md-dialog-actions input[disabled] + .icon-favorite.md-confirm-button:hover, md-dialog md-dialog-actions .input-w-inlay input[disabled] + .icon-favorite.md-confirm-button:hover,
  fieldset[disabled] .input-w-inlay input + button.icon-favorite:hover, fieldset[disabled] .input-w-inlay input + label.icon-favorite.label-btn:hover, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .icon-favorite.md-cancel-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .icon-favorite.md-cancel-button:hover, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .icon-favorite.md-confirm-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .icon-favorite.md-confirm-button:hover, .input-w-clear input.disabled + button.icon-favorite:hover, .input-w-clear input.disabled + label.icon-favorite.label-btn:hover, .input-w-clear md-dialog md-dialog-actions input.disabled + .icon-favorite.md-cancel-button:hover, md-dialog md-dialog-actions .input-w-clear input.disabled + .icon-favorite.md-cancel-button:hover, .input-w-clear md-dialog md-dialog-actions input.disabled + .icon-favorite.md-confirm-button:hover, md-dialog md-dialog-actions .input-w-clear input.disabled + .icon-favorite.md-confirm-button:hover, .input-w-clear input[disabled] + button.icon-favorite:hover, .input-w-clear input[disabled] + label.icon-favorite.label-btn:hover, .input-w-clear md-dialog md-dialog-actions input[disabled] + .icon-favorite.md-cancel-button:hover, md-dialog md-dialog-actions .input-w-clear input[disabled] + .icon-favorite.md-cancel-button:hover, .input-w-clear md-dialog md-dialog-actions input[disabled] + .icon-favorite.md-confirm-button:hover, md-dialog md-dialog-actions .input-w-clear input[disabled] + .icon-favorite.md-confirm-button:hover,
  fieldset[disabled] .input-w-clear input + button.icon-favorite:hover, fieldset[disabled] .input-w-clear input + label.icon-favorite.label-btn:hover, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .icon-favorite.md-cancel-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .icon-favorite.md-cancel-button:hover, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .icon-favorite.md-confirm-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .icon-favorite.md-confirm-button:hover, .input-w-button input.disabled + button.icon-favorite:hover, .input-w-button input.disabled + label.icon-favorite.label-btn:hover, .input-w-button md-dialog md-dialog-actions input.disabled + .icon-favorite.md-cancel-button:hover, md-dialog md-dialog-actions .input-w-button input.disabled + .icon-favorite.md-cancel-button:hover, .input-w-button md-dialog md-dialog-actions input.disabled + .icon-favorite.md-confirm-button:hover, md-dialog md-dialog-actions .input-w-button input.disabled + .icon-favorite.md-confirm-button:hover, .input-w-button input[disabled] + button.icon-favorite:hover, .input-w-button input[disabled] + label.icon-favorite.label-btn:hover, .input-w-button md-dialog md-dialog-actions input[disabled] + .icon-favorite.md-cancel-button:hover, md-dialog md-dialog-actions .input-w-button input[disabled] + .icon-favorite.md-cancel-button:hover, .input-w-button md-dialog md-dialog-actions input[disabled] + .icon-favorite.md-confirm-button:hover, md-dialog md-dialog-actions .input-w-button input[disabled] + .icon-favorite.md-confirm-button:hover,
  fieldset[disabled] .input-w-button input + button.icon-favorite:hover, fieldset[disabled] .input-w-button input + label.icon-favorite.label-btn:hover, fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .icon-favorite.md-cancel-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .icon-favorite.md-cancel-button:hover, fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .icon-favorite.md-confirm-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .icon-favorite.md-confirm-button:hover, md-dialog md-dialog-actions .disabled.icon-favorite.md-cancel-button:hover, md-dialog md-dialog-actions .disabled.icon-favorite.md-confirm-button:hover,
  button.disabled.icon-favorited:hover, label.disabled.icon-favorited.label-btn:hover, .input-w-inlay input.disabled + button.icon-favorited:hover, .input-w-inlay input.disabled + label.icon-favorited.label-btn:hover, .input-w-inlay md-dialog md-dialog-actions input.disabled + .icon-favorited.md-cancel-button:hover, md-dialog md-dialog-actions .input-w-inlay input.disabled + .icon-favorited.md-cancel-button:hover, .input-w-inlay md-dialog md-dialog-actions input.disabled + .icon-favorited.md-confirm-button:hover, md-dialog md-dialog-actions .input-w-inlay input.disabled + .icon-favorited.md-confirm-button:hover, .input-w-inlay input[disabled] + button.icon-favorited:hover, .input-w-inlay input[disabled] + label.icon-favorited.label-btn:hover, .input-w-inlay md-dialog md-dialog-actions input[disabled] + .icon-favorited.md-cancel-button:hover, md-dialog md-dialog-actions .input-w-inlay input[disabled] + .icon-favorited.md-cancel-button:hover, .input-w-inlay md-dialog md-dialog-actions input[disabled] + .icon-favorited.md-confirm-button:hover, md-dialog md-dialog-actions .input-w-inlay input[disabled] + .icon-favorited.md-confirm-button:hover,
  fieldset[disabled] .input-w-inlay input + button.icon-favorited:hover, fieldset[disabled] .input-w-inlay input + label.icon-favorited.label-btn:hover, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .icon-favorited.md-cancel-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .icon-favorited.md-cancel-button:hover, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .icon-favorited.md-confirm-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .icon-favorited.md-confirm-button:hover, .input-w-clear input.disabled + button.icon-favorited:hover, .input-w-clear input.disabled + label.icon-favorited.label-btn:hover, .input-w-clear md-dialog md-dialog-actions input.disabled + .icon-favorited.md-cancel-button:hover, md-dialog md-dialog-actions .input-w-clear input.disabled + .icon-favorited.md-cancel-button:hover, .input-w-clear md-dialog md-dialog-actions input.disabled + .icon-favorited.md-confirm-button:hover, md-dialog md-dialog-actions .input-w-clear input.disabled + .icon-favorited.md-confirm-button:hover, .input-w-clear input[disabled] + button.icon-favorited:hover, .input-w-clear input[disabled] + label.icon-favorited.label-btn:hover, .input-w-clear md-dialog md-dialog-actions input[disabled] + .icon-favorited.md-cancel-button:hover, md-dialog md-dialog-actions .input-w-clear input[disabled] + .icon-favorited.md-cancel-button:hover, .input-w-clear md-dialog md-dialog-actions input[disabled] + .icon-favorited.md-confirm-button:hover, md-dialog md-dialog-actions .input-w-clear input[disabled] + .icon-favorited.md-confirm-button:hover,
  fieldset[disabled] .input-w-clear input + button.icon-favorited:hover, fieldset[disabled] .input-w-clear input + label.icon-favorited.label-btn:hover, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .icon-favorited.md-cancel-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .icon-favorited.md-cancel-button:hover, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .icon-favorited.md-confirm-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .icon-favorited.md-confirm-button:hover, .input-w-button input.disabled + button.icon-favorited:hover, .input-w-button input.disabled + label.icon-favorited.label-btn:hover, .input-w-button md-dialog md-dialog-actions input.disabled + .icon-favorited.md-cancel-button:hover, md-dialog md-dialog-actions .input-w-button input.disabled + .icon-favorited.md-cancel-button:hover, .input-w-button md-dialog md-dialog-actions input.disabled + .icon-favorited.md-confirm-button:hover, md-dialog md-dialog-actions .input-w-button input.disabled + .icon-favorited.md-confirm-button:hover, .input-w-button input[disabled] + button.icon-favorited:hover, .input-w-button input[disabled] + label.icon-favorited.label-btn:hover, .input-w-button md-dialog md-dialog-actions input[disabled] + .icon-favorited.md-cancel-button:hover, md-dialog md-dialog-actions .input-w-button input[disabled] + .icon-favorited.md-cancel-button:hover, .input-w-button md-dialog md-dialog-actions input[disabled] + .icon-favorited.md-confirm-button:hover, md-dialog md-dialog-actions .input-w-button input[disabled] + .icon-favorited.md-confirm-button:hover,
  fieldset[disabled] .input-w-button input + button.icon-favorited:hover, fieldset[disabled] .input-w-button input + label.icon-favorited.label-btn:hover, fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .icon-favorited.md-cancel-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .icon-favorited.md-cancel-button:hover, fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .icon-favorited.md-confirm-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .icon-favorited.md-confirm-button:hover, md-dialog md-dialog-actions .disabled.icon-favorited.md-cancel-button:hover, md-dialog md-dialog-actions .disabled.icon-favorited.md-confirm-button:hover, label.symbol.disabled.label-btn:hover, .input-w-inlay input.disabled + button.symbol:hover, .input-w-inlay input.disabled + label.symbol.label-btn:hover, .input-w-inlay md-dialog md-dialog-actions input.disabled + .symbol.md-cancel-button:hover, md-dialog md-dialog-actions .input-w-inlay input.disabled + .symbol.md-cancel-button:hover, .input-w-inlay md-dialog md-dialog-actions input.disabled + .symbol.md-confirm-button:hover, md-dialog md-dialog-actions .input-w-inlay input.disabled + .symbol.md-confirm-button:hover, .input-w-inlay input[disabled] + button.symbol:hover, .input-w-inlay input[disabled] + label.symbol.label-btn:hover, .input-w-inlay md-dialog md-dialog-actions input[disabled] + .symbol.md-cancel-button:hover, md-dialog md-dialog-actions .input-w-inlay input[disabled] + .symbol.md-cancel-button:hover, .input-w-inlay md-dialog md-dialog-actions input[disabled] + .symbol.md-confirm-button:hover, md-dialog md-dialog-actions .input-w-inlay input[disabled] + .symbol.md-confirm-button:hover,
  fieldset[disabled] .input-w-inlay input + button.symbol:hover, fieldset[disabled] .input-w-inlay input + label.symbol.label-btn:hover, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .symbol.md-cancel-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .symbol.md-cancel-button:hover, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .symbol.md-confirm-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .symbol.md-confirm-button:hover, .input-w-clear input.disabled + button.symbol:hover, .input-w-clear input.disabled + label.symbol.label-btn:hover, .input-w-clear md-dialog md-dialog-actions input.disabled + .symbol.md-cancel-button:hover, md-dialog md-dialog-actions .input-w-clear input.disabled + .symbol.md-cancel-button:hover, .input-w-clear md-dialog md-dialog-actions input.disabled + .symbol.md-confirm-button:hover, md-dialog md-dialog-actions .input-w-clear input.disabled + .symbol.md-confirm-button:hover, .input-w-clear input[disabled] + button.symbol:hover, .input-w-clear input[disabled] + label.symbol.label-btn:hover, .input-w-clear md-dialog md-dialog-actions input[disabled] + .symbol.md-cancel-button:hover, md-dialog md-dialog-actions .input-w-clear input[disabled] + .symbol.md-cancel-button:hover, .input-w-clear md-dialog md-dialog-actions input[disabled] + .symbol.md-confirm-button:hover, md-dialog md-dialog-actions .input-w-clear input[disabled] + .symbol.md-confirm-button:hover,
  fieldset[disabled] .input-w-clear input + button.symbol:hover, fieldset[disabled] .input-w-clear input + label.symbol.label-btn:hover, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .symbol.md-cancel-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .symbol.md-cancel-button:hover, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .symbol.md-confirm-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .symbol.md-confirm-button:hover, .input-w-button input.disabled + button.symbol:hover, .input-w-button input.disabled + label.symbol.label-btn:hover, .input-w-button md-dialog md-dialog-actions input.disabled + .symbol.md-cancel-button:hover, md-dialog md-dialog-actions .input-w-button input.disabled + .symbol.md-cancel-button:hover, .input-w-button md-dialog md-dialog-actions input.disabled + .symbol.md-confirm-button:hover, md-dialog md-dialog-actions .input-w-button input.disabled + .symbol.md-confirm-button:hover, .input-w-button input[disabled] + button.symbol:hover, .input-w-button input[disabled] + label.symbol.label-btn:hover, .input-w-button md-dialog md-dialog-actions input[disabled] + .symbol.md-cancel-button:hover, md-dialog md-dialog-actions .input-w-button input[disabled] + .symbol.md-cancel-button:hover, .input-w-button md-dialog md-dialog-actions input[disabled] + .symbol.md-confirm-button:hover, md-dialog md-dialog-actions .input-w-button input[disabled] + .symbol.md-confirm-button:hover,
  fieldset[disabled] .input-w-button input + button.symbol:hover, fieldset[disabled] .input-w-button input + label.symbol.label-btn:hover, fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .symbol.md-cancel-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .symbol.md-cancel-button:hover, fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .symbol.md-confirm-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .symbol.md-confirm-button:hover, md-dialog md-dialog-actions .symbol.disabled.md-cancel-button:hover, md-dialog md-dialog-actions button.disabled.md-cancel-button.icon-favorite:hover, md-dialog md-dialog-actions .input-w-inlay input.disabled + button.md-cancel-button.icon-favorite:hover, .input-w-inlay md-dialog md-dialog-actions input.disabled + button.md-cancel-button.icon-favorite:hover, md-dialog md-dialog-actions .input-w-inlay input[disabled] + button.md-cancel-button.icon-favorite:hover, .input-w-inlay md-dialog md-dialog-actions input[disabled] + button.md-cancel-button.icon-favorite:hover,
  md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + button.md-cancel-button.icon-favorite:hover, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + button.md-cancel-button.icon-favorite:hover, md-dialog md-dialog-actions .input-w-clear input.disabled + button.md-cancel-button.icon-favorite:hover, .input-w-clear md-dialog md-dialog-actions input.disabled + button.md-cancel-button.icon-favorite:hover, md-dialog md-dialog-actions .input-w-clear input[disabled] + button.md-cancel-button.icon-favorite:hover, .input-w-clear md-dialog md-dialog-actions input[disabled] + button.md-cancel-button.icon-favorite:hover,
  md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + button.md-cancel-button.icon-favorite:hover, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + button.md-cancel-button.icon-favorite:hover, md-dialog md-dialog-actions .input-w-button input.disabled + button.md-cancel-button.icon-favorite:hover, .input-w-button md-dialog md-dialog-actions input.disabled + button.md-cancel-button.icon-favorite:hover, md-dialog md-dialog-actions .input-w-button input[disabled] + button.md-cancel-button.icon-favorite:hover, .input-w-button md-dialog md-dialog-actions input[disabled] + button.md-cancel-button.icon-favorite:hover,
  md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + button.md-cancel-button.icon-favorite:hover, fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + button.md-cancel-button.icon-favorite:hover,
  md-dialog md-dialog-actions button.disabled.md-cancel-button.icon-favorited:hover, md-dialog md-dialog-actions .input-w-inlay input.disabled + button.md-cancel-button.icon-favorited:hover, .input-w-inlay md-dialog md-dialog-actions input.disabled + button.md-cancel-button.icon-favorited:hover, md-dialog md-dialog-actions .input-w-inlay input[disabled] + button.md-cancel-button.icon-favorited:hover, .input-w-inlay md-dialog md-dialog-actions input[disabled] + button.md-cancel-button.icon-favorited:hover,
  md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + button.md-cancel-button.icon-favorited:hover, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + button.md-cancel-button.icon-favorited:hover, md-dialog md-dialog-actions .input-w-clear input.disabled + button.md-cancel-button.icon-favorited:hover, .input-w-clear md-dialog md-dialog-actions input.disabled + button.md-cancel-button.icon-favorited:hover, md-dialog md-dialog-actions .input-w-clear input[disabled] + button.md-cancel-button.icon-favorited:hover, .input-w-clear md-dialog md-dialog-actions input[disabled] + button.md-cancel-button.icon-favorited:hover,
  md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + button.md-cancel-button.icon-favorited:hover, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + button.md-cancel-button.icon-favorited:hover, md-dialog md-dialog-actions .input-w-button input.disabled + button.md-cancel-button.icon-favorited:hover, .input-w-button md-dialog md-dialog-actions input.disabled + button.md-cancel-button.icon-favorited:hover, md-dialog md-dialog-actions .input-w-button input[disabled] + button.md-cancel-button.icon-favorited:hover, .input-w-button md-dialog md-dialog-actions input[disabled] + button.md-cancel-button.icon-favorited:hover,
  md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + button.md-cancel-button.icon-favorited:hover, fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + button.md-cancel-button.icon-favorited:hover, md-dialog md-dialog-actions .symbol.disabled.md-confirm-button:hover, md-dialog md-dialog-actions button.disabled.md-confirm-button.icon-favorite:hover, md-dialog md-dialog-actions .input-w-inlay input.disabled + button.md-confirm-button.icon-favorite:hover, .input-w-inlay md-dialog md-dialog-actions input.disabled + button.md-confirm-button.icon-favorite:hover, md-dialog md-dialog-actions .input-w-inlay input[disabled] + button.md-confirm-button.icon-favorite:hover, .input-w-inlay md-dialog md-dialog-actions input[disabled] + button.md-confirm-button.icon-favorite:hover,
  md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + button.md-confirm-button.icon-favorite:hover, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + button.md-confirm-button.icon-favorite:hover, md-dialog md-dialog-actions .input-w-clear input.disabled + button.md-confirm-button.icon-favorite:hover, .input-w-clear md-dialog md-dialog-actions input.disabled + button.md-confirm-button.icon-favorite:hover, md-dialog md-dialog-actions .input-w-clear input[disabled] + button.md-confirm-button.icon-favorite:hover, .input-w-clear md-dialog md-dialog-actions input[disabled] + button.md-confirm-button.icon-favorite:hover,
  md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + button.md-confirm-button.icon-favorite:hover, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + button.md-confirm-button.icon-favorite:hover, md-dialog md-dialog-actions .input-w-button input.disabled + button.md-confirm-button.icon-favorite:hover, .input-w-button md-dialog md-dialog-actions input.disabled + button.md-confirm-button.icon-favorite:hover, md-dialog md-dialog-actions .input-w-button input[disabled] + button.md-confirm-button.icon-favorite:hover, .input-w-button md-dialog md-dialog-actions input[disabled] + button.md-confirm-button.icon-favorite:hover,
  md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + button.md-confirm-button.icon-favorite:hover, fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + button.md-confirm-button.icon-favorite:hover,
  md-dialog md-dialog-actions button.disabled.md-confirm-button.icon-favorited:hover, md-dialog md-dialog-actions .input-w-inlay input.disabled + button.md-confirm-button.icon-favorited:hover, .input-w-inlay md-dialog md-dialog-actions input.disabled + button.md-confirm-button.icon-favorited:hover, md-dialog md-dialog-actions .input-w-inlay input[disabled] + button.md-confirm-button.icon-favorited:hover, .input-w-inlay md-dialog md-dialog-actions input[disabled] + button.md-confirm-button.icon-favorited:hover,
  md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + button.md-confirm-button.icon-favorited:hover, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + button.md-confirm-button.icon-favorited:hover, md-dialog md-dialog-actions .input-w-clear input.disabled + button.md-confirm-button.icon-favorited:hover, .input-w-clear md-dialog md-dialog-actions input.disabled + button.md-confirm-button.icon-favorited:hover, md-dialog md-dialog-actions .input-w-clear input[disabled] + button.md-confirm-button.icon-favorited:hover, .input-w-clear md-dialog md-dialog-actions input[disabled] + button.md-confirm-button.icon-favorited:hover,
  md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + button.md-confirm-button.icon-favorited:hover, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + button.md-confirm-button.icon-favorited:hover, md-dialog md-dialog-actions .input-w-button input.disabled + button.md-confirm-button.icon-favorited:hover, .input-w-button md-dialog md-dialog-actions input.disabled + button.md-confirm-button.icon-favorited:hover, md-dialog md-dialog-actions .input-w-button input[disabled] + button.md-confirm-button.icon-favorited:hover, .input-w-button md-dialog md-dialog-actions input[disabled] + button.md-confirm-button.icon-favorited:hover,
  md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + button.md-confirm-button.icon-favorited:hover, fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + button.md-confirm-button.icon-favorited:hover, button.symbol.disabled:focus, button.disabled.icon-favorite:focus, label.disabled.icon-favorite.label-btn:focus, .input-w-inlay input.disabled + button.icon-favorite:focus, .input-w-inlay input.disabled + label.icon-favorite.label-btn:focus, .input-w-inlay md-dialog md-dialog-actions input.disabled + .icon-favorite.md-cancel-button:focus, md-dialog md-dialog-actions .input-w-inlay input.disabled + .icon-favorite.md-cancel-button:focus, .input-w-inlay md-dialog md-dialog-actions input.disabled + .icon-favorite.md-confirm-button:focus, md-dialog md-dialog-actions .input-w-inlay input.disabled + .icon-favorite.md-confirm-button:focus, .input-w-inlay input[disabled] + button.icon-favorite:focus, .input-w-inlay input[disabled] + label.icon-favorite.label-btn:focus, .input-w-inlay md-dialog md-dialog-actions input[disabled] + .icon-favorite.md-cancel-button:focus, md-dialog md-dialog-actions .input-w-inlay input[disabled] + .icon-favorite.md-cancel-button:focus, .input-w-inlay md-dialog md-dialog-actions input[disabled] + .icon-favorite.md-confirm-button:focus, md-dialog md-dialog-actions .input-w-inlay input[disabled] + .icon-favorite.md-confirm-button:focus,
  fieldset[disabled] .input-w-inlay input + button.icon-favorite:focus, fieldset[disabled] .input-w-inlay input + label.icon-favorite.label-btn:focus, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .icon-favorite.md-cancel-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .icon-favorite.md-cancel-button:focus, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .icon-favorite.md-confirm-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .icon-favorite.md-confirm-button:focus, .input-w-clear input.disabled + button.icon-favorite:focus, .input-w-clear input.disabled + label.icon-favorite.label-btn:focus, .input-w-clear md-dialog md-dialog-actions input.disabled + .icon-favorite.md-cancel-button:focus, md-dialog md-dialog-actions .input-w-clear input.disabled + .icon-favorite.md-cancel-button:focus, .input-w-clear md-dialog md-dialog-actions input.disabled + .icon-favorite.md-confirm-button:focus, md-dialog md-dialog-actions .input-w-clear input.disabled + .icon-favorite.md-confirm-button:focus, .input-w-clear input[disabled] + button.icon-favorite:focus, .input-w-clear input[disabled] + label.icon-favorite.label-btn:focus, .input-w-clear md-dialog md-dialog-actions input[disabled] + .icon-favorite.md-cancel-button:focus, md-dialog md-dialog-actions .input-w-clear input[disabled] + .icon-favorite.md-cancel-button:focus, .input-w-clear md-dialog md-dialog-actions input[disabled] + .icon-favorite.md-confirm-button:focus, md-dialog md-dialog-actions .input-w-clear input[disabled] + .icon-favorite.md-confirm-button:focus,
  fieldset[disabled] .input-w-clear input + button.icon-favorite:focus, fieldset[disabled] .input-w-clear input + label.icon-favorite.label-btn:focus, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .icon-favorite.md-cancel-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .icon-favorite.md-cancel-button:focus, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .icon-favorite.md-confirm-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .icon-favorite.md-confirm-button:focus, .input-w-button input.disabled + button.icon-favorite:focus, .input-w-button input.disabled + label.icon-favorite.label-btn:focus, .input-w-button md-dialog md-dialog-actions input.disabled + .icon-favorite.md-cancel-button:focus, md-dialog md-dialog-actions .input-w-button input.disabled + .icon-favorite.md-cancel-button:focus, .input-w-button md-dialog md-dialog-actions input.disabled + .icon-favorite.md-confirm-button:focus, md-dialog md-dialog-actions .input-w-button input.disabled + .icon-favorite.md-confirm-button:focus, .input-w-button input[disabled] + button.icon-favorite:focus, .input-w-button input[disabled] + label.icon-favorite.label-btn:focus, .input-w-button md-dialog md-dialog-actions input[disabled] + .icon-favorite.md-cancel-button:focus, md-dialog md-dialog-actions .input-w-button input[disabled] + .icon-favorite.md-cancel-button:focus, .input-w-button md-dialog md-dialog-actions input[disabled] + .icon-favorite.md-confirm-button:focus, md-dialog md-dialog-actions .input-w-button input[disabled] + .icon-favorite.md-confirm-button:focus,
  fieldset[disabled] .input-w-button input + button.icon-favorite:focus, fieldset[disabled] .input-w-button input + label.icon-favorite.label-btn:focus, fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .icon-favorite.md-cancel-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .icon-favorite.md-cancel-button:focus, fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .icon-favorite.md-confirm-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .icon-favorite.md-confirm-button:focus, md-dialog md-dialog-actions .disabled.icon-favorite.md-cancel-button:focus, md-dialog md-dialog-actions .disabled.icon-favorite.md-confirm-button:focus,
  button.disabled.icon-favorited:focus, label.disabled.icon-favorited.label-btn:focus, .input-w-inlay input.disabled + button.icon-favorited:focus, .input-w-inlay input.disabled + label.icon-favorited.label-btn:focus, .input-w-inlay md-dialog md-dialog-actions input.disabled + .icon-favorited.md-cancel-button:focus, md-dialog md-dialog-actions .input-w-inlay input.disabled + .icon-favorited.md-cancel-button:focus, .input-w-inlay md-dialog md-dialog-actions input.disabled + .icon-favorited.md-confirm-button:focus, md-dialog md-dialog-actions .input-w-inlay input.disabled + .icon-favorited.md-confirm-button:focus, .input-w-inlay input[disabled] + button.icon-favorited:focus, .input-w-inlay input[disabled] + label.icon-favorited.label-btn:focus, .input-w-inlay md-dialog md-dialog-actions input[disabled] + .icon-favorited.md-cancel-button:focus, md-dialog md-dialog-actions .input-w-inlay input[disabled] + .icon-favorited.md-cancel-button:focus, .input-w-inlay md-dialog md-dialog-actions input[disabled] + .icon-favorited.md-confirm-button:focus, md-dialog md-dialog-actions .input-w-inlay input[disabled] + .icon-favorited.md-confirm-button:focus,
  fieldset[disabled] .input-w-inlay input + button.icon-favorited:focus, fieldset[disabled] .input-w-inlay input + label.icon-favorited.label-btn:focus, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .icon-favorited.md-cancel-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .icon-favorited.md-cancel-button:focus, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .icon-favorited.md-confirm-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .icon-favorited.md-confirm-button:focus, .input-w-clear input.disabled + button.icon-favorited:focus, .input-w-clear input.disabled + label.icon-favorited.label-btn:focus, .input-w-clear md-dialog md-dialog-actions input.disabled + .icon-favorited.md-cancel-button:focus, md-dialog md-dialog-actions .input-w-clear input.disabled + .icon-favorited.md-cancel-button:focus, .input-w-clear md-dialog md-dialog-actions input.disabled + .icon-favorited.md-confirm-button:focus, md-dialog md-dialog-actions .input-w-clear input.disabled + .icon-favorited.md-confirm-button:focus, .input-w-clear input[disabled] + button.icon-favorited:focus, .input-w-clear input[disabled] + label.icon-favorited.label-btn:focus, .input-w-clear md-dialog md-dialog-actions input[disabled] + .icon-favorited.md-cancel-button:focus, md-dialog md-dialog-actions .input-w-clear input[disabled] + .icon-favorited.md-cancel-button:focus, .input-w-clear md-dialog md-dialog-actions input[disabled] + .icon-favorited.md-confirm-button:focus, md-dialog md-dialog-actions .input-w-clear input[disabled] + .icon-favorited.md-confirm-button:focus,
  fieldset[disabled] .input-w-clear input + button.icon-favorited:focus, fieldset[disabled] .input-w-clear input + label.icon-favorited.label-btn:focus, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .icon-favorited.md-cancel-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .icon-favorited.md-cancel-button:focus, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .icon-favorited.md-confirm-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .icon-favorited.md-confirm-button:focus, .input-w-button input.disabled + button.icon-favorited:focus, .input-w-button input.disabled + label.icon-favorited.label-btn:focus, .input-w-button md-dialog md-dialog-actions input.disabled + .icon-favorited.md-cancel-button:focus, md-dialog md-dialog-actions .input-w-button input.disabled + .icon-favorited.md-cancel-button:focus, .input-w-button md-dialog md-dialog-actions input.disabled + .icon-favorited.md-confirm-button:focus, md-dialog md-dialog-actions .input-w-button input.disabled + .icon-favorited.md-confirm-button:focus, .input-w-button input[disabled] + button.icon-favorited:focus, .input-w-button input[disabled] + label.icon-favorited.label-btn:focus, .input-w-button md-dialog md-dialog-actions input[disabled] + .icon-favorited.md-cancel-button:focus, md-dialog md-dialog-actions .input-w-button input[disabled] + .icon-favorited.md-cancel-button:focus, .input-w-button md-dialog md-dialog-actions input[disabled] + .icon-favorited.md-confirm-button:focus, md-dialog md-dialog-actions .input-w-button input[disabled] + .icon-favorited.md-confirm-button:focus,
  fieldset[disabled] .input-w-button input + button.icon-favorited:focus, fieldset[disabled] .input-w-button input + label.icon-favorited.label-btn:focus, fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .icon-favorited.md-cancel-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .icon-favorited.md-cancel-button:focus, fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .icon-favorited.md-confirm-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .icon-favorited.md-confirm-button:focus, md-dialog md-dialog-actions .disabled.icon-favorited.md-cancel-button:focus, md-dialog md-dialog-actions .disabled.icon-favorited.md-confirm-button:focus, label.symbol.disabled.label-btn:focus, .input-w-inlay input.disabled + button.symbol:focus, .input-w-inlay input.disabled + label.symbol.label-btn:focus, .input-w-inlay md-dialog md-dialog-actions input.disabled + .symbol.md-cancel-button:focus, md-dialog md-dialog-actions .input-w-inlay input.disabled + .symbol.md-cancel-button:focus, .input-w-inlay md-dialog md-dialog-actions input.disabled + .symbol.md-confirm-button:focus, md-dialog md-dialog-actions .input-w-inlay input.disabled + .symbol.md-confirm-button:focus, .input-w-inlay input[disabled] + button.symbol:focus, .input-w-inlay input[disabled] + label.symbol.label-btn:focus, .input-w-inlay md-dialog md-dialog-actions input[disabled] + .symbol.md-cancel-button:focus, md-dialog md-dialog-actions .input-w-inlay input[disabled] + .symbol.md-cancel-button:focus, .input-w-inlay md-dialog md-dialog-actions input[disabled] + .symbol.md-confirm-button:focus, md-dialog md-dialog-actions .input-w-inlay input[disabled] + .symbol.md-confirm-button:focus,
  fieldset[disabled] .input-w-inlay input + button.symbol:focus, fieldset[disabled] .input-w-inlay input + label.symbol.label-btn:focus, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .symbol.md-cancel-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .symbol.md-cancel-button:focus, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .symbol.md-confirm-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .symbol.md-confirm-button:focus, .input-w-clear input.disabled + button.symbol:focus, .input-w-clear input.disabled + label.symbol.label-btn:focus, .input-w-clear md-dialog md-dialog-actions input.disabled + .symbol.md-cancel-button:focus, md-dialog md-dialog-actions .input-w-clear input.disabled + .symbol.md-cancel-button:focus, .input-w-clear md-dialog md-dialog-actions input.disabled + .symbol.md-confirm-button:focus, md-dialog md-dialog-actions .input-w-clear input.disabled + .symbol.md-confirm-button:focus, .input-w-clear input[disabled] + button.symbol:focus, .input-w-clear input[disabled] + label.symbol.label-btn:focus, .input-w-clear md-dialog md-dialog-actions input[disabled] + .symbol.md-cancel-button:focus, md-dialog md-dialog-actions .input-w-clear input[disabled] + .symbol.md-cancel-button:focus, .input-w-clear md-dialog md-dialog-actions input[disabled] + .symbol.md-confirm-button:focus, md-dialog md-dialog-actions .input-w-clear input[disabled] + .symbol.md-confirm-button:focus,
  fieldset[disabled] .input-w-clear input + button.symbol:focus, fieldset[disabled] .input-w-clear input + label.symbol.label-btn:focus, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .symbol.md-cancel-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .symbol.md-cancel-button:focus, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .symbol.md-confirm-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .symbol.md-confirm-button:focus, .input-w-button input.disabled + button.symbol:focus, .input-w-button input.disabled + label.symbol.label-btn:focus, .input-w-button md-dialog md-dialog-actions input.disabled + .symbol.md-cancel-button:focus, md-dialog md-dialog-actions .input-w-button input.disabled + .symbol.md-cancel-button:focus, .input-w-button md-dialog md-dialog-actions input.disabled + .symbol.md-confirm-button:focus, md-dialog md-dialog-actions .input-w-button input.disabled + .symbol.md-confirm-button:focus, .input-w-button input[disabled] + button.symbol:focus, .input-w-button input[disabled] + label.symbol.label-btn:focus, .input-w-button md-dialog md-dialog-actions input[disabled] + .symbol.md-cancel-button:focus, md-dialog md-dialog-actions .input-w-button input[disabled] + .symbol.md-cancel-button:focus, .input-w-button md-dialog md-dialog-actions input[disabled] + .symbol.md-confirm-button:focus, md-dialog md-dialog-actions .input-w-button input[disabled] + .symbol.md-confirm-button:focus,
  fieldset[disabled] .input-w-button input + button.symbol:focus, fieldset[disabled] .input-w-button input + label.symbol.label-btn:focus, fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .symbol.md-cancel-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .symbol.md-cancel-button:focus, fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .symbol.md-confirm-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .symbol.md-confirm-button:focus, md-dialog md-dialog-actions .symbol.disabled.md-cancel-button:focus, md-dialog md-dialog-actions button.disabled.md-cancel-button.icon-favorite:focus, md-dialog md-dialog-actions .input-w-inlay input.disabled + button.md-cancel-button.icon-favorite:focus, .input-w-inlay md-dialog md-dialog-actions input.disabled + button.md-cancel-button.icon-favorite:focus, md-dialog md-dialog-actions .input-w-inlay input[disabled] + button.md-cancel-button.icon-favorite:focus, .input-w-inlay md-dialog md-dialog-actions input[disabled] + button.md-cancel-button.icon-favorite:focus,
  md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + button.md-cancel-button.icon-favorite:focus, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + button.md-cancel-button.icon-favorite:focus, md-dialog md-dialog-actions .input-w-clear input.disabled + button.md-cancel-button.icon-favorite:focus, .input-w-clear md-dialog md-dialog-actions input.disabled + button.md-cancel-button.icon-favorite:focus, md-dialog md-dialog-actions .input-w-clear input[disabled] + button.md-cancel-button.icon-favorite:focus, .input-w-clear md-dialog md-dialog-actions input[disabled] + button.md-cancel-button.icon-favorite:focus,
  md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + button.md-cancel-button.icon-favorite:focus, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + button.md-cancel-button.icon-favorite:focus, md-dialog md-dialog-actions .input-w-button input.disabled + button.md-cancel-button.icon-favorite:focus, .input-w-button md-dialog md-dialog-actions input.disabled + button.md-cancel-button.icon-favorite:focus, md-dialog md-dialog-actions .input-w-button input[disabled] + button.md-cancel-button.icon-favorite:focus, .input-w-button md-dialog md-dialog-actions input[disabled] + button.md-cancel-button.icon-favorite:focus,
  md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + button.md-cancel-button.icon-favorite:focus, fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + button.md-cancel-button.icon-favorite:focus,
  md-dialog md-dialog-actions button.disabled.md-cancel-button.icon-favorited:focus, md-dialog md-dialog-actions .input-w-inlay input.disabled + button.md-cancel-button.icon-favorited:focus, .input-w-inlay md-dialog md-dialog-actions input.disabled + button.md-cancel-button.icon-favorited:focus, md-dialog md-dialog-actions .input-w-inlay input[disabled] + button.md-cancel-button.icon-favorited:focus, .input-w-inlay md-dialog md-dialog-actions input[disabled] + button.md-cancel-button.icon-favorited:focus,
  md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + button.md-cancel-button.icon-favorited:focus, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + button.md-cancel-button.icon-favorited:focus, md-dialog md-dialog-actions .input-w-clear input.disabled + button.md-cancel-button.icon-favorited:focus, .input-w-clear md-dialog md-dialog-actions input.disabled + button.md-cancel-button.icon-favorited:focus, md-dialog md-dialog-actions .input-w-clear input[disabled] + button.md-cancel-button.icon-favorited:focus, .input-w-clear md-dialog md-dialog-actions input[disabled] + button.md-cancel-button.icon-favorited:focus,
  md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + button.md-cancel-button.icon-favorited:focus, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + button.md-cancel-button.icon-favorited:focus, md-dialog md-dialog-actions .input-w-button input.disabled + button.md-cancel-button.icon-favorited:focus, .input-w-button md-dialog md-dialog-actions input.disabled + button.md-cancel-button.icon-favorited:focus, md-dialog md-dialog-actions .input-w-button input[disabled] + button.md-cancel-button.icon-favorited:focus, .input-w-button md-dialog md-dialog-actions input[disabled] + button.md-cancel-button.icon-favorited:focus,
  md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + button.md-cancel-button.icon-favorited:focus, fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + button.md-cancel-button.icon-favorited:focus, md-dialog md-dialog-actions .symbol.disabled.md-confirm-button:focus, md-dialog md-dialog-actions button.disabled.md-confirm-button.icon-favorite:focus, md-dialog md-dialog-actions .input-w-inlay input.disabled + button.md-confirm-button.icon-favorite:focus, .input-w-inlay md-dialog md-dialog-actions input.disabled + button.md-confirm-button.icon-favorite:focus, md-dialog md-dialog-actions .input-w-inlay input[disabled] + button.md-confirm-button.icon-favorite:focus, .input-w-inlay md-dialog md-dialog-actions input[disabled] + button.md-confirm-button.icon-favorite:focus,
  md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + button.md-confirm-button.icon-favorite:focus, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + button.md-confirm-button.icon-favorite:focus, md-dialog md-dialog-actions .input-w-clear input.disabled + button.md-confirm-button.icon-favorite:focus, .input-w-clear md-dialog md-dialog-actions input.disabled + button.md-confirm-button.icon-favorite:focus, md-dialog md-dialog-actions .input-w-clear input[disabled] + button.md-confirm-button.icon-favorite:focus, .input-w-clear md-dialog md-dialog-actions input[disabled] + button.md-confirm-button.icon-favorite:focus,
  md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + button.md-confirm-button.icon-favorite:focus, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + button.md-confirm-button.icon-favorite:focus, md-dialog md-dialog-actions .input-w-button input.disabled + button.md-confirm-button.icon-favorite:focus, .input-w-button md-dialog md-dialog-actions input.disabled + button.md-confirm-button.icon-favorite:focus, md-dialog md-dialog-actions .input-w-button input[disabled] + button.md-confirm-button.icon-favorite:focus, .input-w-button md-dialog md-dialog-actions input[disabled] + button.md-confirm-button.icon-favorite:focus,
  md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + button.md-confirm-button.icon-favorite:focus, fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + button.md-confirm-button.icon-favorite:focus,
  md-dialog md-dialog-actions button.disabled.md-confirm-button.icon-favorited:focus, md-dialog md-dialog-actions .input-w-inlay input.disabled + button.md-confirm-button.icon-favorited:focus, .input-w-inlay md-dialog md-dialog-actions input.disabled + button.md-confirm-button.icon-favorited:focus, md-dialog md-dialog-actions .input-w-inlay input[disabled] + button.md-confirm-button.icon-favorited:focus, .input-w-inlay md-dialog md-dialog-actions input[disabled] + button.md-confirm-button.icon-favorited:focus,
  md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + button.md-confirm-button.icon-favorited:focus, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + button.md-confirm-button.icon-favorited:focus, md-dialog md-dialog-actions .input-w-clear input.disabled + button.md-confirm-button.icon-favorited:focus, .input-w-clear md-dialog md-dialog-actions input.disabled + button.md-confirm-button.icon-favorited:focus, md-dialog md-dialog-actions .input-w-clear input[disabled] + button.md-confirm-button.icon-favorited:focus, .input-w-clear md-dialog md-dialog-actions input[disabled] + button.md-confirm-button.icon-favorited:focus,
  md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + button.md-confirm-button.icon-favorited:focus, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + button.md-confirm-button.icon-favorited:focus, md-dialog md-dialog-actions .input-w-button input.disabled + button.md-confirm-button.icon-favorited:focus, .input-w-button md-dialog md-dialog-actions input.disabled + button.md-confirm-button.icon-favorited:focus, md-dialog md-dialog-actions .input-w-button input[disabled] + button.md-confirm-button.icon-favorited:focus, .input-w-button md-dialog md-dialog-actions input[disabled] + button.md-confirm-button.icon-favorited:focus,
  md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + button.md-confirm-button.icon-favorited:focus, fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + button.md-confirm-button.icon-favorited:focus, button.symbol[disabled]:hover, button.icon-favorite[disabled]:hover, label.icon-favorite.label-btn[disabled]:hover, md-dialog md-dialog-actions .icon-favorite.md-cancel-button[disabled]:hover, md-dialog md-dialog-actions .icon-favorite.md-confirm-button[disabled]:hover,
  button.icon-favorited[disabled]:hover, label.icon-favorited.label-btn[disabled]:hover, md-dialog md-dialog-actions .icon-favorited.md-cancel-button[disabled]:hover, md-dialog md-dialog-actions .icon-favorited.md-confirm-button[disabled]:hover, label.symbol.label-btn[disabled]:hover, md-dialog md-dialog-actions .symbol.md-cancel-button[disabled]:hover, md-dialog md-dialog-actions .symbol.md-confirm-button[disabled]:hover, button.symbol[disabled]:focus, button.icon-favorite[disabled]:focus, label.icon-favorite.label-btn[disabled]:focus, md-dialog md-dialog-actions .icon-favorite.md-cancel-button[disabled]:focus, md-dialog md-dialog-actions .icon-favorite.md-confirm-button[disabled]:focus,
  button.icon-favorited[disabled]:focus, label.icon-favorited.label-btn[disabled]:focus, md-dialog md-dialog-actions .icon-favorited.md-cancel-button[disabled]:focus, md-dialog md-dialog-actions .icon-favorited.md-confirm-button[disabled]:focus, label.symbol.label-btn[disabled]:focus, md-dialog md-dialog-actions .symbol.md-cancel-button[disabled]:focus, md-dialog md-dialog-actions .symbol.md-confirm-button[disabled]:focus,
  fieldset[disabled] button.symbol:hover,
  fieldset[disabled] button.icon-favorite:hover,
  fieldset[disabled] label.icon-favorite.label-btn:hover,
  fieldset[disabled] md-dialog md-dialog-actions .icon-favorite.md-cancel-button:hover,
  md-dialog md-dialog-actions fieldset[disabled] .icon-favorite.md-cancel-button:hover,
  fieldset[disabled] md-dialog md-dialog-actions .icon-favorite.md-confirm-button:hover,
  md-dialog md-dialog-actions fieldset[disabled] .icon-favorite.md-confirm-button:hover,
  fieldset[disabled] button.icon-favorited:hover,
  fieldset[disabled] label.icon-favorited.label-btn:hover,
  fieldset[disabled] md-dialog md-dialog-actions .icon-favorited.md-cancel-button:hover,
  md-dialog md-dialog-actions fieldset[disabled] .icon-favorited.md-cancel-button:hover,
  fieldset[disabled] md-dialog md-dialog-actions .icon-favorited.md-confirm-button:hover,
  md-dialog md-dialog-actions fieldset[disabled] .icon-favorited.md-confirm-button:hover,
  fieldset[disabled] label.symbol.label-btn:hover,
  fieldset[disabled] md-dialog md-dialog-actions .symbol.md-cancel-button:hover,
  md-dialog md-dialog-actions fieldset[disabled] .symbol.md-cancel-button:hover,
  fieldset[disabled] md-dialog md-dialog-actions .symbol.md-confirm-button:hover,
  md-dialog md-dialog-actions fieldset[disabled] .symbol.md-confirm-button:hover,
  fieldset[disabled] button.symbol:focus,
  fieldset[disabled] button.icon-favorite:focus,
  fieldset[disabled] label.icon-favorite.label-btn:focus,
  fieldset[disabled] md-dialog md-dialog-actions .icon-favorite.md-cancel-button:focus,
  md-dialog md-dialog-actions fieldset[disabled] .icon-favorite.md-cancel-button:focus,
  fieldset[disabled] md-dialog md-dialog-actions .icon-favorite.md-confirm-button:focus,
  md-dialog md-dialog-actions fieldset[disabled] .icon-favorite.md-confirm-button:focus,
  fieldset[disabled] button.icon-favorited:focus,
  fieldset[disabled] label.icon-favorited.label-btn:focus,
  fieldset[disabled] md-dialog md-dialog-actions .icon-favorited.md-cancel-button:focus,
  md-dialog md-dialog-actions fieldset[disabled] .icon-favorited.md-cancel-button:focus,
  fieldset[disabled] md-dialog md-dialog-actions .icon-favorited.md-confirm-button:focus,
  md-dialog md-dialog-actions fieldset[disabled] .icon-favorited.md-confirm-button:focus,
  fieldset[disabled] label.symbol.label-btn:focus,
  fieldset[disabled] md-dialog md-dialog-actions .symbol.md-cancel-button:focus,
  md-dialog md-dialog-actions fieldset[disabled] .symbol.md-cancel-button:focus,
  fieldset[disabled] md-dialog md-dialog-actions .symbol.md-confirm-button:focus,
  md-dialog md-dialog-actions fieldset[disabled] .symbol.md-confirm-button:focus {
    background-color: transparent; }
  .theme-cmix button.symbol:before, .theme-cmix button.icon-favorite:before, .theme-cmix label.icon-favorite.label-btn:before, .theme-cmix md-dialog md-dialog-actions .icon-favorite.md-cancel-button:before, md-dialog md-dialog-actions .theme-cmix .icon-favorite.md-cancel-button:before, .theme-cmix md-dialog md-dialog-actions .icon-favorite.md-confirm-button:before, md-dialog md-dialog-actions .theme-cmix .icon-favorite.md-confirm-button:before,
  .theme-cmix button.icon-favorited:before, .theme-cmix label.icon-favorited.label-btn:before, .theme-cmix md-dialog md-dialog-actions .icon-favorited.md-cancel-button:before, md-dialog md-dialog-actions .theme-cmix .icon-favorited.md-cancel-button:before, .theme-cmix md-dialog md-dialog-actions .icon-favorited.md-confirm-button:before, md-dialog md-dialog-actions .theme-cmix .icon-favorited.md-confirm-button:before, .theme-cmix label.symbol.label-btn:before, .theme-cmix md-dialog md-dialog-actions .symbol.md-cancel-button:before, md-dialog md-dialog-actions .theme-cmix .symbol.md-cancel-button:before, .theme-cmix md-dialog md-dialog-actions .symbol.md-confirm-button:before, md-dialog md-dialog-actions .theme-cmix .symbol.md-confirm-button:before {
    color: #22232D; }
  .theme-cmix button.symbol:hover:before, .theme-cmix button.icon-favorite:hover:before, .theme-cmix label.icon-favorite.label-btn:hover:before, .theme-cmix md-dialog md-dialog-actions .icon-favorite.md-cancel-button:hover:before, md-dialog md-dialog-actions .theme-cmix .icon-favorite.md-cancel-button:hover:before, .theme-cmix md-dialog md-dialog-actions .icon-favorite.md-confirm-button:hover:before, md-dialog md-dialog-actions .theme-cmix .icon-favorite.md-confirm-button:hover:before,
  .theme-cmix button.icon-favorited:hover:before, .theme-cmix label.icon-favorited.label-btn:hover:before, .theme-cmix md-dialog md-dialog-actions .icon-favorited.md-cancel-button:hover:before, md-dialog md-dialog-actions .theme-cmix .icon-favorited.md-cancel-button:hover:before, .theme-cmix md-dialog md-dialog-actions .icon-favorited.md-confirm-button:hover:before, md-dialog md-dialog-actions .theme-cmix .icon-favorited.md-confirm-button:hover:before, .theme-cmix label.symbol.label-btn:hover:before, .theme-cmix md-dialog md-dialog-actions .symbol.md-cancel-button:hover:before, md-dialog md-dialog-actions .theme-cmix .symbol.md-cancel-button:hover:before, .theme-cmix md-dialog md-dialog-actions .symbol.md-confirm-button:hover:before, md-dialog md-dialog-actions .theme-cmix .symbol.md-confirm-button:hover:before, .theme-cmix button.symbol:focus:before, .theme-cmix button.icon-favorite:focus:before, .theme-cmix label.icon-favorite.label-btn:focus:before, .theme-cmix md-dialog md-dialog-actions .icon-favorite.md-cancel-button:focus:before, md-dialog md-dialog-actions .theme-cmix .icon-favorite.md-cancel-button:focus:before, .theme-cmix md-dialog md-dialog-actions .icon-favorite.md-confirm-button:focus:before, md-dialog md-dialog-actions .theme-cmix .icon-favorite.md-confirm-button:focus:before,
  .theme-cmix button.icon-favorited:focus:before, .theme-cmix label.icon-favorited.label-btn:focus:before, .theme-cmix md-dialog md-dialog-actions .icon-favorited.md-cancel-button:focus:before, md-dialog md-dialog-actions .theme-cmix .icon-favorited.md-cancel-button:focus:before, .theme-cmix md-dialog md-dialog-actions .icon-favorited.md-confirm-button:focus:before, md-dialog md-dialog-actions .theme-cmix .icon-favorited.md-confirm-button:focus:before, .theme-cmix label.symbol.label-btn:focus:before, .theme-cmix md-dialog md-dialog-actions .symbol.md-cancel-button:focus:before, md-dialog md-dialog-actions .theme-cmix .symbol.md-cancel-button:focus:before, .theme-cmix md-dialog md-dialog-actions .symbol.md-confirm-button:focus:before, md-dialog md-dialog-actions .theme-cmix .symbol.md-confirm-button:focus:before {
    color: #3EA8DD; }
  .theme-cmix button.symbol:active:before, .theme-cmix button.icon-favorite:active:before, .theme-cmix label.icon-favorite.label-btn:active:before, .theme-cmix md-dialog md-dialog-actions .icon-favorite.md-cancel-button:active:before, md-dialog md-dialog-actions .theme-cmix .icon-favorite.md-cancel-button:active:before, .theme-cmix md-dialog md-dialog-actions .icon-favorite.md-confirm-button:active:before, md-dialog md-dialog-actions .theme-cmix .icon-favorite.md-confirm-button:active:before,
  .theme-cmix button.icon-favorited:active:before, .theme-cmix label.icon-favorited.label-btn:active:before, .theme-cmix md-dialog md-dialog-actions .icon-favorited.md-cancel-button:active:before, md-dialog md-dialog-actions .theme-cmix .icon-favorited.md-cancel-button:active:before, .theme-cmix md-dialog md-dialog-actions .icon-favorited.md-confirm-button:active:before, md-dialog md-dialog-actions .theme-cmix .icon-favorited.md-confirm-button:active:before, .theme-cmix label.symbol.label-btn:active:before, .theme-cmix md-dialog md-dialog-actions .symbol.md-cancel-button:active:before, md-dialog md-dialog-actions .theme-cmix .symbol.md-cancel-button:active:before, .theme-cmix md-dialog md-dialog-actions .symbol.md-confirm-button:active:before, md-dialog md-dialog-actions .theme-cmix .symbol.md-confirm-button:active:before {
    color: #22232D; }
  .theme-cmix button.symbol.light:before, .theme-cmix button.light.icon-favorite:before, .theme-cmix label.light.icon-favorite.label-btn:before, .theme-cmix md-dialog md-dialog-actions .light.icon-favorite.md-cancel-button:before, md-dialog md-dialog-actions .theme-cmix .light.icon-favorite.md-cancel-button:before, .theme-cmix md-dialog md-dialog-actions .light.icon-favorite.md-confirm-button:before, md-dialog md-dialog-actions .theme-cmix .light.icon-favorite.md-confirm-button:before,
  .theme-cmix button.light.icon-favorited:before, .theme-cmix label.light.icon-favorited.label-btn:before, .theme-cmix md-dialog md-dialog-actions .light.icon-favorited.md-cancel-button:before, md-dialog md-dialog-actions .theme-cmix .light.icon-favorited.md-cancel-button:before, .theme-cmix md-dialog md-dialog-actions .light.icon-favorited.md-confirm-button:before, md-dialog md-dialog-actions .theme-cmix .light.icon-favorited.md-confirm-button:before, .theme-cmix label.symbol.light.label-btn:before, .theme-cmix md-dialog md-dialog-actions .symbol.light.md-cancel-button:before, md-dialog md-dialog-actions .theme-cmix .symbol.light.md-cancel-button:before, .theme-cmix md-dialog md-dialog-actions .symbol.light.md-confirm-button:before, md-dialog md-dialog-actions .theme-cmix .symbol.light.md-confirm-button:before {
    color: #FFFFFF; }
  .theme-cmix button.symbol.light:hover:before, .theme-cmix button.light.icon-favorite:hover:before, .theme-cmix label.light.icon-favorite.label-btn:hover:before, .theme-cmix md-dialog md-dialog-actions .light.icon-favorite.md-cancel-button:hover:before, md-dialog md-dialog-actions .theme-cmix .light.icon-favorite.md-cancel-button:hover:before, .theme-cmix md-dialog md-dialog-actions .light.icon-favorite.md-confirm-button:hover:before, md-dialog md-dialog-actions .theme-cmix .light.icon-favorite.md-confirm-button:hover:before,
  .theme-cmix button.light.icon-favorited:hover:before, .theme-cmix label.light.icon-favorited.label-btn:hover:before, .theme-cmix md-dialog md-dialog-actions .light.icon-favorited.md-cancel-button:hover:before, md-dialog md-dialog-actions .theme-cmix .light.icon-favorited.md-cancel-button:hover:before, .theme-cmix md-dialog md-dialog-actions .light.icon-favorited.md-confirm-button:hover:before, md-dialog md-dialog-actions .theme-cmix .light.icon-favorited.md-confirm-button:hover:before, .theme-cmix label.symbol.light.label-btn:hover:before, .theme-cmix md-dialog md-dialog-actions .symbol.light.md-cancel-button:hover:before, md-dialog md-dialog-actions .theme-cmix .symbol.light.md-cancel-button:hover:before, .theme-cmix md-dialog md-dialog-actions .symbol.light.md-confirm-button:hover:before, md-dialog md-dialog-actions .theme-cmix .symbol.light.md-confirm-button:hover:before, .theme-cmix button.symbol.light:focus:before, .theme-cmix button.light.icon-favorite:focus:before, .theme-cmix label.light.icon-favorite.label-btn:focus:before, .theme-cmix md-dialog md-dialog-actions .light.icon-favorite.md-cancel-button:focus:before, md-dialog md-dialog-actions .theme-cmix .light.icon-favorite.md-cancel-button:focus:before, .theme-cmix md-dialog md-dialog-actions .light.icon-favorite.md-confirm-button:focus:before, md-dialog md-dialog-actions .theme-cmix .light.icon-favorite.md-confirm-button:focus:before,
  .theme-cmix button.light.icon-favorited:focus:before, .theme-cmix label.light.icon-favorited.label-btn:focus:before, .theme-cmix md-dialog md-dialog-actions .light.icon-favorited.md-cancel-button:focus:before, md-dialog md-dialog-actions .theme-cmix .light.icon-favorited.md-cancel-button:focus:before, .theme-cmix md-dialog md-dialog-actions .light.icon-favorited.md-confirm-button:focus:before, md-dialog md-dialog-actions .theme-cmix .light.icon-favorited.md-confirm-button:focus:before, .theme-cmix label.symbol.light.label-btn:focus:before, .theme-cmix md-dialog md-dialog-actions .symbol.light.md-cancel-button:focus:before, md-dialog md-dialog-actions .theme-cmix .symbol.light.md-cancel-button:focus:before, .theme-cmix md-dialog md-dialog-actions .symbol.light.md-confirm-button:focus:before, md-dialog md-dialog-actions .theme-cmix .symbol.light.md-confirm-button:focus:before {
    color: #69bce5; }
  .theme-cmix button.symbol.light:active, .theme-cmix button.light.icon-favorite:active, .theme-cmix label.light.icon-favorite.label-btn:active, .theme-cmix md-dialog md-dialog-actions .light.icon-favorite.md-cancel-button:active, md-dialog md-dialog-actions .theme-cmix .light.icon-favorite.md-cancel-button:active, .theme-cmix md-dialog md-dialog-actions .light.icon-favorite.md-confirm-button:active, md-dialog md-dialog-actions .theme-cmix .light.icon-favorite.md-confirm-button:active,
  .theme-cmix button.light.icon-favorited:active, .theme-cmix label.light.icon-favorited.label-btn:active, .theme-cmix md-dialog md-dialog-actions .light.icon-favorited.md-cancel-button:active, md-dialog md-dialog-actions .theme-cmix .light.icon-favorited.md-cancel-button:active, .theme-cmix md-dialog md-dialog-actions .light.icon-favorited.md-confirm-button:active, md-dialog md-dialog-actions .theme-cmix .light.icon-favorited.md-confirm-button:active, .theme-cmix label.symbol.light.label-btn:active, .theme-cmix md-dialog md-dialog-actions .symbol.light.md-cancel-button:active, md-dialog md-dialog-actions .theme-cmix .symbol.light.md-cancel-button:active, .theme-cmix md-dialog md-dialog-actions .symbol.light.md-confirm-button:active, md-dialog md-dialog-actions .theme-cmix .symbol.light.md-confirm-button:active, .theme-cmix button.symbol.light:active:before, .theme-cmix button.light.icon-favorite:active:before, .theme-cmix label.light.icon-favorite.label-btn:active:before, .theme-cmix md-dialog md-dialog-actions .light.icon-favorite.md-cancel-button:active:before, md-dialog md-dialog-actions .theme-cmix .light.icon-favorite.md-cancel-button:active:before, .theme-cmix md-dialog md-dialog-actions .light.icon-favorite.md-confirm-button:active:before, md-dialog md-dialog-actions .theme-cmix .light.icon-favorite.md-confirm-button:active:before,
  .theme-cmix button.light.icon-favorited:active:before, .theme-cmix label.light.icon-favorited.label-btn:active:before, .theme-cmix md-dialog md-dialog-actions .light.icon-favorited.md-cancel-button:active:before, md-dialog md-dialog-actions .theme-cmix .light.icon-favorited.md-cancel-button:active:before, .theme-cmix md-dialog md-dialog-actions .light.icon-favorited.md-confirm-button:active:before, md-dialog md-dialog-actions .theme-cmix .light.icon-favorited.md-confirm-button:active:before, .theme-cmix label.symbol.light.label-btn:active:before, .theme-cmix md-dialog md-dialog-actions .symbol.light.md-cancel-button:active:before, md-dialog md-dialog-actions .theme-cmix .symbol.light.md-cancel-button:active:before, .theme-cmix md-dialog md-dialog-actions .symbol.light.md-confirm-button:active:before, md-dialog md-dialog-actions .theme-cmix .symbol.light.md-confirm-button:active:before {
    color: #f2f2f2; }
  .theme-cmix button.symbol.disabled:before, .theme-cmix button.disabled.icon-favorite:before, .theme-cmix label.disabled.icon-favorite.label-btn:before, .theme-cmix .input-w-inlay input.disabled + button.icon-favorite:before, .input-w-inlay .theme-cmix input.disabled + button.icon-favorite:before, .theme-cmix .input-w-inlay input.disabled + label.icon-favorite.label-btn:before, .input-w-inlay .theme-cmix input.disabled + label.icon-favorite.label-btn:before, .theme-cmix .input-w-inlay md-dialog md-dialog-actions input.disabled + .icon-favorite.md-cancel-button:before, .input-w-inlay md-dialog md-dialog-actions .theme-cmix input.disabled + .icon-favorite.md-cancel-button:before, .theme-cmix md-dialog md-dialog-actions .input-w-inlay input.disabled + .icon-favorite.md-cancel-button:before, md-dialog md-dialog-actions .input-w-inlay .theme-cmix input.disabled + .icon-favorite.md-cancel-button:before, .theme-cmix .input-w-inlay md-dialog md-dialog-actions input.disabled + .icon-favorite.md-confirm-button:before, .input-w-inlay md-dialog md-dialog-actions .theme-cmix input.disabled + .icon-favorite.md-confirm-button:before, .theme-cmix md-dialog md-dialog-actions .input-w-inlay input.disabled + .icon-favorite.md-confirm-button:before, md-dialog md-dialog-actions .input-w-inlay .theme-cmix input.disabled + .icon-favorite.md-confirm-button:before, .theme-cmix .input-w-inlay input[disabled] + button.icon-favorite:before, .input-w-inlay .theme-cmix input[disabled] + button.icon-favorite:before, .theme-cmix .input-w-inlay input[disabled] + label.icon-favorite.label-btn:before, .input-w-inlay .theme-cmix input[disabled] + label.icon-favorite.label-btn:before, .theme-cmix .input-w-inlay md-dialog md-dialog-actions input[disabled] + .icon-favorite.md-cancel-button:before, .input-w-inlay md-dialog md-dialog-actions .theme-cmix input[disabled] + .icon-favorite.md-cancel-button:before, .theme-cmix md-dialog md-dialog-actions .input-w-inlay input[disabled] + .icon-favorite.md-cancel-button:before, md-dialog md-dialog-actions .input-w-inlay .theme-cmix input[disabled] + .icon-favorite.md-cancel-button:before, .theme-cmix .input-w-inlay md-dialog md-dialog-actions input[disabled] + .icon-favorite.md-confirm-button:before, .input-w-inlay md-dialog md-dialog-actions .theme-cmix input[disabled] + .icon-favorite.md-confirm-button:before, .theme-cmix md-dialog md-dialog-actions .input-w-inlay input[disabled] + .icon-favorite.md-confirm-button:before, md-dialog md-dialog-actions .input-w-inlay .theme-cmix input[disabled] + .icon-favorite.md-confirm-button:before,
  .theme-cmix fieldset[disabled] .input-w-inlay input + button.icon-favorite:before, fieldset[disabled] .input-w-inlay .theme-cmix input + button.icon-favorite:before, .theme-cmix fieldset[disabled] .input-w-inlay input + label.icon-favorite.label-btn:before, fieldset[disabled] .input-w-inlay .theme-cmix input + label.icon-favorite.label-btn:before, .theme-cmix fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .icon-favorite.md-cancel-button:before, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions .theme-cmix input + .icon-favorite.md-cancel-button:before, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .icon-favorite.md-cancel-button:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay .theme-cmix input + .icon-favorite.md-cancel-button:before, .theme-cmix fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .icon-favorite.md-confirm-button:before, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions .theme-cmix input + .icon-favorite.md-confirm-button:before, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .icon-favorite.md-confirm-button:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay .theme-cmix input + .icon-favorite.md-confirm-button:before, .theme-cmix .input-w-clear input.disabled + button.icon-favorite:before, .input-w-clear .theme-cmix input.disabled + button.icon-favorite:before, .theme-cmix .input-w-clear input.disabled + label.icon-favorite.label-btn:before, .input-w-clear .theme-cmix input.disabled + label.icon-favorite.label-btn:before, .theme-cmix .input-w-clear md-dialog md-dialog-actions input.disabled + .icon-favorite.md-cancel-button:before, .input-w-clear md-dialog md-dialog-actions .theme-cmix input.disabled + .icon-favorite.md-cancel-button:before, .theme-cmix md-dialog md-dialog-actions .input-w-clear input.disabled + .icon-favorite.md-cancel-button:before, md-dialog md-dialog-actions .input-w-clear .theme-cmix input.disabled + .icon-favorite.md-cancel-button:before, .theme-cmix .input-w-clear md-dialog md-dialog-actions input.disabled + .icon-favorite.md-confirm-button:before, .input-w-clear md-dialog md-dialog-actions .theme-cmix input.disabled + .icon-favorite.md-confirm-button:before, .theme-cmix md-dialog md-dialog-actions .input-w-clear input.disabled + .icon-favorite.md-confirm-button:before, md-dialog md-dialog-actions .input-w-clear .theme-cmix input.disabled + .icon-favorite.md-confirm-button:before, .theme-cmix .input-w-clear input[disabled] + button.icon-favorite:before, .input-w-clear .theme-cmix input[disabled] + button.icon-favorite:before, .theme-cmix .input-w-clear input[disabled] + label.icon-favorite.label-btn:before, .input-w-clear .theme-cmix input[disabled] + label.icon-favorite.label-btn:before, .theme-cmix .input-w-clear md-dialog md-dialog-actions input[disabled] + .icon-favorite.md-cancel-button:before, .input-w-clear md-dialog md-dialog-actions .theme-cmix input[disabled] + .icon-favorite.md-cancel-button:before, .theme-cmix md-dialog md-dialog-actions .input-w-clear input[disabled] + .icon-favorite.md-cancel-button:before, md-dialog md-dialog-actions .input-w-clear .theme-cmix input[disabled] + .icon-favorite.md-cancel-button:before, .theme-cmix .input-w-clear md-dialog md-dialog-actions input[disabled] + .icon-favorite.md-confirm-button:before, .input-w-clear md-dialog md-dialog-actions .theme-cmix input[disabled] + .icon-favorite.md-confirm-button:before, .theme-cmix md-dialog md-dialog-actions .input-w-clear input[disabled] + .icon-favorite.md-confirm-button:before, md-dialog md-dialog-actions .input-w-clear .theme-cmix input[disabled] + .icon-favorite.md-confirm-button:before,
  .theme-cmix fieldset[disabled] .input-w-clear input + button.icon-favorite:before, fieldset[disabled] .input-w-clear .theme-cmix input + button.icon-favorite:before, .theme-cmix fieldset[disabled] .input-w-clear input + label.icon-favorite.label-btn:before, fieldset[disabled] .input-w-clear .theme-cmix input + label.icon-favorite.label-btn:before, .theme-cmix fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .icon-favorite.md-cancel-button:before, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions .theme-cmix input + .icon-favorite.md-cancel-button:before, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .icon-favorite.md-cancel-button:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear .theme-cmix input + .icon-favorite.md-cancel-button:before, .theme-cmix fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .icon-favorite.md-confirm-button:before, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions .theme-cmix input + .icon-favorite.md-confirm-button:before, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .icon-favorite.md-confirm-button:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear .theme-cmix input + .icon-favorite.md-confirm-button:before, .theme-cmix .input-w-button input.disabled + button.icon-favorite:before, .input-w-button .theme-cmix input.disabled + button.icon-favorite:before, .theme-cmix .input-w-button input.disabled + label.icon-favorite.label-btn:before, .input-w-button .theme-cmix input.disabled + label.icon-favorite.label-btn:before, .theme-cmix .input-w-button md-dialog md-dialog-actions input.disabled + .icon-favorite.md-cancel-button:before, .input-w-button md-dialog md-dialog-actions .theme-cmix input.disabled + .icon-favorite.md-cancel-button:before, .theme-cmix md-dialog md-dialog-actions .input-w-button input.disabled + .icon-favorite.md-cancel-button:before, md-dialog md-dialog-actions .input-w-button .theme-cmix input.disabled + .icon-favorite.md-cancel-button:before, .theme-cmix .input-w-button md-dialog md-dialog-actions input.disabled + .icon-favorite.md-confirm-button:before, .input-w-button md-dialog md-dialog-actions .theme-cmix input.disabled + .icon-favorite.md-confirm-button:before, .theme-cmix md-dialog md-dialog-actions .input-w-button input.disabled + .icon-favorite.md-confirm-button:before, md-dialog md-dialog-actions .input-w-button .theme-cmix input.disabled + .icon-favorite.md-confirm-button:before, .theme-cmix .input-w-button input[disabled] + button.icon-favorite:before, .input-w-button .theme-cmix input[disabled] + button.icon-favorite:before, .theme-cmix .input-w-button input[disabled] + label.icon-favorite.label-btn:before, .input-w-button .theme-cmix input[disabled] + label.icon-favorite.label-btn:before, .theme-cmix .input-w-button md-dialog md-dialog-actions input[disabled] + .icon-favorite.md-cancel-button:before, .input-w-button md-dialog md-dialog-actions .theme-cmix input[disabled] + .icon-favorite.md-cancel-button:before, .theme-cmix md-dialog md-dialog-actions .input-w-button input[disabled] + .icon-favorite.md-cancel-button:before, md-dialog md-dialog-actions .input-w-button .theme-cmix input[disabled] + .icon-favorite.md-cancel-button:before, .theme-cmix .input-w-button md-dialog md-dialog-actions input[disabled] + .icon-favorite.md-confirm-button:before, .input-w-button md-dialog md-dialog-actions .theme-cmix input[disabled] + .icon-favorite.md-confirm-button:before, .theme-cmix md-dialog md-dialog-actions .input-w-button input[disabled] + .icon-favorite.md-confirm-button:before, md-dialog md-dialog-actions .input-w-button .theme-cmix input[disabled] + .icon-favorite.md-confirm-button:before,
  .theme-cmix fieldset[disabled] .input-w-button input + button.icon-favorite:before, fieldset[disabled] .input-w-button .theme-cmix input + button.icon-favorite:before, .theme-cmix fieldset[disabled] .input-w-button input + label.icon-favorite.label-btn:before, fieldset[disabled] .input-w-button .theme-cmix input + label.icon-favorite.label-btn:before, .theme-cmix fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .icon-favorite.md-cancel-button:before, fieldset[disabled] .input-w-button md-dialog md-dialog-actions .theme-cmix input + .icon-favorite.md-cancel-button:before, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .icon-favorite.md-cancel-button:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-button .theme-cmix input + .icon-favorite.md-cancel-button:before, .theme-cmix fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .icon-favorite.md-confirm-button:before, fieldset[disabled] .input-w-button md-dialog md-dialog-actions .theme-cmix input + .icon-favorite.md-confirm-button:before, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .icon-favorite.md-confirm-button:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-button .theme-cmix input + .icon-favorite.md-confirm-button:before, .theme-cmix md-dialog md-dialog-actions .disabled.icon-favorite.md-cancel-button:before, md-dialog md-dialog-actions .theme-cmix .disabled.icon-favorite.md-cancel-button:before, .theme-cmix md-dialog md-dialog-actions .disabled.icon-favorite.md-confirm-button:before, md-dialog md-dialog-actions .theme-cmix .disabled.icon-favorite.md-confirm-button:before,
  .theme-cmix button.disabled.icon-favorited:before, .theme-cmix label.disabled.icon-favorited.label-btn:before, .theme-cmix .input-w-inlay input.disabled + button.icon-favorited:before, .input-w-inlay .theme-cmix input.disabled + button.icon-favorited:before, .theme-cmix .input-w-inlay input.disabled + label.icon-favorited.label-btn:before, .input-w-inlay .theme-cmix input.disabled + label.icon-favorited.label-btn:before, .theme-cmix .input-w-inlay md-dialog md-dialog-actions input.disabled + .icon-favorited.md-cancel-button:before, .input-w-inlay md-dialog md-dialog-actions .theme-cmix input.disabled + .icon-favorited.md-cancel-button:before, .theme-cmix md-dialog md-dialog-actions .input-w-inlay input.disabled + .icon-favorited.md-cancel-button:before, md-dialog md-dialog-actions .input-w-inlay .theme-cmix input.disabled + .icon-favorited.md-cancel-button:before, .theme-cmix .input-w-inlay md-dialog md-dialog-actions input.disabled + .icon-favorited.md-confirm-button:before, .input-w-inlay md-dialog md-dialog-actions .theme-cmix input.disabled + .icon-favorited.md-confirm-button:before, .theme-cmix md-dialog md-dialog-actions .input-w-inlay input.disabled + .icon-favorited.md-confirm-button:before, md-dialog md-dialog-actions .input-w-inlay .theme-cmix input.disabled + .icon-favorited.md-confirm-button:before, .theme-cmix .input-w-inlay input[disabled] + button.icon-favorited:before, .input-w-inlay .theme-cmix input[disabled] + button.icon-favorited:before, .theme-cmix .input-w-inlay input[disabled] + label.icon-favorited.label-btn:before, .input-w-inlay .theme-cmix input[disabled] + label.icon-favorited.label-btn:before, .theme-cmix .input-w-inlay md-dialog md-dialog-actions input[disabled] + .icon-favorited.md-cancel-button:before, .input-w-inlay md-dialog md-dialog-actions .theme-cmix input[disabled] + .icon-favorited.md-cancel-button:before, .theme-cmix md-dialog md-dialog-actions .input-w-inlay input[disabled] + .icon-favorited.md-cancel-button:before, md-dialog md-dialog-actions .input-w-inlay .theme-cmix input[disabled] + .icon-favorited.md-cancel-button:before, .theme-cmix .input-w-inlay md-dialog md-dialog-actions input[disabled] + .icon-favorited.md-confirm-button:before, .input-w-inlay md-dialog md-dialog-actions .theme-cmix input[disabled] + .icon-favorited.md-confirm-button:before, .theme-cmix md-dialog md-dialog-actions .input-w-inlay input[disabled] + .icon-favorited.md-confirm-button:before, md-dialog md-dialog-actions .input-w-inlay .theme-cmix input[disabled] + .icon-favorited.md-confirm-button:before,
  .theme-cmix fieldset[disabled] .input-w-inlay input + button.icon-favorited:before, fieldset[disabled] .input-w-inlay .theme-cmix input + button.icon-favorited:before, .theme-cmix fieldset[disabled] .input-w-inlay input + label.icon-favorited.label-btn:before, fieldset[disabled] .input-w-inlay .theme-cmix input + label.icon-favorited.label-btn:before, .theme-cmix fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .icon-favorited.md-cancel-button:before, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions .theme-cmix input + .icon-favorited.md-cancel-button:before, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .icon-favorited.md-cancel-button:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay .theme-cmix input + .icon-favorited.md-cancel-button:before, .theme-cmix fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .icon-favorited.md-confirm-button:before, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions .theme-cmix input + .icon-favorited.md-confirm-button:before, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .icon-favorited.md-confirm-button:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay .theme-cmix input + .icon-favorited.md-confirm-button:before, .theme-cmix .input-w-clear input.disabled + button.icon-favorited:before, .input-w-clear .theme-cmix input.disabled + button.icon-favorited:before, .theme-cmix .input-w-clear input.disabled + label.icon-favorited.label-btn:before, .input-w-clear .theme-cmix input.disabled + label.icon-favorited.label-btn:before, .theme-cmix .input-w-clear md-dialog md-dialog-actions input.disabled + .icon-favorited.md-cancel-button:before, .input-w-clear md-dialog md-dialog-actions .theme-cmix input.disabled + .icon-favorited.md-cancel-button:before, .theme-cmix md-dialog md-dialog-actions .input-w-clear input.disabled + .icon-favorited.md-cancel-button:before, md-dialog md-dialog-actions .input-w-clear .theme-cmix input.disabled + .icon-favorited.md-cancel-button:before, .theme-cmix .input-w-clear md-dialog md-dialog-actions input.disabled + .icon-favorited.md-confirm-button:before, .input-w-clear md-dialog md-dialog-actions .theme-cmix input.disabled + .icon-favorited.md-confirm-button:before, .theme-cmix md-dialog md-dialog-actions .input-w-clear input.disabled + .icon-favorited.md-confirm-button:before, md-dialog md-dialog-actions .input-w-clear .theme-cmix input.disabled + .icon-favorited.md-confirm-button:before, .theme-cmix .input-w-clear input[disabled] + button.icon-favorited:before, .input-w-clear .theme-cmix input[disabled] + button.icon-favorited:before, .theme-cmix .input-w-clear input[disabled] + label.icon-favorited.label-btn:before, .input-w-clear .theme-cmix input[disabled] + label.icon-favorited.label-btn:before, .theme-cmix .input-w-clear md-dialog md-dialog-actions input[disabled] + .icon-favorited.md-cancel-button:before, .input-w-clear md-dialog md-dialog-actions .theme-cmix input[disabled] + .icon-favorited.md-cancel-button:before, .theme-cmix md-dialog md-dialog-actions .input-w-clear input[disabled] + .icon-favorited.md-cancel-button:before, md-dialog md-dialog-actions .input-w-clear .theme-cmix input[disabled] + .icon-favorited.md-cancel-button:before, .theme-cmix .input-w-clear md-dialog md-dialog-actions input[disabled] + .icon-favorited.md-confirm-button:before, .input-w-clear md-dialog md-dialog-actions .theme-cmix input[disabled] + .icon-favorited.md-confirm-button:before, .theme-cmix md-dialog md-dialog-actions .input-w-clear input[disabled] + .icon-favorited.md-confirm-button:before, md-dialog md-dialog-actions .input-w-clear .theme-cmix input[disabled] + .icon-favorited.md-confirm-button:before,
  .theme-cmix fieldset[disabled] .input-w-clear input + button.icon-favorited:before, fieldset[disabled] .input-w-clear .theme-cmix input + button.icon-favorited:before, .theme-cmix fieldset[disabled] .input-w-clear input + label.icon-favorited.label-btn:before, fieldset[disabled] .input-w-clear .theme-cmix input + label.icon-favorited.label-btn:before, .theme-cmix fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .icon-favorited.md-cancel-button:before, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions .theme-cmix input + .icon-favorited.md-cancel-button:before, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .icon-favorited.md-cancel-button:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear .theme-cmix input + .icon-favorited.md-cancel-button:before, .theme-cmix fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .icon-favorited.md-confirm-button:before, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions .theme-cmix input + .icon-favorited.md-confirm-button:before, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .icon-favorited.md-confirm-button:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear .theme-cmix input + .icon-favorited.md-confirm-button:before, .theme-cmix .input-w-button input.disabled + button.icon-favorited:before, .input-w-button .theme-cmix input.disabled + button.icon-favorited:before, .theme-cmix .input-w-button input.disabled + label.icon-favorited.label-btn:before, .input-w-button .theme-cmix input.disabled + label.icon-favorited.label-btn:before, .theme-cmix .input-w-button md-dialog md-dialog-actions input.disabled + .icon-favorited.md-cancel-button:before, .input-w-button md-dialog md-dialog-actions .theme-cmix input.disabled + .icon-favorited.md-cancel-button:before, .theme-cmix md-dialog md-dialog-actions .input-w-button input.disabled + .icon-favorited.md-cancel-button:before, md-dialog md-dialog-actions .input-w-button .theme-cmix input.disabled + .icon-favorited.md-cancel-button:before, .theme-cmix .input-w-button md-dialog md-dialog-actions input.disabled + .icon-favorited.md-confirm-button:before, .input-w-button md-dialog md-dialog-actions .theme-cmix input.disabled + .icon-favorited.md-confirm-button:before, .theme-cmix md-dialog md-dialog-actions .input-w-button input.disabled + .icon-favorited.md-confirm-button:before, md-dialog md-dialog-actions .input-w-button .theme-cmix input.disabled + .icon-favorited.md-confirm-button:before, .theme-cmix .input-w-button input[disabled] + button.icon-favorited:before, .input-w-button .theme-cmix input[disabled] + button.icon-favorited:before, .theme-cmix .input-w-button input[disabled] + label.icon-favorited.label-btn:before, .input-w-button .theme-cmix input[disabled] + label.icon-favorited.label-btn:before, .theme-cmix .input-w-button md-dialog md-dialog-actions input[disabled] + .icon-favorited.md-cancel-button:before, .input-w-button md-dialog md-dialog-actions .theme-cmix input[disabled] + .icon-favorited.md-cancel-button:before, .theme-cmix md-dialog md-dialog-actions .input-w-button input[disabled] + .icon-favorited.md-cancel-button:before, md-dialog md-dialog-actions .input-w-button .theme-cmix input[disabled] + .icon-favorited.md-cancel-button:before, .theme-cmix .input-w-button md-dialog md-dialog-actions input[disabled] + .icon-favorited.md-confirm-button:before, .input-w-button md-dialog md-dialog-actions .theme-cmix input[disabled] + .icon-favorited.md-confirm-button:before, .theme-cmix md-dialog md-dialog-actions .input-w-button input[disabled] + .icon-favorited.md-confirm-button:before, md-dialog md-dialog-actions .input-w-button .theme-cmix input[disabled] + .icon-favorited.md-confirm-button:before,
  .theme-cmix fieldset[disabled] .input-w-button input + button.icon-favorited:before, fieldset[disabled] .input-w-button .theme-cmix input + button.icon-favorited:before, .theme-cmix fieldset[disabled] .input-w-button input + label.icon-favorited.label-btn:before, fieldset[disabled] .input-w-button .theme-cmix input + label.icon-favorited.label-btn:before, .theme-cmix fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .icon-favorited.md-cancel-button:before, fieldset[disabled] .input-w-button md-dialog md-dialog-actions .theme-cmix input + .icon-favorited.md-cancel-button:before, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .icon-favorited.md-cancel-button:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-button .theme-cmix input + .icon-favorited.md-cancel-button:before, .theme-cmix fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .icon-favorited.md-confirm-button:before, fieldset[disabled] .input-w-button md-dialog md-dialog-actions .theme-cmix input + .icon-favorited.md-confirm-button:before, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .icon-favorited.md-confirm-button:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-button .theme-cmix input + .icon-favorited.md-confirm-button:before, .theme-cmix md-dialog md-dialog-actions .disabled.icon-favorited.md-cancel-button:before, md-dialog md-dialog-actions .theme-cmix .disabled.icon-favorited.md-cancel-button:before, .theme-cmix md-dialog md-dialog-actions .disabled.icon-favorited.md-confirm-button:before, md-dialog md-dialog-actions .theme-cmix .disabled.icon-favorited.md-confirm-button:before, .theme-cmix label.symbol.disabled.label-btn:before, .theme-cmix .input-w-inlay input.disabled + button.symbol:before, .input-w-inlay .theme-cmix input.disabled + button.symbol:before, .theme-cmix .input-w-inlay input.disabled + label.symbol.label-btn:before, .input-w-inlay .theme-cmix input.disabled + label.symbol.label-btn:before, .theme-cmix .input-w-inlay md-dialog md-dialog-actions input.disabled + .symbol.md-cancel-button:before, .input-w-inlay md-dialog md-dialog-actions .theme-cmix input.disabled + .symbol.md-cancel-button:before, .theme-cmix md-dialog md-dialog-actions .input-w-inlay input.disabled + .symbol.md-cancel-button:before, md-dialog md-dialog-actions .input-w-inlay .theme-cmix input.disabled + .symbol.md-cancel-button:before, .theme-cmix .input-w-inlay md-dialog md-dialog-actions input.disabled + .symbol.md-confirm-button:before, .input-w-inlay md-dialog md-dialog-actions .theme-cmix input.disabled + .symbol.md-confirm-button:before, .theme-cmix md-dialog md-dialog-actions .input-w-inlay input.disabled + .symbol.md-confirm-button:before, md-dialog md-dialog-actions .input-w-inlay .theme-cmix input.disabled + .symbol.md-confirm-button:before, .theme-cmix .input-w-inlay input[disabled] + button.symbol:before, .input-w-inlay .theme-cmix input[disabled] + button.symbol:before, .theme-cmix .input-w-inlay input[disabled] + label.symbol.label-btn:before, .input-w-inlay .theme-cmix input[disabled] + label.symbol.label-btn:before, .theme-cmix .input-w-inlay md-dialog md-dialog-actions input[disabled] + .symbol.md-cancel-button:before, .input-w-inlay md-dialog md-dialog-actions .theme-cmix input[disabled] + .symbol.md-cancel-button:before, .theme-cmix md-dialog md-dialog-actions .input-w-inlay input[disabled] + .symbol.md-cancel-button:before, md-dialog md-dialog-actions .input-w-inlay .theme-cmix input[disabled] + .symbol.md-cancel-button:before, .theme-cmix .input-w-inlay md-dialog md-dialog-actions input[disabled] + .symbol.md-confirm-button:before, .input-w-inlay md-dialog md-dialog-actions .theme-cmix input[disabled] + .symbol.md-confirm-button:before, .theme-cmix md-dialog md-dialog-actions .input-w-inlay input[disabled] + .symbol.md-confirm-button:before, md-dialog md-dialog-actions .input-w-inlay .theme-cmix input[disabled] + .symbol.md-confirm-button:before,
  .theme-cmix fieldset[disabled] .input-w-inlay input + button.symbol:before, fieldset[disabled] .input-w-inlay .theme-cmix input + button.symbol:before, .theme-cmix fieldset[disabled] .input-w-inlay input + label.symbol.label-btn:before, fieldset[disabled] .input-w-inlay .theme-cmix input + label.symbol.label-btn:before, .theme-cmix fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .symbol.md-cancel-button:before, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions .theme-cmix input + .symbol.md-cancel-button:before, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .symbol.md-cancel-button:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay .theme-cmix input + .symbol.md-cancel-button:before, .theme-cmix fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .symbol.md-confirm-button:before, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions .theme-cmix input + .symbol.md-confirm-button:before, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .symbol.md-confirm-button:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay .theme-cmix input + .symbol.md-confirm-button:before, .theme-cmix .input-w-clear input.disabled + button.symbol:before, .input-w-clear .theme-cmix input.disabled + button.symbol:before, .theme-cmix .input-w-clear input.disabled + label.symbol.label-btn:before, .input-w-clear .theme-cmix input.disabled + label.symbol.label-btn:before, .theme-cmix .input-w-clear md-dialog md-dialog-actions input.disabled + .symbol.md-cancel-button:before, .input-w-clear md-dialog md-dialog-actions .theme-cmix input.disabled + .symbol.md-cancel-button:before, .theme-cmix md-dialog md-dialog-actions .input-w-clear input.disabled + .symbol.md-cancel-button:before, md-dialog md-dialog-actions .input-w-clear .theme-cmix input.disabled + .symbol.md-cancel-button:before, .theme-cmix .input-w-clear md-dialog md-dialog-actions input.disabled + .symbol.md-confirm-button:before, .input-w-clear md-dialog md-dialog-actions .theme-cmix input.disabled + .symbol.md-confirm-button:before, .theme-cmix md-dialog md-dialog-actions .input-w-clear input.disabled + .symbol.md-confirm-button:before, md-dialog md-dialog-actions .input-w-clear .theme-cmix input.disabled + .symbol.md-confirm-button:before, .theme-cmix .input-w-clear input[disabled] + button.symbol:before, .input-w-clear .theme-cmix input[disabled] + button.symbol:before, .theme-cmix .input-w-clear input[disabled] + label.symbol.label-btn:before, .input-w-clear .theme-cmix input[disabled] + label.symbol.label-btn:before, .theme-cmix .input-w-clear md-dialog md-dialog-actions input[disabled] + .symbol.md-cancel-button:before, .input-w-clear md-dialog md-dialog-actions .theme-cmix input[disabled] + .symbol.md-cancel-button:before, .theme-cmix md-dialog md-dialog-actions .input-w-clear input[disabled] + .symbol.md-cancel-button:before, md-dialog md-dialog-actions .input-w-clear .theme-cmix input[disabled] + .symbol.md-cancel-button:before, .theme-cmix .input-w-clear md-dialog md-dialog-actions input[disabled] + .symbol.md-confirm-button:before, .input-w-clear md-dialog md-dialog-actions .theme-cmix input[disabled] + .symbol.md-confirm-button:before, .theme-cmix md-dialog md-dialog-actions .input-w-clear input[disabled] + .symbol.md-confirm-button:before, md-dialog md-dialog-actions .input-w-clear .theme-cmix input[disabled] + .symbol.md-confirm-button:before,
  .theme-cmix fieldset[disabled] .input-w-clear input + button.symbol:before, fieldset[disabled] .input-w-clear .theme-cmix input + button.symbol:before, .theme-cmix fieldset[disabled] .input-w-clear input + label.symbol.label-btn:before, fieldset[disabled] .input-w-clear .theme-cmix input + label.symbol.label-btn:before, .theme-cmix fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .symbol.md-cancel-button:before, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions .theme-cmix input + .symbol.md-cancel-button:before, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .symbol.md-cancel-button:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear .theme-cmix input + .symbol.md-cancel-button:before, .theme-cmix fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .symbol.md-confirm-button:before, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions .theme-cmix input + .symbol.md-confirm-button:before, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .symbol.md-confirm-button:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear .theme-cmix input + .symbol.md-confirm-button:before, .theme-cmix .input-w-button input.disabled + button.symbol:before, .input-w-button .theme-cmix input.disabled + button.symbol:before, .theme-cmix .input-w-button input.disabled + label.symbol.label-btn:before, .input-w-button .theme-cmix input.disabled + label.symbol.label-btn:before, .theme-cmix .input-w-button md-dialog md-dialog-actions input.disabled + .symbol.md-cancel-button:before, .input-w-button md-dialog md-dialog-actions .theme-cmix input.disabled + .symbol.md-cancel-button:before, .theme-cmix md-dialog md-dialog-actions .input-w-button input.disabled + .symbol.md-cancel-button:before, md-dialog md-dialog-actions .input-w-button .theme-cmix input.disabled + .symbol.md-cancel-button:before, .theme-cmix .input-w-button md-dialog md-dialog-actions input.disabled + .symbol.md-confirm-button:before, .input-w-button md-dialog md-dialog-actions .theme-cmix input.disabled + .symbol.md-confirm-button:before, .theme-cmix md-dialog md-dialog-actions .input-w-button input.disabled + .symbol.md-confirm-button:before, md-dialog md-dialog-actions .input-w-button .theme-cmix input.disabled + .symbol.md-confirm-button:before, .theme-cmix .input-w-button input[disabled] + button.symbol:before, .input-w-button .theme-cmix input[disabled] + button.symbol:before, .theme-cmix .input-w-button input[disabled] + label.symbol.label-btn:before, .input-w-button .theme-cmix input[disabled] + label.symbol.label-btn:before, .theme-cmix .input-w-button md-dialog md-dialog-actions input[disabled] + .symbol.md-cancel-button:before, .input-w-button md-dialog md-dialog-actions .theme-cmix input[disabled] + .symbol.md-cancel-button:before, .theme-cmix md-dialog md-dialog-actions .input-w-button input[disabled] + .symbol.md-cancel-button:before, md-dialog md-dialog-actions .input-w-button .theme-cmix input[disabled] + .symbol.md-cancel-button:before, .theme-cmix .input-w-button md-dialog md-dialog-actions input[disabled] + .symbol.md-confirm-button:before, .input-w-button md-dialog md-dialog-actions .theme-cmix input[disabled] + .symbol.md-confirm-button:before, .theme-cmix md-dialog md-dialog-actions .input-w-button input[disabled] + .symbol.md-confirm-button:before, md-dialog md-dialog-actions .input-w-button .theme-cmix input[disabled] + .symbol.md-confirm-button:before,
  .theme-cmix fieldset[disabled] .input-w-button input + button.symbol:before, fieldset[disabled] .input-w-button .theme-cmix input + button.symbol:before, .theme-cmix fieldset[disabled] .input-w-button input + label.symbol.label-btn:before, fieldset[disabled] .input-w-button .theme-cmix input + label.symbol.label-btn:before, .theme-cmix fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .symbol.md-cancel-button:before, fieldset[disabled] .input-w-button md-dialog md-dialog-actions .theme-cmix input + .symbol.md-cancel-button:before, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .symbol.md-cancel-button:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-button .theme-cmix input + .symbol.md-cancel-button:before, .theme-cmix fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .symbol.md-confirm-button:before, fieldset[disabled] .input-w-button md-dialog md-dialog-actions .theme-cmix input + .symbol.md-confirm-button:before, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .symbol.md-confirm-button:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-button .theme-cmix input + .symbol.md-confirm-button:before, .theme-cmix md-dialog md-dialog-actions .symbol.disabled.md-cancel-button:before, md-dialog md-dialog-actions .theme-cmix .symbol.disabled.md-cancel-button:before, .theme-cmix md-dialog md-dialog-actions button.disabled.md-cancel-button.icon-favorite:before, md-dialog md-dialog-actions .theme-cmix button.disabled.md-cancel-button.icon-favorite:before, .theme-cmix md-dialog md-dialog-actions .input-w-inlay input.disabled + button.md-cancel-button.icon-favorite:before, md-dialog md-dialog-actions .input-w-inlay .theme-cmix input.disabled + button.md-cancel-button.icon-favorite:before, .theme-cmix .input-w-inlay md-dialog md-dialog-actions input.disabled + button.md-cancel-button.icon-favorite:before, .input-w-inlay md-dialog md-dialog-actions .theme-cmix input.disabled + button.md-cancel-button.icon-favorite:before, .theme-cmix md-dialog md-dialog-actions .input-w-inlay input[disabled] + button.md-cancel-button.icon-favorite:before, md-dialog md-dialog-actions .input-w-inlay .theme-cmix input[disabled] + button.md-cancel-button.icon-favorite:before, .theme-cmix .input-w-inlay md-dialog md-dialog-actions input[disabled] + button.md-cancel-button.icon-favorite:before, .input-w-inlay md-dialog md-dialog-actions .theme-cmix input[disabled] + button.md-cancel-button.icon-favorite:before,
  .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + button.md-cancel-button.icon-favorite:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay .theme-cmix input + button.md-cancel-button.icon-favorite:before, .theme-cmix fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + button.md-cancel-button.icon-favorite:before, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions .theme-cmix input + button.md-cancel-button.icon-favorite:before, .theme-cmix md-dialog md-dialog-actions .input-w-clear input.disabled + button.md-cancel-button.icon-favorite:before, md-dialog md-dialog-actions .input-w-clear .theme-cmix input.disabled + button.md-cancel-button.icon-favorite:before, .theme-cmix .input-w-clear md-dialog md-dialog-actions input.disabled + button.md-cancel-button.icon-favorite:before, .input-w-clear md-dialog md-dialog-actions .theme-cmix input.disabled + button.md-cancel-button.icon-favorite:before, .theme-cmix md-dialog md-dialog-actions .input-w-clear input[disabled] + button.md-cancel-button.icon-favorite:before, md-dialog md-dialog-actions .input-w-clear .theme-cmix input[disabled] + button.md-cancel-button.icon-favorite:before, .theme-cmix .input-w-clear md-dialog md-dialog-actions input[disabled] + button.md-cancel-button.icon-favorite:before, .input-w-clear md-dialog md-dialog-actions .theme-cmix input[disabled] + button.md-cancel-button.icon-favorite:before,
  .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + button.md-cancel-button.icon-favorite:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear .theme-cmix input + button.md-cancel-button.icon-favorite:before, .theme-cmix fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + button.md-cancel-button.icon-favorite:before, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions .theme-cmix input + button.md-cancel-button.icon-favorite:before, .theme-cmix md-dialog md-dialog-actions .input-w-button input.disabled + button.md-cancel-button.icon-favorite:before, md-dialog md-dialog-actions .input-w-button .theme-cmix input.disabled + button.md-cancel-button.icon-favorite:before, .theme-cmix .input-w-button md-dialog md-dialog-actions input.disabled + button.md-cancel-button.icon-favorite:before, .input-w-button md-dialog md-dialog-actions .theme-cmix input.disabled + button.md-cancel-button.icon-favorite:before, .theme-cmix md-dialog md-dialog-actions .input-w-button input[disabled] + button.md-cancel-button.icon-favorite:before, md-dialog md-dialog-actions .input-w-button .theme-cmix input[disabled] + button.md-cancel-button.icon-favorite:before, .theme-cmix .input-w-button md-dialog md-dialog-actions input[disabled] + button.md-cancel-button.icon-favorite:before, .input-w-button md-dialog md-dialog-actions .theme-cmix input[disabled] + button.md-cancel-button.icon-favorite:before,
  .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + button.md-cancel-button.icon-favorite:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-button .theme-cmix input + button.md-cancel-button.icon-favorite:before, .theme-cmix fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + button.md-cancel-button.icon-favorite:before, fieldset[disabled] .input-w-button md-dialog md-dialog-actions .theme-cmix input + button.md-cancel-button.icon-favorite:before,
  .theme-cmix md-dialog md-dialog-actions button.disabled.md-cancel-button.icon-favorited:before, md-dialog md-dialog-actions .theme-cmix button.disabled.md-cancel-button.icon-favorited:before, .theme-cmix md-dialog md-dialog-actions .input-w-inlay input.disabled + button.md-cancel-button.icon-favorited:before, md-dialog md-dialog-actions .input-w-inlay .theme-cmix input.disabled + button.md-cancel-button.icon-favorited:before, .theme-cmix .input-w-inlay md-dialog md-dialog-actions input.disabled + button.md-cancel-button.icon-favorited:before, .input-w-inlay md-dialog md-dialog-actions .theme-cmix input.disabled + button.md-cancel-button.icon-favorited:before, .theme-cmix md-dialog md-dialog-actions .input-w-inlay input[disabled] + button.md-cancel-button.icon-favorited:before, md-dialog md-dialog-actions .input-w-inlay .theme-cmix input[disabled] + button.md-cancel-button.icon-favorited:before, .theme-cmix .input-w-inlay md-dialog md-dialog-actions input[disabled] + button.md-cancel-button.icon-favorited:before, .input-w-inlay md-dialog md-dialog-actions .theme-cmix input[disabled] + button.md-cancel-button.icon-favorited:before,
  .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + button.md-cancel-button.icon-favorited:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay .theme-cmix input + button.md-cancel-button.icon-favorited:before, .theme-cmix fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + button.md-cancel-button.icon-favorited:before, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions .theme-cmix input + button.md-cancel-button.icon-favorited:before, .theme-cmix md-dialog md-dialog-actions .input-w-clear input.disabled + button.md-cancel-button.icon-favorited:before, md-dialog md-dialog-actions .input-w-clear .theme-cmix input.disabled + button.md-cancel-button.icon-favorited:before, .theme-cmix .input-w-clear md-dialog md-dialog-actions input.disabled + button.md-cancel-button.icon-favorited:before, .input-w-clear md-dialog md-dialog-actions .theme-cmix input.disabled + button.md-cancel-button.icon-favorited:before, .theme-cmix md-dialog md-dialog-actions .input-w-clear input[disabled] + button.md-cancel-button.icon-favorited:before, md-dialog md-dialog-actions .input-w-clear .theme-cmix input[disabled] + button.md-cancel-button.icon-favorited:before, .theme-cmix .input-w-clear md-dialog md-dialog-actions input[disabled] + button.md-cancel-button.icon-favorited:before, .input-w-clear md-dialog md-dialog-actions .theme-cmix input[disabled] + button.md-cancel-button.icon-favorited:before,
  .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + button.md-cancel-button.icon-favorited:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear .theme-cmix input + button.md-cancel-button.icon-favorited:before, .theme-cmix fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + button.md-cancel-button.icon-favorited:before, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions .theme-cmix input + button.md-cancel-button.icon-favorited:before, .theme-cmix md-dialog md-dialog-actions .input-w-button input.disabled + button.md-cancel-button.icon-favorited:before, md-dialog md-dialog-actions .input-w-button .theme-cmix input.disabled + button.md-cancel-button.icon-favorited:before, .theme-cmix .input-w-button md-dialog md-dialog-actions input.disabled + button.md-cancel-button.icon-favorited:before, .input-w-button md-dialog md-dialog-actions .theme-cmix input.disabled + button.md-cancel-button.icon-favorited:before, .theme-cmix md-dialog md-dialog-actions .input-w-button input[disabled] + button.md-cancel-button.icon-favorited:before, md-dialog md-dialog-actions .input-w-button .theme-cmix input[disabled] + button.md-cancel-button.icon-favorited:before, .theme-cmix .input-w-button md-dialog md-dialog-actions input[disabled] + button.md-cancel-button.icon-favorited:before, .input-w-button md-dialog md-dialog-actions .theme-cmix input[disabled] + button.md-cancel-button.icon-favorited:before,
  .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + button.md-cancel-button.icon-favorited:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-button .theme-cmix input + button.md-cancel-button.icon-favorited:before, .theme-cmix fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + button.md-cancel-button.icon-favorited:before, fieldset[disabled] .input-w-button md-dialog md-dialog-actions .theme-cmix input + button.md-cancel-button.icon-favorited:before, .theme-cmix md-dialog md-dialog-actions .symbol.disabled.md-confirm-button:before, md-dialog md-dialog-actions .theme-cmix .symbol.disabled.md-confirm-button:before, .theme-cmix md-dialog md-dialog-actions button.disabled.md-confirm-button.icon-favorite:before, md-dialog md-dialog-actions .theme-cmix button.disabled.md-confirm-button.icon-favorite:before, .theme-cmix md-dialog md-dialog-actions .input-w-inlay input.disabled + button.md-confirm-button.icon-favorite:before, md-dialog md-dialog-actions .input-w-inlay .theme-cmix input.disabled + button.md-confirm-button.icon-favorite:before, .theme-cmix .input-w-inlay md-dialog md-dialog-actions input.disabled + button.md-confirm-button.icon-favorite:before, .input-w-inlay md-dialog md-dialog-actions .theme-cmix input.disabled + button.md-confirm-button.icon-favorite:before, .theme-cmix md-dialog md-dialog-actions .input-w-inlay input[disabled] + button.md-confirm-button.icon-favorite:before, md-dialog md-dialog-actions .input-w-inlay .theme-cmix input[disabled] + button.md-confirm-button.icon-favorite:before, .theme-cmix .input-w-inlay md-dialog md-dialog-actions input[disabled] + button.md-confirm-button.icon-favorite:before, .input-w-inlay md-dialog md-dialog-actions .theme-cmix input[disabled] + button.md-confirm-button.icon-favorite:before,
  .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + button.md-confirm-button.icon-favorite:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay .theme-cmix input + button.md-confirm-button.icon-favorite:before, .theme-cmix fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + button.md-confirm-button.icon-favorite:before, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions .theme-cmix input + button.md-confirm-button.icon-favorite:before, .theme-cmix md-dialog md-dialog-actions .input-w-clear input.disabled + button.md-confirm-button.icon-favorite:before, md-dialog md-dialog-actions .input-w-clear .theme-cmix input.disabled + button.md-confirm-button.icon-favorite:before, .theme-cmix .input-w-clear md-dialog md-dialog-actions input.disabled + button.md-confirm-button.icon-favorite:before, .input-w-clear md-dialog md-dialog-actions .theme-cmix input.disabled + button.md-confirm-button.icon-favorite:before, .theme-cmix md-dialog md-dialog-actions .input-w-clear input[disabled] + button.md-confirm-button.icon-favorite:before, md-dialog md-dialog-actions .input-w-clear .theme-cmix input[disabled] + button.md-confirm-button.icon-favorite:before, .theme-cmix .input-w-clear md-dialog md-dialog-actions input[disabled] + button.md-confirm-button.icon-favorite:before, .input-w-clear md-dialog md-dialog-actions .theme-cmix input[disabled] + button.md-confirm-button.icon-favorite:before,
  .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + button.md-confirm-button.icon-favorite:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear .theme-cmix input + button.md-confirm-button.icon-favorite:before, .theme-cmix fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + button.md-confirm-button.icon-favorite:before, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions .theme-cmix input + button.md-confirm-button.icon-favorite:before, .theme-cmix md-dialog md-dialog-actions .input-w-button input.disabled + button.md-confirm-button.icon-favorite:before, md-dialog md-dialog-actions .input-w-button .theme-cmix input.disabled + button.md-confirm-button.icon-favorite:before, .theme-cmix .input-w-button md-dialog md-dialog-actions input.disabled + button.md-confirm-button.icon-favorite:before, .input-w-button md-dialog md-dialog-actions .theme-cmix input.disabled + button.md-confirm-button.icon-favorite:before, .theme-cmix md-dialog md-dialog-actions .input-w-button input[disabled] + button.md-confirm-button.icon-favorite:before, md-dialog md-dialog-actions .input-w-button .theme-cmix input[disabled] + button.md-confirm-button.icon-favorite:before, .theme-cmix .input-w-button md-dialog md-dialog-actions input[disabled] + button.md-confirm-button.icon-favorite:before, .input-w-button md-dialog md-dialog-actions .theme-cmix input[disabled] + button.md-confirm-button.icon-favorite:before,
  .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + button.md-confirm-button.icon-favorite:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-button .theme-cmix input + button.md-confirm-button.icon-favorite:before, .theme-cmix fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + button.md-confirm-button.icon-favorite:before, fieldset[disabled] .input-w-button md-dialog md-dialog-actions .theme-cmix input + button.md-confirm-button.icon-favorite:before,
  .theme-cmix md-dialog md-dialog-actions button.disabled.md-confirm-button.icon-favorited:before, md-dialog md-dialog-actions .theme-cmix button.disabled.md-confirm-button.icon-favorited:before, .theme-cmix md-dialog md-dialog-actions .input-w-inlay input.disabled + button.md-confirm-button.icon-favorited:before, md-dialog md-dialog-actions .input-w-inlay .theme-cmix input.disabled + button.md-confirm-button.icon-favorited:before, .theme-cmix .input-w-inlay md-dialog md-dialog-actions input.disabled + button.md-confirm-button.icon-favorited:before, .input-w-inlay md-dialog md-dialog-actions .theme-cmix input.disabled + button.md-confirm-button.icon-favorited:before, .theme-cmix md-dialog md-dialog-actions .input-w-inlay input[disabled] + button.md-confirm-button.icon-favorited:before, md-dialog md-dialog-actions .input-w-inlay .theme-cmix input[disabled] + button.md-confirm-button.icon-favorited:before, .theme-cmix .input-w-inlay md-dialog md-dialog-actions input[disabled] + button.md-confirm-button.icon-favorited:before, .input-w-inlay md-dialog md-dialog-actions .theme-cmix input[disabled] + button.md-confirm-button.icon-favorited:before,
  .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + button.md-confirm-button.icon-favorited:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay .theme-cmix input + button.md-confirm-button.icon-favorited:before, .theme-cmix fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + button.md-confirm-button.icon-favorited:before, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions .theme-cmix input + button.md-confirm-button.icon-favorited:before, .theme-cmix md-dialog md-dialog-actions .input-w-clear input.disabled + button.md-confirm-button.icon-favorited:before, md-dialog md-dialog-actions .input-w-clear .theme-cmix input.disabled + button.md-confirm-button.icon-favorited:before, .theme-cmix .input-w-clear md-dialog md-dialog-actions input.disabled + button.md-confirm-button.icon-favorited:before, .input-w-clear md-dialog md-dialog-actions .theme-cmix input.disabled + button.md-confirm-button.icon-favorited:before, .theme-cmix md-dialog md-dialog-actions .input-w-clear input[disabled] + button.md-confirm-button.icon-favorited:before, md-dialog md-dialog-actions .input-w-clear .theme-cmix input[disabled] + button.md-confirm-button.icon-favorited:before, .theme-cmix .input-w-clear md-dialog md-dialog-actions input[disabled] + button.md-confirm-button.icon-favorited:before, .input-w-clear md-dialog md-dialog-actions .theme-cmix input[disabled] + button.md-confirm-button.icon-favorited:before,
  .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + button.md-confirm-button.icon-favorited:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear .theme-cmix input + button.md-confirm-button.icon-favorited:before, .theme-cmix fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + button.md-confirm-button.icon-favorited:before, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions .theme-cmix input + button.md-confirm-button.icon-favorited:before, .theme-cmix md-dialog md-dialog-actions .input-w-button input.disabled + button.md-confirm-button.icon-favorited:before, md-dialog md-dialog-actions .input-w-button .theme-cmix input.disabled + button.md-confirm-button.icon-favorited:before, .theme-cmix .input-w-button md-dialog md-dialog-actions input.disabled + button.md-confirm-button.icon-favorited:before, .input-w-button md-dialog md-dialog-actions .theme-cmix input.disabled + button.md-confirm-button.icon-favorited:before, .theme-cmix md-dialog md-dialog-actions .input-w-button input[disabled] + button.md-confirm-button.icon-favorited:before, md-dialog md-dialog-actions .input-w-button .theme-cmix input[disabled] + button.md-confirm-button.icon-favorited:before, .theme-cmix .input-w-button md-dialog md-dialog-actions input[disabled] + button.md-confirm-button.icon-favorited:before, .input-w-button md-dialog md-dialog-actions .theme-cmix input[disabled] + button.md-confirm-button.icon-favorited:before,
  .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + button.md-confirm-button.icon-favorited:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-button .theme-cmix input + button.md-confirm-button.icon-favorited:before, .theme-cmix fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + button.md-confirm-button.icon-favorited:before, fieldset[disabled] .input-w-button md-dialog md-dialog-actions .theme-cmix input + button.md-confirm-button.icon-favorited:before, .theme-cmix button.symbol[disabled]:before, .theme-cmix button.icon-favorite[disabled]:before, .theme-cmix label.icon-favorite.label-btn[disabled]:before, .theme-cmix md-dialog md-dialog-actions .icon-favorite.md-cancel-button[disabled]:before, md-dialog md-dialog-actions .theme-cmix .icon-favorite.md-cancel-button[disabled]:before, .theme-cmix md-dialog md-dialog-actions .icon-favorite.md-confirm-button[disabled]:before, md-dialog md-dialog-actions .theme-cmix .icon-favorite.md-confirm-button[disabled]:before,
  .theme-cmix button.icon-favorited[disabled]:before, .theme-cmix label.icon-favorited.label-btn[disabled]:before, .theme-cmix md-dialog md-dialog-actions .icon-favorited.md-cancel-button[disabled]:before, md-dialog md-dialog-actions .theme-cmix .icon-favorited.md-cancel-button[disabled]:before, .theme-cmix md-dialog md-dialog-actions .icon-favorited.md-confirm-button[disabled]:before, md-dialog md-dialog-actions .theme-cmix .icon-favorited.md-confirm-button[disabled]:before, .theme-cmix label.symbol.label-btn[disabled]:before, .theme-cmix md-dialog md-dialog-actions .symbol.md-cancel-button[disabled]:before, md-dialog md-dialog-actions .theme-cmix .symbol.md-cancel-button[disabled]:before, .theme-cmix md-dialog md-dialog-actions .symbol.md-confirm-button[disabled]:before, md-dialog md-dialog-actions .theme-cmix .symbol.md-confirm-button[disabled]:before,
  fieldset[disabled] .theme-cmix button.symbol:before,
  fieldset[disabled] .theme-cmix button.icon-favorite:before,
  fieldset[disabled] .theme-cmix label.icon-favorite.label-btn:before,
  fieldset[disabled] .theme-cmix md-dialog md-dialog-actions .icon-favorite.md-cancel-button:before,
  md-dialog md-dialog-actions fieldset[disabled] .theme-cmix .icon-favorite.md-cancel-button:before,
  fieldset[disabled] .theme-cmix md-dialog md-dialog-actions .icon-favorite.md-confirm-button:before,
  md-dialog md-dialog-actions fieldset[disabled] .theme-cmix .icon-favorite.md-confirm-button:before,
  fieldset[disabled] .theme-cmix button.icon-favorited:before,
  fieldset[disabled] .theme-cmix label.icon-favorited.label-btn:before,
  fieldset[disabled] .theme-cmix md-dialog md-dialog-actions .icon-favorited.md-cancel-button:before,
  md-dialog md-dialog-actions fieldset[disabled] .theme-cmix .icon-favorited.md-cancel-button:before,
  fieldset[disabled] .theme-cmix md-dialog md-dialog-actions .icon-favorited.md-confirm-button:before,
  md-dialog md-dialog-actions fieldset[disabled] .theme-cmix .icon-favorited.md-confirm-button:before,
  fieldset[disabled] .theme-cmix label.symbol.label-btn:before,
  fieldset[disabled] .theme-cmix md-dialog md-dialog-actions .symbol.md-cancel-button:before,
  md-dialog md-dialog-actions fieldset[disabled] .theme-cmix .symbol.md-cancel-button:before,
  fieldset[disabled] .theme-cmix md-dialog md-dialog-actions .symbol.md-confirm-button:before,
  md-dialog md-dialog-actions fieldset[disabled] .theme-cmix .symbol.md-confirm-button:before {
    color: rgba(88, 88, 99, 0.65); }
  .theme-marketview button.symbol:before, .theme-marketview button.icon-favorite:before, .theme-marketview label.icon-favorite.label-btn:before, .theme-marketview md-dialog md-dialog-actions .icon-favorite.md-cancel-button:before, md-dialog md-dialog-actions .theme-marketview .icon-favorite.md-cancel-button:before, .theme-marketview md-dialog md-dialog-actions .icon-favorite.md-confirm-button:before, md-dialog md-dialog-actions .theme-marketview .icon-favorite.md-confirm-button:before,
  .theme-marketview button.icon-favorited:before, .theme-marketview label.icon-favorited.label-btn:before, .theme-marketview md-dialog md-dialog-actions .icon-favorited.md-cancel-button:before, md-dialog md-dialog-actions .theme-marketview .icon-favorited.md-cancel-button:before, .theme-marketview md-dialog md-dialog-actions .icon-favorited.md-confirm-button:before, md-dialog md-dialog-actions .theme-marketview .icon-favorited.md-confirm-button:before, .theme-marketview label.symbol.label-btn:before, .theme-marketview md-dialog md-dialog-actions .symbol.md-cancel-button:before, md-dialog md-dialog-actions .theme-marketview .symbol.md-cancel-button:before, .theme-marketview md-dialog md-dialog-actions .symbol.md-confirm-button:before, md-dialog md-dialog-actions .theme-marketview .symbol.md-confirm-button:before {
    color: #414042; }
  .theme-marketview button.symbol:hover:before, .theme-marketview button.icon-favorite:hover:before, .theme-marketview label.icon-favorite.label-btn:hover:before, .theme-marketview md-dialog md-dialog-actions .icon-favorite.md-cancel-button:hover:before, md-dialog md-dialog-actions .theme-marketview .icon-favorite.md-cancel-button:hover:before, .theme-marketview md-dialog md-dialog-actions .icon-favorite.md-confirm-button:hover:before, md-dialog md-dialog-actions .theme-marketview .icon-favorite.md-confirm-button:hover:before,
  .theme-marketview button.icon-favorited:hover:before, .theme-marketview label.icon-favorited.label-btn:hover:before, .theme-marketview md-dialog md-dialog-actions .icon-favorited.md-cancel-button:hover:before, md-dialog md-dialog-actions .theme-marketview .icon-favorited.md-cancel-button:hover:before, .theme-marketview md-dialog md-dialog-actions .icon-favorited.md-confirm-button:hover:before, md-dialog md-dialog-actions .theme-marketview .icon-favorited.md-confirm-button:hover:before, .theme-marketview label.symbol.label-btn:hover:before, .theme-marketview md-dialog md-dialog-actions .symbol.md-cancel-button:hover:before, md-dialog md-dialog-actions .theme-marketview .symbol.md-cancel-button:hover:before, .theme-marketview md-dialog md-dialog-actions .symbol.md-confirm-button:hover:before, md-dialog md-dialog-actions .theme-marketview .symbol.md-confirm-button:hover:before, .theme-marketview button.symbol:focus:before, .theme-marketview button.icon-favorite:focus:before, .theme-marketview label.icon-favorite.label-btn:focus:before, .theme-marketview md-dialog md-dialog-actions .icon-favorite.md-cancel-button:focus:before, md-dialog md-dialog-actions .theme-marketview .icon-favorite.md-cancel-button:focus:before, .theme-marketview md-dialog md-dialog-actions .icon-favorite.md-confirm-button:focus:before, md-dialog md-dialog-actions .theme-marketview .icon-favorite.md-confirm-button:focus:before,
  .theme-marketview button.icon-favorited:focus:before, .theme-marketview label.icon-favorited.label-btn:focus:before, .theme-marketview md-dialog md-dialog-actions .icon-favorited.md-cancel-button:focus:before, md-dialog md-dialog-actions .theme-marketview .icon-favorited.md-cancel-button:focus:before, .theme-marketview md-dialog md-dialog-actions .icon-favorited.md-confirm-button:focus:before, md-dialog md-dialog-actions .theme-marketview .icon-favorited.md-confirm-button:focus:before, .theme-marketview label.symbol.label-btn:focus:before, .theme-marketview md-dialog md-dialog-actions .symbol.md-cancel-button:focus:before, md-dialog md-dialog-actions .theme-marketview .symbol.md-cancel-button:focus:before, .theme-marketview md-dialog md-dialog-actions .symbol.md-confirm-button:focus:before, md-dialog md-dialog-actions .theme-marketview .symbol.md-confirm-button:focus:before {
    color: #115FA6; }
  .theme-marketview button.symbol:active:before, .theme-marketview button.icon-favorite:active:before, .theme-marketview label.icon-favorite.label-btn:active:before, .theme-marketview md-dialog md-dialog-actions .icon-favorite.md-cancel-button:active:before, md-dialog md-dialog-actions .theme-marketview .icon-favorite.md-cancel-button:active:before, .theme-marketview md-dialog md-dialog-actions .icon-favorite.md-confirm-button:active:before, md-dialog md-dialog-actions .theme-marketview .icon-favorite.md-confirm-button:active:before,
  .theme-marketview button.icon-favorited:active:before, .theme-marketview label.icon-favorited.label-btn:active:before, .theme-marketview md-dialog md-dialog-actions .icon-favorited.md-cancel-button:active:before, md-dialog md-dialog-actions .theme-marketview .icon-favorited.md-cancel-button:active:before, .theme-marketview md-dialog md-dialog-actions .icon-favorited.md-confirm-button:active:before, md-dialog md-dialog-actions .theme-marketview .icon-favorited.md-confirm-button:active:before, .theme-marketview label.symbol.label-btn:active:before, .theme-marketview md-dialog md-dialog-actions .symbol.md-cancel-button:active:before, md-dialog md-dialog-actions .theme-marketview .symbol.md-cancel-button:active:before, .theme-marketview md-dialog md-dialog-actions .symbol.md-confirm-button:active:before, md-dialog md-dialog-actions .theme-marketview .symbol.md-confirm-button:active:before {
    color: #414042; }
  .theme-marketview button.symbol.light:before, .theme-marketview button.light.icon-favorite:before, .theme-marketview label.light.icon-favorite.label-btn:before, .theme-marketview md-dialog md-dialog-actions .light.icon-favorite.md-cancel-button:before, md-dialog md-dialog-actions .theme-marketview .light.icon-favorite.md-cancel-button:before, .theme-marketview md-dialog md-dialog-actions .light.icon-favorite.md-confirm-button:before, md-dialog md-dialog-actions .theme-marketview .light.icon-favorite.md-confirm-button:before,
  .theme-marketview button.light.icon-favorited:before, .theme-marketview label.light.icon-favorited.label-btn:before, .theme-marketview md-dialog md-dialog-actions .light.icon-favorited.md-cancel-button:before, md-dialog md-dialog-actions .theme-marketview .light.icon-favorited.md-cancel-button:before, .theme-marketview md-dialog md-dialog-actions .light.icon-favorited.md-confirm-button:before, md-dialog md-dialog-actions .theme-marketview .light.icon-favorited.md-confirm-button:before, .theme-marketview label.symbol.light.label-btn:before, .theme-marketview md-dialog md-dialog-actions .symbol.light.md-cancel-button:before, md-dialog md-dialog-actions .theme-marketview .symbol.light.md-cancel-button:before, .theme-marketview md-dialog md-dialog-actions .symbol.light.md-confirm-button:before, md-dialog md-dialog-actions .theme-marketview .symbol.light.md-confirm-button:before {
    color: #FFFFFF; }
  .theme-marketview button.symbol.light:hover:before, .theme-marketview button.light.icon-favorite:hover:before, .theme-marketview label.light.icon-favorite.label-btn:hover:before, .theme-marketview md-dialog md-dialog-actions .light.icon-favorite.md-cancel-button:hover:before, md-dialog md-dialog-actions .theme-marketview .light.icon-favorite.md-cancel-button:hover:before, .theme-marketview md-dialog md-dialog-actions .light.icon-favorite.md-confirm-button:hover:before, md-dialog md-dialog-actions .theme-marketview .light.icon-favorite.md-confirm-button:hover:before,
  .theme-marketview button.light.icon-favorited:hover:before, .theme-marketview label.light.icon-favorited.label-btn:hover:before, .theme-marketview md-dialog md-dialog-actions .light.icon-favorited.md-cancel-button:hover:before, md-dialog md-dialog-actions .theme-marketview .light.icon-favorited.md-cancel-button:hover:before, .theme-marketview md-dialog md-dialog-actions .light.icon-favorited.md-confirm-button:hover:before, md-dialog md-dialog-actions .theme-marketview .light.icon-favorited.md-confirm-button:hover:before, .theme-marketview label.symbol.light.label-btn:hover:before, .theme-marketview md-dialog md-dialog-actions .symbol.light.md-cancel-button:hover:before, md-dialog md-dialog-actions .theme-marketview .symbol.light.md-cancel-button:hover:before, .theme-marketview md-dialog md-dialog-actions .symbol.light.md-confirm-button:hover:before, md-dialog md-dialog-actions .theme-marketview .symbol.light.md-confirm-button:hover:before, .theme-marketview button.symbol.light:focus:before, .theme-marketview button.light.icon-favorite:focus:before, .theme-marketview label.light.icon-favorite.label-btn:focus:before, .theme-marketview md-dialog md-dialog-actions .light.icon-favorite.md-cancel-button:focus:before, md-dialog md-dialog-actions .theme-marketview .light.icon-favorite.md-cancel-button:focus:before, .theme-marketview md-dialog md-dialog-actions .light.icon-favorite.md-confirm-button:focus:before, md-dialog md-dialog-actions .theme-marketview .light.icon-favorite.md-confirm-button:focus:before,
  .theme-marketview button.light.icon-favorited:focus:before, .theme-marketview label.light.icon-favorited.label-btn:focus:before, .theme-marketview md-dialog md-dialog-actions .light.icon-favorited.md-cancel-button:focus:before, md-dialog md-dialog-actions .theme-marketview .light.icon-favorited.md-cancel-button:focus:before, .theme-marketview md-dialog md-dialog-actions .light.icon-favorited.md-confirm-button:focus:before, md-dialog md-dialog-actions .theme-marketview .light.icon-favorited.md-confirm-button:focus:before, .theme-marketview label.symbol.light.label-btn:focus:before, .theme-marketview md-dialog md-dialog-actions .symbol.light.md-cancel-button:focus:before, md-dialog md-dialog-actions .theme-marketview .symbol.light.md-cancel-button:focus:before, .theme-marketview md-dialog md-dialog-actions .symbol.light.md-confirm-button:focus:before, md-dialog md-dialog-actions .theme-marketview .symbol.light.md-confirm-button:focus:before {
    color: #1679d4; }
  .theme-marketview button.symbol.light:active, .theme-marketview button.light.icon-favorite:active, .theme-marketview label.light.icon-favorite.label-btn:active, .theme-marketview md-dialog md-dialog-actions .light.icon-favorite.md-cancel-button:active, md-dialog md-dialog-actions .theme-marketview .light.icon-favorite.md-cancel-button:active, .theme-marketview md-dialog md-dialog-actions .light.icon-favorite.md-confirm-button:active, md-dialog md-dialog-actions .theme-marketview .light.icon-favorite.md-confirm-button:active,
  .theme-marketview button.light.icon-favorited:active, .theme-marketview label.light.icon-favorited.label-btn:active, .theme-marketview md-dialog md-dialog-actions .light.icon-favorited.md-cancel-button:active, md-dialog md-dialog-actions .theme-marketview .light.icon-favorited.md-cancel-button:active, .theme-marketview md-dialog md-dialog-actions .light.icon-favorited.md-confirm-button:active, md-dialog md-dialog-actions .theme-marketview .light.icon-favorited.md-confirm-button:active, .theme-marketview label.symbol.light.label-btn:active, .theme-marketview md-dialog md-dialog-actions .symbol.light.md-cancel-button:active, md-dialog md-dialog-actions .theme-marketview .symbol.light.md-cancel-button:active, .theme-marketview md-dialog md-dialog-actions .symbol.light.md-confirm-button:active, md-dialog md-dialog-actions .theme-marketview .symbol.light.md-confirm-button:active, .theme-marketview button.symbol.light:active:before, .theme-marketview button.light.icon-favorite:active:before, .theme-marketview label.light.icon-favorite.label-btn:active:before, .theme-marketview md-dialog md-dialog-actions .light.icon-favorite.md-cancel-button:active:before, md-dialog md-dialog-actions .theme-marketview .light.icon-favorite.md-cancel-button:active:before, .theme-marketview md-dialog md-dialog-actions .light.icon-favorite.md-confirm-button:active:before, md-dialog md-dialog-actions .theme-marketview .light.icon-favorite.md-confirm-button:active:before,
  .theme-marketview button.light.icon-favorited:active:before, .theme-marketview label.light.icon-favorited.label-btn:active:before, .theme-marketview md-dialog md-dialog-actions .light.icon-favorited.md-cancel-button:active:before, md-dialog md-dialog-actions .theme-marketview .light.icon-favorited.md-cancel-button:active:before, .theme-marketview md-dialog md-dialog-actions .light.icon-favorited.md-confirm-button:active:before, md-dialog md-dialog-actions .theme-marketview .light.icon-favorited.md-confirm-button:active:before, .theme-marketview label.symbol.light.label-btn:active:before, .theme-marketview md-dialog md-dialog-actions .symbol.light.md-cancel-button:active:before, md-dialog md-dialog-actions .theme-marketview .symbol.light.md-cancel-button:active:before, .theme-marketview md-dialog md-dialog-actions .symbol.light.md-confirm-button:active:before, md-dialog md-dialog-actions .theme-marketview .symbol.light.md-confirm-button:active:before {
    color: #f2f2f2; }
  .theme-marketview button.symbol.disabled:before, .theme-marketview button.disabled.icon-favorite:before, .theme-marketview label.disabled.icon-favorite.label-btn:before, .theme-marketview .input-w-inlay input.disabled + button.icon-favorite:before, .input-w-inlay .theme-marketview input.disabled + button.icon-favorite:before, .theme-marketview .input-w-inlay input.disabled + label.icon-favorite.label-btn:before, .input-w-inlay .theme-marketview input.disabled + label.icon-favorite.label-btn:before, .theme-marketview .input-w-inlay md-dialog md-dialog-actions input.disabled + .icon-favorite.md-cancel-button:before, .input-w-inlay md-dialog md-dialog-actions .theme-marketview input.disabled + .icon-favorite.md-cancel-button:before, .theme-marketview md-dialog md-dialog-actions .input-w-inlay input.disabled + .icon-favorite.md-cancel-button:before, md-dialog md-dialog-actions .input-w-inlay .theme-marketview input.disabled + .icon-favorite.md-cancel-button:before, .theme-marketview .input-w-inlay md-dialog md-dialog-actions input.disabled + .icon-favorite.md-confirm-button:before, .input-w-inlay md-dialog md-dialog-actions .theme-marketview input.disabled + .icon-favorite.md-confirm-button:before, .theme-marketview md-dialog md-dialog-actions .input-w-inlay input.disabled + .icon-favorite.md-confirm-button:before, md-dialog md-dialog-actions .input-w-inlay .theme-marketview input.disabled + .icon-favorite.md-confirm-button:before, .theme-marketview .input-w-inlay input[disabled] + button.icon-favorite:before, .input-w-inlay .theme-marketview input[disabled] + button.icon-favorite:before, .theme-marketview .input-w-inlay input[disabled] + label.icon-favorite.label-btn:before, .input-w-inlay .theme-marketview input[disabled] + label.icon-favorite.label-btn:before, .theme-marketview .input-w-inlay md-dialog md-dialog-actions input[disabled] + .icon-favorite.md-cancel-button:before, .input-w-inlay md-dialog md-dialog-actions .theme-marketview input[disabled] + .icon-favorite.md-cancel-button:before, .theme-marketview md-dialog md-dialog-actions .input-w-inlay input[disabled] + .icon-favorite.md-cancel-button:before, md-dialog md-dialog-actions .input-w-inlay .theme-marketview input[disabled] + .icon-favorite.md-cancel-button:before, .theme-marketview .input-w-inlay md-dialog md-dialog-actions input[disabled] + .icon-favorite.md-confirm-button:before, .input-w-inlay md-dialog md-dialog-actions .theme-marketview input[disabled] + .icon-favorite.md-confirm-button:before, .theme-marketview md-dialog md-dialog-actions .input-w-inlay input[disabled] + .icon-favorite.md-confirm-button:before, md-dialog md-dialog-actions .input-w-inlay .theme-marketview input[disabled] + .icon-favorite.md-confirm-button:before,
  .theme-marketview fieldset[disabled] .input-w-inlay input + button.icon-favorite:before, fieldset[disabled] .input-w-inlay .theme-marketview input + button.icon-favorite:before, .theme-marketview fieldset[disabled] .input-w-inlay input + label.icon-favorite.label-btn:before, fieldset[disabled] .input-w-inlay .theme-marketview input + label.icon-favorite.label-btn:before, .theme-marketview fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .icon-favorite.md-cancel-button:before, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions .theme-marketview input + .icon-favorite.md-cancel-button:before, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .icon-favorite.md-cancel-button:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay .theme-marketview input + .icon-favorite.md-cancel-button:before, .theme-marketview fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .icon-favorite.md-confirm-button:before, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions .theme-marketview input + .icon-favorite.md-confirm-button:before, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .icon-favorite.md-confirm-button:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay .theme-marketview input + .icon-favorite.md-confirm-button:before, .theme-marketview .input-w-clear input.disabled + button.icon-favorite:before, .input-w-clear .theme-marketview input.disabled + button.icon-favorite:before, .theme-marketview .input-w-clear input.disabled + label.icon-favorite.label-btn:before, .input-w-clear .theme-marketview input.disabled + label.icon-favorite.label-btn:before, .theme-marketview .input-w-clear md-dialog md-dialog-actions input.disabled + .icon-favorite.md-cancel-button:before, .input-w-clear md-dialog md-dialog-actions .theme-marketview input.disabled + .icon-favorite.md-cancel-button:before, .theme-marketview md-dialog md-dialog-actions .input-w-clear input.disabled + .icon-favorite.md-cancel-button:before, md-dialog md-dialog-actions .input-w-clear .theme-marketview input.disabled + .icon-favorite.md-cancel-button:before, .theme-marketview .input-w-clear md-dialog md-dialog-actions input.disabled + .icon-favorite.md-confirm-button:before, .input-w-clear md-dialog md-dialog-actions .theme-marketview input.disabled + .icon-favorite.md-confirm-button:before, .theme-marketview md-dialog md-dialog-actions .input-w-clear input.disabled + .icon-favorite.md-confirm-button:before, md-dialog md-dialog-actions .input-w-clear .theme-marketview input.disabled + .icon-favorite.md-confirm-button:before, .theme-marketview .input-w-clear input[disabled] + button.icon-favorite:before, .input-w-clear .theme-marketview input[disabled] + button.icon-favorite:before, .theme-marketview .input-w-clear input[disabled] + label.icon-favorite.label-btn:before, .input-w-clear .theme-marketview input[disabled] + label.icon-favorite.label-btn:before, .theme-marketview .input-w-clear md-dialog md-dialog-actions input[disabled] + .icon-favorite.md-cancel-button:before, .input-w-clear md-dialog md-dialog-actions .theme-marketview input[disabled] + .icon-favorite.md-cancel-button:before, .theme-marketview md-dialog md-dialog-actions .input-w-clear input[disabled] + .icon-favorite.md-cancel-button:before, md-dialog md-dialog-actions .input-w-clear .theme-marketview input[disabled] + .icon-favorite.md-cancel-button:before, .theme-marketview .input-w-clear md-dialog md-dialog-actions input[disabled] + .icon-favorite.md-confirm-button:before, .input-w-clear md-dialog md-dialog-actions .theme-marketview input[disabled] + .icon-favorite.md-confirm-button:before, .theme-marketview md-dialog md-dialog-actions .input-w-clear input[disabled] + .icon-favorite.md-confirm-button:before, md-dialog md-dialog-actions .input-w-clear .theme-marketview input[disabled] + .icon-favorite.md-confirm-button:before,
  .theme-marketview fieldset[disabled] .input-w-clear input + button.icon-favorite:before, fieldset[disabled] .input-w-clear .theme-marketview input + button.icon-favorite:before, .theme-marketview fieldset[disabled] .input-w-clear input + label.icon-favorite.label-btn:before, fieldset[disabled] .input-w-clear .theme-marketview input + label.icon-favorite.label-btn:before, .theme-marketview fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .icon-favorite.md-cancel-button:before, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions .theme-marketview input + .icon-favorite.md-cancel-button:before, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .icon-favorite.md-cancel-button:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear .theme-marketview input + .icon-favorite.md-cancel-button:before, .theme-marketview fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .icon-favorite.md-confirm-button:before, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions .theme-marketview input + .icon-favorite.md-confirm-button:before, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .icon-favorite.md-confirm-button:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear .theme-marketview input + .icon-favorite.md-confirm-button:before, .theme-marketview .input-w-button input.disabled + button.icon-favorite:before, .input-w-button .theme-marketview input.disabled + button.icon-favorite:before, .theme-marketview .input-w-button input.disabled + label.icon-favorite.label-btn:before, .input-w-button .theme-marketview input.disabled + label.icon-favorite.label-btn:before, .theme-marketview .input-w-button md-dialog md-dialog-actions input.disabled + .icon-favorite.md-cancel-button:before, .input-w-button md-dialog md-dialog-actions .theme-marketview input.disabled + .icon-favorite.md-cancel-button:before, .theme-marketview md-dialog md-dialog-actions .input-w-button input.disabled + .icon-favorite.md-cancel-button:before, md-dialog md-dialog-actions .input-w-button .theme-marketview input.disabled + .icon-favorite.md-cancel-button:before, .theme-marketview .input-w-button md-dialog md-dialog-actions input.disabled + .icon-favorite.md-confirm-button:before, .input-w-button md-dialog md-dialog-actions .theme-marketview input.disabled + .icon-favorite.md-confirm-button:before, .theme-marketview md-dialog md-dialog-actions .input-w-button input.disabled + .icon-favorite.md-confirm-button:before, md-dialog md-dialog-actions .input-w-button .theme-marketview input.disabled + .icon-favorite.md-confirm-button:before, .theme-marketview .input-w-button input[disabled] + button.icon-favorite:before, .input-w-button .theme-marketview input[disabled] + button.icon-favorite:before, .theme-marketview .input-w-button input[disabled] + label.icon-favorite.label-btn:before, .input-w-button .theme-marketview input[disabled] + label.icon-favorite.label-btn:before, .theme-marketview .input-w-button md-dialog md-dialog-actions input[disabled] + .icon-favorite.md-cancel-button:before, .input-w-button md-dialog md-dialog-actions .theme-marketview input[disabled] + .icon-favorite.md-cancel-button:before, .theme-marketview md-dialog md-dialog-actions .input-w-button input[disabled] + .icon-favorite.md-cancel-button:before, md-dialog md-dialog-actions .input-w-button .theme-marketview input[disabled] + .icon-favorite.md-cancel-button:before, .theme-marketview .input-w-button md-dialog md-dialog-actions input[disabled] + .icon-favorite.md-confirm-button:before, .input-w-button md-dialog md-dialog-actions .theme-marketview input[disabled] + .icon-favorite.md-confirm-button:before, .theme-marketview md-dialog md-dialog-actions .input-w-button input[disabled] + .icon-favorite.md-confirm-button:before, md-dialog md-dialog-actions .input-w-button .theme-marketview input[disabled] + .icon-favorite.md-confirm-button:before,
  .theme-marketview fieldset[disabled] .input-w-button input + button.icon-favorite:before, fieldset[disabled] .input-w-button .theme-marketview input + button.icon-favorite:before, .theme-marketview fieldset[disabled] .input-w-button input + label.icon-favorite.label-btn:before, fieldset[disabled] .input-w-button .theme-marketview input + label.icon-favorite.label-btn:before, .theme-marketview fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .icon-favorite.md-cancel-button:before, fieldset[disabled] .input-w-button md-dialog md-dialog-actions .theme-marketview input + .icon-favorite.md-cancel-button:before, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .icon-favorite.md-cancel-button:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-button .theme-marketview input + .icon-favorite.md-cancel-button:before, .theme-marketview fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .icon-favorite.md-confirm-button:before, fieldset[disabled] .input-w-button md-dialog md-dialog-actions .theme-marketview input + .icon-favorite.md-confirm-button:before, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .icon-favorite.md-confirm-button:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-button .theme-marketview input + .icon-favorite.md-confirm-button:before, .theme-marketview md-dialog md-dialog-actions .disabled.icon-favorite.md-cancel-button:before, md-dialog md-dialog-actions .theme-marketview .disabled.icon-favorite.md-cancel-button:before, .theme-marketview md-dialog md-dialog-actions .disabled.icon-favorite.md-confirm-button:before, md-dialog md-dialog-actions .theme-marketview .disabled.icon-favorite.md-confirm-button:before,
  .theme-marketview button.disabled.icon-favorited:before, .theme-marketview label.disabled.icon-favorited.label-btn:before, .theme-marketview .input-w-inlay input.disabled + button.icon-favorited:before, .input-w-inlay .theme-marketview input.disabled + button.icon-favorited:before, .theme-marketview .input-w-inlay input.disabled + label.icon-favorited.label-btn:before, .input-w-inlay .theme-marketview input.disabled + label.icon-favorited.label-btn:before, .theme-marketview .input-w-inlay md-dialog md-dialog-actions input.disabled + .icon-favorited.md-cancel-button:before, .input-w-inlay md-dialog md-dialog-actions .theme-marketview input.disabled + .icon-favorited.md-cancel-button:before, .theme-marketview md-dialog md-dialog-actions .input-w-inlay input.disabled + .icon-favorited.md-cancel-button:before, md-dialog md-dialog-actions .input-w-inlay .theme-marketview input.disabled + .icon-favorited.md-cancel-button:before, .theme-marketview .input-w-inlay md-dialog md-dialog-actions input.disabled + .icon-favorited.md-confirm-button:before, .input-w-inlay md-dialog md-dialog-actions .theme-marketview input.disabled + .icon-favorited.md-confirm-button:before, .theme-marketview md-dialog md-dialog-actions .input-w-inlay input.disabled + .icon-favorited.md-confirm-button:before, md-dialog md-dialog-actions .input-w-inlay .theme-marketview input.disabled + .icon-favorited.md-confirm-button:before, .theme-marketview .input-w-inlay input[disabled] + button.icon-favorited:before, .input-w-inlay .theme-marketview input[disabled] + button.icon-favorited:before, .theme-marketview .input-w-inlay input[disabled] + label.icon-favorited.label-btn:before, .input-w-inlay .theme-marketview input[disabled] + label.icon-favorited.label-btn:before, .theme-marketview .input-w-inlay md-dialog md-dialog-actions input[disabled] + .icon-favorited.md-cancel-button:before, .input-w-inlay md-dialog md-dialog-actions .theme-marketview input[disabled] + .icon-favorited.md-cancel-button:before, .theme-marketview md-dialog md-dialog-actions .input-w-inlay input[disabled] + .icon-favorited.md-cancel-button:before, md-dialog md-dialog-actions .input-w-inlay .theme-marketview input[disabled] + .icon-favorited.md-cancel-button:before, .theme-marketview .input-w-inlay md-dialog md-dialog-actions input[disabled] + .icon-favorited.md-confirm-button:before, .input-w-inlay md-dialog md-dialog-actions .theme-marketview input[disabled] + .icon-favorited.md-confirm-button:before, .theme-marketview md-dialog md-dialog-actions .input-w-inlay input[disabled] + .icon-favorited.md-confirm-button:before, md-dialog md-dialog-actions .input-w-inlay .theme-marketview input[disabled] + .icon-favorited.md-confirm-button:before,
  .theme-marketview fieldset[disabled] .input-w-inlay input + button.icon-favorited:before, fieldset[disabled] .input-w-inlay .theme-marketview input + button.icon-favorited:before, .theme-marketview fieldset[disabled] .input-w-inlay input + label.icon-favorited.label-btn:before, fieldset[disabled] .input-w-inlay .theme-marketview input + label.icon-favorited.label-btn:before, .theme-marketview fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .icon-favorited.md-cancel-button:before, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions .theme-marketview input + .icon-favorited.md-cancel-button:before, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .icon-favorited.md-cancel-button:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay .theme-marketview input + .icon-favorited.md-cancel-button:before, .theme-marketview fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .icon-favorited.md-confirm-button:before, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions .theme-marketview input + .icon-favorited.md-confirm-button:before, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .icon-favorited.md-confirm-button:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay .theme-marketview input + .icon-favorited.md-confirm-button:before, .theme-marketview .input-w-clear input.disabled + button.icon-favorited:before, .input-w-clear .theme-marketview input.disabled + button.icon-favorited:before, .theme-marketview .input-w-clear input.disabled + label.icon-favorited.label-btn:before, .input-w-clear .theme-marketview input.disabled + label.icon-favorited.label-btn:before, .theme-marketview .input-w-clear md-dialog md-dialog-actions input.disabled + .icon-favorited.md-cancel-button:before, .input-w-clear md-dialog md-dialog-actions .theme-marketview input.disabled + .icon-favorited.md-cancel-button:before, .theme-marketview md-dialog md-dialog-actions .input-w-clear input.disabled + .icon-favorited.md-cancel-button:before, md-dialog md-dialog-actions .input-w-clear .theme-marketview input.disabled + .icon-favorited.md-cancel-button:before, .theme-marketview .input-w-clear md-dialog md-dialog-actions input.disabled + .icon-favorited.md-confirm-button:before, .input-w-clear md-dialog md-dialog-actions .theme-marketview input.disabled + .icon-favorited.md-confirm-button:before, .theme-marketview md-dialog md-dialog-actions .input-w-clear input.disabled + .icon-favorited.md-confirm-button:before, md-dialog md-dialog-actions .input-w-clear .theme-marketview input.disabled + .icon-favorited.md-confirm-button:before, .theme-marketview .input-w-clear input[disabled] + button.icon-favorited:before, .input-w-clear .theme-marketview input[disabled] + button.icon-favorited:before, .theme-marketview .input-w-clear input[disabled] + label.icon-favorited.label-btn:before, .input-w-clear .theme-marketview input[disabled] + label.icon-favorited.label-btn:before, .theme-marketview .input-w-clear md-dialog md-dialog-actions input[disabled] + .icon-favorited.md-cancel-button:before, .input-w-clear md-dialog md-dialog-actions .theme-marketview input[disabled] + .icon-favorited.md-cancel-button:before, .theme-marketview md-dialog md-dialog-actions .input-w-clear input[disabled] + .icon-favorited.md-cancel-button:before, md-dialog md-dialog-actions .input-w-clear .theme-marketview input[disabled] + .icon-favorited.md-cancel-button:before, .theme-marketview .input-w-clear md-dialog md-dialog-actions input[disabled] + .icon-favorited.md-confirm-button:before, .input-w-clear md-dialog md-dialog-actions .theme-marketview input[disabled] + .icon-favorited.md-confirm-button:before, .theme-marketview md-dialog md-dialog-actions .input-w-clear input[disabled] + .icon-favorited.md-confirm-button:before, md-dialog md-dialog-actions .input-w-clear .theme-marketview input[disabled] + .icon-favorited.md-confirm-button:before,
  .theme-marketview fieldset[disabled] .input-w-clear input + button.icon-favorited:before, fieldset[disabled] .input-w-clear .theme-marketview input + button.icon-favorited:before, .theme-marketview fieldset[disabled] .input-w-clear input + label.icon-favorited.label-btn:before, fieldset[disabled] .input-w-clear .theme-marketview input + label.icon-favorited.label-btn:before, .theme-marketview fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .icon-favorited.md-cancel-button:before, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions .theme-marketview input + .icon-favorited.md-cancel-button:before, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .icon-favorited.md-cancel-button:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear .theme-marketview input + .icon-favorited.md-cancel-button:before, .theme-marketview fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .icon-favorited.md-confirm-button:before, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions .theme-marketview input + .icon-favorited.md-confirm-button:before, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .icon-favorited.md-confirm-button:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear .theme-marketview input + .icon-favorited.md-confirm-button:before, .theme-marketview .input-w-button input.disabled + button.icon-favorited:before, .input-w-button .theme-marketview input.disabled + button.icon-favorited:before, .theme-marketview .input-w-button input.disabled + label.icon-favorited.label-btn:before, .input-w-button .theme-marketview input.disabled + label.icon-favorited.label-btn:before, .theme-marketview .input-w-button md-dialog md-dialog-actions input.disabled + .icon-favorited.md-cancel-button:before, .input-w-button md-dialog md-dialog-actions .theme-marketview input.disabled + .icon-favorited.md-cancel-button:before, .theme-marketview md-dialog md-dialog-actions .input-w-button input.disabled + .icon-favorited.md-cancel-button:before, md-dialog md-dialog-actions .input-w-button .theme-marketview input.disabled + .icon-favorited.md-cancel-button:before, .theme-marketview .input-w-button md-dialog md-dialog-actions input.disabled + .icon-favorited.md-confirm-button:before, .input-w-button md-dialog md-dialog-actions .theme-marketview input.disabled + .icon-favorited.md-confirm-button:before, .theme-marketview md-dialog md-dialog-actions .input-w-button input.disabled + .icon-favorited.md-confirm-button:before, md-dialog md-dialog-actions .input-w-button .theme-marketview input.disabled + .icon-favorited.md-confirm-button:before, .theme-marketview .input-w-button input[disabled] + button.icon-favorited:before, .input-w-button .theme-marketview input[disabled] + button.icon-favorited:before, .theme-marketview .input-w-button input[disabled] + label.icon-favorited.label-btn:before, .input-w-button .theme-marketview input[disabled] + label.icon-favorited.label-btn:before, .theme-marketview .input-w-button md-dialog md-dialog-actions input[disabled] + .icon-favorited.md-cancel-button:before, .input-w-button md-dialog md-dialog-actions .theme-marketview input[disabled] + .icon-favorited.md-cancel-button:before, .theme-marketview md-dialog md-dialog-actions .input-w-button input[disabled] + .icon-favorited.md-cancel-button:before, md-dialog md-dialog-actions .input-w-button .theme-marketview input[disabled] + .icon-favorited.md-cancel-button:before, .theme-marketview .input-w-button md-dialog md-dialog-actions input[disabled] + .icon-favorited.md-confirm-button:before, .input-w-button md-dialog md-dialog-actions .theme-marketview input[disabled] + .icon-favorited.md-confirm-button:before, .theme-marketview md-dialog md-dialog-actions .input-w-button input[disabled] + .icon-favorited.md-confirm-button:before, md-dialog md-dialog-actions .input-w-button .theme-marketview input[disabled] + .icon-favorited.md-confirm-button:before,
  .theme-marketview fieldset[disabled] .input-w-button input + button.icon-favorited:before, fieldset[disabled] .input-w-button .theme-marketview input + button.icon-favorited:before, .theme-marketview fieldset[disabled] .input-w-button input + label.icon-favorited.label-btn:before, fieldset[disabled] .input-w-button .theme-marketview input + label.icon-favorited.label-btn:before, .theme-marketview fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .icon-favorited.md-cancel-button:before, fieldset[disabled] .input-w-button md-dialog md-dialog-actions .theme-marketview input + .icon-favorited.md-cancel-button:before, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .icon-favorited.md-cancel-button:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-button .theme-marketview input + .icon-favorited.md-cancel-button:before, .theme-marketview fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .icon-favorited.md-confirm-button:before, fieldset[disabled] .input-w-button md-dialog md-dialog-actions .theme-marketview input + .icon-favorited.md-confirm-button:before, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .icon-favorited.md-confirm-button:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-button .theme-marketview input + .icon-favorited.md-confirm-button:before, .theme-marketview md-dialog md-dialog-actions .disabled.icon-favorited.md-cancel-button:before, md-dialog md-dialog-actions .theme-marketview .disabled.icon-favorited.md-cancel-button:before, .theme-marketview md-dialog md-dialog-actions .disabled.icon-favorited.md-confirm-button:before, md-dialog md-dialog-actions .theme-marketview .disabled.icon-favorited.md-confirm-button:before, .theme-marketview label.symbol.disabled.label-btn:before, .theme-marketview .input-w-inlay input.disabled + button.symbol:before, .input-w-inlay .theme-marketview input.disabled + button.symbol:before, .theme-marketview .input-w-inlay input.disabled + label.symbol.label-btn:before, .input-w-inlay .theme-marketview input.disabled + label.symbol.label-btn:before, .theme-marketview .input-w-inlay md-dialog md-dialog-actions input.disabled + .symbol.md-cancel-button:before, .input-w-inlay md-dialog md-dialog-actions .theme-marketview input.disabled + .symbol.md-cancel-button:before, .theme-marketview md-dialog md-dialog-actions .input-w-inlay input.disabled + .symbol.md-cancel-button:before, md-dialog md-dialog-actions .input-w-inlay .theme-marketview input.disabled + .symbol.md-cancel-button:before, .theme-marketview .input-w-inlay md-dialog md-dialog-actions input.disabled + .symbol.md-confirm-button:before, .input-w-inlay md-dialog md-dialog-actions .theme-marketview input.disabled + .symbol.md-confirm-button:before, .theme-marketview md-dialog md-dialog-actions .input-w-inlay input.disabled + .symbol.md-confirm-button:before, md-dialog md-dialog-actions .input-w-inlay .theme-marketview input.disabled + .symbol.md-confirm-button:before, .theme-marketview .input-w-inlay input[disabled] + button.symbol:before, .input-w-inlay .theme-marketview input[disabled] + button.symbol:before, .theme-marketview .input-w-inlay input[disabled] + label.symbol.label-btn:before, .input-w-inlay .theme-marketview input[disabled] + label.symbol.label-btn:before, .theme-marketview .input-w-inlay md-dialog md-dialog-actions input[disabled] + .symbol.md-cancel-button:before, .input-w-inlay md-dialog md-dialog-actions .theme-marketview input[disabled] + .symbol.md-cancel-button:before, .theme-marketview md-dialog md-dialog-actions .input-w-inlay input[disabled] + .symbol.md-cancel-button:before, md-dialog md-dialog-actions .input-w-inlay .theme-marketview input[disabled] + .symbol.md-cancel-button:before, .theme-marketview .input-w-inlay md-dialog md-dialog-actions input[disabled] + .symbol.md-confirm-button:before, .input-w-inlay md-dialog md-dialog-actions .theme-marketview input[disabled] + .symbol.md-confirm-button:before, .theme-marketview md-dialog md-dialog-actions .input-w-inlay input[disabled] + .symbol.md-confirm-button:before, md-dialog md-dialog-actions .input-w-inlay .theme-marketview input[disabled] + .symbol.md-confirm-button:before,
  .theme-marketview fieldset[disabled] .input-w-inlay input + button.symbol:before, fieldset[disabled] .input-w-inlay .theme-marketview input + button.symbol:before, .theme-marketview fieldset[disabled] .input-w-inlay input + label.symbol.label-btn:before, fieldset[disabled] .input-w-inlay .theme-marketview input + label.symbol.label-btn:before, .theme-marketview fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .symbol.md-cancel-button:before, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions .theme-marketview input + .symbol.md-cancel-button:before, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .symbol.md-cancel-button:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay .theme-marketview input + .symbol.md-cancel-button:before, .theme-marketview fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .symbol.md-confirm-button:before, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions .theme-marketview input + .symbol.md-confirm-button:before, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .symbol.md-confirm-button:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay .theme-marketview input + .symbol.md-confirm-button:before, .theme-marketview .input-w-clear input.disabled + button.symbol:before, .input-w-clear .theme-marketview input.disabled + button.symbol:before, .theme-marketview .input-w-clear input.disabled + label.symbol.label-btn:before, .input-w-clear .theme-marketview input.disabled + label.symbol.label-btn:before, .theme-marketview .input-w-clear md-dialog md-dialog-actions input.disabled + .symbol.md-cancel-button:before, .input-w-clear md-dialog md-dialog-actions .theme-marketview input.disabled + .symbol.md-cancel-button:before, .theme-marketview md-dialog md-dialog-actions .input-w-clear input.disabled + .symbol.md-cancel-button:before, md-dialog md-dialog-actions .input-w-clear .theme-marketview input.disabled + .symbol.md-cancel-button:before, .theme-marketview .input-w-clear md-dialog md-dialog-actions input.disabled + .symbol.md-confirm-button:before, .input-w-clear md-dialog md-dialog-actions .theme-marketview input.disabled + .symbol.md-confirm-button:before, .theme-marketview md-dialog md-dialog-actions .input-w-clear input.disabled + .symbol.md-confirm-button:before, md-dialog md-dialog-actions .input-w-clear .theme-marketview input.disabled + .symbol.md-confirm-button:before, .theme-marketview .input-w-clear input[disabled] + button.symbol:before, .input-w-clear .theme-marketview input[disabled] + button.symbol:before, .theme-marketview .input-w-clear input[disabled] + label.symbol.label-btn:before, .input-w-clear .theme-marketview input[disabled] + label.symbol.label-btn:before, .theme-marketview .input-w-clear md-dialog md-dialog-actions input[disabled] + .symbol.md-cancel-button:before, .input-w-clear md-dialog md-dialog-actions .theme-marketview input[disabled] + .symbol.md-cancel-button:before, .theme-marketview md-dialog md-dialog-actions .input-w-clear input[disabled] + .symbol.md-cancel-button:before, md-dialog md-dialog-actions .input-w-clear .theme-marketview input[disabled] + .symbol.md-cancel-button:before, .theme-marketview .input-w-clear md-dialog md-dialog-actions input[disabled] + .symbol.md-confirm-button:before, .input-w-clear md-dialog md-dialog-actions .theme-marketview input[disabled] + .symbol.md-confirm-button:before, .theme-marketview md-dialog md-dialog-actions .input-w-clear input[disabled] + .symbol.md-confirm-button:before, md-dialog md-dialog-actions .input-w-clear .theme-marketview input[disabled] + .symbol.md-confirm-button:before,
  .theme-marketview fieldset[disabled] .input-w-clear input + button.symbol:before, fieldset[disabled] .input-w-clear .theme-marketview input + button.symbol:before, .theme-marketview fieldset[disabled] .input-w-clear input + label.symbol.label-btn:before, fieldset[disabled] .input-w-clear .theme-marketview input + label.symbol.label-btn:before, .theme-marketview fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .symbol.md-cancel-button:before, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions .theme-marketview input + .symbol.md-cancel-button:before, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .symbol.md-cancel-button:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear .theme-marketview input + .symbol.md-cancel-button:before, .theme-marketview fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .symbol.md-confirm-button:before, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions .theme-marketview input + .symbol.md-confirm-button:before, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .symbol.md-confirm-button:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear .theme-marketview input + .symbol.md-confirm-button:before, .theme-marketview .input-w-button input.disabled + button.symbol:before, .input-w-button .theme-marketview input.disabled + button.symbol:before, .theme-marketview .input-w-button input.disabled + label.symbol.label-btn:before, .input-w-button .theme-marketview input.disabled + label.symbol.label-btn:before, .theme-marketview .input-w-button md-dialog md-dialog-actions input.disabled + .symbol.md-cancel-button:before, .input-w-button md-dialog md-dialog-actions .theme-marketview input.disabled + .symbol.md-cancel-button:before, .theme-marketview md-dialog md-dialog-actions .input-w-button input.disabled + .symbol.md-cancel-button:before, md-dialog md-dialog-actions .input-w-button .theme-marketview input.disabled + .symbol.md-cancel-button:before, .theme-marketview .input-w-button md-dialog md-dialog-actions input.disabled + .symbol.md-confirm-button:before, .input-w-button md-dialog md-dialog-actions .theme-marketview input.disabled + .symbol.md-confirm-button:before, .theme-marketview md-dialog md-dialog-actions .input-w-button input.disabled + .symbol.md-confirm-button:before, md-dialog md-dialog-actions .input-w-button .theme-marketview input.disabled + .symbol.md-confirm-button:before, .theme-marketview .input-w-button input[disabled] + button.symbol:before, .input-w-button .theme-marketview input[disabled] + button.symbol:before, .theme-marketview .input-w-button input[disabled] + label.symbol.label-btn:before, .input-w-button .theme-marketview input[disabled] + label.symbol.label-btn:before, .theme-marketview .input-w-button md-dialog md-dialog-actions input[disabled] + .symbol.md-cancel-button:before, .input-w-button md-dialog md-dialog-actions .theme-marketview input[disabled] + .symbol.md-cancel-button:before, .theme-marketview md-dialog md-dialog-actions .input-w-button input[disabled] + .symbol.md-cancel-button:before, md-dialog md-dialog-actions .input-w-button .theme-marketview input[disabled] + .symbol.md-cancel-button:before, .theme-marketview .input-w-button md-dialog md-dialog-actions input[disabled] + .symbol.md-confirm-button:before, .input-w-button md-dialog md-dialog-actions .theme-marketview input[disabled] + .symbol.md-confirm-button:before, .theme-marketview md-dialog md-dialog-actions .input-w-button input[disabled] + .symbol.md-confirm-button:before, md-dialog md-dialog-actions .input-w-button .theme-marketview input[disabled] + .symbol.md-confirm-button:before,
  .theme-marketview fieldset[disabled] .input-w-button input + button.symbol:before, fieldset[disabled] .input-w-button .theme-marketview input + button.symbol:before, .theme-marketview fieldset[disabled] .input-w-button input + label.symbol.label-btn:before, fieldset[disabled] .input-w-button .theme-marketview input + label.symbol.label-btn:before, .theme-marketview fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .symbol.md-cancel-button:before, fieldset[disabled] .input-w-button md-dialog md-dialog-actions .theme-marketview input + .symbol.md-cancel-button:before, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .symbol.md-cancel-button:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-button .theme-marketview input + .symbol.md-cancel-button:before, .theme-marketview fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .symbol.md-confirm-button:before, fieldset[disabled] .input-w-button md-dialog md-dialog-actions .theme-marketview input + .symbol.md-confirm-button:before, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .symbol.md-confirm-button:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-button .theme-marketview input + .symbol.md-confirm-button:before, .theme-marketview md-dialog md-dialog-actions .symbol.disabled.md-cancel-button:before, md-dialog md-dialog-actions .theme-marketview .symbol.disabled.md-cancel-button:before, .theme-marketview md-dialog md-dialog-actions button.disabled.md-cancel-button.icon-favorite:before, md-dialog md-dialog-actions .theme-marketview button.disabled.md-cancel-button.icon-favorite:before, .theme-marketview md-dialog md-dialog-actions .input-w-inlay input.disabled + button.md-cancel-button.icon-favorite:before, md-dialog md-dialog-actions .input-w-inlay .theme-marketview input.disabled + button.md-cancel-button.icon-favorite:before, .theme-marketview .input-w-inlay md-dialog md-dialog-actions input.disabled + button.md-cancel-button.icon-favorite:before, .input-w-inlay md-dialog md-dialog-actions .theme-marketview input.disabled + button.md-cancel-button.icon-favorite:before, .theme-marketview md-dialog md-dialog-actions .input-w-inlay input[disabled] + button.md-cancel-button.icon-favorite:before, md-dialog md-dialog-actions .input-w-inlay .theme-marketview input[disabled] + button.md-cancel-button.icon-favorite:before, .theme-marketview .input-w-inlay md-dialog md-dialog-actions input[disabled] + button.md-cancel-button.icon-favorite:before, .input-w-inlay md-dialog md-dialog-actions .theme-marketview input[disabled] + button.md-cancel-button.icon-favorite:before,
  .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + button.md-cancel-button.icon-favorite:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay .theme-marketview input + button.md-cancel-button.icon-favorite:before, .theme-marketview fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + button.md-cancel-button.icon-favorite:before, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions .theme-marketview input + button.md-cancel-button.icon-favorite:before, .theme-marketview md-dialog md-dialog-actions .input-w-clear input.disabled + button.md-cancel-button.icon-favorite:before, md-dialog md-dialog-actions .input-w-clear .theme-marketview input.disabled + button.md-cancel-button.icon-favorite:before, .theme-marketview .input-w-clear md-dialog md-dialog-actions input.disabled + button.md-cancel-button.icon-favorite:before, .input-w-clear md-dialog md-dialog-actions .theme-marketview input.disabled + button.md-cancel-button.icon-favorite:before, .theme-marketview md-dialog md-dialog-actions .input-w-clear input[disabled] + button.md-cancel-button.icon-favorite:before, md-dialog md-dialog-actions .input-w-clear .theme-marketview input[disabled] + button.md-cancel-button.icon-favorite:before, .theme-marketview .input-w-clear md-dialog md-dialog-actions input[disabled] + button.md-cancel-button.icon-favorite:before, .input-w-clear md-dialog md-dialog-actions .theme-marketview input[disabled] + button.md-cancel-button.icon-favorite:before,
  .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + button.md-cancel-button.icon-favorite:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear .theme-marketview input + button.md-cancel-button.icon-favorite:before, .theme-marketview fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + button.md-cancel-button.icon-favorite:before, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions .theme-marketview input + button.md-cancel-button.icon-favorite:before, .theme-marketview md-dialog md-dialog-actions .input-w-button input.disabled + button.md-cancel-button.icon-favorite:before, md-dialog md-dialog-actions .input-w-button .theme-marketview input.disabled + button.md-cancel-button.icon-favorite:before, .theme-marketview .input-w-button md-dialog md-dialog-actions input.disabled + button.md-cancel-button.icon-favorite:before, .input-w-button md-dialog md-dialog-actions .theme-marketview input.disabled + button.md-cancel-button.icon-favorite:before, .theme-marketview md-dialog md-dialog-actions .input-w-button input[disabled] + button.md-cancel-button.icon-favorite:before, md-dialog md-dialog-actions .input-w-button .theme-marketview input[disabled] + button.md-cancel-button.icon-favorite:before, .theme-marketview .input-w-button md-dialog md-dialog-actions input[disabled] + button.md-cancel-button.icon-favorite:before, .input-w-button md-dialog md-dialog-actions .theme-marketview input[disabled] + button.md-cancel-button.icon-favorite:before,
  .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + button.md-cancel-button.icon-favorite:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-button .theme-marketview input + button.md-cancel-button.icon-favorite:before, .theme-marketview fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + button.md-cancel-button.icon-favorite:before, fieldset[disabled] .input-w-button md-dialog md-dialog-actions .theme-marketview input + button.md-cancel-button.icon-favorite:before,
  .theme-marketview md-dialog md-dialog-actions button.disabled.md-cancel-button.icon-favorited:before, md-dialog md-dialog-actions .theme-marketview button.disabled.md-cancel-button.icon-favorited:before, .theme-marketview md-dialog md-dialog-actions .input-w-inlay input.disabled + button.md-cancel-button.icon-favorited:before, md-dialog md-dialog-actions .input-w-inlay .theme-marketview input.disabled + button.md-cancel-button.icon-favorited:before, .theme-marketview .input-w-inlay md-dialog md-dialog-actions input.disabled + button.md-cancel-button.icon-favorited:before, .input-w-inlay md-dialog md-dialog-actions .theme-marketview input.disabled + button.md-cancel-button.icon-favorited:before, .theme-marketview md-dialog md-dialog-actions .input-w-inlay input[disabled] + button.md-cancel-button.icon-favorited:before, md-dialog md-dialog-actions .input-w-inlay .theme-marketview input[disabled] + button.md-cancel-button.icon-favorited:before, .theme-marketview .input-w-inlay md-dialog md-dialog-actions input[disabled] + button.md-cancel-button.icon-favorited:before, .input-w-inlay md-dialog md-dialog-actions .theme-marketview input[disabled] + button.md-cancel-button.icon-favorited:before,
  .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + button.md-cancel-button.icon-favorited:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay .theme-marketview input + button.md-cancel-button.icon-favorited:before, .theme-marketview fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + button.md-cancel-button.icon-favorited:before, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions .theme-marketview input + button.md-cancel-button.icon-favorited:before, .theme-marketview md-dialog md-dialog-actions .input-w-clear input.disabled + button.md-cancel-button.icon-favorited:before, md-dialog md-dialog-actions .input-w-clear .theme-marketview input.disabled + button.md-cancel-button.icon-favorited:before, .theme-marketview .input-w-clear md-dialog md-dialog-actions input.disabled + button.md-cancel-button.icon-favorited:before, .input-w-clear md-dialog md-dialog-actions .theme-marketview input.disabled + button.md-cancel-button.icon-favorited:before, .theme-marketview md-dialog md-dialog-actions .input-w-clear input[disabled] + button.md-cancel-button.icon-favorited:before, md-dialog md-dialog-actions .input-w-clear .theme-marketview input[disabled] + button.md-cancel-button.icon-favorited:before, .theme-marketview .input-w-clear md-dialog md-dialog-actions input[disabled] + button.md-cancel-button.icon-favorited:before, .input-w-clear md-dialog md-dialog-actions .theme-marketview input[disabled] + button.md-cancel-button.icon-favorited:before,
  .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + button.md-cancel-button.icon-favorited:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear .theme-marketview input + button.md-cancel-button.icon-favorited:before, .theme-marketview fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + button.md-cancel-button.icon-favorited:before, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions .theme-marketview input + button.md-cancel-button.icon-favorited:before, .theme-marketview md-dialog md-dialog-actions .input-w-button input.disabled + button.md-cancel-button.icon-favorited:before, md-dialog md-dialog-actions .input-w-button .theme-marketview input.disabled + button.md-cancel-button.icon-favorited:before, .theme-marketview .input-w-button md-dialog md-dialog-actions input.disabled + button.md-cancel-button.icon-favorited:before, .input-w-button md-dialog md-dialog-actions .theme-marketview input.disabled + button.md-cancel-button.icon-favorited:before, .theme-marketview md-dialog md-dialog-actions .input-w-button input[disabled] + button.md-cancel-button.icon-favorited:before, md-dialog md-dialog-actions .input-w-button .theme-marketview input[disabled] + button.md-cancel-button.icon-favorited:before, .theme-marketview .input-w-button md-dialog md-dialog-actions input[disabled] + button.md-cancel-button.icon-favorited:before, .input-w-button md-dialog md-dialog-actions .theme-marketview input[disabled] + button.md-cancel-button.icon-favorited:before,
  .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + button.md-cancel-button.icon-favorited:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-button .theme-marketview input + button.md-cancel-button.icon-favorited:before, .theme-marketview fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + button.md-cancel-button.icon-favorited:before, fieldset[disabled] .input-w-button md-dialog md-dialog-actions .theme-marketview input + button.md-cancel-button.icon-favorited:before, .theme-marketview md-dialog md-dialog-actions .symbol.disabled.md-confirm-button:before, md-dialog md-dialog-actions .theme-marketview .symbol.disabled.md-confirm-button:before, .theme-marketview md-dialog md-dialog-actions button.disabled.md-confirm-button.icon-favorite:before, md-dialog md-dialog-actions .theme-marketview button.disabled.md-confirm-button.icon-favorite:before, .theme-marketview md-dialog md-dialog-actions .input-w-inlay input.disabled + button.md-confirm-button.icon-favorite:before, md-dialog md-dialog-actions .input-w-inlay .theme-marketview input.disabled + button.md-confirm-button.icon-favorite:before, .theme-marketview .input-w-inlay md-dialog md-dialog-actions input.disabled + button.md-confirm-button.icon-favorite:before, .input-w-inlay md-dialog md-dialog-actions .theme-marketview input.disabled + button.md-confirm-button.icon-favorite:before, .theme-marketview md-dialog md-dialog-actions .input-w-inlay input[disabled] + button.md-confirm-button.icon-favorite:before, md-dialog md-dialog-actions .input-w-inlay .theme-marketview input[disabled] + button.md-confirm-button.icon-favorite:before, .theme-marketview .input-w-inlay md-dialog md-dialog-actions input[disabled] + button.md-confirm-button.icon-favorite:before, .input-w-inlay md-dialog md-dialog-actions .theme-marketview input[disabled] + button.md-confirm-button.icon-favorite:before,
  .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + button.md-confirm-button.icon-favorite:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay .theme-marketview input + button.md-confirm-button.icon-favorite:before, .theme-marketview fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + button.md-confirm-button.icon-favorite:before, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions .theme-marketview input + button.md-confirm-button.icon-favorite:before, .theme-marketview md-dialog md-dialog-actions .input-w-clear input.disabled + button.md-confirm-button.icon-favorite:before, md-dialog md-dialog-actions .input-w-clear .theme-marketview input.disabled + button.md-confirm-button.icon-favorite:before, .theme-marketview .input-w-clear md-dialog md-dialog-actions input.disabled + button.md-confirm-button.icon-favorite:before, .input-w-clear md-dialog md-dialog-actions .theme-marketview input.disabled + button.md-confirm-button.icon-favorite:before, .theme-marketview md-dialog md-dialog-actions .input-w-clear input[disabled] + button.md-confirm-button.icon-favorite:before, md-dialog md-dialog-actions .input-w-clear .theme-marketview input[disabled] + button.md-confirm-button.icon-favorite:before, .theme-marketview .input-w-clear md-dialog md-dialog-actions input[disabled] + button.md-confirm-button.icon-favorite:before, .input-w-clear md-dialog md-dialog-actions .theme-marketview input[disabled] + button.md-confirm-button.icon-favorite:before,
  .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + button.md-confirm-button.icon-favorite:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear .theme-marketview input + button.md-confirm-button.icon-favorite:before, .theme-marketview fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + button.md-confirm-button.icon-favorite:before, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions .theme-marketview input + button.md-confirm-button.icon-favorite:before, .theme-marketview md-dialog md-dialog-actions .input-w-button input.disabled + button.md-confirm-button.icon-favorite:before, md-dialog md-dialog-actions .input-w-button .theme-marketview input.disabled + button.md-confirm-button.icon-favorite:before, .theme-marketview .input-w-button md-dialog md-dialog-actions input.disabled + button.md-confirm-button.icon-favorite:before, .input-w-button md-dialog md-dialog-actions .theme-marketview input.disabled + button.md-confirm-button.icon-favorite:before, .theme-marketview md-dialog md-dialog-actions .input-w-button input[disabled] + button.md-confirm-button.icon-favorite:before, md-dialog md-dialog-actions .input-w-button .theme-marketview input[disabled] + button.md-confirm-button.icon-favorite:before, .theme-marketview .input-w-button md-dialog md-dialog-actions input[disabled] + button.md-confirm-button.icon-favorite:before, .input-w-button md-dialog md-dialog-actions .theme-marketview input[disabled] + button.md-confirm-button.icon-favorite:before,
  .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + button.md-confirm-button.icon-favorite:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-button .theme-marketview input + button.md-confirm-button.icon-favorite:before, .theme-marketview fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + button.md-confirm-button.icon-favorite:before, fieldset[disabled] .input-w-button md-dialog md-dialog-actions .theme-marketview input + button.md-confirm-button.icon-favorite:before,
  .theme-marketview md-dialog md-dialog-actions button.disabled.md-confirm-button.icon-favorited:before, md-dialog md-dialog-actions .theme-marketview button.disabled.md-confirm-button.icon-favorited:before, .theme-marketview md-dialog md-dialog-actions .input-w-inlay input.disabled + button.md-confirm-button.icon-favorited:before, md-dialog md-dialog-actions .input-w-inlay .theme-marketview input.disabled + button.md-confirm-button.icon-favorited:before, .theme-marketview .input-w-inlay md-dialog md-dialog-actions input.disabled + button.md-confirm-button.icon-favorited:before, .input-w-inlay md-dialog md-dialog-actions .theme-marketview input.disabled + button.md-confirm-button.icon-favorited:before, .theme-marketview md-dialog md-dialog-actions .input-w-inlay input[disabled] + button.md-confirm-button.icon-favorited:before, md-dialog md-dialog-actions .input-w-inlay .theme-marketview input[disabled] + button.md-confirm-button.icon-favorited:before, .theme-marketview .input-w-inlay md-dialog md-dialog-actions input[disabled] + button.md-confirm-button.icon-favorited:before, .input-w-inlay md-dialog md-dialog-actions .theme-marketview input[disabled] + button.md-confirm-button.icon-favorited:before,
  .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + button.md-confirm-button.icon-favorited:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay .theme-marketview input + button.md-confirm-button.icon-favorited:before, .theme-marketview fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + button.md-confirm-button.icon-favorited:before, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions .theme-marketview input + button.md-confirm-button.icon-favorited:before, .theme-marketview md-dialog md-dialog-actions .input-w-clear input.disabled + button.md-confirm-button.icon-favorited:before, md-dialog md-dialog-actions .input-w-clear .theme-marketview input.disabled + button.md-confirm-button.icon-favorited:before, .theme-marketview .input-w-clear md-dialog md-dialog-actions input.disabled + button.md-confirm-button.icon-favorited:before, .input-w-clear md-dialog md-dialog-actions .theme-marketview input.disabled + button.md-confirm-button.icon-favorited:before, .theme-marketview md-dialog md-dialog-actions .input-w-clear input[disabled] + button.md-confirm-button.icon-favorited:before, md-dialog md-dialog-actions .input-w-clear .theme-marketview input[disabled] + button.md-confirm-button.icon-favorited:before, .theme-marketview .input-w-clear md-dialog md-dialog-actions input[disabled] + button.md-confirm-button.icon-favorited:before, .input-w-clear md-dialog md-dialog-actions .theme-marketview input[disabled] + button.md-confirm-button.icon-favorited:before,
  .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + button.md-confirm-button.icon-favorited:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear .theme-marketview input + button.md-confirm-button.icon-favorited:before, .theme-marketview fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + button.md-confirm-button.icon-favorited:before, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions .theme-marketview input + button.md-confirm-button.icon-favorited:before, .theme-marketview md-dialog md-dialog-actions .input-w-button input.disabled + button.md-confirm-button.icon-favorited:before, md-dialog md-dialog-actions .input-w-button .theme-marketview input.disabled + button.md-confirm-button.icon-favorited:before, .theme-marketview .input-w-button md-dialog md-dialog-actions input.disabled + button.md-confirm-button.icon-favorited:before, .input-w-button md-dialog md-dialog-actions .theme-marketview input.disabled + button.md-confirm-button.icon-favorited:before, .theme-marketview md-dialog md-dialog-actions .input-w-button input[disabled] + button.md-confirm-button.icon-favorited:before, md-dialog md-dialog-actions .input-w-button .theme-marketview input[disabled] + button.md-confirm-button.icon-favorited:before, .theme-marketview .input-w-button md-dialog md-dialog-actions input[disabled] + button.md-confirm-button.icon-favorited:before, .input-w-button md-dialog md-dialog-actions .theme-marketview input[disabled] + button.md-confirm-button.icon-favorited:before,
  .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + button.md-confirm-button.icon-favorited:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-button .theme-marketview input + button.md-confirm-button.icon-favorited:before, .theme-marketview fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + button.md-confirm-button.icon-favorited:before, fieldset[disabled] .input-w-button md-dialog md-dialog-actions .theme-marketview input + button.md-confirm-button.icon-favorited:before, .theme-marketview button.symbol[disabled]:before, .theme-marketview button.icon-favorite[disabled]:before, .theme-marketview label.icon-favorite.label-btn[disabled]:before, .theme-marketview md-dialog md-dialog-actions .icon-favorite.md-cancel-button[disabled]:before, md-dialog md-dialog-actions .theme-marketview .icon-favorite.md-cancel-button[disabled]:before, .theme-marketview md-dialog md-dialog-actions .icon-favorite.md-confirm-button[disabled]:before, md-dialog md-dialog-actions .theme-marketview .icon-favorite.md-confirm-button[disabled]:before,
  .theme-marketview button.icon-favorited[disabled]:before, .theme-marketview label.icon-favorited.label-btn[disabled]:before, .theme-marketview md-dialog md-dialog-actions .icon-favorited.md-cancel-button[disabled]:before, md-dialog md-dialog-actions .theme-marketview .icon-favorited.md-cancel-button[disabled]:before, .theme-marketview md-dialog md-dialog-actions .icon-favorited.md-confirm-button[disabled]:before, md-dialog md-dialog-actions .theme-marketview .icon-favorited.md-confirm-button[disabled]:before, .theme-marketview label.symbol.label-btn[disabled]:before, .theme-marketview md-dialog md-dialog-actions .symbol.md-cancel-button[disabled]:before, md-dialog md-dialog-actions .theme-marketview .symbol.md-cancel-button[disabled]:before, .theme-marketview md-dialog md-dialog-actions .symbol.md-confirm-button[disabled]:before, md-dialog md-dialog-actions .theme-marketview .symbol.md-confirm-button[disabled]:before,
  fieldset[disabled] .theme-marketview button.symbol:before,
  fieldset[disabled] .theme-marketview button.icon-favorite:before,
  fieldset[disabled] .theme-marketview label.icon-favorite.label-btn:before,
  fieldset[disabled] .theme-marketview md-dialog md-dialog-actions .icon-favorite.md-cancel-button:before,
  md-dialog md-dialog-actions fieldset[disabled] .theme-marketview .icon-favorite.md-cancel-button:before,
  fieldset[disabled] .theme-marketview md-dialog md-dialog-actions .icon-favorite.md-confirm-button:before,
  md-dialog md-dialog-actions fieldset[disabled] .theme-marketview .icon-favorite.md-confirm-button:before,
  fieldset[disabled] .theme-marketview button.icon-favorited:before,
  fieldset[disabled] .theme-marketview label.icon-favorited.label-btn:before,
  fieldset[disabled] .theme-marketview md-dialog md-dialog-actions .icon-favorited.md-cancel-button:before,
  md-dialog md-dialog-actions fieldset[disabled] .theme-marketview .icon-favorited.md-cancel-button:before,
  fieldset[disabled] .theme-marketview md-dialog md-dialog-actions .icon-favorited.md-confirm-button:before,
  md-dialog md-dialog-actions fieldset[disabled] .theme-marketview .icon-favorited.md-confirm-button:before,
  fieldset[disabled] .theme-marketview label.symbol.label-btn:before,
  fieldset[disabled] .theme-marketview md-dialog md-dialog-actions .symbol.md-cancel-button:before,
  md-dialog md-dialog-actions fieldset[disabled] .theme-marketview .symbol.md-cancel-button:before,
  fieldset[disabled] .theme-marketview md-dialog md-dialog-actions .symbol.md-confirm-button:before,
  md-dialog md-dialog-actions fieldset[disabled] .theme-marketview .symbol.md-confirm-button:before {
    color: rgba(102, 102, 102, 0.65); }

/**
* __Usage:__ For "remove", "cancel" or "close" actions.
*
* Add the class `flush` to remove button padding.
*
* Add the class `flush-icon` to remove the icon's default right margin.
*
* Add the class `light` when placed on a dark background.
*
* @section Clear Button
* @sectionof Buttons
* @example
* <button class="clear">Cancel</button>
* <button class="clear disabled">Cancel</button>
* <button class="clear icon-remove flush-icon" title="Remove">
*   <span class="sr-only">Remove</span>
* </button>
* <button class="clear icon-close flush-icon" title="Close">
*   <span class="sr-only">Close</span>
* </button>
* <div style="padding:1em;display:inline-block;vertical-align:center;background-color:#636363;">
*   <button class="clear light icon-remove flush-icon" title="Remove">
*     <span class="sr-only">Remove</span>
*   </button>
* </div>
*/
button.clear, label.clear.label-btn, md-autocomplete .md-show-clear-button button, md-autocomplete .md-show-clear-button label.label-btn, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-confirm-button, md-dialog .close-dialog, md-dialog md-dialog-actions .md-cancel-button, md-dialog md-dialog-actions .clear.md-confirm-button, .colorpicker .close-colorpicker {
  background-color: transparent;
  border: none;
  line-height: 36px; }
  button.clear:hover, label.clear.label-btn:hover, md-autocomplete .md-show-clear-button button:hover, md-autocomplete .md-show-clear-button label.label-btn:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button:hover, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-confirm-button:hover, md-dialog .close-dialog:hover, md-dialog md-dialog-actions .md-cancel-button:hover, md-dialog md-dialog-actions .clear.md-confirm-button:hover, .colorpicker .close-colorpicker:hover, button.clear:focus, label.clear.label-btn:focus, md-autocomplete .md-show-clear-button button:focus, md-autocomplete .md-show-clear-button label.label-btn:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button:focus, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-confirm-button:focus, md-dialog .close-dialog:focus, md-dialog md-dialog-actions .md-cancel-button:focus, md-dialog md-dialog-actions .clear.md-confirm-button:focus, .colorpicker .close-colorpicker:focus {
    background-color: transparent; }
  button.clear.flush, label.clear.flush.label-btn, .people-card.-expandable button.clear.expand-user, .people-card.-expandable label.clear.expand-user.label-btn, .people-card.-expandable md-autocomplete .md-show-clear-button button.expand-user, md-autocomplete .md-show-clear-button .people-card.-expandable button.expand-user, .people-card.-expandable md-autocomplete .md-show-clear-button label.expand-user.label-btn, md-autocomplete .md-show-clear-button .people-card.-expandable label.expand-user.label-btn, .people-card.-expandable md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .expand-user.md-confirm-button, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .people-card.-expandable .expand-user.md-confirm-button, .people-card.-expandable md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .expand-user.md-confirm-button, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .people-card.-expandable .expand-user.md-confirm-button, .people-card.-expandable md-dialog .expand-user.close-dialog, md-dialog .people-card.-expandable .expand-user.close-dialog, .people-card.-expandable md-dialog md-dialog-actions .expand-user.md-cancel-button, md-dialog md-dialog-actions .people-card.-expandable .expand-user.md-cancel-button, .people-card.-expandable md-dialog md-dialog-actions .clear.expand-user.md-confirm-button, md-dialog md-dialog-actions .people-card.-expandable .clear.expand-user.md-confirm-button, .people-card.-expandable .colorpicker .expand-user.close-colorpicker, .colorpicker .people-card.-expandable .expand-user.close-colorpicker, md-autocomplete .md-show-clear-button button.flush, md-autocomplete .md-show-clear-button label.flush.label-btn, md-autocomplete .md-show-clear-button .people-card.-expandable md-dialog md-dialog-actions .expand-user.md-confirm-button, md-dialog md-dialog-actions .people-card.-expandable md-autocomplete .md-show-clear-button .expand-user.md-confirm-button, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .flush.md-confirm-button, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .flush.md-confirm-button, md-dialog .close-dialog, md-dialog md-dialog-actions .flush.md-cancel-button, md-dialog md-dialog-actions .clear.flush.md-confirm-button, .colorpicker .close-colorpicker {
    line-height: 1.2;
    padding: 0; }
  button.clear.flush-sides, label.clear.flush-sides.label-btn, md-autocomplete .md-show-clear-button button.flush-sides, md-autocomplete .md-show-clear-button label.flush-sides.label-btn, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .flush-sides.md-confirm-button, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .flush-sides.md-confirm-button, md-dialog .flush-sides.close-dialog, md-dialog md-dialog-actions .flush-sides.md-cancel-button, md-dialog md-dialog-actions .clear.flush-sides.md-confirm-button, .colorpicker .flush-sides.close-colorpicker {
    padding-left: 0;
    padding-right: 0; }
  button.clear.disabled:hover, label.clear.disabled.label-btn:hover, .input-w-inlay input.disabled + button.clear:hover, .input-w-inlay input.disabled + label.clear.label-btn:hover, .input-w-inlay md-autocomplete .md-show-clear-button input.disabled + button:hover, md-autocomplete .md-show-clear-button .input-w-inlay input.disabled + button:hover, .input-w-inlay md-autocomplete .md-show-clear-button input.disabled + label.label-btn:hover, md-autocomplete .md-show-clear-button .input-w-inlay input.disabled + label.label-btn:hover, .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input.disabled + .md-cancel-button:hover, .input-w-inlay md-autocomplete .md-show-clear-button md-dialog md-dialog-actions input.disabled + .md-confirm-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay input.disabled + .md-confirm-button:hover, .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input.disabled + .md-confirm-button:hover, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-inlay input.disabled + .md-confirm-button:hover, .input-w-inlay md-dialog input.disabled + .close-dialog:hover, md-dialog .input-w-inlay input.disabled + .close-dialog:hover, .input-w-inlay md-dialog md-dialog-actions input.disabled + .md-cancel-button:hover, md-dialog md-dialog-actions .input-w-inlay input.disabled + .md-cancel-button:hover, .input-w-inlay md-dialog md-dialog-actions input.disabled + .clear.md-confirm-button:hover, md-dialog md-dialog-actions .input-w-inlay input.disabled + .clear.md-confirm-button:hover, .input-w-inlay .colorpicker input.disabled + .close-colorpicker:hover, .colorpicker .input-w-inlay input.disabled + .close-colorpicker:hover, .input-w-inlay input[disabled] + button.clear:hover, .input-w-inlay input[disabled] + label.clear.label-btn:hover, .input-w-inlay md-autocomplete .md-show-clear-button input[disabled] + button:hover, md-autocomplete .md-show-clear-button .input-w-inlay input[disabled] + button:hover, .input-w-inlay md-autocomplete .md-show-clear-button input[disabled] + label.label-btn:hover, md-autocomplete .md-show-clear-button .input-w-inlay input[disabled] + label.label-btn:hover, .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input[disabled] + .md-cancel-button:hover, .input-w-inlay md-autocomplete .md-show-clear-button md-dialog md-dialog-actions input[disabled] + .md-confirm-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay input[disabled] + .md-confirm-button:hover, .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input[disabled] + .md-confirm-button:hover, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-inlay input[disabled] + .md-confirm-button:hover, .input-w-inlay md-dialog input[disabled] + .close-dialog:hover, md-dialog .input-w-inlay input[disabled] + .close-dialog:hover, .input-w-inlay md-dialog md-dialog-actions input[disabled] + .md-cancel-button:hover, md-dialog md-dialog-actions .input-w-inlay input[disabled] + .md-cancel-button:hover, .input-w-inlay md-dialog md-dialog-actions input[disabled] + .clear.md-confirm-button:hover, md-dialog md-dialog-actions .input-w-inlay input[disabled] + .clear.md-confirm-button:hover, .input-w-inlay .colorpicker input[disabled] + .close-colorpicker:hover, .colorpicker .input-w-inlay input[disabled] + .close-colorpicker:hover,
  fieldset[disabled] .input-w-inlay input + button.clear:hover, fieldset[disabled] .input-w-inlay input + label.clear.label-btn:hover, fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button input + button:hover, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay input + button:hover, fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button input + label.label-btn:hover, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay input + label.label-btn:hover, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input + .md-cancel-button:hover, fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button md-dialog md-dialog-actions input + .md-confirm-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .md-confirm-button:hover, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input + .md-confirm-button:hover, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay input + .md-confirm-button:hover, fieldset[disabled] .input-w-inlay md-dialog input + .close-dialog:hover, md-dialog fieldset[disabled] .input-w-inlay input + .close-dialog:hover, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .md-cancel-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .md-cancel-button:hover, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .clear.md-confirm-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .clear.md-confirm-button:hover, fieldset[disabled] .input-w-inlay .colorpicker input + .close-colorpicker:hover, .colorpicker fieldset[disabled] .input-w-inlay input + .close-colorpicker:hover, .input-w-clear input.disabled + button:hover, .input-w-clear input.disabled + label.label-btn:hover, .input-w-clear md-dialog md-dialog-actions input.disabled + .md-cancel-button:hover, md-dialog md-dialog-actions .input-w-clear input.disabled + .md-cancel-button:hover, .input-w-clear md-dialog md-dialog-actions input.disabled + .md-confirm-button:hover, md-dialog md-dialog-actions .input-w-clear input.disabled + .md-confirm-button:hover, .input-w-clear input[disabled] + button:hover, .input-w-clear input[disabled] + label.label-btn:hover, .input-w-clear md-dialog md-dialog-actions input[disabled] + .md-cancel-button:hover, md-dialog md-dialog-actions .input-w-clear input[disabled] + .md-cancel-button:hover, .input-w-clear md-dialog md-dialog-actions input[disabled] + .md-confirm-button:hover, md-dialog md-dialog-actions .input-w-clear input[disabled] + .md-confirm-button:hover,
  fieldset[disabled] .input-w-clear input + button:hover, fieldset[disabled] .input-w-clear input + label.label-btn:hover, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .md-cancel-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .md-cancel-button:hover, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .md-confirm-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .md-confirm-button:hover, .input-w-button input.disabled + button.clear:hover, .input-w-button input.disabled + label.clear.label-btn:hover, .input-w-button md-autocomplete .md-show-clear-button input.disabled + button:hover, md-autocomplete .md-show-clear-button .input-w-button input.disabled + button:hover, .input-w-button md-autocomplete .md-show-clear-button input.disabled + label.label-btn:hover, md-autocomplete .md-show-clear-button .input-w-button input.disabled + label.label-btn:hover, .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input.disabled + .md-cancel-button:hover, .input-w-button md-autocomplete .md-show-clear-button md-dialog md-dialog-actions input.disabled + .md-confirm-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button input.disabled + .md-confirm-button:hover, .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input.disabled + .md-confirm-button:hover, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-button input.disabled + .md-confirm-button:hover, .input-w-button md-dialog input.disabled + .close-dialog:hover, md-dialog .input-w-button input.disabled + .close-dialog:hover, .input-w-button md-dialog md-dialog-actions input.disabled + .md-cancel-button:hover, md-dialog md-dialog-actions .input-w-button input.disabled + .md-cancel-button:hover, .input-w-button md-dialog md-dialog-actions input.disabled + .clear.md-confirm-button:hover, md-dialog md-dialog-actions .input-w-button input.disabled + .clear.md-confirm-button:hover, .input-w-button .colorpicker input.disabled + .close-colorpicker:hover, .colorpicker .input-w-button input.disabled + .close-colorpicker:hover, .input-w-button input[disabled] + button.clear:hover, .input-w-button input[disabled] + label.clear.label-btn:hover, .input-w-button md-autocomplete .md-show-clear-button input[disabled] + button:hover, md-autocomplete .md-show-clear-button .input-w-button input[disabled] + button:hover, .input-w-button md-autocomplete .md-show-clear-button input[disabled] + label.label-btn:hover, md-autocomplete .md-show-clear-button .input-w-button input[disabled] + label.label-btn:hover, .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input[disabled] + .md-cancel-button:hover, .input-w-button md-autocomplete .md-show-clear-button md-dialog md-dialog-actions input[disabled] + .md-confirm-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button input[disabled] + .md-confirm-button:hover, .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input[disabled] + .md-confirm-button:hover, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-button input[disabled] + .md-confirm-button:hover, .input-w-button md-dialog input[disabled] + .close-dialog:hover, md-dialog .input-w-button input[disabled] + .close-dialog:hover, .input-w-button md-dialog md-dialog-actions input[disabled] + .md-cancel-button:hover, md-dialog md-dialog-actions .input-w-button input[disabled] + .md-cancel-button:hover, .input-w-button md-dialog md-dialog-actions input[disabled] + .clear.md-confirm-button:hover, md-dialog md-dialog-actions .input-w-button input[disabled] + .clear.md-confirm-button:hover, .input-w-button .colorpicker input[disabled] + .close-colorpicker:hover, .colorpicker .input-w-button input[disabled] + .close-colorpicker:hover,
  fieldset[disabled] .input-w-button input + button.clear:hover, fieldset[disabled] .input-w-button input + label.clear.label-btn:hover, fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button input + button:hover, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button input + button:hover, fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button input + label.label-btn:hover, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button input + label.label-btn:hover, fieldset[disabled] .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input + .md-cancel-button:hover, fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button md-dialog md-dialog-actions input + .md-confirm-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .md-confirm-button:hover, fieldset[disabled] .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input + .md-confirm-button:hover, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button input + .md-confirm-button:hover, fieldset[disabled] .input-w-button md-dialog input + .close-dialog:hover, md-dialog fieldset[disabled] .input-w-button input + .close-dialog:hover, fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .md-cancel-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .md-cancel-button:hover, fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .clear.md-confirm-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .clear.md-confirm-button:hover, fieldset[disabled] .input-w-button .colorpicker input + .close-colorpicker:hover, .colorpicker fieldset[disabled] .input-w-button input + .close-colorpicker:hover, md-autocomplete .md-show-clear-button button.disabled:hover, md-autocomplete .md-show-clear-button label.disabled.label-btn:hover, md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions input.disabled + .md-cancel-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay input.disabled + .md-cancel-button:hover, md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button input.disabled + .md-cancel-button:hover, md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions input.disabled + .md-confirm-button:hover, md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button input.disabled + .md-confirm-button:hover, md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions input[disabled] + .md-cancel-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay input[disabled] + .md-cancel-button:hover, md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button input[disabled] + .md-cancel-button:hover, md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions input[disabled] + .md-confirm-button:hover, md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button input[disabled] + .md-confirm-button:hover, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .md-cancel-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .md-cancel-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button input + .md-cancel-button:hover, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .md-confirm-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button input + .md-confirm-button:hover, md-autocomplete .md-show-clear-button .input-w-clear input.disabled + button:hover, .input-w-clear md-autocomplete .md-show-clear-button input.disabled + button:hover, md-autocomplete .md-show-clear-button .input-w-clear input.disabled + label.label-btn:hover, .input-w-clear md-autocomplete .md-show-clear-button input.disabled + label.label-btn:hover, md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions input.disabled + .md-cancel-button:hover, .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input.disabled + .md-cancel-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear input.disabled + .md-cancel-button:hover, md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button input.disabled + .md-cancel-button:hover, md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions input.disabled + .md-confirm-button:hover, .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input.disabled + .md-confirm-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear input.disabled + .md-confirm-button:hover, md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button input.disabled + .md-confirm-button:hover, md-autocomplete .md-show-clear-button .input-w-clear input[disabled] + button:hover, .input-w-clear md-autocomplete .md-show-clear-button input[disabled] + button:hover, md-autocomplete .md-show-clear-button .input-w-clear input[disabled] + label.label-btn:hover, .input-w-clear md-autocomplete .md-show-clear-button input[disabled] + label.label-btn:hover, md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions input[disabled] + .md-cancel-button:hover, .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input[disabled] + .md-cancel-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear input[disabled] + .md-cancel-button:hover, md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button input[disabled] + .md-cancel-button:hover, md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions input[disabled] + .md-confirm-button:hover, .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input[disabled] + .md-confirm-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear input[disabled] + .md-confirm-button:hover, md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button input[disabled] + .md-confirm-button:hover,
  md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear input + button:hover, fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button input + button:hover, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear input + label.label-btn:hover, fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button input + label.label-btn:hover, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .md-cancel-button:hover, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input + .md-cancel-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .md-cancel-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button input + .md-cancel-button:hover, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .md-confirm-button:hover, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input + .md-confirm-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .md-confirm-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button input + .md-confirm-button:hover, md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions input.disabled + .md-cancel-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button input.disabled + .md-cancel-button:hover, md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button input.disabled + .md-cancel-button:hover, md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions input.disabled + .md-confirm-button:hover, md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button input.disabled + .md-confirm-button:hover, md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions input[disabled] + .md-cancel-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button input[disabled] + .md-cancel-button:hover, md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button input[disabled] + .md-cancel-button:hover, md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions input[disabled] + .md-confirm-button:hover, md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button input[disabled] + .md-confirm-button:hover, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .md-cancel-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .md-cancel-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button input + .md-cancel-button:hover, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .md-confirm-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button input + .md-confirm-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .disabled.md-cancel-button:hover, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .disabled.md-cancel-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .disabled.md-confirm-button:hover, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .disabled.md-confirm-button:hover, md-dialog .disabled.close-dialog:hover, md-dialog md-dialog-actions .disabled.md-cancel-button:hover, md-dialog md-dialog-actions .clear.disabled.md-confirm-button:hover, .colorpicker .disabled.close-colorpicker:hover, button.clear.disabled:focus, label.clear.disabled.label-btn:focus, .input-w-inlay input.disabled + button.clear:focus, .input-w-inlay input.disabled + label.clear.label-btn:focus, .input-w-inlay md-autocomplete .md-show-clear-button input.disabled + button:focus, md-autocomplete .md-show-clear-button .input-w-inlay input.disabled + button:focus, .input-w-inlay md-autocomplete .md-show-clear-button input.disabled + label.label-btn:focus, md-autocomplete .md-show-clear-button .input-w-inlay input.disabled + label.label-btn:focus, .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input.disabled + .md-cancel-button:focus, .input-w-inlay md-autocomplete .md-show-clear-button md-dialog md-dialog-actions input.disabled + .md-confirm-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay input.disabled + .md-confirm-button:focus, .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input.disabled + .md-confirm-button:focus, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-inlay input.disabled + .md-confirm-button:focus, .input-w-inlay md-dialog input.disabled + .close-dialog:focus, md-dialog .input-w-inlay input.disabled + .close-dialog:focus, .input-w-inlay md-dialog md-dialog-actions input.disabled + .md-cancel-button:focus, md-dialog md-dialog-actions .input-w-inlay input.disabled + .md-cancel-button:focus, .input-w-inlay md-dialog md-dialog-actions input.disabled + .clear.md-confirm-button:focus, md-dialog md-dialog-actions .input-w-inlay input.disabled + .clear.md-confirm-button:focus, .input-w-inlay .colorpicker input.disabled + .close-colorpicker:focus, .colorpicker .input-w-inlay input.disabled + .close-colorpicker:focus, .input-w-inlay input[disabled] + button.clear:focus, .input-w-inlay input[disabled] + label.clear.label-btn:focus, .input-w-inlay md-autocomplete .md-show-clear-button input[disabled] + button:focus, md-autocomplete .md-show-clear-button .input-w-inlay input[disabled] + button:focus, .input-w-inlay md-autocomplete .md-show-clear-button input[disabled] + label.label-btn:focus, md-autocomplete .md-show-clear-button .input-w-inlay input[disabled] + label.label-btn:focus, .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input[disabled] + .md-cancel-button:focus, .input-w-inlay md-autocomplete .md-show-clear-button md-dialog md-dialog-actions input[disabled] + .md-confirm-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay input[disabled] + .md-confirm-button:focus, .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input[disabled] + .md-confirm-button:focus, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-inlay input[disabled] + .md-confirm-button:focus, .input-w-inlay md-dialog input[disabled] + .close-dialog:focus, md-dialog .input-w-inlay input[disabled] + .close-dialog:focus, .input-w-inlay md-dialog md-dialog-actions input[disabled] + .md-cancel-button:focus, md-dialog md-dialog-actions .input-w-inlay input[disabled] + .md-cancel-button:focus, .input-w-inlay md-dialog md-dialog-actions input[disabled] + .clear.md-confirm-button:focus, md-dialog md-dialog-actions .input-w-inlay input[disabled] + .clear.md-confirm-button:focus, .input-w-inlay .colorpicker input[disabled] + .close-colorpicker:focus, .colorpicker .input-w-inlay input[disabled] + .close-colorpicker:focus,
  fieldset[disabled] .input-w-inlay input + button.clear:focus, fieldset[disabled] .input-w-inlay input + label.clear.label-btn:focus, fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button input + button:focus, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay input + button:focus, fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button input + label.label-btn:focus, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay input + label.label-btn:focus, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input + .md-cancel-button:focus, fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button md-dialog md-dialog-actions input + .md-confirm-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .md-confirm-button:focus, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input + .md-confirm-button:focus, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay input + .md-confirm-button:focus, fieldset[disabled] .input-w-inlay md-dialog input + .close-dialog:focus, md-dialog fieldset[disabled] .input-w-inlay input + .close-dialog:focus, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .md-cancel-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .md-cancel-button:focus, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .clear.md-confirm-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .clear.md-confirm-button:focus, fieldset[disabled] .input-w-inlay .colorpicker input + .close-colorpicker:focus, .colorpicker fieldset[disabled] .input-w-inlay input + .close-colorpicker:focus, .input-w-clear input.disabled + button:focus, .input-w-clear input.disabled + label.label-btn:focus, .input-w-clear md-dialog md-dialog-actions input.disabled + .md-cancel-button:focus, md-dialog md-dialog-actions .input-w-clear input.disabled + .md-cancel-button:focus, .input-w-clear md-dialog md-dialog-actions input.disabled + .md-confirm-button:focus, md-dialog md-dialog-actions .input-w-clear input.disabled + .md-confirm-button:focus, .input-w-clear input[disabled] + button:focus, .input-w-clear input[disabled] + label.label-btn:focus, .input-w-clear md-dialog md-dialog-actions input[disabled] + .md-cancel-button:focus, md-dialog md-dialog-actions .input-w-clear input[disabled] + .md-cancel-button:focus, .input-w-clear md-dialog md-dialog-actions input[disabled] + .md-confirm-button:focus, md-dialog md-dialog-actions .input-w-clear input[disabled] + .md-confirm-button:focus,
  fieldset[disabled] .input-w-clear input + button:focus, fieldset[disabled] .input-w-clear input + label.label-btn:focus, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .md-cancel-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .md-cancel-button:focus, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .md-confirm-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .md-confirm-button:focus, .input-w-button input.disabled + button.clear:focus, .input-w-button input.disabled + label.clear.label-btn:focus, .input-w-button md-autocomplete .md-show-clear-button input.disabled + button:focus, md-autocomplete .md-show-clear-button .input-w-button input.disabled + button:focus, .input-w-button md-autocomplete .md-show-clear-button input.disabled + label.label-btn:focus, md-autocomplete .md-show-clear-button .input-w-button input.disabled + label.label-btn:focus, .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input.disabled + .md-cancel-button:focus, .input-w-button md-autocomplete .md-show-clear-button md-dialog md-dialog-actions input.disabled + .md-confirm-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button input.disabled + .md-confirm-button:focus, .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input.disabled + .md-confirm-button:focus, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-button input.disabled + .md-confirm-button:focus, .input-w-button md-dialog input.disabled + .close-dialog:focus, md-dialog .input-w-button input.disabled + .close-dialog:focus, .input-w-button md-dialog md-dialog-actions input.disabled + .md-cancel-button:focus, md-dialog md-dialog-actions .input-w-button input.disabled + .md-cancel-button:focus, .input-w-button md-dialog md-dialog-actions input.disabled + .clear.md-confirm-button:focus, md-dialog md-dialog-actions .input-w-button input.disabled + .clear.md-confirm-button:focus, .input-w-button .colorpicker input.disabled + .close-colorpicker:focus, .colorpicker .input-w-button input.disabled + .close-colorpicker:focus, .input-w-button input[disabled] + button.clear:focus, .input-w-button input[disabled] + label.clear.label-btn:focus, .input-w-button md-autocomplete .md-show-clear-button input[disabled] + button:focus, md-autocomplete .md-show-clear-button .input-w-button input[disabled] + button:focus, .input-w-button md-autocomplete .md-show-clear-button input[disabled] + label.label-btn:focus, md-autocomplete .md-show-clear-button .input-w-button input[disabled] + label.label-btn:focus, .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input[disabled] + .md-cancel-button:focus, .input-w-button md-autocomplete .md-show-clear-button md-dialog md-dialog-actions input[disabled] + .md-confirm-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button input[disabled] + .md-confirm-button:focus, .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input[disabled] + .md-confirm-button:focus, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-button input[disabled] + .md-confirm-button:focus, .input-w-button md-dialog input[disabled] + .close-dialog:focus, md-dialog .input-w-button input[disabled] + .close-dialog:focus, .input-w-button md-dialog md-dialog-actions input[disabled] + .md-cancel-button:focus, md-dialog md-dialog-actions .input-w-button input[disabled] + .md-cancel-button:focus, .input-w-button md-dialog md-dialog-actions input[disabled] + .clear.md-confirm-button:focus, md-dialog md-dialog-actions .input-w-button input[disabled] + .clear.md-confirm-button:focus, .input-w-button .colorpicker input[disabled] + .close-colorpicker:focus, .colorpicker .input-w-button input[disabled] + .close-colorpicker:focus,
  fieldset[disabled] .input-w-button input + button.clear:focus, fieldset[disabled] .input-w-button input + label.clear.label-btn:focus, fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button input + button:focus, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button input + button:focus, fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button input + label.label-btn:focus, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button input + label.label-btn:focus, fieldset[disabled] .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input + .md-cancel-button:focus, fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button md-dialog md-dialog-actions input + .md-confirm-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .md-confirm-button:focus, fieldset[disabled] .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input + .md-confirm-button:focus, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button input + .md-confirm-button:focus, fieldset[disabled] .input-w-button md-dialog input + .close-dialog:focus, md-dialog fieldset[disabled] .input-w-button input + .close-dialog:focus, fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .md-cancel-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .md-cancel-button:focus, fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .clear.md-confirm-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .clear.md-confirm-button:focus, fieldset[disabled] .input-w-button .colorpicker input + .close-colorpicker:focus, .colorpicker fieldset[disabled] .input-w-button input + .close-colorpicker:focus, md-autocomplete .md-show-clear-button button.disabled:focus, md-autocomplete .md-show-clear-button label.disabled.label-btn:focus, md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions input.disabled + .md-cancel-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay input.disabled + .md-cancel-button:focus, md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button input.disabled + .md-cancel-button:focus, md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions input.disabled + .md-confirm-button:focus, md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button input.disabled + .md-confirm-button:focus, md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions input[disabled] + .md-cancel-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay input[disabled] + .md-cancel-button:focus, md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button input[disabled] + .md-cancel-button:focus, md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions input[disabled] + .md-confirm-button:focus, md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button input[disabled] + .md-confirm-button:focus, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .md-cancel-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .md-cancel-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button input + .md-cancel-button:focus, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .md-confirm-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button input + .md-confirm-button:focus, md-autocomplete .md-show-clear-button .input-w-clear input.disabled + button:focus, .input-w-clear md-autocomplete .md-show-clear-button input.disabled + button:focus, md-autocomplete .md-show-clear-button .input-w-clear input.disabled + label.label-btn:focus, .input-w-clear md-autocomplete .md-show-clear-button input.disabled + label.label-btn:focus, md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions input.disabled + .md-cancel-button:focus, .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input.disabled + .md-cancel-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear input.disabled + .md-cancel-button:focus, md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button input.disabled + .md-cancel-button:focus, md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions input.disabled + .md-confirm-button:focus, .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input.disabled + .md-confirm-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear input.disabled + .md-confirm-button:focus, md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button input.disabled + .md-confirm-button:focus, md-autocomplete .md-show-clear-button .input-w-clear input[disabled] + button:focus, .input-w-clear md-autocomplete .md-show-clear-button input[disabled] + button:focus, md-autocomplete .md-show-clear-button .input-w-clear input[disabled] + label.label-btn:focus, .input-w-clear md-autocomplete .md-show-clear-button input[disabled] + label.label-btn:focus, md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions input[disabled] + .md-cancel-button:focus, .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input[disabled] + .md-cancel-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear input[disabled] + .md-cancel-button:focus, md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button input[disabled] + .md-cancel-button:focus, md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions input[disabled] + .md-confirm-button:focus, .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input[disabled] + .md-confirm-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear input[disabled] + .md-confirm-button:focus, md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button input[disabled] + .md-confirm-button:focus,
  md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear input + button:focus, fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button input + button:focus, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear input + label.label-btn:focus, fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button input + label.label-btn:focus, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .md-cancel-button:focus, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input + .md-cancel-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .md-cancel-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button input + .md-cancel-button:focus, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .md-confirm-button:focus, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input + .md-confirm-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .md-confirm-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button input + .md-confirm-button:focus, md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions input.disabled + .md-cancel-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button input.disabled + .md-cancel-button:focus, md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button input.disabled + .md-cancel-button:focus, md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions input.disabled + .md-confirm-button:focus, md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button input.disabled + .md-confirm-button:focus, md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions input[disabled] + .md-cancel-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button input[disabled] + .md-cancel-button:focus, md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button input[disabled] + .md-cancel-button:focus, md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions input[disabled] + .md-confirm-button:focus, md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button input[disabled] + .md-confirm-button:focus, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .md-cancel-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .md-cancel-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button input + .md-cancel-button:focus, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .md-confirm-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button input + .md-confirm-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .disabled.md-cancel-button:focus, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .disabled.md-cancel-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .disabled.md-confirm-button:focus, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .disabled.md-confirm-button:focus, md-dialog .disabled.close-dialog:focus, md-dialog md-dialog-actions .disabled.md-cancel-button:focus, md-dialog md-dialog-actions .clear.disabled.md-confirm-button:focus, .colorpicker .disabled.close-colorpicker:focus, button.clear[disabled]:hover, label.clear.label-btn[disabled]:hover, md-autocomplete .md-show-clear-button button[disabled]:hover, md-autocomplete .md-show-clear-button label.label-btn[disabled]:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button[disabled]:hover, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-confirm-button[disabled]:hover, md-dialog .close-dialog[disabled]:hover, md-dialog md-dialog-actions .md-cancel-button[disabled]:hover, md-dialog md-dialog-actions .clear.md-confirm-button[disabled]:hover, .colorpicker .close-colorpicker[disabled]:hover, button.clear[disabled]:focus, label.clear.label-btn[disabled]:focus, md-autocomplete .md-show-clear-button button[disabled]:focus, md-autocomplete .md-show-clear-button label.label-btn[disabled]:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button[disabled]:focus, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-confirm-button[disabled]:focus, md-dialog .close-dialog[disabled]:focus, md-dialog md-dialog-actions .md-cancel-button[disabled]:focus, md-dialog md-dialog-actions .clear.md-confirm-button[disabled]:focus, .colorpicker .close-colorpicker[disabled]:focus,
  fieldset[disabled] button.clear:hover,
  fieldset[disabled] label.clear.label-btn:hover,
  fieldset[disabled] md-autocomplete .md-show-clear-button button:hover,
  md-autocomplete .md-show-clear-button fieldset[disabled] button:hover,
  fieldset[disabled] md-autocomplete .md-show-clear-button label.label-btn:hover,
  md-autocomplete .md-show-clear-button fieldset[disabled] label.label-btn:hover,
  fieldset[disabled] md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button:hover,
  md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .md-confirm-button:hover,
  fieldset[disabled] md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-confirm-button:hover,
  md-dialog md-dialog-actions md-autocomplete .md-show-clear-button fieldset[disabled] .md-confirm-button:hover,
  fieldset[disabled] md-dialog .close-dialog:hover,
  md-dialog fieldset[disabled] .close-dialog:hover,
  fieldset[disabled] md-dialog md-dialog-actions .md-cancel-button:hover,
  md-dialog md-dialog-actions fieldset[disabled] .md-cancel-button:hover,
  fieldset[disabled] md-dialog md-dialog-actions .clear.md-confirm-button:hover,
  md-dialog md-dialog-actions fieldset[disabled] .clear.md-confirm-button:hover,
  fieldset[disabled] .colorpicker .close-colorpicker:hover,
  .colorpicker fieldset[disabled] .close-colorpicker:hover,
  fieldset[disabled] button.clear:focus,
  fieldset[disabled] label.clear.label-btn:focus,
  fieldset[disabled] md-autocomplete .md-show-clear-button button:focus,
  md-autocomplete .md-show-clear-button fieldset[disabled] button:focus,
  fieldset[disabled] md-autocomplete .md-show-clear-button label.label-btn:focus,
  md-autocomplete .md-show-clear-button fieldset[disabled] label.label-btn:focus,
  fieldset[disabled] md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button:focus,
  md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .md-confirm-button:focus,
  fieldset[disabled] md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-confirm-button:focus,
  md-dialog md-dialog-actions md-autocomplete .md-show-clear-button fieldset[disabled] .md-confirm-button:focus,
  fieldset[disabled] md-dialog .close-dialog:focus,
  md-dialog fieldset[disabled] .close-dialog:focus,
  fieldset[disabled] md-dialog md-dialog-actions .md-cancel-button:focus,
  md-dialog md-dialog-actions fieldset[disabled] .md-cancel-button:focus,
  fieldset[disabled] md-dialog md-dialog-actions .clear.md-confirm-button:focus,
  md-dialog md-dialog-actions fieldset[disabled] .clear.md-confirm-button:focus,
  fieldset[disabled] .colorpicker .close-colorpicker:focus,
  .colorpicker fieldset[disabled] .close-colorpicker:focus {
    background-color: transparent; }
  button.clear:not(.flush-icon):before, label.clear.label-btn:not(.flush-icon):before, md-autocomplete .md-show-clear-button button:not(.flush-icon):before, md-autocomplete .md-show-clear-button label.label-btn:not(.flush-icon):before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button:not(.flush-icon):before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-confirm-button:not(.flush-icon):before, md-dialog .close-dialog:not(.flush-icon):before, md-dialog md-dialog-actions .md-cancel-button:not(.flush-icon):before, md-dialog md-dialog-actions .clear.md-confirm-button:not(.flush-icon):before, .colorpicker .close-colorpicker:not(.flush-icon):before, button.clear:not(.flush-icon)[class^="icon-"]:before, label.clear.label-btn:not(.flush-icon)[class^="icon-"]:before, label.clear.label-btn.promise-indicator:not(.flush-icon):before, table th.sortable label.clear.label-btn.sort-btn:not(.flush-icon):after, label.clear.label-btn.collapse-ctrl:not(.flush-icon):before, md-dialog label.clear.label-btn.close-dialog:not(.flush-icon):before, .colorpicker label.clear.label-btn.close-colorpicker:not(.flush-icon):before, button.clear.promise-indicator:not(.flush-icon):before, md-autocomplete .md-show-clear-button button.promise-indicator:not(.flush-icon):before, md-autocomplete .md-show-clear-button label.promise-indicator.label-btn:not(.flush-icon):before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .promise-indicator.md-confirm-button:not(.flush-icon):before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .promise-indicator.md-confirm-button:not(.flush-icon):before, md-dialog .promise-indicator.close-dialog:not(.flush-icon):before, md-dialog md-dialog-actions .promise-indicator.md-cancel-button:not(.flush-icon):before, md-dialog md-dialog-actions .clear.promise-indicator.md-confirm-button:not(.flush-icon):before, .colorpicker .promise-indicator.close-colorpicker:not(.flush-icon):before, .people-card.-expandable button.clear.expand-user:not(.flush-icon):before, .people-card.-expandable label.clear.expand-user.label-btn:not(.flush-icon):before, .people-card.-expandable md-autocomplete .md-show-clear-button button.expand-user:not(.flush-icon):before, md-autocomplete .md-show-clear-button .people-card.-expandable button.expand-user:not(.flush-icon):before, .people-card.-expandable md-autocomplete .md-show-clear-button label.expand-user.label-btn:not(.flush-icon):before, md-autocomplete .md-show-clear-button .people-card.-expandable label.expand-user.label-btn:not(.flush-icon):before, .people-card.-expandable md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .expand-user.md-confirm-button:not(.flush-icon):before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .people-card.-expandable .expand-user.md-confirm-button:not(.flush-icon):before, .people-card.-expandable md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .expand-user.md-confirm-button:not(.flush-icon):before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .people-card.-expandable .expand-user.md-confirm-button:not(.flush-icon):before, .people-card.-expandable md-dialog .expand-user.close-dialog:not(.flush-icon):before, md-dialog .people-card.-expandable .expand-user.close-dialog:not(.flush-icon):before, .people-card.-expandable md-dialog md-dialog-actions .expand-user.md-cancel-button:not(.flush-icon):before, md-dialog md-dialog-actions .people-card.-expandable .expand-user.md-cancel-button:not(.flush-icon):before, .people-card.-expandable md-dialog md-dialog-actions .clear.expand-user.md-confirm-button:not(.flush-icon):before, md-dialog md-dialog-actions .people-card.-expandable .clear.expand-user.md-confirm-button:not(.flush-icon):before, .people-card.-expandable .colorpicker .expand-user.close-colorpicker:not(.flush-icon):before, .colorpicker .people-card.-expandable .expand-user.close-colorpicker:not(.flush-icon):before, table th.sortable button.clear.sort-btn:not(.flush-icon):after, table th.sortable md-autocomplete .md-show-clear-button button.sort-btn:not(.flush-icon):after, md-autocomplete .md-show-clear-button table th.sortable button.sort-btn:not(.flush-icon):after, table th.sortable md-autocomplete .md-show-clear-button label.sort-btn.label-btn:not(.flush-icon):after, md-autocomplete .md-show-clear-button table th.sortable label.sort-btn.label-btn:not(.flush-icon):after, table th.sortable md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .sort-btn.md-confirm-button:not(.flush-icon):after, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions table th.sortable .sort-btn.md-confirm-button:not(.flush-icon):after, table th.sortable md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .sort-btn.md-confirm-button:not(.flush-icon):after, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button table th.sortable .sort-btn.md-confirm-button:not(.flush-icon):after, table th.sortable md-dialog .sort-btn.close-dialog:not(.flush-icon):after, md-dialog table th.sortable .sort-btn.close-dialog:not(.flush-icon):after, table th.sortable md-dialog md-dialog-actions .sort-btn.md-cancel-button:not(.flush-icon):after, md-dialog md-dialog-actions table th.sortable .sort-btn.md-cancel-button:not(.flush-icon):after, table th.sortable md-dialog md-dialog-actions .clear.sort-btn.md-confirm-button:not(.flush-icon):after, md-dialog md-dialog-actions table th.sortable .clear.sort-btn.md-confirm-button:not(.flush-icon):after, table th.sortable .colorpicker .sort-btn.close-colorpicker:not(.flush-icon):after, .colorpicker table th.sortable .sort-btn.close-colorpicker:not(.flush-icon):after, button.clear.collapse-ctrl:not(.flush-icon):before, md-autocomplete .md-show-clear-button button.collapse-ctrl:not(.flush-icon):before, md-autocomplete .md-show-clear-button label.collapse-ctrl.label-btn:not(.flush-icon):before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .collapse-ctrl.md-confirm-button:not(.flush-icon):before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .collapse-ctrl.md-confirm-button:not(.flush-icon):before, md-dialog .collapse-ctrl.close-dialog:not(.flush-icon):before, md-dialog md-dialog-actions .collapse-ctrl.md-cancel-button:not(.flush-icon):before, md-dialog md-dialog-actions .clear.collapse-ctrl.md-confirm-button:not(.flush-icon):before, .colorpicker .collapse-ctrl.close-colorpicker:not(.flush-icon):before, md-autocomplete .md-show-clear-button button:not(.flush-icon), md-autocomplete .md-show-clear-button label.label-btn:not(.flush-icon), md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-cancel-button:not(.flush-icon), md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-cancel-button:not(.flush-icon), md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button:not(.flush-icon), md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-confirm-button:not(.flush-icon), md-dialog .close-dialog:not(.flush-icon):before, md-dialog md-dialog-actions .md-cancel-button:not(.flush-icon)[class^="icon-"]:before, md-dialog md-dialog-actions .group-tag p.md-cancel-button:not(.flush-icon):before, .group-tag md-dialog md-dialog-actions p.md-cancel-button:not(.flush-icon):before, md-dialog md-dialog-actions .md-cancel-button.close-dialog:not(.flush-icon):before, md-dialog md-dialog-actions .colorpicker .md-cancel-button.close-colorpicker:not(.flush-icon):before, .colorpicker md-dialog md-dialog-actions .md-cancel-button.close-colorpicker:not(.flush-icon):before, md-dialog md-dialog-actions .clear.md-confirm-button:not(.flush-icon)[class^="icon-"]:before, md-dialog md-dialog-actions .people-card.-expandable button.clear.md-confirm-button.expand-user:not(.flush-icon):before, .people-card.-expandable md-dialog md-dialog-actions button.clear.md-confirm-button.expand-user:not(.flush-icon):before, md-dialog md-dialog-actions .people-card.-expandable md-autocomplete .md-show-clear-button button.md-confirm-button.expand-user:not(.flush-icon):before, .people-card.-expandable md-autocomplete .md-show-clear-button md-dialog md-dialog-actions button.md-confirm-button.expand-user:not(.flush-icon):before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .people-card.-expandable button.md-confirm-button.expand-user:not(.flush-icon):before, md-autocomplete .md-show-clear-button .people-card.-expandable md-dialog md-dialog-actions button.md-confirm-button.expand-user:not(.flush-icon):before, .people-card.-expandable md-dialog md-dialog-actions .md-confirm-button.expand-user.close-dialog:not(.flush-icon):before, md-dialog md-dialog-actions .people-card.-expandable .md-confirm-button.expand-user.close-dialog:not(.flush-icon):before, md-dialog .people-card.-expandable md-dialog-actions .md-confirm-button.expand-user.close-dialog:not(.flush-icon):before, .people-card.-expandable md-dialog md-dialog-actions .md-confirm-button.expand-user.md-cancel-button:not(.flush-icon):before, md-dialog md-dialog-actions .people-card.-expandable .md-confirm-button.expand-user.md-cancel-button:not(.flush-icon):before, md-dialog md-dialog-actions .people-card.-expandable .colorpicker .md-confirm-button.expand-user.close-colorpicker:not(.flush-icon):before, .people-card.-expandable .colorpicker md-dialog md-dialog-actions .md-confirm-button.expand-user.close-colorpicker:not(.flush-icon):before, md-dialog md-dialog-actions .colorpicker .people-card.-expandable .md-confirm-button.expand-user.close-colorpicker:not(.flush-icon):before, .colorpicker .people-card.-expandable md-dialog md-dialog-actions .md-confirm-button.expand-user.close-colorpicker:not(.flush-icon):before, md-dialog md-dialog-actions .group-tag p.clear.md-confirm-button:not(.flush-icon):before, .group-tag md-dialog md-dialog-actions p.clear.md-confirm-button:not(.flush-icon):before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button button.md-confirm-button:not(.flush-icon), md-autocomplete .md-show-clear-button md-dialog md-dialog-actions button.md-confirm-button:not(.flush-icon), md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button.close-dialog:not(.flush-icon), md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-confirm-button.close-dialog:not(.flush-icon), md-dialog md-autocomplete .md-show-clear-button md-dialog-actions .md-confirm-button.close-dialog:not(.flush-icon), md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button.md-cancel-button:not(.flush-icon), md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-confirm-button.md-cancel-button:not(.flush-icon), md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .colorpicker .md-confirm-button.close-colorpicker:not(.flush-icon), md-autocomplete .md-show-clear-button .colorpicker md-dialog md-dialog-actions .md-confirm-button.close-colorpicker:not(.flush-icon), md-dialog md-dialog-actions .colorpicker md-autocomplete .md-show-clear-button .md-confirm-button.close-colorpicker:not(.flush-icon), .colorpicker md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button.close-colorpicker:not(.flush-icon), md-dialog md-dialog-actions .clear.md-confirm-button.close-dialog:not(.flush-icon):before, md-dialog md-dialog-actions .colorpicker .clear.md-confirm-button.close-colorpicker:not(.flush-icon):before, .colorpicker md-dialog md-dialog-actions .clear.md-confirm-button.close-colorpicker:not(.flush-icon):before, .colorpicker .close-colorpicker:not(.flush-icon):before, button.clear:not(.flush-icon)[class*=" icon-"]:before, label.clear.label-btn:not(.flush-icon)[class*=" icon-"]:before, md-autocomplete .md-show-clear-button button:not(.flush-icon)[class*=" icon-"]:before, md-autocomplete .md-show-clear-button label.label-btn:not(.flush-icon)[class*=" icon-"]:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button:not(.flush-icon)[class*=" icon-"]:before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-confirm-button:not(.flush-icon)[class*=" icon-"]:before, md-dialog .close-dialog:not(.flush-icon)[class*=" icon-"]:before, md-dialog md-dialog-actions .md-cancel-button:not(.flush-icon)[class*=" icon-"]:before, md-dialog md-dialog-actions .clear.md-confirm-button:not(.flush-icon)[class*=" icon-"]:before, .colorpicker .close-colorpicker:not(.flush-icon)[class*=" icon-"]:before {
    margin-right: 4px; }
  .theme-cmix button.clear, .theme-cmix label.clear.label-btn, .theme-cmix md-autocomplete .md-show-clear-button button, md-autocomplete .md-show-clear-button .theme-cmix button, .theme-cmix md-autocomplete .md-show-clear-button label.label-btn, md-autocomplete .md-show-clear-button .theme-cmix label.label-btn, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-cmix .md-confirm-button, .theme-cmix md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-confirm-button, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix .md-confirm-button, .theme-cmix md-dialog .close-dialog, md-dialog .theme-cmix .close-dialog, .theme-cmix md-dialog md-dialog-actions .md-cancel-button, md-dialog md-dialog-actions .theme-cmix .md-cancel-button, .theme-cmix md-dialog md-dialog-actions .clear.md-confirm-button, md-dialog md-dialog-actions .theme-cmix .clear.md-confirm-button, .theme-cmix .colorpicker .close-colorpicker, .colorpicker .theme-cmix .close-colorpicker, .theme-cmix button.clear:before, .theme-cmix label.clear.label-btn:before, .theme-cmix md-autocomplete .md-show-clear-button button:before, md-autocomplete .md-show-clear-button .theme-cmix button:before, .theme-cmix md-autocomplete .md-show-clear-button label.label-btn:before, md-autocomplete .md-show-clear-button .theme-cmix label.label-btn:before, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-cmix .md-confirm-button:before, .theme-cmix md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-confirm-button:before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix .md-confirm-button:before, .theme-cmix md-dialog .close-dialog:before, md-dialog .theme-cmix .close-dialog:before, .theme-cmix md-dialog md-dialog-actions .md-cancel-button:before, md-dialog md-dialog-actions .theme-cmix .md-cancel-button:before, .theme-cmix md-dialog md-dialog-actions .clear.md-confirm-button:before, md-dialog md-dialog-actions .theme-cmix .clear.md-confirm-button:before, .theme-cmix .colorpicker .close-colorpicker:before, .colorpicker .theme-cmix .close-colorpicker:before {
    color: #585863; }
  .theme-cmix button.clear:hover, .theme-cmix label.clear.label-btn:hover, .theme-cmix md-autocomplete .md-show-clear-button button:hover, md-autocomplete .md-show-clear-button .theme-cmix button:hover, .theme-cmix md-autocomplete .md-show-clear-button label.label-btn:hover, md-autocomplete .md-show-clear-button .theme-cmix label.label-btn:hover, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-cmix .md-confirm-button:hover, .theme-cmix md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-confirm-button:hover, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix .md-confirm-button:hover, .theme-cmix md-dialog .close-dialog:hover, md-dialog .theme-cmix .close-dialog:hover, .theme-cmix md-dialog md-dialog-actions .md-cancel-button:hover, md-dialog md-dialog-actions .theme-cmix .md-cancel-button:hover, .theme-cmix md-dialog md-dialog-actions .clear.md-confirm-button:hover, md-dialog md-dialog-actions .theme-cmix .clear.md-confirm-button:hover, .theme-cmix .colorpicker .close-colorpicker:hover, .colorpicker .theme-cmix .close-colorpicker:hover, .theme-cmix button.clear:focus, .theme-cmix label.clear.label-btn:focus, .theme-cmix md-autocomplete .md-show-clear-button button:focus, md-autocomplete .md-show-clear-button .theme-cmix button:focus, .theme-cmix md-autocomplete .md-show-clear-button label.label-btn:focus, md-autocomplete .md-show-clear-button .theme-cmix label.label-btn:focus, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-cmix .md-confirm-button:focus, .theme-cmix md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-confirm-button:focus, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix .md-confirm-button:focus, .theme-cmix md-dialog .close-dialog:focus, md-dialog .theme-cmix .close-dialog:focus, .theme-cmix md-dialog md-dialog-actions .md-cancel-button:focus, md-dialog md-dialog-actions .theme-cmix .md-cancel-button:focus, .theme-cmix md-dialog md-dialog-actions .clear.md-confirm-button:focus, md-dialog md-dialog-actions .theme-cmix .clear.md-confirm-button:focus, .theme-cmix .colorpicker .close-colorpicker:focus, .colorpicker .theme-cmix .close-colorpicker:focus, .theme-cmix button.clear:hover:before, .theme-cmix label.clear.label-btn:hover:before, .theme-cmix md-autocomplete .md-show-clear-button button:hover:before, md-autocomplete .md-show-clear-button .theme-cmix button:hover:before, .theme-cmix md-autocomplete .md-show-clear-button label.label-btn:hover:before, md-autocomplete .md-show-clear-button .theme-cmix label.label-btn:hover:before, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button:hover:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-cmix .md-confirm-button:hover:before, .theme-cmix md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-confirm-button:hover:before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix .md-confirm-button:hover:before, .theme-cmix md-dialog .close-dialog:hover:before, md-dialog .theme-cmix .close-dialog:hover:before, .theme-cmix md-dialog md-dialog-actions .md-cancel-button:hover:before, md-dialog md-dialog-actions .theme-cmix .md-cancel-button:hover:before, .theme-cmix md-dialog md-dialog-actions .clear.md-confirm-button:hover:before, md-dialog md-dialog-actions .theme-cmix .clear.md-confirm-button:hover:before, .theme-cmix .colorpicker .close-colorpicker:hover:before, .colorpicker .theme-cmix .close-colorpicker:hover:before, .theme-cmix button.clear:focus:before, .theme-cmix label.clear.label-btn:focus:before, .theme-cmix md-autocomplete .md-show-clear-button button:focus:before, md-autocomplete .md-show-clear-button .theme-cmix button:focus:before, .theme-cmix md-autocomplete .md-show-clear-button label.label-btn:focus:before, md-autocomplete .md-show-clear-button .theme-cmix label.label-btn:focus:before, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button:focus:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-cmix .md-confirm-button:focus:before, .theme-cmix md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-confirm-button:focus:before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix .md-confirm-button:focus:before, .theme-cmix md-dialog .close-dialog:focus:before, md-dialog .theme-cmix .close-dialog:focus:before, .theme-cmix md-dialog md-dialog-actions .md-cancel-button:focus:before, md-dialog md-dialog-actions .theme-cmix .md-cancel-button:focus:before, .theme-cmix md-dialog md-dialog-actions .clear.md-confirm-button:focus:before, md-dialog md-dialog-actions .theme-cmix .clear.md-confirm-button:focus:before, .theme-cmix .colorpicker .close-colorpicker:focus:before, .colorpicker .theme-cmix .close-colorpicker:focus:before {
    color: #DF4E71; }
  .theme-cmix button.clear:active, .theme-cmix label.clear.label-btn:active, .theme-cmix md-autocomplete .md-show-clear-button button:active, md-autocomplete .md-show-clear-button .theme-cmix button:active, .theme-cmix md-autocomplete .md-show-clear-button label.label-btn:active, md-autocomplete .md-show-clear-button .theme-cmix label.label-btn:active, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button:active, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-cmix .md-confirm-button:active, .theme-cmix md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-confirm-button:active, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix .md-confirm-button:active, .theme-cmix md-dialog .close-dialog:active, md-dialog .theme-cmix .close-dialog:active, .theme-cmix md-dialog md-dialog-actions .md-cancel-button:active, md-dialog md-dialog-actions .theme-cmix .md-cancel-button:active, .theme-cmix md-dialog md-dialog-actions .clear.md-confirm-button:active, md-dialog md-dialog-actions .theme-cmix .clear.md-confirm-button:active, .theme-cmix .colorpicker .close-colorpicker:active, .colorpicker .theme-cmix .close-colorpicker:active, .theme-cmix button.clear:active:before, .theme-cmix label.clear.label-btn:active:before, .theme-cmix md-autocomplete .md-show-clear-button button:active:before, md-autocomplete .md-show-clear-button .theme-cmix button:active:before, .theme-cmix md-autocomplete .md-show-clear-button label.label-btn:active:before, md-autocomplete .md-show-clear-button .theme-cmix label.label-btn:active:before, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button:active:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-cmix .md-confirm-button:active:before, .theme-cmix md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-confirm-button:active:before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix .md-confirm-button:active:before, .theme-cmix md-dialog .close-dialog:active:before, md-dialog .theme-cmix .close-dialog:active:before, .theme-cmix md-dialog md-dialog-actions .md-cancel-button:active:before, md-dialog md-dialog-actions .theme-cmix .md-cancel-button:active:before, .theme-cmix md-dialog md-dialog-actions .clear.md-confirm-button:active:before, md-dialog md-dialog-actions .theme-cmix .clear.md-confirm-button:active:before, .theme-cmix .colorpicker .close-colorpicker:active:before, .colorpicker .theme-cmix .close-colorpicker:active:before {
    color: #db3860; }
  .theme-cmix button.clear.disabled:hover, .theme-cmix label.clear.disabled.label-btn:hover, .theme-cmix .input-w-inlay input.disabled + button.clear:hover, .input-w-inlay .theme-cmix input.disabled + button.clear:hover, .theme-cmix .input-w-inlay input.disabled + label.clear.label-btn:hover, .input-w-inlay .theme-cmix input.disabled + label.clear.label-btn:hover, .theme-cmix .input-w-inlay md-autocomplete .md-show-clear-button input.disabled + button:hover, .input-w-inlay md-autocomplete .md-show-clear-button .theme-cmix input.disabled + button:hover, .theme-cmix md-autocomplete .md-show-clear-button .input-w-inlay input.disabled + button:hover, md-autocomplete .md-show-clear-button .input-w-inlay .theme-cmix input.disabled + button:hover, .theme-cmix .input-w-inlay md-autocomplete .md-show-clear-button input.disabled + label.label-btn:hover, .input-w-inlay md-autocomplete .md-show-clear-button .theme-cmix input.disabled + label.label-btn:hover, .theme-cmix md-autocomplete .md-show-clear-button .input-w-inlay input.disabled + label.label-btn:hover, md-autocomplete .md-show-clear-button .input-w-inlay .theme-cmix input.disabled + label.label-btn:hover, .theme-cmix .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input.disabled + .md-cancel-button:hover, .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input.disabled + .md-cancel-button:hover, .theme-cmix .input-w-inlay md-autocomplete .md-show-clear-button md-dialog md-dialog-actions input.disabled + .md-confirm-button:hover, .input-w-inlay md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-cmix input.disabled + .md-confirm-button:hover, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay input.disabled + .md-confirm-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay .theme-cmix input.disabled + .md-confirm-button:hover, .theme-cmix .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input.disabled + .md-confirm-button:hover, .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input.disabled + .md-confirm-button:hover, .theme-cmix md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-inlay input.disabled + .md-confirm-button:hover, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-inlay .theme-cmix input.disabled + .md-confirm-button:hover, .theme-cmix .input-w-inlay md-dialog input.disabled + .close-dialog:hover, .input-w-inlay md-dialog .theme-cmix input.disabled + .close-dialog:hover, .theme-cmix md-dialog .input-w-inlay input.disabled + .close-dialog:hover, md-dialog .input-w-inlay .theme-cmix input.disabled + .close-dialog:hover, .theme-cmix .input-w-inlay md-dialog md-dialog-actions input.disabled + .md-cancel-button:hover, .input-w-inlay md-dialog md-dialog-actions .theme-cmix input.disabled + .md-cancel-button:hover, .theme-cmix md-dialog md-dialog-actions .input-w-inlay input.disabled + .md-cancel-button:hover, md-dialog md-dialog-actions .input-w-inlay .theme-cmix input.disabled + .md-cancel-button:hover, .theme-cmix .input-w-inlay md-dialog md-dialog-actions input.disabled + .clear.md-confirm-button:hover, .input-w-inlay md-dialog md-dialog-actions .theme-cmix input.disabled + .clear.md-confirm-button:hover, .theme-cmix md-dialog md-dialog-actions .input-w-inlay input.disabled + .clear.md-confirm-button:hover, md-dialog md-dialog-actions .input-w-inlay .theme-cmix input.disabled + .clear.md-confirm-button:hover, .theme-cmix .input-w-inlay .colorpicker input.disabled + .close-colorpicker:hover, .input-w-inlay .colorpicker .theme-cmix input.disabled + .close-colorpicker:hover, .theme-cmix .colorpicker .input-w-inlay input.disabled + .close-colorpicker:hover, .colorpicker .input-w-inlay .theme-cmix input.disabled + .close-colorpicker:hover, .theme-cmix .input-w-inlay input[disabled] + button.clear:hover, .input-w-inlay .theme-cmix input[disabled] + button.clear:hover, .theme-cmix .input-w-inlay input[disabled] + label.clear.label-btn:hover, .input-w-inlay .theme-cmix input[disabled] + label.clear.label-btn:hover, .theme-cmix .input-w-inlay md-autocomplete .md-show-clear-button input[disabled] + button:hover, .input-w-inlay md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + button:hover, .theme-cmix md-autocomplete .md-show-clear-button .input-w-inlay input[disabled] + button:hover, md-autocomplete .md-show-clear-button .input-w-inlay .theme-cmix input[disabled] + button:hover, .theme-cmix .input-w-inlay md-autocomplete .md-show-clear-button input[disabled] + label.label-btn:hover, .input-w-inlay md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + label.label-btn:hover, .theme-cmix md-autocomplete .md-show-clear-button .input-w-inlay input[disabled] + label.label-btn:hover, md-autocomplete .md-show-clear-button .input-w-inlay .theme-cmix input[disabled] + label.label-btn:hover, .theme-cmix .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input[disabled] + .md-cancel-button:hover, .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + .md-cancel-button:hover, .theme-cmix .input-w-inlay md-autocomplete .md-show-clear-button md-dialog md-dialog-actions input[disabled] + .md-confirm-button:hover, .input-w-inlay md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-cmix input[disabled] + .md-confirm-button:hover, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay input[disabled] + .md-confirm-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay .theme-cmix input[disabled] + .md-confirm-button:hover, .theme-cmix .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input[disabled] + .md-confirm-button:hover, .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + .md-confirm-button:hover, .theme-cmix md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-inlay input[disabled] + .md-confirm-button:hover, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-inlay .theme-cmix input[disabled] + .md-confirm-button:hover, .theme-cmix .input-w-inlay md-dialog input[disabled] + .close-dialog:hover, .input-w-inlay md-dialog .theme-cmix input[disabled] + .close-dialog:hover, .theme-cmix md-dialog .input-w-inlay input[disabled] + .close-dialog:hover, md-dialog .input-w-inlay .theme-cmix input[disabled] + .close-dialog:hover, .theme-cmix .input-w-inlay md-dialog md-dialog-actions input[disabled] + .md-cancel-button:hover, .input-w-inlay md-dialog md-dialog-actions .theme-cmix input[disabled] + .md-cancel-button:hover, .theme-cmix md-dialog md-dialog-actions .input-w-inlay input[disabled] + .md-cancel-button:hover, md-dialog md-dialog-actions .input-w-inlay .theme-cmix input[disabled] + .md-cancel-button:hover, .theme-cmix .input-w-inlay md-dialog md-dialog-actions input[disabled] + .clear.md-confirm-button:hover, .input-w-inlay md-dialog md-dialog-actions .theme-cmix input[disabled] + .clear.md-confirm-button:hover, .theme-cmix md-dialog md-dialog-actions .input-w-inlay input[disabled] + .clear.md-confirm-button:hover, md-dialog md-dialog-actions .input-w-inlay .theme-cmix input[disabled] + .clear.md-confirm-button:hover, .theme-cmix .input-w-inlay .colorpicker input[disabled] + .close-colorpicker:hover, .input-w-inlay .colorpicker .theme-cmix input[disabled] + .close-colorpicker:hover, .theme-cmix .colorpicker .input-w-inlay input[disabled] + .close-colorpicker:hover, .colorpicker .input-w-inlay .theme-cmix input[disabled] + .close-colorpicker:hover,
  .theme-cmix fieldset[disabled] .input-w-inlay input + button.clear:hover, fieldset[disabled] .input-w-inlay .theme-cmix input + button.clear:hover, .theme-cmix fieldset[disabled] .input-w-inlay input + label.clear.label-btn:hover, fieldset[disabled] .input-w-inlay .theme-cmix input + label.clear.label-btn:hover, .theme-cmix fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button input + button:hover, fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button .theme-cmix input + button:hover, .theme-cmix md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay input + button:hover, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay .theme-cmix input + button:hover, .theme-cmix fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button input + label.label-btn:hover, fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button .theme-cmix input + label.label-btn:hover, .theme-cmix md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay input + label.label-btn:hover, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay .theme-cmix input + label.label-btn:hover, .theme-cmix fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input + .md-cancel-button:hover, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input + .md-cancel-button:hover, .theme-cmix fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button md-dialog md-dialog-actions input + .md-confirm-button:hover, fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-cmix input + .md-confirm-button:hover, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .md-confirm-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay .theme-cmix input + .md-confirm-button:hover, .theme-cmix fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input + .md-confirm-button:hover, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input + .md-confirm-button:hover, .theme-cmix md-dialog md-dialog-actions md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay input + .md-confirm-button:hover, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay .theme-cmix input + .md-confirm-button:hover, .theme-cmix fieldset[disabled] .input-w-inlay md-dialog input + .close-dialog:hover, fieldset[disabled] .input-w-inlay md-dialog .theme-cmix input + .close-dialog:hover, .theme-cmix md-dialog fieldset[disabled] .input-w-inlay input + .close-dialog:hover, md-dialog fieldset[disabled] .input-w-inlay .theme-cmix input + .close-dialog:hover, .theme-cmix fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .md-cancel-button:hover, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions .theme-cmix input + .md-cancel-button:hover, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .md-cancel-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay .theme-cmix input + .md-cancel-button:hover, .theme-cmix fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .clear.md-confirm-button:hover, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions .theme-cmix input + .clear.md-confirm-button:hover, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .clear.md-confirm-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay .theme-cmix input + .clear.md-confirm-button:hover, .theme-cmix fieldset[disabled] .input-w-inlay .colorpicker input + .close-colorpicker:hover, fieldset[disabled] .input-w-inlay .colorpicker .theme-cmix input + .close-colorpicker:hover, .theme-cmix .colorpicker fieldset[disabled] .input-w-inlay input + .close-colorpicker:hover, .colorpicker fieldset[disabled] .input-w-inlay .theme-cmix input + .close-colorpicker:hover, .theme-cmix .input-w-clear input.disabled + button:hover, .input-w-clear .theme-cmix input.disabled + button:hover, .theme-cmix .input-w-clear input.disabled + label.label-btn:hover, .input-w-clear .theme-cmix input.disabled + label.label-btn:hover, .theme-cmix .input-w-clear md-dialog md-dialog-actions input.disabled + .md-cancel-button:hover, .input-w-clear md-dialog md-dialog-actions .theme-cmix input.disabled + .md-cancel-button:hover, .theme-cmix md-dialog md-dialog-actions .input-w-clear input.disabled + .md-cancel-button:hover, md-dialog md-dialog-actions .input-w-clear .theme-cmix input.disabled + .md-cancel-button:hover, .theme-cmix .input-w-clear md-dialog md-dialog-actions input.disabled + .md-confirm-button:hover, .input-w-clear md-dialog md-dialog-actions .theme-cmix input.disabled + .md-confirm-button:hover, .theme-cmix md-dialog md-dialog-actions .input-w-clear input.disabled + .md-confirm-button:hover, md-dialog md-dialog-actions .input-w-clear .theme-cmix input.disabled + .md-confirm-button:hover, .theme-cmix .input-w-clear input[disabled] + button:hover, .input-w-clear .theme-cmix input[disabled] + button:hover, .theme-cmix .input-w-clear input[disabled] + label.label-btn:hover, .input-w-clear .theme-cmix input[disabled] + label.label-btn:hover, .theme-cmix .input-w-clear md-dialog md-dialog-actions input[disabled] + .md-cancel-button:hover, .input-w-clear md-dialog md-dialog-actions .theme-cmix input[disabled] + .md-cancel-button:hover, .theme-cmix md-dialog md-dialog-actions .input-w-clear input[disabled] + .md-cancel-button:hover, md-dialog md-dialog-actions .input-w-clear .theme-cmix input[disabled] + .md-cancel-button:hover, .theme-cmix .input-w-clear md-dialog md-dialog-actions input[disabled] + .md-confirm-button:hover, .input-w-clear md-dialog md-dialog-actions .theme-cmix input[disabled] + .md-confirm-button:hover, .theme-cmix md-dialog md-dialog-actions .input-w-clear input[disabled] + .md-confirm-button:hover, md-dialog md-dialog-actions .input-w-clear .theme-cmix input[disabled] + .md-confirm-button:hover,
  .theme-cmix fieldset[disabled] .input-w-clear input + button:hover, fieldset[disabled] .input-w-clear .theme-cmix input + button:hover, .theme-cmix fieldset[disabled] .input-w-clear input + label.label-btn:hover, fieldset[disabled] .input-w-clear .theme-cmix input + label.label-btn:hover, .theme-cmix fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .md-cancel-button:hover, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions .theme-cmix input + .md-cancel-button:hover, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .md-cancel-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear .theme-cmix input + .md-cancel-button:hover, .theme-cmix fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .md-confirm-button:hover, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions .theme-cmix input + .md-confirm-button:hover, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .md-confirm-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear .theme-cmix input + .md-confirm-button:hover, .theme-cmix .input-w-button input.disabled + button.clear:hover, .input-w-button .theme-cmix input.disabled + button.clear:hover, .theme-cmix .input-w-button input.disabled + label.clear.label-btn:hover, .input-w-button .theme-cmix input.disabled + label.clear.label-btn:hover, .theme-cmix .input-w-button md-autocomplete .md-show-clear-button input.disabled + button:hover, .input-w-button md-autocomplete .md-show-clear-button .theme-cmix input.disabled + button:hover, .theme-cmix md-autocomplete .md-show-clear-button .input-w-button input.disabled + button:hover, md-autocomplete .md-show-clear-button .input-w-button .theme-cmix input.disabled + button:hover, .theme-cmix .input-w-button md-autocomplete .md-show-clear-button input.disabled + label.label-btn:hover, .input-w-button md-autocomplete .md-show-clear-button .theme-cmix input.disabled + label.label-btn:hover, .theme-cmix md-autocomplete .md-show-clear-button .input-w-button input.disabled + label.label-btn:hover, md-autocomplete .md-show-clear-button .input-w-button .theme-cmix input.disabled + label.label-btn:hover, .theme-cmix .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input.disabled + .md-cancel-button:hover, .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input.disabled + .md-cancel-button:hover, .theme-cmix .input-w-button md-autocomplete .md-show-clear-button md-dialog md-dialog-actions input.disabled + .md-confirm-button:hover, .input-w-button md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-cmix input.disabled + .md-confirm-button:hover, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button input.disabled + .md-confirm-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button .theme-cmix input.disabled + .md-confirm-button:hover, .theme-cmix .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input.disabled + .md-confirm-button:hover, .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input.disabled + .md-confirm-button:hover, .theme-cmix md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-button input.disabled + .md-confirm-button:hover, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-button .theme-cmix input.disabled + .md-confirm-button:hover, .theme-cmix .input-w-button md-dialog input.disabled + .close-dialog:hover, .input-w-button md-dialog .theme-cmix input.disabled + .close-dialog:hover, .theme-cmix md-dialog .input-w-button input.disabled + .close-dialog:hover, md-dialog .input-w-button .theme-cmix input.disabled + .close-dialog:hover, .theme-cmix .input-w-button md-dialog md-dialog-actions input.disabled + .md-cancel-button:hover, .input-w-button md-dialog md-dialog-actions .theme-cmix input.disabled + .md-cancel-button:hover, .theme-cmix md-dialog md-dialog-actions .input-w-button input.disabled + .md-cancel-button:hover, md-dialog md-dialog-actions .input-w-button .theme-cmix input.disabled + .md-cancel-button:hover, .theme-cmix .input-w-button md-dialog md-dialog-actions input.disabled + .clear.md-confirm-button:hover, .input-w-button md-dialog md-dialog-actions .theme-cmix input.disabled + .clear.md-confirm-button:hover, .theme-cmix md-dialog md-dialog-actions .input-w-button input.disabled + .clear.md-confirm-button:hover, md-dialog md-dialog-actions .input-w-button .theme-cmix input.disabled + .clear.md-confirm-button:hover, .theme-cmix .input-w-button .colorpicker input.disabled + .close-colorpicker:hover, .input-w-button .colorpicker .theme-cmix input.disabled + .close-colorpicker:hover, .theme-cmix .colorpicker .input-w-button input.disabled + .close-colorpicker:hover, .colorpicker .input-w-button .theme-cmix input.disabled + .close-colorpicker:hover, .theme-cmix .input-w-button input[disabled] + button.clear:hover, .input-w-button .theme-cmix input[disabled] + button.clear:hover, .theme-cmix .input-w-button input[disabled] + label.clear.label-btn:hover, .input-w-button .theme-cmix input[disabled] + label.clear.label-btn:hover, .theme-cmix .input-w-button md-autocomplete .md-show-clear-button input[disabled] + button:hover, .input-w-button md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + button:hover, .theme-cmix md-autocomplete .md-show-clear-button .input-w-button input[disabled] + button:hover, md-autocomplete .md-show-clear-button .input-w-button .theme-cmix input[disabled] + button:hover, .theme-cmix .input-w-button md-autocomplete .md-show-clear-button input[disabled] + label.label-btn:hover, .input-w-button md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + label.label-btn:hover, .theme-cmix md-autocomplete .md-show-clear-button .input-w-button input[disabled] + label.label-btn:hover, md-autocomplete .md-show-clear-button .input-w-button .theme-cmix input[disabled] + label.label-btn:hover, .theme-cmix .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input[disabled] + .md-cancel-button:hover, .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + .md-cancel-button:hover, .theme-cmix .input-w-button md-autocomplete .md-show-clear-button md-dialog md-dialog-actions input[disabled] + .md-confirm-button:hover, .input-w-button md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-cmix input[disabled] + .md-confirm-button:hover, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button input[disabled] + .md-confirm-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button .theme-cmix input[disabled] + .md-confirm-button:hover, .theme-cmix .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input[disabled] + .md-confirm-button:hover, .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + .md-confirm-button:hover, .theme-cmix md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-button input[disabled] + .md-confirm-button:hover, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-button .theme-cmix input[disabled] + .md-confirm-button:hover, .theme-cmix .input-w-button md-dialog input[disabled] + .close-dialog:hover, .input-w-button md-dialog .theme-cmix input[disabled] + .close-dialog:hover, .theme-cmix md-dialog .input-w-button input[disabled] + .close-dialog:hover, md-dialog .input-w-button .theme-cmix input[disabled] + .close-dialog:hover, .theme-cmix .input-w-button md-dialog md-dialog-actions input[disabled] + .md-cancel-button:hover, .input-w-button md-dialog md-dialog-actions .theme-cmix input[disabled] + .md-cancel-button:hover, .theme-cmix md-dialog md-dialog-actions .input-w-button input[disabled] + .md-cancel-button:hover, md-dialog md-dialog-actions .input-w-button .theme-cmix input[disabled] + .md-cancel-button:hover, .theme-cmix .input-w-button md-dialog md-dialog-actions input[disabled] + .clear.md-confirm-button:hover, .input-w-button md-dialog md-dialog-actions .theme-cmix input[disabled] + .clear.md-confirm-button:hover, .theme-cmix md-dialog md-dialog-actions .input-w-button input[disabled] + .clear.md-confirm-button:hover, md-dialog md-dialog-actions .input-w-button .theme-cmix input[disabled] + .clear.md-confirm-button:hover, .theme-cmix .input-w-button .colorpicker input[disabled] + .close-colorpicker:hover, .input-w-button .colorpicker .theme-cmix input[disabled] + .close-colorpicker:hover, .theme-cmix .colorpicker .input-w-button input[disabled] + .close-colorpicker:hover, .colorpicker .input-w-button .theme-cmix input[disabled] + .close-colorpicker:hover,
  .theme-cmix fieldset[disabled] .input-w-button input + button.clear:hover, fieldset[disabled] .input-w-button .theme-cmix input + button.clear:hover, .theme-cmix fieldset[disabled] .input-w-button input + label.clear.label-btn:hover, fieldset[disabled] .input-w-button .theme-cmix input + label.clear.label-btn:hover, .theme-cmix fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button input + button:hover, fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button .theme-cmix input + button:hover, .theme-cmix md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button input + button:hover, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button .theme-cmix input + button:hover, .theme-cmix fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button input + label.label-btn:hover, fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button .theme-cmix input + label.label-btn:hover, .theme-cmix md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button input + label.label-btn:hover, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button .theme-cmix input + label.label-btn:hover, .theme-cmix fieldset[disabled] .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input + .md-cancel-button:hover, fieldset[disabled] .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input + .md-cancel-button:hover, .theme-cmix fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button md-dialog md-dialog-actions input + .md-confirm-button:hover, fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-cmix input + .md-confirm-button:hover, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .md-confirm-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-button .theme-cmix input + .md-confirm-button:hover, .theme-cmix fieldset[disabled] .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input + .md-confirm-button:hover, fieldset[disabled] .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input + .md-confirm-button:hover, .theme-cmix md-dialog md-dialog-actions md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button input + .md-confirm-button:hover, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button .theme-cmix input + .md-confirm-button:hover, .theme-cmix fieldset[disabled] .input-w-button md-dialog input + .close-dialog:hover, fieldset[disabled] .input-w-button md-dialog .theme-cmix input + .close-dialog:hover, .theme-cmix md-dialog fieldset[disabled] .input-w-button input + .close-dialog:hover, md-dialog fieldset[disabled] .input-w-button .theme-cmix input + .close-dialog:hover, .theme-cmix fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .md-cancel-button:hover, fieldset[disabled] .input-w-button md-dialog md-dialog-actions .theme-cmix input + .md-cancel-button:hover, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .md-cancel-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-button .theme-cmix input + .md-cancel-button:hover, .theme-cmix fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .clear.md-confirm-button:hover, fieldset[disabled] .input-w-button md-dialog md-dialog-actions .theme-cmix input + .clear.md-confirm-button:hover, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .clear.md-confirm-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-button .theme-cmix input + .clear.md-confirm-button:hover, .theme-cmix fieldset[disabled] .input-w-button .colorpicker input + .close-colorpicker:hover, fieldset[disabled] .input-w-button .colorpicker .theme-cmix input + .close-colorpicker:hover, .theme-cmix .colorpicker fieldset[disabled] .input-w-button input + .close-colorpicker:hover, .colorpicker fieldset[disabled] .input-w-button .theme-cmix input + .close-colorpicker:hover, .theme-cmix md-autocomplete .md-show-clear-button button.disabled:hover, md-autocomplete .md-show-clear-button .theme-cmix button.disabled:hover, .theme-cmix md-autocomplete .md-show-clear-button label.disabled.label-btn:hover, md-autocomplete .md-show-clear-button .theme-cmix label.disabled.label-btn:hover, .theme-cmix md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions input.disabled + .md-cancel-button:hover, md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions .theme-cmix input.disabled + .md-cancel-button:hover, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay input.disabled + .md-cancel-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay .theme-cmix input.disabled + .md-cancel-button:hover, .theme-cmix md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button input.disabled + .md-cancel-button:hover, md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button .theme-cmix input.disabled + .md-cancel-button:hover, .theme-cmix md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions input.disabled + .md-confirm-button:hover, md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions .theme-cmix input.disabled + .md-confirm-button:hover, .theme-cmix md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button input.disabled + .md-confirm-button:hover, md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button .theme-cmix input.disabled + .md-confirm-button:hover, .theme-cmix md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions input[disabled] + .md-cancel-button:hover, md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions .theme-cmix input[disabled] + .md-cancel-button:hover, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay input[disabled] + .md-cancel-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay .theme-cmix input[disabled] + .md-cancel-button:hover, .theme-cmix md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button input[disabled] + .md-cancel-button:hover, md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + .md-cancel-button:hover, .theme-cmix md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions input[disabled] + .md-confirm-button:hover, md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions .theme-cmix input[disabled] + .md-confirm-button:hover, .theme-cmix md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button input[disabled] + .md-confirm-button:hover, md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + .md-confirm-button:hover, .theme-cmix md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .md-cancel-button:hover, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions .theme-cmix input + .md-cancel-button:hover, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .md-cancel-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay .theme-cmix input + .md-cancel-button:hover, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button input + .md-cancel-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button .theme-cmix input + .md-cancel-button:hover, .theme-cmix md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .md-confirm-button:hover, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions .theme-cmix input + .md-confirm-button:hover, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button input + .md-confirm-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button .theme-cmix input + .md-confirm-button:hover, .theme-cmix md-autocomplete .md-show-clear-button .input-w-clear input.disabled + button:hover, md-autocomplete .md-show-clear-button .input-w-clear .theme-cmix input.disabled + button:hover, .theme-cmix .input-w-clear md-autocomplete .md-show-clear-button input.disabled + button:hover, .input-w-clear md-autocomplete .md-show-clear-button .theme-cmix input.disabled + button:hover, .theme-cmix md-autocomplete .md-show-clear-button .input-w-clear input.disabled + label.label-btn:hover, md-autocomplete .md-show-clear-button .input-w-clear .theme-cmix input.disabled + label.label-btn:hover, .theme-cmix .input-w-clear md-autocomplete .md-show-clear-button input.disabled + label.label-btn:hover, .input-w-clear md-autocomplete .md-show-clear-button .theme-cmix input.disabled + label.label-btn:hover, .theme-cmix md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions input.disabled + .md-cancel-button:hover, md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions .theme-cmix input.disabled + .md-cancel-button:hover, .theme-cmix .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input.disabled + .md-cancel-button:hover, .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input.disabled + .md-cancel-button:hover, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear input.disabled + .md-cancel-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear .theme-cmix input.disabled + .md-cancel-button:hover, .theme-cmix md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button input.disabled + .md-cancel-button:hover, md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button .theme-cmix input.disabled + .md-cancel-button:hover, .theme-cmix md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions input.disabled + .md-confirm-button:hover, md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions .theme-cmix input.disabled + .md-confirm-button:hover, .theme-cmix .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input.disabled + .md-confirm-button:hover, .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input.disabled + .md-confirm-button:hover, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear input.disabled + .md-confirm-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear .theme-cmix input.disabled + .md-confirm-button:hover, .theme-cmix md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button input.disabled + .md-confirm-button:hover, md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button .theme-cmix input.disabled + .md-confirm-button:hover, .theme-cmix md-autocomplete .md-show-clear-button .input-w-clear input[disabled] + button:hover, md-autocomplete .md-show-clear-button .input-w-clear .theme-cmix input[disabled] + button:hover, .theme-cmix .input-w-clear md-autocomplete .md-show-clear-button input[disabled] + button:hover, .input-w-clear md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + button:hover, .theme-cmix md-autocomplete .md-show-clear-button .input-w-clear input[disabled] + label.label-btn:hover, md-autocomplete .md-show-clear-button .input-w-clear .theme-cmix input[disabled] + label.label-btn:hover, .theme-cmix .input-w-clear md-autocomplete .md-show-clear-button input[disabled] + label.label-btn:hover, .input-w-clear md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + label.label-btn:hover, .theme-cmix md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions input[disabled] + .md-cancel-button:hover, md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions .theme-cmix input[disabled] + .md-cancel-button:hover, .theme-cmix .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input[disabled] + .md-cancel-button:hover, .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + .md-cancel-button:hover, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear input[disabled] + .md-cancel-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear .theme-cmix input[disabled] + .md-cancel-button:hover, .theme-cmix md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button input[disabled] + .md-cancel-button:hover, md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + .md-cancel-button:hover, .theme-cmix md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions input[disabled] + .md-confirm-button:hover, md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions .theme-cmix input[disabled] + .md-confirm-button:hover, .theme-cmix .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input[disabled] + .md-confirm-button:hover, .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + .md-confirm-button:hover, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear input[disabled] + .md-confirm-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear .theme-cmix input[disabled] + .md-confirm-button:hover, .theme-cmix md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button input[disabled] + .md-confirm-button:hover, md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + .md-confirm-button:hover,
  .theme-cmix md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear input + button:hover, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear .theme-cmix input + button:hover, .theme-cmix fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button input + button:hover, fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button .theme-cmix input + button:hover, .theme-cmix md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear input + label.label-btn:hover, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear .theme-cmix input + label.label-btn:hover, .theme-cmix fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button input + label.label-btn:hover, fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button .theme-cmix input + label.label-btn:hover, .theme-cmix md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .md-cancel-button:hover, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear md-dialog md-dialog-actions .theme-cmix input + .md-cancel-button:hover, .theme-cmix fieldset[disabled] .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input + .md-cancel-button:hover, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input + .md-cancel-button:hover, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .md-cancel-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-clear .theme-cmix input + .md-cancel-button:hover, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button input + .md-cancel-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button .theme-cmix input + .md-cancel-button:hover, .theme-cmix md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .md-confirm-button:hover, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear md-dialog md-dialog-actions .theme-cmix input + .md-confirm-button:hover, .theme-cmix fieldset[disabled] .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input + .md-confirm-button:hover, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input + .md-confirm-button:hover, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .md-confirm-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-clear .theme-cmix input + .md-confirm-button:hover, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button input + .md-confirm-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button .theme-cmix input + .md-confirm-button:hover, .theme-cmix md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions input.disabled + .md-cancel-button:hover, md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions .theme-cmix input.disabled + .md-cancel-button:hover, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button input.disabled + .md-cancel-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button .theme-cmix input.disabled + .md-cancel-button:hover, .theme-cmix md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button input.disabled + .md-cancel-button:hover, md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button .theme-cmix input.disabled + .md-cancel-button:hover, .theme-cmix md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions input.disabled + .md-confirm-button:hover, md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions .theme-cmix input.disabled + .md-confirm-button:hover, .theme-cmix md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button input.disabled + .md-confirm-button:hover, md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button .theme-cmix input.disabled + .md-confirm-button:hover, .theme-cmix md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions input[disabled] + .md-cancel-button:hover, md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions .theme-cmix input[disabled] + .md-cancel-button:hover, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button input[disabled] + .md-cancel-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button .theme-cmix input[disabled] + .md-cancel-button:hover, .theme-cmix md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button input[disabled] + .md-cancel-button:hover, md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + .md-cancel-button:hover, .theme-cmix md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions input[disabled] + .md-confirm-button:hover, md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions .theme-cmix input[disabled] + .md-confirm-button:hover, .theme-cmix md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button input[disabled] + .md-confirm-button:hover, md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + .md-confirm-button:hover, .theme-cmix md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .md-cancel-button:hover, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button md-dialog md-dialog-actions .theme-cmix input + .md-cancel-button:hover, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .md-cancel-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-button .theme-cmix input + .md-cancel-button:hover, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button input + .md-cancel-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button .theme-cmix input + .md-cancel-button:hover, .theme-cmix md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .md-confirm-button:hover, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button md-dialog md-dialog-actions .theme-cmix input + .md-confirm-button:hover, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button input + .md-confirm-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button .theme-cmix input + .md-confirm-button:hover, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .disabled.md-cancel-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-cmix .disabled.md-cancel-button:hover, .theme-cmix md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .disabled.md-cancel-button:hover, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix .disabled.md-cancel-button:hover, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .disabled.md-confirm-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-cmix .disabled.md-confirm-button:hover, .theme-cmix md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .disabled.md-confirm-button:hover, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix .disabled.md-confirm-button:hover, .theme-cmix md-dialog .disabled.close-dialog:hover, md-dialog .theme-cmix .disabled.close-dialog:hover, .theme-cmix md-dialog md-dialog-actions .disabled.md-cancel-button:hover, md-dialog md-dialog-actions .theme-cmix .disabled.md-cancel-button:hover, .theme-cmix md-dialog md-dialog-actions .clear.disabled.md-confirm-button:hover, md-dialog md-dialog-actions .theme-cmix .clear.disabled.md-confirm-button:hover, .theme-cmix .colorpicker .disabled.close-colorpicker:hover, .colorpicker .theme-cmix .disabled.close-colorpicker:hover, .theme-cmix button.clear.disabled:focus, .theme-cmix label.clear.disabled.label-btn:focus, .theme-cmix .input-w-inlay input.disabled + button.clear:focus, .input-w-inlay .theme-cmix input.disabled + button.clear:focus, .theme-cmix .input-w-inlay input.disabled + label.clear.label-btn:focus, .input-w-inlay .theme-cmix input.disabled + label.clear.label-btn:focus, .theme-cmix .input-w-inlay md-autocomplete .md-show-clear-button input.disabled + button:focus, .input-w-inlay md-autocomplete .md-show-clear-button .theme-cmix input.disabled + button:focus, .theme-cmix md-autocomplete .md-show-clear-button .input-w-inlay input.disabled + button:focus, md-autocomplete .md-show-clear-button .input-w-inlay .theme-cmix input.disabled + button:focus, .theme-cmix .input-w-inlay md-autocomplete .md-show-clear-button input.disabled + label.label-btn:focus, .input-w-inlay md-autocomplete .md-show-clear-button .theme-cmix input.disabled + label.label-btn:focus, .theme-cmix md-autocomplete .md-show-clear-button .input-w-inlay input.disabled + label.label-btn:focus, md-autocomplete .md-show-clear-button .input-w-inlay .theme-cmix input.disabled + label.label-btn:focus, .theme-cmix .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input.disabled + .md-cancel-button:focus, .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input.disabled + .md-cancel-button:focus, .theme-cmix .input-w-inlay md-autocomplete .md-show-clear-button md-dialog md-dialog-actions input.disabled + .md-confirm-button:focus, .input-w-inlay md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-cmix input.disabled + .md-confirm-button:focus, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay input.disabled + .md-confirm-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay .theme-cmix input.disabled + .md-confirm-button:focus, .theme-cmix .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input.disabled + .md-confirm-button:focus, .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input.disabled + .md-confirm-button:focus, .theme-cmix md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-inlay input.disabled + .md-confirm-button:focus, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-inlay .theme-cmix input.disabled + .md-confirm-button:focus, .theme-cmix .input-w-inlay md-dialog input.disabled + .close-dialog:focus, .input-w-inlay md-dialog .theme-cmix input.disabled + .close-dialog:focus, .theme-cmix md-dialog .input-w-inlay input.disabled + .close-dialog:focus, md-dialog .input-w-inlay .theme-cmix input.disabled + .close-dialog:focus, .theme-cmix .input-w-inlay md-dialog md-dialog-actions input.disabled + .md-cancel-button:focus, .input-w-inlay md-dialog md-dialog-actions .theme-cmix input.disabled + .md-cancel-button:focus, .theme-cmix md-dialog md-dialog-actions .input-w-inlay input.disabled + .md-cancel-button:focus, md-dialog md-dialog-actions .input-w-inlay .theme-cmix input.disabled + .md-cancel-button:focus, .theme-cmix .input-w-inlay md-dialog md-dialog-actions input.disabled + .clear.md-confirm-button:focus, .input-w-inlay md-dialog md-dialog-actions .theme-cmix input.disabled + .clear.md-confirm-button:focus, .theme-cmix md-dialog md-dialog-actions .input-w-inlay input.disabled + .clear.md-confirm-button:focus, md-dialog md-dialog-actions .input-w-inlay .theme-cmix input.disabled + .clear.md-confirm-button:focus, .theme-cmix .input-w-inlay .colorpicker input.disabled + .close-colorpicker:focus, .input-w-inlay .colorpicker .theme-cmix input.disabled + .close-colorpicker:focus, .theme-cmix .colorpicker .input-w-inlay input.disabled + .close-colorpicker:focus, .colorpicker .input-w-inlay .theme-cmix input.disabled + .close-colorpicker:focus, .theme-cmix .input-w-inlay input[disabled] + button.clear:focus, .input-w-inlay .theme-cmix input[disabled] + button.clear:focus, .theme-cmix .input-w-inlay input[disabled] + label.clear.label-btn:focus, .input-w-inlay .theme-cmix input[disabled] + label.clear.label-btn:focus, .theme-cmix .input-w-inlay md-autocomplete .md-show-clear-button input[disabled] + button:focus, .input-w-inlay md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + button:focus, .theme-cmix md-autocomplete .md-show-clear-button .input-w-inlay input[disabled] + button:focus, md-autocomplete .md-show-clear-button .input-w-inlay .theme-cmix input[disabled] + button:focus, .theme-cmix .input-w-inlay md-autocomplete .md-show-clear-button input[disabled] + label.label-btn:focus, .input-w-inlay md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + label.label-btn:focus, .theme-cmix md-autocomplete .md-show-clear-button .input-w-inlay input[disabled] + label.label-btn:focus, md-autocomplete .md-show-clear-button .input-w-inlay .theme-cmix input[disabled] + label.label-btn:focus, .theme-cmix .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input[disabled] + .md-cancel-button:focus, .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + .md-cancel-button:focus, .theme-cmix .input-w-inlay md-autocomplete .md-show-clear-button md-dialog md-dialog-actions input[disabled] + .md-confirm-button:focus, .input-w-inlay md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-cmix input[disabled] + .md-confirm-button:focus, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay input[disabled] + .md-confirm-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay .theme-cmix input[disabled] + .md-confirm-button:focus, .theme-cmix .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input[disabled] + .md-confirm-button:focus, .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + .md-confirm-button:focus, .theme-cmix md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-inlay input[disabled] + .md-confirm-button:focus, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-inlay .theme-cmix input[disabled] + .md-confirm-button:focus, .theme-cmix .input-w-inlay md-dialog input[disabled] + .close-dialog:focus, .input-w-inlay md-dialog .theme-cmix input[disabled] + .close-dialog:focus, .theme-cmix md-dialog .input-w-inlay input[disabled] + .close-dialog:focus, md-dialog .input-w-inlay .theme-cmix input[disabled] + .close-dialog:focus, .theme-cmix .input-w-inlay md-dialog md-dialog-actions input[disabled] + .md-cancel-button:focus, .input-w-inlay md-dialog md-dialog-actions .theme-cmix input[disabled] + .md-cancel-button:focus, .theme-cmix md-dialog md-dialog-actions .input-w-inlay input[disabled] + .md-cancel-button:focus, md-dialog md-dialog-actions .input-w-inlay .theme-cmix input[disabled] + .md-cancel-button:focus, .theme-cmix .input-w-inlay md-dialog md-dialog-actions input[disabled] + .clear.md-confirm-button:focus, .input-w-inlay md-dialog md-dialog-actions .theme-cmix input[disabled] + .clear.md-confirm-button:focus, .theme-cmix md-dialog md-dialog-actions .input-w-inlay input[disabled] + .clear.md-confirm-button:focus, md-dialog md-dialog-actions .input-w-inlay .theme-cmix input[disabled] + .clear.md-confirm-button:focus, .theme-cmix .input-w-inlay .colorpicker input[disabled] + .close-colorpicker:focus, .input-w-inlay .colorpicker .theme-cmix input[disabled] + .close-colorpicker:focus, .theme-cmix .colorpicker .input-w-inlay input[disabled] + .close-colorpicker:focus, .colorpicker .input-w-inlay .theme-cmix input[disabled] + .close-colorpicker:focus,
  .theme-cmix fieldset[disabled] .input-w-inlay input + button.clear:focus, fieldset[disabled] .input-w-inlay .theme-cmix input + button.clear:focus, .theme-cmix fieldset[disabled] .input-w-inlay input + label.clear.label-btn:focus, fieldset[disabled] .input-w-inlay .theme-cmix input + label.clear.label-btn:focus, .theme-cmix fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button input + button:focus, fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button .theme-cmix input + button:focus, .theme-cmix md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay input + button:focus, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay .theme-cmix input + button:focus, .theme-cmix fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button input + label.label-btn:focus, fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button .theme-cmix input + label.label-btn:focus, .theme-cmix md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay input + label.label-btn:focus, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay .theme-cmix input + label.label-btn:focus, .theme-cmix fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input + .md-cancel-button:focus, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input + .md-cancel-button:focus, .theme-cmix fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button md-dialog md-dialog-actions input + .md-confirm-button:focus, fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-cmix input + .md-confirm-button:focus, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .md-confirm-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay .theme-cmix input + .md-confirm-button:focus, .theme-cmix fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input + .md-confirm-button:focus, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input + .md-confirm-button:focus, .theme-cmix md-dialog md-dialog-actions md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay input + .md-confirm-button:focus, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay .theme-cmix input + .md-confirm-button:focus, .theme-cmix fieldset[disabled] .input-w-inlay md-dialog input + .close-dialog:focus, fieldset[disabled] .input-w-inlay md-dialog .theme-cmix input + .close-dialog:focus, .theme-cmix md-dialog fieldset[disabled] .input-w-inlay input + .close-dialog:focus, md-dialog fieldset[disabled] .input-w-inlay .theme-cmix input + .close-dialog:focus, .theme-cmix fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .md-cancel-button:focus, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions .theme-cmix input + .md-cancel-button:focus, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .md-cancel-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay .theme-cmix input + .md-cancel-button:focus, .theme-cmix fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .clear.md-confirm-button:focus, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions .theme-cmix input + .clear.md-confirm-button:focus, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .clear.md-confirm-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay .theme-cmix input + .clear.md-confirm-button:focus, .theme-cmix fieldset[disabled] .input-w-inlay .colorpicker input + .close-colorpicker:focus, fieldset[disabled] .input-w-inlay .colorpicker .theme-cmix input + .close-colorpicker:focus, .theme-cmix .colorpicker fieldset[disabled] .input-w-inlay input + .close-colorpicker:focus, .colorpicker fieldset[disabled] .input-w-inlay .theme-cmix input + .close-colorpicker:focus, .theme-cmix .input-w-clear input.disabled + button:focus, .input-w-clear .theme-cmix input.disabled + button:focus, .theme-cmix .input-w-clear input.disabled + label.label-btn:focus, .input-w-clear .theme-cmix input.disabled + label.label-btn:focus, .theme-cmix .input-w-clear md-dialog md-dialog-actions input.disabled + .md-cancel-button:focus, .input-w-clear md-dialog md-dialog-actions .theme-cmix input.disabled + .md-cancel-button:focus, .theme-cmix md-dialog md-dialog-actions .input-w-clear input.disabled + .md-cancel-button:focus, md-dialog md-dialog-actions .input-w-clear .theme-cmix input.disabled + .md-cancel-button:focus, .theme-cmix .input-w-clear md-dialog md-dialog-actions input.disabled + .md-confirm-button:focus, .input-w-clear md-dialog md-dialog-actions .theme-cmix input.disabled + .md-confirm-button:focus, .theme-cmix md-dialog md-dialog-actions .input-w-clear input.disabled + .md-confirm-button:focus, md-dialog md-dialog-actions .input-w-clear .theme-cmix input.disabled + .md-confirm-button:focus, .theme-cmix .input-w-clear input[disabled] + button:focus, .input-w-clear .theme-cmix input[disabled] + button:focus, .theme-cmix .input-w-clear input[disabled] + label.label-btn:focus, .input-w-clear .theme-cmix input[disabled] + label.label-btn:focus, .theme-cmix .input-w-clear md-dialog md-dialog-actions input[disabled] + .md-cancel-button:focus, .input-w-clear md-dialog md-dialog-actions .theme-cmix input[disabled] + .md-cancel-button:focus, .theme-cmix md-dialog md-dialog-actions .input-w-clear input[disabled] + .md-cancel-button:focus, md-dialog md-dialog-actions .input-w-clear .theme-cmix input[disabled] + .md-cancel-button:focus, .theme-cmix .input-w-clear md-dialog md-dialog-actions input[disabled] + .md-confirm-button:focus, .input-w-clear md-dialog md-dialog-actions .theme-cmix input[disabled] + .md-confirm-button:focus, .theme-cmix md-dialog md-dialog-actions .input-w-clear input[disabled] + .md-confirm-button:focus, md-dialog md-dialog-actions .input-w-clear .theme-cmix input[disabled] + .md-confirm-button:focus,
  .theme-cmix fieldset[disabled] .input-w-clear input + button:focus, fieldset[disabled] .input-w-clear .theme-cmix input + button:focus, .theme-cmix fieldset[disabled] .input-w-clear input + label.label-btn:focus, fieldset[disabled] .input-w-clear .theme-cmix input + label.label-btn:focus, .theme-cmix fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .md-cancel-button:focus, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions .theme-cmix input + .md-cancel-button:focus, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .md-cancel-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear .theme-cmix input + .md-cancel-button:focus, .theme-cmix fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .md-confirm-button:focus, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions .theme-cmix input + .md-confirm-button:focus, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .md-confirm-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear .theme-cmix input + .md-confirm-button:focus, .theme-cmix .input-w-button input.disabled + button.clear:focus, .input-w-button .theme-cmix input.disabled + button.clear:focus, .theme-cmix .input-w-button input.disabled + label.clear.label-btn:focus, .input-w-button .theme-cmix input.disabled + label.clear.label-btn:focus, .theme-cmix .input-w-button md-autocomplete .md-show-clear-button input.disabled + button:focus, .input-w-button md-autocomplete .md-show-clear-button .theme-cmix input.disabled + button:focus, .theme-cmix md-autocomplete .md-show-clear-button .input-w-button input.disabled + button:focus, md-autocomplete .md-show-clear-button .input-w-button .theme-cmix input.disabled + button:focus, .theme-cmix .input-w-button md-autocomplete .md-show-clear-button input.disabled + label.label-btn:focus, .input-w-button md-autocomplete .md-show-clear-button .theme-cmix input.disabled + label.label-btn:focus, .theme-cmix md-autocomplete .md-show-clear-button .input-w-button input.disabled + label.label-btn:focus, md-autocomplete .md-show-clear-button .input-w-button .theme-cmix input.disabled + label.label-btn:focus, .theme-cmix .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input.disabled + .md-cancel-button:focus, .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input.disabled + .md-cancel-button:focus, .theme-cmix .input-w-button md-autocomplete .md-show-clear-button md-dialog md-dialog-actions input.disabled + .md-confirm-button:focus, .input-w-button md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-cmix input.disabled + .md-confirm-button:focus, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button input.disabled + .md-confirm-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button .theme-cmix input.disabled + .md-confirm-button:focus, .theme-cmix .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input.disabled + .md-confirm-button:focus, .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input.disabled + .md-confirm-button:focus, .theme-cmix md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-button input.disabled + .md-confirm-button:focus, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-button .theme-cmix input.disabled + .md-confirm-button:focus, .theme-cmix .input-w-button md-dialog input.disabled + .close-dialog:focus, .input-w-button md-dialog .theme-cmix input.disabled + .close-dialog:focus, .theme-cmix md-dialog .input-w-button input.disabled + .close-dialog:focus, md-dialog .input-w-button .theme-cmix input.disabled + .close-dialog:focus, .theme-cmix .input-w-button md-dialog md-dialog-actions input.disabled + .md-cancel-button:focus, .input-w-button md-dialog md-dialog-actions .theme-cmix input.disabled + .md-cancel-button:focus, .theme-cmix md-dialog md-dialog-actions .input-w-button input.disabled + .md-cancel-button:focus, md-dialog md-dialog-actions .input-w-button .theme-cmix input.disabled + .md-cancel-button:focus, .theme-cmix .input-w-button md-dialog md-dialog-actions input.disabled + .clear.md-confirm-button:focus, .input-w-button md-dialog md-dialog-actions .theme-cmix input.disabled + .clear.md-confirm-button:focus, .theme-cmix md-dialog md-dialog-actions .input-w-button input.disabled + .clear.md-confirm-button:focus, md-dialog md-dialog-actions .input-w-button .theme-cmix input.disabled + .clear.md-confirm-button:focus, .theme-cmix .input-w-button .colorpicker input.disabled + .close-colorpicker:focus, .input-w-button .colorpicker .theme-cmix input.disabled + .close-colorpicker:focus, .theme-cmix .colorpicker .input-w-button input.disabled + .close-colorpicker:focus, .colorpicker .input-w-button .theme-cmix input.disabled + .close-colorpicker:focus, .theme-cmix .input-w-button input[disabled] + button.clear:focus, .input-w-button .theme-cmix input[disabled] + button.clear:focus, .theme-cmix .input-w-button input[disabled] + label.clear.label-btn:focus, .input-w-button .theme-cmix input[disabled] + label.clear.label-btn:focus, .theme-cmix .input-w-button md-autocomplete .md-show-clear-button input[disabled] + button:focus, .input-w-button md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + button:focus, .theme-cmix md-autocomplete .md-show-clear-button .input-w-button input[disabled] + button:focus, md-autocomplete .md-show-clear-button .input-w-button .theme-cmix input[disabled] + button:focus, .theme-cmix .input-w-button md-autocomplete .md-show-clear-button input[disabled] + label.label-btn:focus, .input-w-button md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + label.label-btn:focus, .theme-cmix md-autocomplete .md-show-clear-button .input-w-button input[disabled] + label.label-btn:focus, md-autocomplete .md-show-clear-button .input-w-button .theme-cmix input[disabled] + label.label-btn:focus, .theme-cmix .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input[disabled] + .md-cancel-button:focus, .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + .md-cancel-button:focus, .theme-cmix .input-w-button md-autocomplete .md-show-clear-button md-dialog md-dialog-actions input[disabled] + .md-confirm-button:focus, .input-w-button md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-cmix input[disabled] + .md-confirm-button:focus, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button input[disabled] + .md-confirm-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button .theme-cmix input[disabled] + .md-confirm-button:focus, .theme-cmix .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input[disabled] + .md-confirm-button:focus, .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + .md-confirm-button:focus, .theme-cmix md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-button input[disabled] + .md-confirm-button:focus, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-button .theme-cmix input[disabled] + .md-confirm-button:focus, .theme-cmix .input-w-button md-dialog input[disabled] + .close-dialog:focus, .input-w-button md-dialog .theme-cmix input[disabled] + .close-dialog:focus, .theme-cmix md-dialog .input-w-button input[disabled] + .close-dialog:focus, md-dialog .input-w-button .theme-cmix input[disabled] + .close-dialog:focus, .theme-cmix .input-w-button md-dialog md-dialog-actions input[disabled] + .md-cancel-button:focus, .input-w-button md-dialog md-dialog-actions .theme-cmix input[disabled] + .md-cancel-button:focus, .theme-cmix md-dialog md-dialog-actions .input-w-button input[disabled] + .md-cancel-button:focus, md-dialog md-dialog-actions .input-w-button .theme-cmix input[disabled] + .md-cancel-button:focus, .theme-cmix .input-w-button md-dialog md-dialog-actions input[disabled] + .clear.md-confirm-button:focus, .input-w-button md-dialog md-dialog-actions .theme-cmix input[disabled] + .clear.md-confirm-button:focus, .theme-cmix md-dialog md-dialog-actions .input-w-button input[disabled] + .clear.md-confirm-button:focus, md-dialog md-dialog-actions .input-w-button .theme-cmix input[disabled] + .clear.md-confirm-button:focus, .theme-cmix .input-w-button .colorpicker input[disabled] + .close-colorpicker:focus, .input-w-button .colorpicker .theme-cmix input[disabled] + .close-colorpicker:focus, .theme-cmix .colorpicker .input-w-button input[disabled] + .close-colorpicker:focus, .colorpicker .input-w-button .theme-cmix input[disabled] + .close-colorpicker:focus,
  .theme-cmix fieldset[disabled] .input-w-button input + button.clear:focus, fieldset[disabled] .input-w-button .theme-cmix input + button.clear:focus, .theme-cmix fieldset[disabled] .input-w-button input + label.clear.label-btn:focus, fieldset[disabled] .input-w-button .theme-cmix input + label.clear.label-btn:focus, .theme-cmix fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button input + button:focus, fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button .theme-cmix input + button:focus, .theme-cmix md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button input + button:focus, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button .theme-cmix input + button:focus, .theme-cmix fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button input + label.label-btn:focus, fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button .theme-cmix input + label.label-btn:focus, .theme-cmix md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button input + label.label-btn:focus, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button .theme-cmix input + label.label-btn:focus, .theme-cmix fieldset[disabled] .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input + .md-cancel-button:focus, fieldset[disabled] .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input + .md-cancel-button:focus, .theme-cmix fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button md-dialog md-dialog-actions input + .md-confirm-button:focus, fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-cmix input + .md-confirm-button:focus, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .md-confirm-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-button .theme-cmix input + .md-confirm-button:focus, .theme-cmix fieldset[disabled] .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input + .md-confirm-button:focus, fieldset[disabled] .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input + .md-confirm-button:focus, .theme-cmix md-dialog md-dialog-actions md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button input + .md-confirm-button:focus, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button .theme-cmix input + .md-confirm-button:focus, .theme-cmix fieldset[disabled] .input-w-button md-dialog input + .close-dialog:focus, fieldset[disabled] .input-w-button md-dialog .theme-cmix input + .close-dialog:focus, .theme-cmix md-dialog fieldset[disabled] .input-w-button input + .close-dialog:focus, md-dialog fieldset[disabled] .input-w-button .theme-cmix input + .close-dialog:focus, .theme-cmix fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .md-cancel-button:focus, fieldset[disabled] .input-w-button md-dialog md-dialog-actions .theme-cmix input + .md-cancel-button:focus, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .md-cancel-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-button .theme-cmix input + .md-cancel-button:focus, .theme-cmix fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .clear.md-confirm-button:focus, fieldset[disabled] .input-w-button md-dialog md-dialog-actions .theme-cmix input + .clear.md-confirm-button:focus, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .clear.md-confirm-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-button .theme-cmix input + .clear.md-confirm-button:focus, .theme-cmix fieldset[disabled] .input-w-button .colorpicker input + .close-colorpicker:focus, fieldset[disabled] .input-w-button .colorpicker .theme-cmix input + .close-colorpicker:focus, .theme-cmix .colorpicker fieldset[disabled] .input-w-button input + .close-colorpicker:focus, .colorpicker fieldset[disabled] .input-w-button .theme-cmix input + .close-colorpicker:focus, .theme-cmix md-autocomplete .md-show-clear-button button.disabled:focus, md-autocomplete .md-show-clear-button .theme-cmix button.disabled:focus, .theme-cmix md-autocomplete .md-show-clear-button label.disabled.label-btn:focus, md-autocomplete .md-show-clear-button .theme-cmix label.disabled.label-btn:focus, .theme-cmix md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions input.disabled + .md-cancel-button:focus, md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions .theme-cmix input.disabled + .md-cancel-button:focus, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay input.disabled + .md-cancel-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay .theme-cmix input.disabled + .md-cancel-button:focus, .theme-cmix md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button input.disabled + .md-cancel-button:focus, md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button .theme-cmix input.disabled + .md-cancel-button:focus, .theme-cmix md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions input.disabled + .md-confirm-button:focus, md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions .theme-cmix input.disabled + .md-confirm-button:focus, .theme-cmix md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button input.disabled + .md-confirm-button:focus, md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button .theme-cmix input.disabled + .md-confirm-button:focus, .theme-cmix md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions input[disabled] + .md-cancel-button:focus, md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions .theme-cmix input[disabled] + .md-cancel-button:focus, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay input[disabled] + .md-cancel-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay .theme-cmix input[disabled] + .md-cancel-button:focus, .theme-cmix md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button input[disabled] + .md-cancel-button:focus, md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + .md-cancel-button:focus, .theme-cmix md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions input[disabled] + .md-confirm-button:focus, md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions .theme-cmix input[disabled] + .md-confirm-button:focus, .theme-cmix md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button input[disabled] + .md-confirm-button:focus, md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + .md-confirm-button:focus, .theme-cmix md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .md-cancel-button:focus, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions .theme-cmix input + .md-cancel-button:focus, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .md-cancel-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay .theme-cmix input + .md-cancel-button:focus, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button input + .md-cancel-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button .theme-cmix input + .md-cancel-button:focus, .theme-cmix md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .md-confirm-button:focus, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions .theme-cmix input + .md-confirm-button:focus, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button input + .md-confirm-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button .theme-cmix input + .md-confirm-button:focus, .theme-cmix md-autocomplete .md-show-clear-button .input-w-clear input.disabled + button:focus, md-autocomplete .md-show-clear-button .input-w-clear .theme-cmix input.disabled + button:focus, .theme-cmix .input-w-clear md-autocomplete .md-show-clear-button input.disabled + button:focus, .input-w-clear md-autocomplete .md-show-clear-button .theme-cmix input.disabled + button:focus, .theme-cmix md-autocomplete .md-show-clear-button .input-w-clear input.disabled + label.label-btn:focus, md-autocomplete .md-show-clear-button .input-w-clear .theme-cmix input.disabled + label.label-btn:focus, .theme-cmix .input-w-clear md-autocomplete .md-show-clear-button input.disabled + label.label-btn:focus, .input-w-clear md-autocomplete .md-show-clear-button .theme-cmix input.disabled + label.label-btn:focus, .theme-cmix md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions input.disabled + .md-cancel-button:focus, md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions .theme-cmix input.disabled + .md-cancel-button:focus, .theme-cmix .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input.disabled + .md-cancel-button:focus, .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input.disabled + .md-cancel-button:focus, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear input.disabled + .md-cancel-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear .theme-cmix input.disabled + .md-cancel-button:focus, .theme-cmix md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button input.disabled + .md-cancel-button:focus, md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button .theme-cmix input.disabled + .md-cancel-button:focus, .theme-cmix md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions input.disabled + .md-confirm-button:focus, md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions .theme-cmix input.disabled + .md-confirm-button:focus, .theme-cmix .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input.disabled + .md-confirm-button:focus, .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input.disabled + .md-confirm-button:focus, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear input.disabled + .md-confirm-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear .theme-cmix input.disabled + .md-confirm-button:focus, .theme-cmix md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button input.disabled + .md-confirm-button:focus, md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button .theme-cmix input.disabled + .md-confirm-button:focus, .theme-cmix md-autocomplete .md-show-clear-button .input-w-clear input[disabled] + button:focus, md-autocomplete .md-show-clear-button .input-w-clear .theme-cmix input[disabled] + button:focus, .theme-cmix .input-w-clear md-autocomplete .md-show-clear-button input[disabled] + button:focus, .input-w-clear md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + button:focus, .theme-cmix md-autocomplete .md-show-clear-button .input-w-clear input[disabled] + label.label-btn:focus, md-autocomplete .md-show-clear-button .input-w-clear .theme-cmix input[disabled] + label.label-btn:focus, .theme-cmix .input-w-clear md-autocomplete .md-show-clear-button input[disabled] + label.label-btn:focus, .input-w-clear md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + label.label-btn:focus, .theme-cmix md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions input[disabled] + .md-cancel-button:focus, md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions .theme-cmix input[disabled] + .md-cancel-button:focus, .theme-cmix .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input[disabled] + .md-cancel-button:focus, .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + .md-cancel-button:focus, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear input[disabled] + .md-cancel-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear .theme-cmix input[disabled] + .md-cancel-button:focus, .theme-cmix md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button input[disabled] + .md-cancel-button:focus, md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + .md-cancel-button:focus, .theme-cmix md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions input[disabled] + .md-confirm-button:focus, md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions .theme-cmix input[disabled] + .md-confirm-button:focus, .theme-cmix .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input[disabled] + .md-confirm-button:focus, .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + .md-confirm-button:focus, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear input[disabled] + .md-confirm-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear .theme-cmix input[disabled] + .md-confirm-button:focus, .theme-cmix md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button input[disabled] + .md-confirm-button:focus, md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + .md-confirm-button:focus,
  .theme-cmix md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear input + button:focus, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear .theme-cmix input + button:focus, .theme-cmix fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button input + button:focus, fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button .theme-cmix input + button:focus, .theme-cmix md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear input + label.label-btn:focus, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear .theme-cmix input + label.label-btn:focus, .theme-cmix fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button input + label.label-btn:focus, fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button .theme-cmix input + label.label-btn:focus, .theme-cmix md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .md-cancel-button:focus, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear md-dialog md-dialog-actions .theme-cmix input + .md-cancel-button:focus, .theme-cmix fieldset[disabled] .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input + .md-cancel-button:focus, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input + .md-cancel-button:focus, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .md-cancel-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-clear .theme-cmix input + .md-cancel-button:focus, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button input + .md-cancel-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button .theme-cmix input + .md-cancel-button:focus, .theme-cmix md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .md-confirm-button:focus, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear md-dialog md-dialog-actions .theme-cmix input + .md-confirm-button:focus, .theme-cmix fieldset[disabled] .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input + .md-confirm-button:focus, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input + .md-confirm-button:focus, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .md-confirm-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-clear .theme-cmix input + .md-confirm-button:focus, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button input + .md-confirm-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button .theme-cmix input + .md-confirm-button:focus, .theme-cmix md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions input.disabled + .md-cancel-button:focus, md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions .theme-cmix input.disabled + .md-cancel-button:focus, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button input.disabled + .md-cancel-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button .theme-cmix input.disabled + .md-cancel-button:focus, .theme-cmix md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button input.disabled + .md-cancel-button:focus, md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button .theme-cmix input.disabled + .md-cancel-button:focus, .theme-cmix md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions input.disabled + .md-confirm-button:focus, md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions .theme-cmix input.disabled + .md-confirm-button:focus, .theme-cmix md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button input.disabled + .md-confirm-button:focus, md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button .theme-cmix input.disabled + .md-confirm-button:focus, .theme-cmix md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions input[disabled] + .md-cancel-button:focus, md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions .theme-cmix input[disabled] + .md-cancel-button:focus, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button input[disabled] + .md-cancel-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button .theme-cmix input[disabled] + .md-cancel-button:focus, .theme-cmix md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button input[disabled] + .md-cancel-button:focus, md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + .md-cancel-button:focus, .theme-cmix md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions input[disabled] + .md-confirm-button:focus, md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions .theme-cmix input[disabled] + .md-confirm-button:focus, .theme-cmix md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button input[disabled] + .md-confirm-button:focus, md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + .md-confirm-button:focus, .theme-cmix md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .md-cancel-button:focus, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button md-dialog md-dialog-actions .theme-cmix input + .md-cancel-button:focus, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .md-cancel-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-button .theme-cmix input + .md-cancel-button:focus, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button input + .md-cancel-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button .theme-cmix input + .md-cancel-button:focus, .theme-cmix md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .md-confirm-button:focus, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button md-dialog md-dialog-actions .theme-cmix input + .md-confirm-button:focus, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button input + .md-confirm-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button .theme-cmix input + .md-confirm-button:focus, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .disabled.md-cancel-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-cmix .disabled.md-cancel-button:focus, .theme-cmix md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .disabled.md-cancel-button:focus, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix .disabled.md-cancel-button:focus, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .disabled.md-confirm-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-cmix .disabled.md-confirm-button:focus, .theme-cmix md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .disabled.md-confirm-button:focus, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix .disabled.md-confirm-button:focus, .theme-cmix md-dialog .disabled.close-dialog:focus, md-dialog .theme-cmix .disabled.close-dialog:focus, .theme-cmix md-dialog md-dialog-actions .disabled.md-cancel-button:focus, md-dialog md-dialog-actions .theme-cmix .disabled.md-cancel-button:focus, .theme-cmix md-dialog md-dialog-actions .clear.disabled.md-confirm-button:focus, md-dialog md-dialog-actions .theme-cmix .clear.disabled.md-confirm-button:focus, .theme-cmix .colorpicker .disabled.close-colorpicker:focus, .colorpicker .theme-cmix .disabled.close-colorpicker:focus, .theme-cmix button.clear.disabled:hover:before, .theme-cmix label.clear.disabled.label-btn:hover:before, .theme-cmix .input-w-inlay input.disabled + button.clear:hover:before, .input-w-inlay .theme-cmix input.disabled + button.clear:hover:before, .theme-cmix .input-w-inlay input.disabled + label.clear.label-btn:hover:before, .input-w-inlay .theme-cmix input.disabled + label.clear.label-btn:hover:before, .theme-cmix .input-w-inlay md-autocomplete .md-show-clear-button input.disabled + button:hover:before, .input-w-inlay md-autocomplete .md-show-clear-button .theme-cmix input.disabled + button:hover:before, .theme-cmix md-autocomplete .md-show-clear-button .input-w-inlay input.disabled + button:hover:before, md-autocomplete .md-show-clear-button .input-w-inlay .theme-cmix input.disabled + button:hover:before, .theme-cmix .input-w-inlay md-autocomplete .md-show-clear-button input.disabled + label.label-btn:hover:before, .input-w-inlay md-autocomplete .md-show-clear-button .theme-cmix input.disabled + label.label-btn:hover:before, .theme-cmix md-autocomplete .md-show-clear-button .input-w-inlay input.disabled + label.label-btn:hover:before, md-autocomplete .md-show-clear-button .input-w-inlay .theme-cmix input.disabled + label.label-btn:hover:before, .theme-cmix .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input.disabled + .md-cancel-button:hover:before, .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input.disabled + .md-cancel-button:hover:before, .theme-cmix .input-w-inlay md-autocomplete .md-show-clear-button md-dialog md-dialog-actions input.disabled + .md-confirm-button:hover:before, .input-w-inlay md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-cmix input.disabled + .md-confirm-button:hover:before, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay input.disabled + .md-confirm-button:hover:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay .theme-cmix input.disabled + .md-confirm-button:hover:before, .theme-cmix .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input.disabled + .md-confirm-button:hover:before, .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input.disabled + .md-confirm-button:hover:before, .theme-cmix md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-inlay input.disabled + .md-confirm-button:hover:before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-inlay .theme-cmix input.disabled + .md-confirm-button:hover:before, .theme-cmix .input-w-inlay md-dialog input.disabled + .close-dialog:hover:before, .input-w-inlay md-dialog .theme-cmix input.disabled + .close-dialog:hover:before, .theme-cmix md-dialog .input-w-inlay input.disabled + .close-dialog:hover:before, md-dialog .input-w-inlay .theme-cmix input.disabled + .close-dialog:hover:before, .theme-cmix .input-w-inlay md-dialog md-dialog-actions input.disabled + .md-cancel-button:hover:before, .input-w-inlay md-dialog md-dialog-actions .theme-cmix input.disabled + .md-cancel-button:hover:before, .theme-cmix md-dialog md-dialog-actions .input-w-inlay input.disabled + .md-cancel-button:hover:before, md-dialog md-dialog-actions .input-w-inlay .theme-cmix input.disabled + .md-cancel-button:hover:before, .theme-cmix .input-w-inlay md-dialog md-dialog-actions input.disabled + .clear.md-confirm-button:hover:before, .input-w-inlay md-dialog md-dialog-actions .theme-cmix input.disabled + .clear.md-confirm-button:hover:before, .theme-cmix md-dialog md-dialog-actions .input-w-inlay input.disabled + .clear.md-confirm-button:hover:before, md-dialog md-dialog-actions .input-w-inlay .theme-cmix input.disabled + .clear.md-confirm-button:hover:before, .theme-cmix .input-w-inlay .colorpicker input.disabled + .close-colorpicker:hover:before, .input-w-inlay .colorpicker .theme-cmix input.disabled + .close-colorpicker:hover:before, .theme-cmix .colorpicker .input-w-inlay input.disabled + .close-colorpicker:hover:before, .colorpicker .input-w-inlay .theme-cmix input.disabled + .close-colorpicker:hover:before, .theme-cmix .input-w-inlay input[disabled] + button.clear:hover:before, .input-w-inlay .theme-cmix input[disabled] + button.clear:hover:before, .theme-cmix .input-w-inlay input[disabled] + label.clear.label-btn:hover:before, .input-w-inlay .theme-cmix input[disabled] + label.clear.label-btn:hover:before, .theme-cmix .input-w-inlay md-autocomplete .md-show-clear-button input[disabled] + button:hover:before, .input-w-inlay md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + button:hover:before, .theme-cmix md-autocomplete .md-show-clear-button .input-w-inlay input[disabled] + button:hover:before, md-autocomplete .md-show-clear-button .input-w-inlay .theme-cmix input[disabled] + button:hover:before, .theme-cmix .input-w-inlay md-autocomplete .md-show-clear-button input[disabled] + label.label-btn:hover:before, .input-w-inlay md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + label.label-btn:hover:before, .theme-cmix md-autocomplete .md-show-clear-button .input-w-inlay input[disabled] + label.label-btn:hover:before, md-autocomplete .md-show-clear-button .input-w-inlay .theme-cmix input[disabled] + label.label-btn:hover:before, .theme-cmix .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input[disabled] + .md-cancel-button:hover:before, .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + .md-cancel-button:hover:before, .theme-cmix .input-w-inlay md-autocomplete .md-show-clear-button md-dialog md-dialog-actions input[disabled] + .md-confirm-button:hover:before, .input-w-inlay md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-cmix input[disabled] + .md-confirm-button:hover:before, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay input[disabled] + .md-confirm-button:hover:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay .theme-cmix input[disabled] + .md-confirm-button:hover:before, .theme-cmix .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input[disabled] + .md-confirm-button:hover:before, .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + .md-confirm-button:hover:before, .theme-cmix md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-inlay input[disabled] + .md-confirm-button:hover:before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-inlay .theme-cmix input[disabled] + .md-confirm-button:hover:before, .theme-cmix .input-w-inlay md-dialog input[disabled] + .close-dialog:hover:before, .input-w-inlay md-dialog .theme-cmix input[disabled] + .close-dialog:hover:before, .theme-cmix md-dialog .input-w-inlay input[disabled] + .close-dialog:hover:before, md-dialog .input-w-inlay .theme-cmix input[disabled] + .close-dialog:hover:before, .theme-cmix .input-w-inlay md-dialog md-dialog-actions input[disabled] + .md-cancel-button:hover:before, .input-w-inlay md-dialog md-dialog-actions .theme-cmix input[disabled] + .md-cancel-button:hover:before, .theme-cmix md-dialog md-dialog-actions .input-w-inlay input[disabled] + .md-cancel-button:hover:before, md-dialog md-dialog-actions .input-w-inlay .theme-cmix input[disabled] + .md-cancel-button:hover:before, .theme-cmix .input-w-inlay md-dialog md-dialog-actions input[disabled] + .clear.md-confirm-button:hover:before, .input-w-inlay md-dialog md-dialog-actions .theme-cmix input[disabled] + .clear.md-confirm-button:hover:before, .theme-cmix md-dialog md-dialog-actions .input-w-inlay input[disabled] + .clear.md-confirm-button:hover:before, md-dialog md-dialog-actions .input-w-inlay .theme-cmix input[disabled] + .clear.md-confirm-button:hover:before, .theme-cmix .input-w-inlay .colorpicker input[disabled] + .close-colorpicker:hover:before, .input-w-inlay .colorpicker .theme-cmix input[disabled] + .close-colorpicker:hover:before, .theme-cmix .colorpicker .input-w-inlay input[disabled] + .close-colorpicker:hover:before, .colorpicker .input-w-inlay .theme-cmix input[disabled] + .close-colorpicker:hover:before,
  .theme-cmix fieldset[disabled] .input-w-inlay input + button.clear:hover:before, fieldset[disabled] .input-w-inlay .theme-cmix input + button.clear:hover:before, .theme-cmix fieldset[disabled] .input-w-inlay input + label.clear.label-btn:hover:before, fieldset[disabled] .input-w-inlay .theme-cmix input + label.clear.label-btn:hover:before, .theme-cmix fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button input + button:hover:before, fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button .theme-cmix input + button:hover:before, .theme-cmix md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay input + button:hover:before, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay .theme-cmix input + button:hover:before, .theme-cmix fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button input + label.label-btn:hover:before, fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button .theme-cmix input + label.label-btn:hover:before, .theme-cmix md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay input + label.label-btn:hover:before, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay .theme-cmix input + label.label-btn:hover:before, .theme-cmix fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input + .md-cancel-button:hover:before, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input + .md-cancel-button:hover:before, .theme-cmix fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button md-dialog md-dialog-actions input + .md-confirm-button:hover:before, fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-cmix input + .md-confirm-button:hover:before, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .md-confirm-button:hover:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay .theme-cmix input + .md-confirm-button:hover:before, .theme-cmix fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input + .md-confirm-button:hover:before, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input + .md-confirm-button:hover:before, .theme-cmix md-dialog md-dialog-actions md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay input + .md-confirm-button:hover:before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay .theme-cmix input + .md-confirm-button:hover:before, .theme-cmix fieldset[disabled] .input-w-inlay md-dialog input + .close-dialog:hover:before, fieldset[disabled] .input-w-inlay md-dialog .theme-cmix input + .close-dialog:hover:before, .theme-cmix md-dialog fieldset[disabled] .input-w-inlay input + .close-dialog:hover:before, md-dialog fieldset[disabled] .input-w-inlay .theme-cmix input + .close-dialog:hover:before, .theme-cmix fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .md-cancel-button:hover:before, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions .theme-cmix input + .md-cancel-button:hover:before, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .md-cancel-button:hover:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay .theme-cmix input + .md-cancel-button:hover:before, .theme-cmix fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .clear.md-confirm-button:hover:before, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions .theme-cmix input + .clear.md-confirm-button:hover:before, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .clear.md-confirm-button:hover:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay .theme-cmix input + .clear.md-confirm-button:hover:before, .theme-cmix fieldset[disabled] .input-w-inlay .colorpicker input + .close-colorpicker:hover:before, fieldset[disabled] .input-w-inlay .colorpicker .theme-cmix input + .close-colorpicker:hover:before, .theme-cmix .colorpicker fieldset[disabled] .input-w-inlay input + .close-colorpicker:hover:before, .colorpicker fieldset[disabled] .input-w-inlay .theme-cmix input + .close-colorpicker:hover:before, .theme-cmix .input-w-clear input.disabled + button:hover:before, .input-w-clear .theme-cmix input.disabled + button:hover:before, .theme-cmix .input-w-clear input.disabled + label.label-btn:hover:before, .input-w-clear .theme-cmix input.disabled + label.label-btn:hover:before, .theme-cmix .input-w-clear md-dialog md-dialog-actions input.disabled + .md-cancel-button:hover:before, .input-w-clear md-dialog md-dialog-actions .theme-cmix input.disabled + .md-cancel-button:hover:before, .theme-cmix md-dialog md-dialog-actions .input-w-clear input.disabled + .md-cancel-button:hover:before, md-dialog md-dialog-actions .input-w-clear .theme-cmix input.disabled + .md-cancel-button:hover:before, .theme-cmix .input-w-clear md-dialog md-dialog-actions input.disabled + .md-confirm-button:hover:before, .input-w-clear md-dialog md-dialog-actions .theme-cmix input.disabled + .md-confirm-button:hover:before, .theme-cmix md-dialog md-dialog-actions .input-w-clear input.disabled + .md-confirm-button:hover:before, md-dialog md-dialog-actions .input-w-clear .theme-cmix input.disabled + .md-confirm-button:hover:before, .theme-cmix .input-w-clear input[disabled] + button:hover:before, .input-w-clear .theme-cmix input[disabled] + button:hover:before, .theme-cmix .input-w-clear input[disabled] + label.label-btn:hover:before, .input-w-clear .theme-cmix input[disabled] + label.label-btn:hover:before, .theme-cmix .input-w-clear md-dialog md-dialog-actions input[disabled] + .md-cancel-button:hover:before, .input-w-clear md-dialog md-dialog-actions .theme-cmix input[disabled] + .md-cancel-button:hover:before, .theme-cmix md-dialog md-dialog-actions .input-w-clear input[disabled] + .md-cancel-button:hover:before, md-dialog md-dialog-actions .input-w-clear .theme-cmix input[disabled] + .md-cancel-button:hover:before, .theme-cmix .input-w-clear md-dialog md-dialog-actions input[disabled] + .md-confirm-button:hover:before, .input-w-clear md-dialog md-dialog-actions .theme-cmix input[disabled] + .md-confirm-button:hover:before, .theme-cmix md-dialog md-dialog-actions .input-w-clear input[disabled] + .md-confirm-button:hover:before, md-dialog md-dialog-actions .input-w-clear .theme-cmix input[disabled] + .md-confirm-button:hover:before,
  .theme-cmix fieldset[disabled] .input-w-clear input + button:hover:before, fieldset[disabled] .input-w-clear .theme-cmix input + button:hover:before, .theme-cmix fieldset[disabled] .input-w-clear input + label.label-btn:hover:before, fieldset[disabled] .input-w-clear .theme-cmix input + label.label-btn:hover:before, .theme-cmix fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .md-cancel-button:hover:before, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions .theme-cmix input + .md-cancel-button:hover:before, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .md-cancel-button:hover:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear .theme-cmix input + .md-cancel-button:hover:before, .theme-cmix fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .md-confirm-button:hover:before, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions .theme-cmix input + .md-confirm-button:hover:before, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .md-confirm-button:hover:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear .theme-cmix input + .md-confirm-button:hover:before, .theme-cmix .input-w-button input.disabled + button.clear:hover:before, .input-w-button .theme-cmix input.disabled + button.clear:hover:before, .theme-cmix .input-w-button input.disabled + label.clear.label-btn:hover:before, .input-w-button .theme-cmix input.disabled + label.clear.label-btn:hover:before, .theme-cmix .input-w-button md-autocomplete .md-show-clear-button input.disabled + button:hover:before, .input-w-button md-autocomplete .md-show-clear-button .theme-cmix input.disabled + button:hover:before, .theme-cmix md-autocomplete .md-show-clear-button .input-w-button input.disabled + button:hover:before, md-autocomplete .md-show-clear-button .input-w-button .theme-cmix input.disabled + button:hover:before, .theme-cmix .input-w-button md-autocomplete .md-show-clear-button input.disabled + label.label-btn:hover:before, .input-w-button md-autocomplete .md-show-clear-button .theme-cmix input.disabled + label.label-btn:hover:before, .theme-cmix md-autocomplete .md-show-clear-button .input-w-button input.disabled + label.label-btn:hover:before, md-autocomplete .md-show-clear-button .input-w-button .theme-cmix input.disabled + label.label-btn:hover:before, .theme-cmix .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input.disabled + .md-cancel-button:hover:before, .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input.disabled + .md-cancel-button:hover:before, .theme-cmix .input-w-button md-autocomplete .md-show-clear-button md-dialog md-dialog-actions input.disabled + .md-confirm-button:hover:before, .input-w-button md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-cmix input.disabled + .md-confirm-button:hover:before, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button input.disabled + .md-confirm-button:hover:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button .theme-cmix input.disabled + .md-confirm-button:hover:before, .theme-cmix .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input.disabled + .md-confirm-button:hover:before, .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input.disabled + .md-confirm-button:hover:before, .theme-cmix md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-button input.disabled + .md-confirm-button:hover:before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-button .theme-cmix input.disabled + .md-confirm-button:hover:before, .theme-cmix .input-w-button md-dialog input.disabled + .close-dialog:hover:before, .input-w-button md-dialog .theme-cmix input.disabled + .close-dialog:hover:before, .theme-cmix md-dialog .input-w-button input.disabled + .close-dialog:hover:before, md-dialog .input-w-button .theme-cmix input.disabled + .close-dialog:hover:before, .theme-cmix .input-w-button md-dialog md-dialog-actions input.disabled + .md-cancel-button:hover:before, .input-w-button md-dialog md-dialog-actions .theme-cmix input.disabled + .md-cancel-button:hover:before, .theme-cmix md-dialog md-dialog-actions .input-w-button input.disabled + .md-cancel-button:hover:before, md-dialog md-dialog-actions .input-w-button .theme-cmix input.disabled + .md-cancel-button:hover:before, .theme-cmix .input-w-button md-dialog md-dialog-actions input.disabled + .clear.md-confirm-button:hover:before, .input-w-button md-dialog md-dialog-actions .theme-cmix input.disabled + .clear.md-confirm-button:hover:before, .theme-cmix md-dialog md-dialog-actions .input-w-button input.disabled + .clear.md-confirm-button:hover:before, md-dialog md-dialog-actions .input-w-button .theme-cmix input.disabled + .clear.md-confirm-button:hover:before, .theme-cmix .input-w-button .colorpicker input.disabled + .close-colorpicker:hover:before, .input-w-button .colorpicker .theme-cmix input.disabled + .close-colorpicker:hover:before, .theme-cmix .colorpicker .input-w-button input.disabled + .close-colorpicker:hover:before, .colorpicker .input-w-button .theme-cmix input.disabled + .close-colorpicker:hover:before, .theme-cmix .input-w-button input[disabled] + button.clear:hover:before, .input-w-button .theme-cmix input[disabled] + button.clear:hover:before, .theme-cmix .input-w-button input[disabled] + label.clear.label-btn:hover:before, .input-w-button .theme-cmix input[disabled] + label.clear.label-btn:hover:before, .theme-cmix .input-w-button md-autocomplete .md-show-clear-button input[disabled] + button:hover:before, .input-w-button md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + button:hover:before, .theme-cmix md-autocomplete .md-show-clear-button .input-w-button input[disabled] + button:hover:before, md-autocomplete .md-show-clear-button .input-w-button .theme-cmix input[disabled] + button:hover:before, .theme-cmix .input-w-button md-autocomplete .md-show-clear-button input[disabled] + label.label-btn:hover:before, .input-w-button md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + label.label-btn:hover:before, .theme-cmix md-autocomplete .md-show-clear-button .input-w-button input[disabled] + label.label-btn:hover:before, md-autocomplete .md-show-clear-button .input-w-button .theme-cmix input[disabled] + label.label-btn:hover:before, .theme-cmix .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input[disabled] + .md-cancel-button:hover:before, .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + .md-cancel-button:hover:before, .theme-cmix .input-w-button md-autocomplete .md-show-clear-button md-dialog md-dialog-actions input[disabled] + .md-confirm-button:hover:before, .input-w-button md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-cmix input[disabled] + .md-confirm-button:hover:before, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button input[disabled] + .md-confirm-button:hover:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button .theme-cmix input[disabled] + .md-confirm-button:hover:before, .theme-cmix .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input[disabled] + .md-confirm-button:hover:before, .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + .md-confirm-button:hover:before, .theme-cmix md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-button input[disabled] + .md-confirm-button:hover:before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-button .theme-cmix input[disabled] + .md-confirm-button:hover:before, .theme-cmix .input-w-button md-dialog input[disabled] + .close-dialog:hover:before, .input-w-button md-dialog .theme-cmix input[disabled] + .close-dialog:hover:before, .theme-cmix md-dialog .input-w-button input[disabled] + .close-dialog:hover:before, md-dialog .input-w-button .theme-cmix input[disabled] + .close-dialog:hover:before, .theme-cmix .input-w-button md-dialog md-dialog-actions input[disabled] + .md-cancel-button:hover:before, .input-w-button md-dialog md-dialog-actions .theme-cmix input[disabled] + .md-cancel-button:hover:before, .theme-cmix md-dialog md-dialog-actions .input-w-button input[disabled] + .md-cancel-button:hover:before, md-dialog md-dialog-actions .input-w-button .theme-cmix input[disabled] + .md-cancel-button:hover:before, .theme-cmix .input-w-button md-dialog md-dialog-actions input[disabled] + .clear.md-confirm-button:hover:before, .input-w-button md-dialog md-dialog-actions .theme-cmix input[disabled] + .clear.md-confirm-button:hover:before, .theme-cmix md-dialog md-dialog-actions .input-w-button input[disabled] + .clear.md-confirm-button:hover:before, md-dialog md-dialog-actions .input-w-button .theme-cmix input[disabled] + .clear.md-confirm-button:hover:before, .theme-cmix .input-w-button .colorpicker input[disabled] + .close-colorpicker:hover:before, .input-w-button .colorpicker .theme-cmix input[disabled] + .close-colorpicker:hover:before, .theme-cmix .colorpicker .input-w-button input[disabled] + .close-colorpicker:hover:before, .colorpicker .input-w-button .theme-cmix input[disabled] + .close-colorpicker:hover:before,
  .theme-cmix fieldset[disabled] .input-w-button input + button.clear:hover:before, fieldset[disabled] .input-w-button .theme-cmix input + button.clear:hover:before, .theme-cmix fieldset[disabled] .input-w-button input + label.clear.label-btn:hover:before, fieldset[disabled] .input-w-button .theme-cmix input + label.clear.label-btn:hover:before, .theme-cmix fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button input + button:hover:before, fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button .theme-cmix input + button:hover:before, .theme-cmix md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button input + button:hover:before, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button .theme-cmix input + button:hover:before, .theme-cmix fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button input + label.label-btn:hover:before, fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button .theme-cmix input + label.label-btn:hover:before, .theme-cmix md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button input + label.label-btn:hover:before, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button .theme-cmix input + label.label-btn:hover:before, .theme-cmix fieldset[disabled] .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input + .md-cancel-button:hover:before, fieldset[disabled] .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input + .md-cancel-button:hover:before, .theme-cmix fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button md-dialog md-dialog-actions input + .md-confirm-button:hover:before, fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-cmix input + .md-confirm-button:hover:before, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .md-confirm-button:hover:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-button .theme-cmix input + .md-confirm-button:hover:before, .theme-cmix fieldset[disabled] .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input + .md-confirm-button:hover:before, fieldset[disabled] .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input + .md-confirm-button:hover:before, .theme-cmix md-dialog md-dialog-actions md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button input + .md-confirm-button:hover:before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button .theme-cmix input + .md-confirm-button:hover:before, .theme-cmix fieldset[disabled] .input-w-button md-dialog input + .close-dialog:hover:before, fieldset[disabled] .input-w-button md-dialog .theme-cmix input + .close-dialog:hover:before, .theme-cmix md-dialog fieldset[disabled] .input-w-button input + .close-dialog:hover:before, md-dialog fieldset[disabled] .input-w-button .theme-cmix input + .close-dialog:hover:before, .theme-cmix fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .md-cancel-button:hover:before, fieldset[disabled] .input-w-button md-dialog md-dialog-actions .theme-cmix input + .md-cancel-button:hover:before, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .md-cancel-button:hover:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-button .theme-cmix input + .md-cancel-button:hover:before, .theme-cmix fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .clear.md-confirm-button:hover:before, fieldset[disabled] .input-w-button md-dialog md-dialog-actions .theme-cmix input + .clear.md-confirm-button:hover:before, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .clear.md-confirm-button:hover:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-button .theme-cmix input + .clear.md-confirm-button:hover:before, .theme-cmix fieldset[disabled] .input-w-button .colorpicker input + .close-colorpicker:hover:before, fieldset[disabled] .input-w-button .colorpicker .theme-cmix input + .close-colorpicker:hover:before, .theme-cmix .colorpicker fieldset[disabled] .input-w-button input + .close-colorpicker:hover:before, .colorpicker fieldset[disabled] .input-w-button .theme-cmix input + .close-colorpicker:hover:before, .theme-cmix md-autocomplete .md-show-clear-button button.disabled:hover:before, md-autocomplete .md-show-clear-button .theme-cmix button.disabled:hover:before, .theme-cmix md-autocomplete .md-show-clear-button label.disabled.label-btn:hover:before, md-autocomplete .md-show-clear-button .theme-cmix label.disabled.label-btn:hover:before, .theme-cmix md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions input.disabled + .md-cancel-button:hover:before, md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions .theme-cmix input.disabled + .md-cancel-button:hover:before, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay input.disabled + .md-cancel-button:hover:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay .theme-cmix input.disabled + .md-cancel-button:hover:before, .theme-cmix md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button input.disabled + .md-cancel-button:hover:before, md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button .theme-cmix input.disabled + .md-cancel-button:hover:before, .theme-cmix md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions input.disabled + .md-confirm-button:hover:before, md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions .theme-cmix input.disabled + .md-confirm-button:hover:before, .theme-cmix md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button input.disabled + .md-confirm-button:hover:before, md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button .theme-cmix input.disabled + .md-confirm-button:hover:before, .theme-cmix md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions input[disabled] + .md-cancel-button:hover:before, md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions .theme-cmix input[disabled] + .md-cancel-button:hover:before, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay input[disabled] + .md-cancel-button:hover:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay .theme-cmix input[disabled] + .md-cancel-button:hover:before, .theme-cmix md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button input[disabled] + .md-cancel-button:hover:before, md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + .md-cancel-button:hover:before, .theme-cmix md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions input[disabled] + .md-confirm-button:hover:before, md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions .theme-cmix input[disabled] + .md-confirm-button:hover:before, .theme-cmix md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button input[disabled] + .md-confirm-button:hover:before, md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + .md-confirm-button:hover:before, .theme-cmix md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .md-cancel-button:hover:before, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions .theme-cmix input + .md-cancel-button:hover:before, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .md-cancel-button:hover:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay .theme-cmix input + .md-cancel-button:hover:before, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button input + .md-cancel-button:hover:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button .theme-cmix input + .md-cancel-button:hover:before, .theme-cmix md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .md-confirm-button:hover:before, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions .theme-cmix input + .md-confirm-button:hover:before, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button input + .md-confirm-button:hover:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button .theme-cmix input + .md-confirm-button:hover:before, .theme-cmix md-autocomplete .md-show-clear-button .input-w-clear input.disabled + button:hover:before, md-autocomplete .md-show-clear-button .input-w-clear .theme-cmix input.disabled + button:hover:before, .theme-cmix .input-w-clear md-autocomplete .md-show-clear-button input.disabled + button:hover:before, .input-w-clear md-autocomplete .md-show-clear-button .theme-cmix input.disabled + button:hover:before, .theme-cmix md-autocomplete .md-show-clear-button .input-w-clear input.disabled + label.label-btn:hover:before, md-autocomplete .md-show-clear-button .input-w-clear .theme-cmix input.disabled + label.label-btn:hover:before, .theme-cmix .input-w-clear md-autocomplete .md-show-clear-button input.disabled + label.label-btn:hover:before, .input-w-clear md-autocomplete .md-show-clear-button .theme-cmix input.disabled + label.label-btn:hover:before, .theme-cmix md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions input.disabled + .md-cancel-button:hover:before, md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions .theme-cmix input.disabled + .md-cancel-button:hover:before, .theme-cmix .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input.disabled + .md-cancel-button:hover:before, .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input.disabled + .md-cancel-button:hover:before, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear input.disabled + .md-cancel-button:hover:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear .theme-cmix input.disabled + .md-cancel-button:hover:before, .theme-cmix md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button input.disabled + .md-cancel-button:hover:before, md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button .theme-cmix input.disabled + .md-cancel-button:hover:before, .theme-cmix md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions input.disabled + .md-confirm-button:hover:before, md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions .theme-cmix input.disabled + .md-confirm-button:hover:before, .theme-cmix .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input.disabled + .md-confirm-button:hover:before, .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input.disabled + .md-confirm-button:hover:before, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear input.disabled + .md-confirm-button:hover:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear .theme-cmix input.disabled + .md-confirm-button:hover:before, .theme-cmix md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button input.disabled + .md-confirm-button:hover:before, md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button .theme-cmix input.disabled + .md-confirm-button:hover:before, .theme-cmix md-autocomplete .md-show-clear-button .input-w-clear input[disabled] + button:hover:before, md-autocomplete .md-show-clear-button .input-w-clear .theme-cmix input[disabled] + button:hover:before, .theme-cmix .input-w-clear md-autocomplete .md-show-clear-button input[disabled] + button:hover:before, .input-w-clear md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + button:hover:before, .theme-cmix md-autocomplete .md-show-clear-button .input-w-clear input[disabled] + label.label-btn:hover:before, md-autocomplete .md-show-clear-button .input-w-clear .theme-cmix input[disabled] + label.label-btn:hover:before, .theme-cmix .input-w-clear md-autocomplete .md-show-clear-button input[disabled] + label.label-btn:hover:before, .input-w-clear md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + label.label-btn:hover:before, .theme-cmix md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions input[disabled] + .md-cancel-button:hover:before, md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions .theme-cmix input[disabled] + .md-cancel-button:hover:before, .theme-cmix .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input[disabled] + .md-cancel-button:hover:before, .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + .md-cancel-button:hover:before, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear input[disabled] + .md-cancel-button:hover:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear .theme-cmix input[disabled] + .md-cancel-button:hover:before, .theme-cmix md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button input[disabled] + .md-cancel-button:hover:before, md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + .md-cancel-button:hover:before, .theme-cmix md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions input[disabled] + .md-confirm-button:hover:before, md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions .theme-cmix input[disabled] + .md-confirm-button:hover:before, .theme-cmix .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input[disabled] + .md-confirm-button:hover:before, .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + .md-confirm-button:hover:before, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear input[disabled] + .md-confirm-button:hover:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear .theme-cmix input[disabled] + .md-confirm-button:hover:before, .theme-cmix md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button input[disabled] + .md-confirm-button:hover:before, md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + .md-confirm-button:hover:before,
  .theme-cmix md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear input + button:hover:before, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear .theme-cmix input + button:hover:before, .theme-cmix fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button input + button:hover:before, fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button .theme-cmix input + button:hover:before, .theme-cmix md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear input + label.label-btn:hover:before, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear .theme-cmix input + label.label-btn:hover:before, .theme-cmix fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button input + label.label-btn:hover:before, fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button .theme-cmix input + label.label-btn:hover:before, .theme-cmix md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .md-cancel-button:hover:before, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear md-dialog md-dialog-actions .theme-cmix input + .md-cancel-button:hover:before, .theme-cmix fieldset[disabled] .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input + .md-cancel-button:hover:before, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input + .md-cancel-button:hover:before, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .md-cancel-button:hover:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-clear .theme-cmix input + .md-cancel-button:hover:before, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button input + .md-cancel-button:hover:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button .theme-cmix input + .md-cancel-button:hover:before, .theme-cmix md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .md-confirm-button:hover:before, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear md-dialog md-dialog-actions .theme-cmix input + .md-confirm-button:hover:before, .theme-cmix fieldset[disabled] .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input + .md-confirm-button:hover:before, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input + .md-confirm-button:hover:before, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .md-confirm-button:hover:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-clear .theme-cmix input + .md-confirm-button:hover:before, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button input + .md-confirm-button:hover:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button .theme-cmix input + .md-confirm-button:hover:before, .theme-cmix md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions input.disabled + .md-cancel-button:hover:before, md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions .theme-cmix input.disabled + .md-cancel-button:hover:before, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button input.disabled + .md-cancel-button:hover:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button .theme-cmix input.disabled + .md-cancel-button:hover:before, .theme-cmix md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button input.disabled + .md-cancel-button:hover:before, md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button .theme-cmix input.disabled + .md-cancel-button:hover:before, .theme-cmix md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions input.disabled + .md-confirm-button:hover:before, md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions .theme-cmix input.disabled + .md-confirm-button:hover:before, .theme-cmix md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button input.disabled + .md-confirm-button:hover:before, md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button .theme-cmix input.disabled + .md-confirm-button:hover:before, .theme-cmix md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions input[disabled] + .md-cancel-button:hover:before, md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions .theme-cmix input[disabled] + .md-cancel-button:hover:before, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button input[disabled] + .md-cancel-button:hover:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button .theme-cmix input[disabled] + .md-cancel-button:hover:before, .theme-cmix md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button input[disabled] + .md-cancel-button:hover:before, md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + .md-cancel-button:hover:before, .theme-cmix md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions input[disabled] + .md-confirm-button:hover:before, md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions .theme-cmix input[disabled] + .md-confirm-button:hover:before, .theme-cmix md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button input[disabled] + .md-confirm-button:hover:before, md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + .md-confirm-button:hover:before, .theme-cmix md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .md-cancel-button:hover:before, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button md-dialog md-dialog-actions .theme-cmix input + .md-cancel-button:hover:before, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .md-cancel-button:hover:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-button .theme-cmix input + .md-cancel-button:hover:before, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button input + .md-cancel-button:hover:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button .theme-cmix input + .md-cancel-button:hover:before, .theme-cmix md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .md-confirm-button:hover:before, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button md-dialog md-dialog-actions .theme-cmix input + .md-confirm-button:hover:before, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button input + .md-confirm-button:hover:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button .theme-cmix input + .md-confirm-button:hover:before, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .disabled.md-cancel-button:hover:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-cmix .disabled.md-cancel-button:hover:before, .theme-cmix md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .disabled.md-cancel-button:hover:before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix .disabled.md-cancel-button:hover:before, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .disabled.md-confirm-button:hover:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-cmix .disabled.md-confirm-button:hover:before, .theme-cmix md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .disabled.md-confirm-button:hover:before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix .disabled.md-confirm-button:hover:before, .theme-cmix md-dialog .disabled.close-dialog:hover:before, md-dialog .theme-cmix .disabled.close-dialog:hover:before, .theme-cmix md-dialog md-dialog-actions .disabled.md-cancel-button:hover:before, md-dialog md-dialog-actions .theme-cmix .disabled.md-cancel-button:hover:before, .theme-cmix md-dialog md-dialog-actions .clear.disabled.md-confirm-button:hover:before, md-dialog md-dialog-actions .theme-cmix .clear.disabled.md-confirm-button:hover:before, .theme-cmix .colorpicker .disabled.close-colorpicker:hover:before, .colorpicker .theme-cmix .disabled.close-colorpicker:hover:before, .theme-cmix button.clear.disabled:focus:before, .theme-cmix label.clear.disabled.label-btn:focus:before, .theme-cmix .input-w-inlay input.disabled + button.clear:focus:before, .input-w-inlay .theme-cmix input.disabled + button.clear:focus:before, .theme-cmix .input-w-inlay input.disabled + label.clear.label-btn:focus:before, .input-w-inlay .theme-cmix input.disabled + label.clear.label-btn:focus:before, .theme-cmix .input-w-inlay md-autocomplete .md-show-clear-button input.disabled + button:focus:before, .input-w-inlay md-autocomplete .md-show-clear-button .theme-cmix input.disabled + button:focus:before, .theme-cmix md-autocomplete .md-show-clear-button .input-w-inlay input.disabled + button:focus:before, md-autocomplete .md-show-clear-button .input-w-inlay .theme-cmix input.disabled + button:focus:before, .theme-cmix .input-w-inlay md-autocomplete .md-show-clear-button input.disabled + label.label-btn:focus:before, .input-w-inlay md-autocomplete .md-show-clear-button .theme-cmix input.disabled + label.label-btn:focus:before, .theme-cmix md-autocomplete .md-show-clear-button .input-w-inlay input.disabled + label.label-btn:focus:before, md-autocomplete .md-show-clear-button .input-w-inlay .theme-cmix input.disabled + label.label-btn:focus:before, .theme-cmix .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input.disabled + .md-cancel-button:focus:before, .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input.disabled + .md-cancel-button:focus:before, .theme-cmix .input-w-inlay md-autocomplete .md-show-clear-button md-dialog md-dialog-actions input.disabled + .md-confirm-button:focus:before, .input-w-inlay md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-cmix input.disabled + .md-confirm-button:focus:before, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay input.disabled + .md-confirm-button:focus:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay .theme-cmix input.disabled + .md-confirm-button:focus:before, .theme-cmix .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input.disabled + .md-confirm-button:focus:before, .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input.disabled + .md-confirm-button:focus:before, .theme-cmix md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-inlay input.disabled + .md-confirm-button:focus:before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-inlay .theme-cmix input.disabled + .md-confirm-button:focus:before, .theme-cmix .input-w-inlay md-dialog input.disabled + .close-dialog:focus:before, .input-w-inlay md-dialog .theme-cmix input.disabled + .close-dialog:focus:before, .theme-cmix md-dialog .input-w-inlay input.disabled + .close-dialog:focus:before, md-dialog .input-w-inlay .theme-cmix input.disabled + .close-dialog:focus:before, .theme-cmix .input-w-inlay md-dialog md-dialog-actions input.disabled + .md-cancel-button:focus:before, .input-w-inlay md-dialog md-dialog-actions .theme-cmix input.disabled + .md-cancel-button:focus:before, .theme-cmix md-dialog md-dialog-actions .input-w-inlay input.disabled + .md-cancel-button:focus:before, md-dialog md-dialog-actions .input-w-inlay .theme-cmix input.disabled + .md-cancel-button:focus:before, .theme-cmix .input-w-inlay md-dialog md-dialog-actions input.disabled + .clear.md-confirm-button:focus:before, .input-w-inlay md-dialog md-dialog-actions .theme-cmix input.disabled + .clear.md-confirm-button:focus:before, .theme-cmix md-dialog md-dialog-actions .input-w-inlay input.disabled + .clear.md-confirm-button:focus:before, md-dialog md-dialog-actions .input-w-inlay .theme-cmix input.disabled + .clear.md-confirm-button:focus:before, .theme-cmix .input-w-inlay .colorpicker input.disabled + .close-colorpicker:focus:before, .input-w-inlay .colorpicker .theme-cmix input.disabled + .close-colorpicker:focus:before, .theme-cmix .colorpicker .input-w-inlay input.disabled + .close-colorpicker:focus:before, .colorpicker .input-w-inlay .theme-cmix input.disabled + .close-colorpicker:focus:before, .theme-cmix .input-w-inlay input[disabled] + button.clear:focus:before, .input-w-inlay .theme-cmix input[disabled] + button.clear:focus:before, .theme-cmix .input-w-inlay input[disabled] + label.clear.label-btn:focus:before, .input-w-inlay .theme-cmix input[disabled] + label.clear.label-btn:focus:before, .theme-cmix .input-w-inlay md-autocomplete .md-show-clear-button input[disabled] + button:focus:before, .input-w-inlay md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + button:focus:before, .theme-cmix md-autocomplete .md-show-clear-button .input-w-inlay input[disabled] + button:focus:before, md-autocomplete .md-show-clear-button .input-w-inlay .theme-cmix input[disabled] + button:focus:before, .theme-cmix .input-w-inlay md-autocomplete .md-show-clear-button input[disabled] + label.label-btn:focus:before, .input-w-inlay md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + label.label-btn:focus:before, .theme-cmix md-autocomplete .md-show-clear-button .input-w-inlay input[disabled] + label.label-btn:focus:before, md-autocomplete .md-show-clear-button .input-w-inlay .theme-cmix input[disabled] + label.label-btn:focus:before, .theme-cmix .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input[disabled] + .md-cancel-button:focus:before, .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + .md-cancel-button:focus:before, .theme-cmix .input-w-inlay md-autocomplete .md-show-clear-button md-dialog md-dialog-actions input[disabled] + .md-confirm-button:focus:before, .input-w-inlay md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-cmix input[disabled] + .md-confirm-button:focus:before, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay input[disabled] + .md-confirm-button:focus:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay .theme-cmix input[disabled] + .md-confirm-button:focus:before, .theme-cmix .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input[disabled] + .md-confirm-button:focus:before, .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + .md-confirm-button:focus:before, .theme-cmix md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-inlay input[disabled] + .md-confirm-button:focus:before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-inlay .theme-cmix input[disabled] + .md-confirm-button:focus:before, .theme-cmix .input-w-inlay md-dialog input[disabled] + .close-dialog:focus:before, .input-w-inlay md-dialog .theme-cmix input[disabled] + .close-dialog:focus:before, .theme-cmix md-dialog .input-w-inlay input[disabled] + .close-dialog:focus:before, md-dialog .input-w-inlay .theme-cmix input[disabled] + .close-dialog:focus:before, .theme-cmix .input-w-inlay md-dialog md-dialog-actions input[disabled] + .md-cancel-button:focus:before, .input-w-inlay md-dialog md-dialog-actions .theme-cmix input[disabled] + .md-cancel-button:focus:before, .theme-cmix md-dialog md-dialog-actions .input-w-inlay input[disabled] + .md-cancel-button:focus:before, md-dialog md-dialog-actions .input-w-inlay .theme-cmix input[disabled] + .md-cancel-button:focus:before, .theme-cmix .input-w-inlay md-dialog md-dialog-actions input[disabled] + .clear.md-confirm-button:focus:before, .input-w-inlay md-dialog md-dialog-actions .theme-cmix input[disabled] + .clear.md-confirm-button:focus:before, .theme-cmix md-dialog md-dialog-actions .input-w-inlay input[disabled] + .clear.md-confirm-button:focus:before, md-dialog md-dialog-actions .input-w-inlay .theme-cmix input[disabled] + .clear.md-confirm-button:focus:before, .theme-cmix .input-w-inlay .colorpicker input[disabled] + .close-colorpicker:focus:before, .input-w-inlay .colorpicker .theme-cmix input[disabled] + .close-colorpicker:focus:before, .theme-cmix .colorpicker .input-w-inlay input[disabled] + .close-colorpicker:focus:before, .colorpicker .input-w-inlay .theme-cmix input[disabled] + .close-colorpicker:focus:before,
  .theme-cmix fieldset[disabled] .input-w-inlay input + button.clear:focus:before, fieldset[disabled] .input-w-inlay .theme-cmix input + button.clear:focus:before, .theme-cmix fieldset[disabled] .input-w-inlay input + label.clear.label-btn:focus:before, fieldset[disabled] .input-w-inlay .theme-cmix input + label.clear.label-btn:focus:before, .theme-cmix fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button input + button:focus:before, fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button .theme-cmix input + button:focus:before, .theme-cmix md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay input + button:focus:before, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay .theme-cmix input + button:focus:before, .theme-cmix fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button input + label.label-btn:focus:before, fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button .theme-cmix input + label.label-btn:focus:before, .theme-cmix md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay input + label.label-btn:focus:before, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay .theme-cmix input + label.label-btn:focus:before, .theme-cmix fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input + .md-cancel-button:focus:before, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input + .md-cancel-button:focus:before, .theme-cmix fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button md-dialog md-dialog-actions input + .md-confirm-button:focus:before, fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-cmix input + .md-confirm-button:focus:before, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .md-confirm-button:focus:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay .theme-cmix input + .md-confirm-button:focus:before, .theme-cmix fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input + .md-confirm-button:focus:before, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input + .md-confirm-button:focus:before, .theme-cmix md-dialog md-dialog-actions md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay input + .md-confirm-button:focus:before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay .theme-cmix input + .md-confirm-button:focus:before, .theme-cmix fieldset[disabled] .input-w-inlay md-dialog input + .close-dialog:focus:before, fieldset[disabled] .input-w-inlay md-dialog .theme-cmix input + .close-dialog:focus:before, .theme-cmix md-dialog fieldset[disabled] .input-w-inlay input + .close-dialog:focus:before, md-dialog fieldset[disabled] .input-w-inlay .theme-cmix input + .close-dialog:focus:before, .theme-cmix fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .md-cancel-button:focus:before, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions .theme-cmix input + .md-cancel-button:focus:before, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .md-cancel-button:focus:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay .theme-cmix input + .md-cancel-button:focus:before, .theme-cmix fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .clear.md-confirm-button:focus:before, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions .theme-cmix input + .clear.md-confirm-button:focus:before, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .clear.md-confirm-button:focus:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay .theme-cmix input + .clear.md-confirm-button:focus:before, .theme-cmix fieldset[disabled] .input-w-inlay .colorpicker input + .close-colorpicker:focus:before, fieldset[disabled] .input-w-inlay .colorpicker .theme-cmix input + .close-colorpicker:focus:before, .theme-cmix .colorpicker fieldset[disabled] .input-w-inlay input + .close-colorpicker:focus:before, .colorpicker fieldset[disabled] .input-w-inlay .theme-cmix input + .close-colorpicker:focus:before, .theme-cmix .input-w-clear input.disabled + button:focus:before, .input-w-clear .theme-cmix input.disabled + button:focus:before, .theme-cmix .input-w-clear input.disabled + label.label-btn:focus:before, .input-w-clear .theme-cmix input.disabled + label.label-btn:focus:before, .theme-cmix .input-w-clear md-dialog md-dialog-actions input.disabled + .md-cancel-button:focus:before, .input-w-clear md-dialog md-dialog-actions .theme-cmix input.disabled + .md-cancel-button:focus:before, .theme-cmix md-dialog md-dialog-actions .input-w-clear input.disabled + .md-cancel-button:focus:before, md-dialog md-dialog-actions .input-w-clear .theme-cmix input.disabled + .md-cancel-button:focus:before, .theme-cmix .input-w-clear md-dialog md-dialog-actions input.disabled + .md-confirm-button:focus:before, .input-w-clear md-dialog md-dialog-actions .theme-cmix input.disabled + .md-confirm-button:focus:before, .theme-cmix md-dialog md-dialog-actions .input-w-clear input.disabled + .md-confirm-button:focus:before, md-dialog md-dialog-actions .input-w-clear .theme-cmix input.disabled + .md-confirm-button:focus:before, .theme-cmix .input-w-clear input[disabled] + button:focus:before, .input-w-clear .theme-cmix input[disabled] + button:focus:before, .theme-cmix .input-w-clear input[disabled] + label.label-btn:focus:before, .input-w-clear .theme-cmix input[disabled] + label.label-btn:focus:before, .theme-cmix .input-w-clear md-dialog md-dialog-actions input[disabled] + .md-cancel-button:focus:before, .input-w-clear md-dialog md-dialog-actions .theme-cmix input[disabled] + .md-cancel-button:focus:before, .theme-cmix md-dialog md-dialog-actions .input-w-clear input[disabled] + .md-cancel-button:focus:before, md-dialog md-dialog-actions .input-w-clear .theme-cmix input[disabled] + .md-cancel-button:focus:before, .theme-cmix .input-w-clear md-dialog md-dialog-actions input[disabled] + .md-confirm-button:focus:before, .input-w-clear md-dialog md-dialog-actions .theme-cmix input[disabled] + .md-confirm-button:focus:before, .theme-cmix md-dialog md-dialog-actions .input-w-clear input[disabled] + .md-confirm-button:focus:before, md-dialog md-dialog-actions .input-w-clear .theme-cmix input[disabled] + .md-confirm-button:focus:before,
  .theme-cmix fieldset[disabled] .input-w-clear input + button:focus:before, fieldset[disabled] .input-w-clear .theme-cmix input + button:focus:before, .theme-cmix fieldset[disabled] .input-w-clear input + label.label-btn:focus:before, fieldset[disabled] .input-w-clear .theme-cmix input + label.label-btn:focus:before, .theme-cmix fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .md-cancel-button:focus:before, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions .theme-cmix input + .md-cancel-button:focus:before, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .md-cancel-button:focus:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear .theme-cmix input + .md-cancel-button:focus:before, .theme-cmix fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .md-confirm-button:focus:before, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions .theme-cmix input + .md-confirm-button:focus:before, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .md-confirm-button:focus:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear .theme-cmix input + .md-confirm-button:focus:before, .theme-cmix .input-w-button input.disabled + button.clear:focus:before, .input-w-button .theme-cmix input.disabled + button.clear:focus:before, .theme-cmix .input-w-button input.disabled + label.clear.label-btn:focus:before, .input-w-button .theme-cmix input.disabled + label.clear.label-btn:focus:before, .theme-cmix .input-w-button md-autocomplete .md-show-clear-button input.disabled + button:focus:before, .input-w-button md-autocomplete .md-show-clear-button .theme-cmix input.disabled + button:focus:before, .theme-cmix md-autocomplete .md-show-clear-button .input-w-button input.disabled + button:focus:before, md-autocomplete .md-show-clear-button .input-w-button .theme-cmix input.disabled + button:focus:before, .theme-cmix .input-w-button md-autocomplete .md-show-clear-button input.disabled + label.label-btn:focus:before, .input-w-button md-autocomplete .md-show-clear-button .theme-cmix input.disabled + label.label-btn:focus:before, .theme-cmix md-autocomplete .md-show-clear-button .input-w-button input.disabled + label.label-btn:focus:before, md-autocomplete .md-show-clear-button .input-w-button .theme-cmix input.disabled + label.label-btn:focus:before, .theme-cmix .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input.disabled + .md-cancel-button:focus:before, .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input.disabled + .md-cancel-button:focus:before, .theme-cmix .input-w-button md-autocomplete .md-show-clear-button md-dialog md-dialog-actions input.disabled + .md-confirm-button:focus:before, .input-w-button md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-cmix input.disabled + .md-confirm-button:focus:before, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button input.disabled + .md-confirm-button:focus:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button .theme-cmix input.disabled + .md-confirm-button:focus:before, .theme-cmix .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input.disabled + .md-confirm-button:focus:before, .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input.disabled + .md-confirm-button:focus:before, .theme-cmix md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-button input.disabled + .md-confirm-button:focus:before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-button .theme-cmix input.disabled + .md-confirm-button:focus:before, .theme-cmix .input-w-button md-dialog input.disabled + .close-dialog:focus:before, .input-w-button md-dialog .theme-cmix input.disabled + .close-dialog:focus:before, .theme-cmix md-dialog .input-w-button input.disabled + .close-dialog:focus:before, md-dialog .input-w-button .theme-cmix input.disabled + .close-dialog:focus:before, .theme-cmix .input-w-button md-dialog md-dialog-actions input.disabled + .md-cancel-button:focus:before, .input-w-button md-dialog md-dialog-actions .theme-cmix input.disabled + .md-cancel-button:focus:before, .theme-cmix md-dialog md-dialog-actions .input-w-button input.disabled + .md-cancel-button:focus:before, md-dialog md-dialog-actions .input-w-button .theme-cmix input.disabled + .md-cancel-button:focus:before, .theme-cmix .input-w-button md-dialog md-dialog-actions input.disabled + .clear.md-confirm-button:focus:before, .input-w-button md-dialog md-dialog-actions .theme-cmix input.disabled + .clear.md-confirm-button:focus:before, .theme-cmix md-dialog md-dialog-actions .input-w-button input.disabled + .clear.md-confirm-button:focus:before, md-dialog md-dialog-actions .input-w-button .theme-cmix input.disabled + .clear.md-confirm-button:focus:before, .theme-cmix .input-w-button .colorpicker input.disabled + .close-colorpicker:focus:before, .input-w-button .colorpicker .theme-cmix input.disabled + .close-colorpicker:focus:before, .theme-cmix .colorpicker .input-w-button input.disabled + .close-colorpicker:focus:before, .colorpicker .input-w-button .theme-cmix input.disabled + .close-colorpicker:focus:before, .theme-cmix .input-w-button input[disabled] + button.clear:focus:before, .input-w-button .theme-cmix input[disabled] + button.clear:focus:before, .theme-cmix .input-w-button input[disabled] + label.clear.label-btn:focus:before, .input-w-button .theme-cmix input[disabled] + label.clear.label-btn:focus:before, .theme-cmix .input-w-button md-autocomplete .md-show-clear-button input[disabled] + button:focus:before, .input-w-button md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + button:focus:before, .theme-cmix md-autocomplete .md-show-clear-button .input-w-button input[disabled] + button:focus:before, md-autocomplete .md-show-clear-button .input-w-button .theme-cmix input[disabled] + button:focus:before, .theme-cmix .input-w-button md-autocomplete .md-show-clear-button input[disabled] + label.label-btn:focus:before, .input-w-button md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + label.label-btn:focus:before, .theme-cmix md-autocomplete .md-show-clear-button .input-w-button input[disabled] + label.label-btn:focus:before, md-autocomplete .md-show-clear-button .input-w-button .theme-cmix input[disabled] + label.label-btn:focus:before, .theme-cmix .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input[disabled] + .md-cancel-button:focus:before, .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + .md-cancel-button:focus:before, .theme-cmix .input-w-button md-autocomplete .md-show-clear-button md-dialog md-dialog-actions input[disabled] + .md-confirm-button:focus:before, .input-w-button md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-cmix input[disabled] + .md-confirm-button:focus:before, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button input[disabled] + .md-confirm-button:focus:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button .theme-cmix input[disabled] + .md-confirm-button:focus:before, .theme-cmix .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input[disabled] + .md-confirm-button:focus:before, .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + .md-confirm-button:focus:before, .theme-cmix md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-button input[disabled] + .md-confirm-button:focus:before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-button .theme-cmix input[disabled] + .md-confirm-button:focus:before, .theme-cmix .input-w-button md-dialog input[disabled] + .close-dialog:focus:before, .input-w-button md-dialog .theme-cmix input[disabled] + .close-dialog:focus:before, .theme-cmix md-dialog .input-w-button input[disabled] + .close-dialog:focus:before, md-dialog .input-w-button .theme-cmix input[disabled] + .close-dialog:focus:before, .theme-cmix .input-w-button md-dialog md-dialog-actions input[disabled] + .md-cancel-button:focus:before, .input-w-button md-dialog md-dialog-actions .theme-cmix input[disabled] + .md-cancel-button:focus:before, .theme-cmix md-dialog md-dialog-actions .input-w-button input[disabled] + .md-cancel-button:focus:before, md-dialog md-dialog-actions .input-w-button .theme-cmix input[disabled] + .md-cancel-button:focus:before, .theme-cmix .input-w-button md-dialog md-dialog-actions input[disabled] + .clear.md-confirm-button:focus:before, .input-w-button md-dialog md-dialog-actions .theme-cmix input[disabled] + .clear.md-confirm-button:focus:before, .theme-cmix md-dialog md-dialog-actions .input-w-button input[disabled] + .clear.md-confirm-button:focus:before, md-dialog md-dialog-actions .input-w-button .theme-cmix input[disabled] + .clear.md-confirm-button:focus:before, .theme-cmix .input-w-button .colorpicker input[disabled] + .close-colorpicker:focus:before, .input-w-button .colorpicker .theme-cmix input[disabled] + .close-colorpicker:focus:before, .theme-cmix .colorpicker .input-w-button input[disabled] + .close-colorpicker:focus:before, .colorpicker .input-w-button .theme-cmix input[disabled] + .close-colorpicker:focus:before,
  .theme-cmix fieldset[disabled] .input-w-button input + button.clear:focus:before, fieldset[disabled] .input-w-button .theme-cmix input + button.clear:focus:before, .theme-cmix fieldset[disabled] .input-w-button input + label.clear.label-btn:focus:before, fieldset[disabled] .input-w-button .theme-cmix input + label.clear.label-btn:focus:before, .theme-cmix fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button input + button:focus:before, fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button .theme-cmix input + button:focus:before, .theme-cmix md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button input + button:focus:before, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button .theme-cmix input + button:focus:before, .theme-cmix fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button input + label.label-btn:focus:before, fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button .theme-cmix input + label.label-btn:focus:before, .theme-cmix md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button input + label.label-btn:focus:before, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button .theme-cmix input + label.label-btn:focus:before, .theme-cmix fieldset[disabled] .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input + .md-cancel-button:focus:before, fieldset[disabled] .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input + .md-cancel-button:focus:before, .theme-cmix fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button md-dialog md-dialog-actions input + .md-confirm-button:focus:before, fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-cmix input + .md-confirm-button:focus:before, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .md-confirm-button:focus:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-button .theme-cmix input + .md-confirm-button:focus:before, .theme-cmix fieldset[disabled] .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input + .md-confirm-button:focus:before, fieldset[disabled] .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input + .md-confirm-button:focus:before, .theme-cmix md-dialog md-dialog-actions md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button input + .md-confirm-button:focus:before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button .theme-cmix input + .md-confirm-button:focus:before, .theme-cmix fieldset[disabled] .input-w-button md-dialog input + .close-dialog:focus:before, fieldset[disabled] .input-w-button md-dialog .theme-cmix input + .close-dialog:focus:before, .theme-cmix md-dialog fieldset[disabled] .input-w-button input + .close-dialog:focus:before, md-dialog fieldset[disabled] .input-w-button .theme-cmix input + .close-dialog:focus:before, .theme-cmix fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .md-cancel-button:focus:before, fieldset[disabled] .input-w-button md-dialog md-dialog-actions .theme-cmix input + .md-cancel-button:focus:before, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .md-cancel-button:focus:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-button .theme-cmix input + .md-cancel-button:focus:before, .theme-cmix fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .clear.md-confirm-button:focus:before, fieldset[disabled] .input-w-button md-dialog md-dialog-actions .theme-cmix input + .clear.md-confirm-button:focus:before, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .clear.md-confirm-button:focus:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-button .theme-cmix input + .clear.md-confirm-button:focus:before, .theme-cmix fieldset[disabled] .input-w-button .colorpicker input + .close-colorpicker:focus:before, fieldset[disabled] .input-w-button .colorpicker .theme-cmix input + .close-colorpicker:focus:before, .theme-cmix .colorpicker fieldset[disabled] .input-w-button input + .close-colorpicker:focus:before, .colorpicker fieldset[disabled] .input-w-button .theme-cmix input + .close-colorpicker:focus:before, .theme-cmix md-autocomplete .md-show-clear-button button.disabled:focus:before, md-autocomplete .md-show-clear-button .theme-cmix button.disabled:focus:before, .theme-cmix md-autocomplete .md-show-clear-button label.disabled.label-btn:focus:before, md-autocomplete .md-show-clear-button .theme-cmix label.disabled.label-btn:focus:before, .theme-cmix md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions input.disabled + .md-cancel-button:focus:before, md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions .theme-cmix input.disabled + .md-cancel-button:focus:before, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay input.disabled + .md-cancel-button:focus:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay .theme-cmix input.disabled + .md-cancel-button:focus:before, .theme-cmix md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button input.disabled + .md-cancel-button:focus:before, md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button .theme-cmix input.disabled + .md-cancel-button:focus:before, .theme-cmix md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions input.disabled + .md-confirm-button:focus:before, md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions .theme-cmix input.disabled + .md-confirm-button:focus:before, .theme-cmix md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button input.disabled + .md-confirm-button:focus:before, md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button .theme-cmix input.disabled + .md-confirm-button:focus:before, .theme-cmix md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions input[disabled] + .md-cancel-button:focus:before, md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions .theme-cmix input[disabled] + .md-cancel-button:focus:before, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay input[disabled] + .md-cancel-button:focus:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay .theme-cmix input[disabled] + .md-cancel-button:focus:before, .theme-cmix md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button input[disabled] + .md-cancel-button:focus:before, md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + .md-cancel-button:focus:before, .theme-cmix md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions input[disabled] + .md-confirm-button:focus:before, md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions .theme-cmix input[disabled] + .md-confirm-button:focus:before, .theme-cmix md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button input[disabled] + .md-confirm-button:focus:before, md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + .md-confirm-button:focus:before, .theme-cmix md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .md-cancel-button:focus:before, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions .theme-cmix input + .md-cancel-button:focus:before, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .md-cancel-button:focus:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay .theme-cmix input + .md-cancel-button:focus:before, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button input + .md-cancel-button:focus:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button .theme-cmix input + .md-cancel-button:focus:before, .theme-cmix md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .md-confirm-button:focus:before, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions .theme-cmix input + .md-confirm-button:focus:before, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button input + .md-confirm-button:focus:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button .theme-cmix input + .md-confirm-button:focus:before, .theme-cmix md-autocomplete .md-show-clear-button .input-w-clear input.disabled + button:focus:before, md-autocomplete .md-show-clear-button .input-w-clear .theme-cmix input.disabled + button:focus:before, .theme-cmix .input-w-clear md-autocomplete .md-show-clear-button input.disabled + button:focus:before, .input-w-clear md-autocomplete .md-show-clear-button .theme-cmix input.disabled + button:focus:before, .theme-cmix md-autocomplete .md-show-clear-button .input-w-clear input.disabled + label.label-btn:focus:before, md-autocomplete .md-show-clear-button .input-w-clear .theme-cmix input.disabled + label.label-btn:focus:before, .theme-cmix .input-w-clear md-autocomplete .md-show-clear-button input.disabled + label.label-btn:focus:before, .input-w-clear md-autocomplete .md-show-clear-button .theme-cmix input.disabled + label.label-btn:focus:before, .theme-cmix md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions input.disabled + .md-cancel-button:focus:before, md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions .theme-cmix input.disabled + .md-cancel-button:focus:before, .theme-cmix .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input.disabled + .md-cancel-button:focus:before, .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input.disabled + .md-cancel-button:focus:before, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear input.disabled + .md-cancel-button:focus:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear .theme-cmix input.disabled + .md-cancel-button:focus:before, .theme-cmix md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button input.disabled + .md-cancel-button:focus:before, md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button .theme-cmix input.disabled + .md-cancel-button:focus:before, .theme-cmix md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions input.disabled + .md-confirm-button:focus:before, md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions .theme-cmix input.disabled + .md-confirm-button:focus:before, .theme-cmix .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input.disabled + .md-confirm-button:focus:before, .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input.disabled + .md-confirm-button:focus:before, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear input.disabled + .md-confirm-button:focus:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear .theme-cmix input.disabled + .md-confirm-button:focus:before, .theme-cmix md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button input.disabled + .md-confirm-button:focus:before, md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button .theme-cmix input.disabled + .md-confirm-button:focus:before, .theme-cmix md-autocomplete .md-show-clear-button .input-w-clear input[disabled] + button:focus:before, md-autocomplete .md-show-clear-button .input-w-clear .theme-cmix input[disabled] + button:focus:before, .theme-cmix .input-w-clear md-autocomplete .md-show-clear-button input[disabled] + button:focus:before, .input-w-clear md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + button:focus:before, .theme-cmix md-autocomplete .md-show-clear-button .input-w-clear input[disabled] + label.label-btn:focus:before, md-autocomplete .md-show-clear-button .input-w-clear .theme-cmix input[disabled] + label.label-btn:focus:before, .theme-cmix .input-w-clear md-autocomplete .md-show-clear-button input[disabled] + label.label-btn:focus:before, .input-w-clear md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + label.label-btn:focus:before, .theme-cmix md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions input[disabled] + .md-cancel-button:focus:before, md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions .theme-cmix input[disabled] + .md-cancel-button:focus:before, .theme-cmix .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input[disabled] + .md-cancel-button:focus:before, .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + .md-cancel-button:focus:before, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear input[disabled] + .md-cancel-button:focus:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear .theme-cmix input[disabled] + .md-cancel-button:focus:before, .theme-cmix md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button input[disabled] + .md-cancel-button:focus:before, md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + .md-cancel-button:focus:before, .theme-cmix md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions input[disabled] + .md-confirm-button:focus:before, md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions .theme-cmix input[disabled] + .md-confirm-button:focus:before, .theme-cmix .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input[disabled] + .md-confirm-button:focus:before, .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + .md-confirm-button:focus:before, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear input[disabled] + .md-confirm-button:focus:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear .theme-cmix input[disabled] + .md-confirm-button:focus:before, .theme-cmix md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button input[disabled] + .md-confirm-button:focus:before, md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + .md-confirm-button:focus:before,
  .theme-cmix md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear input + button:focus:before, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear .theme-cmix input + button:focus:before, .theme-cmix fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button input + button:focus:before, fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button .theme-cmix input + button:focus:before, .theme-cmix md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear input + label.label-btn:focus:before, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear .theme-cmix input + label.label-btn:focus:before, .theme-cmix fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button input + label.label-btn:focus:before, fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button .theme-cmix input + label.label-btn:focus:before, .theme-cmix md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .md-cancel-button:focus:before, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear md-dialog md-dialog-actions .theme-cmix input + .md-cancel-button:focus:before, .theme-cmix fieldset[disabled] .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input + .md-cancel-button:focus:before, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input + .md-cancel-button:focus:before, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .md-cancel-button:focus:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-clear .theme-cmix input + .md-cancel-button:focus:before, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button input + .md-cancel-button:focus:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button .theme-cmix input + .md-cancel-button:focus:before, .theme-cmix md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .md-confirm-button:focus:before, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear md-dialog md-dialog-actions .theme-cmix input + .md-confirm-button:focus:before, .theme-cmix fieldset[disabled] .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input + .md-confirm-button:focus:before, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix input + .md-confirm-button:focus:before, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .md-confirm-button:focus:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-clear .theme-cmix input + .md-confirm-button:focus:before, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button input + .md-confirm-button:focus:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button .theme-cmix input + .md-confirm-button:focus:before, .theme-cmix md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions input.disabled + .md-cancel-button:focus:before, md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions .theme-cmix input.disabled + .md-cancel-button:focus:before, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button input.disabled + .md-cancel-button:focus:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button .theme-cmix input.disabled + .md-cancel-button:focus:before, .theme-cmix md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button input.disabled + .md-cancel-button:focus:before, md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button .theme-cmix input.disabled + .md-cancel-button:focus:before, .theme-cmix md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions input.disabled + .md-confirm-button:focus:before, md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions .theme-cmix input.disabled + .md-confirm-button:focus:before, .theme-cmix md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button input.disabled + .md-confirm-button:focus:before, md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button .theme-cmix input.disabled + .md-confirm-button:focus:before, .theme-cmix md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions input[disabled] + .md-cancel-button:focus:before, md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions .theme-cmix input[disabled] + .md-cancel-button:focus:before, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button input[disabled] + .md-cancel-button:focus:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button .theme-cmix input[disabled] + .md-cancel-button:focus:before, .theme-cmix md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button input[disabled] + .md-cancel-button:focus:before, md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + .md-cancel-button:focus:before, .theme-cmix md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions input[disabled] + .md-confirm-button:focus:before, md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions .theme-cmix input[disabled] + .md-confirm-button:focus:before, .theme-cmix md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button input[disabled] + .md-confirm-button:focus:before, md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button .theme-cmix input[disabled] + .md-confirm-button:focus:before, .theme-cmix md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .md-cancel-button:focus:before, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button md-dialog md-dialog-actions .theme-cmix input + .md-cancel-button:focus:before, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .md-cancel-button:focus:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-button .theme-cmix input + .md-cancel-button:focus:before, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button input + .md-cancel-button:focus:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button .theme-cmix input + .md-cancel-button:focus:before, .theme-cmix md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .md-confirm-button:focus:before, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button md-dialog md-dialog-actions .theme-cmix input + .md-confirm-button:focus:before, .theme-cmix md-dialog md-dialog-actions fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button input + .md-confirm-button:focus:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button .theme-cmix input + .md-confirm-button:focus:before, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .disabled.md-cancel-button:focus:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-cmix .disabled.md-cancel-button:focus:before, .theme-cmix md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .disabled.md-cancel-button:focus:before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix .disabled.md-cancel-button:focus:before, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .disabled.md-confirm-button:focus:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-cmix .disabled.md-confirm-button:focus:before, .theme-cmix md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .disabled.md-confirm-button:focus:before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix .disabled.md-confirm-button:focus:before, .theme-cmix md-dialog .disabled.close-dialog:focus:before, md-dialog .theme-cmix .disabled.close-dialog:focus:before, .theme-cmix md-dialog md-dialog-actions .disabled.md-cancel-button:focus:before, md-dialog md-dialog-actions .theme-cmix .disabled.md-cancel-button:focus:before, .theme-cmix md-dialog md-dialog-actions .clear.disabled.md-confirm-button:focus:before, md-dialog md-dialog-actions .theme-cmix .clear.disabled.md-confirm-button:focus:before, .theme-cmix .colorpicker .disabled.close-colorpicker:focus:before, .colorpicker .theme-cmix .disabled.close-colorpicker:focus:before, .theme-cmix button.clear[disabled]:hover, .theme-cmix label.clear.label-btn[disabled]:hover, .theme-cmix md-autocomplete .md-show-clear-button button[disabled]:hover, md-autocomplete .md-show-clear-button .theme-cmix button[disabled]:hover, .theme-cmix md-autocomplete .md-show-clear-button label.label-btn[disabled]:hover, md-autocomplete .md-show-clear-button .theme-cmix label.label-btn[disabled]:hover, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button[disabled]:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-cmix .md-confirm-button[disabled]:hover, .theme-cmix md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-confirm-button[disabled]:hover, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix .md-confirm-button[disabled]:hover, .theme-cmix md-dialog .close-dialog[disabled]:hover, md-dialog .theme-cmix .close-dialog[disabled]:hover, .theme-cmix md-dialog md-dialog-actions .md-cancel-button[disabled]:hover, md-dialog md-dialog-actions .theme-cmix .md-cancel-button[disabled]:hover, .theme-cmix md-dialog md-dialog-actions .clear.md-confirm-button[disabled]:hover, md-dialog md-dialog-actions .theme-cmix .clear.md-confirm-button[disabled]:hover, .theme-cmix .colorpicker .close-colorpicker[disabled]:hover, .colorpicker .theme-cmix .close-colorpicker[disabled]:hover, .theme-cmix button.clear[disabled]:focus, .theme-cmix label.clear.label-btn[disabled]:focus, .theme-cmix md-autocomplete .md-show-clear-button button[disabled]:focus, md-autocomplete .md-show-clear-button .theme-cmix button[disabled]:focus, .theme-cmix md-autocomplete .md-show-clear-button label.label-btn[disabled]:focus, md-autocomplete .md-show-clear-button .theme-cmix label.label-btn[disabled]:focus, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button[disabled]:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-cmix .md-confirm-button[disabled]:focus, .theme-cmix md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-confirm-button[disabled]:focus, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix .md-confirm-button[disabled]:focus, .theme-cmix md-dialog .close-dialog[disabled]:focus, md-dialog .theme-cmix .close-dialog[disabled]:focus, .theme-cmix md-dialog md-dialog-actions .md-cancel-button[disabled]:focus, md-dialog md-dialog-actions .theme-cmix .md-cancel-button[disabled]:focus, .theme-cmix md-dialog md-dialog-actions .clear.md-confirm-button[disabled]:focus, md-dialog md-dialog-actions .theme-cmix .clear.md-confirm-button[disabled]:focus, .theme-cmix .colorpicker .close-colorpicker[disabled]:focus, .colorpicker .theme-cmix .close-colorpicker[disabled]:focus, .theme-cmix button.clear[disabled]:hover:before, .theme-cmix label.clear.label-btn[disabled]:hover:before, .theme-cmix md-autocomplete .md-show-clear-button button[disabled]:hover:before, md-autocomplete .md-show-clear-button .theme-cmix button[disabled]:hover:before, .theme-cmix md-autocomplete .md-show-clear-button label.label-btn[disabled]:hover:before, md-autocomplete .md-show-clear-button .theme-cmix label.label-btn[disabled]:hover:before, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button[disabled]:hover:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-cmix .md-confirm-button[disabled]:hover:before, .theme-cmix md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-confirm-button[disabled]:hover:before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix .md-confirm-button[disabled]:hover:before, .theme-cmix md-dialog .close-dialog[disabled]:hover:before, md-dialog .theme-cmix .close-dialog[disabled]:hover:before, .theme-cmix md-dialog md-dialog-actions .md-cancel-button[disabled]:hover:before, md-dialog md-dialog-actions .theme-cmix .md-cancel-button[disabled]:hover:before, .theme-cmix md-dialog md-dialog-actions .clear.md-confirm-button[disabled]:hover:before, md-dialog md-dialog-actions .theme-cmix .clear.md-confirm-button[disabled]:hover:before, .theme-cmix .colorpicker .close-colorpicker[disabled]:hover:before, .colorpicker .theme-cmix .close-colorpicker[disabled]:hover:before, .theme-cmix button.clear[disabled]:focus:before, .theme-cmix label.clear.label-btn[disabled]:focus:before, .theme-cmix md-autocomplete .md-show-clear-button button[disabled]:focus:before, md-autocomplete .md-show-clear-button .theme-cmix button[disabled]:focus:before, .theme-cmix md-autocomplete .md-show-clear-button label.label-btn[disabled]:focus:before, md-autocomplete .md-show-clear-button .theme-cmix label.label-btn[disabled]:focus:before, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button[disabled]:focus:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-cmix .md-confirm-button[disabled]:focus:before, .theme-cmix md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-confirm-button[disabled]:focus:before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix .md-confirm-button[disabled]:focus:before, .theme-cmix md-dialog .close-dialog[disabled]:focus:before, md-dialog .theme-cmix .close-dialog[disabled]:focus:before, .theme-cmix md-dialog md-dialog-actions .md-cancel-button[disabled]:focus:before, md-dialog md-dialog-actions .theme-cmix .md-cancel-button[disabled]:focus:before, .theme-cmix md-dialog md-dialog-actions .clear.md-confirm-button[disabled]:focus:before, md-dialog md-dialog-actions .theme-cmix .clear.md-confirm-button[disabled]:focus:before, .theme-cmix .colorpicker .close-colorpicker[disabled]:focus:before, .colorpicker .theme-cmix .close-colorpicker[disabled]:focus:before,
  fieldset[disabled] .theme-cmix button.clear:hover,
  fieldset[disabled] .theme-cmix label.clear.label-btn:hover,
  fieldset[disabled] .theme-cmix md-autocomplete .md-show-clear-button button:hover,
  md-autocomplete .md-show-clear-button fieldset[disabled] .theme-cmix button:hover,
  fieldset[disabled] .theme-cmix md-autocomplete .md-show-clear-button label.label-btn:hover,
  md-autocomplete .md-show-clear-button fieldset[disabled] .theme-cmix label.label-btn:hover,
  fieldset[disabled] .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button:hover,
  md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .theme-cmix .md-confirm-button:hover,
  fieldset[disabled] .theme-cmix md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-confirm-button:hover,
  md-dialog md-dialog-actions md-autocomplete .md-show-clear-button fieldset[disabled] .theme-cmix .md-confirm-button:hover,
  fieldset[disabled] .theme-cmix md-dialog .close-dialog:hover,
  md-dialog fieldset[disabled] .theme-cmix .close-dialog:hover,
  fieldset[disabled] .theme-cmix md-dialog md-dialog-actions .md-cancel-button:hover,
  md-dialog md-dialog-actions fieldset[disabled] .theme-cmix .md-cancel-button:hover,
  fieldset[disabled] .theme-cmix md-dialog md-dialog-actions .clear.md-confirm-button:hover,
  md-dialog md-dialog-actions fieldset[disabled] .theme-cmix .clear.md-confirm-button:hover,
  fieldset[disabled] .theme-cmix .colorpicker .close-colorpicker:hover,
  .colorpicker fieldset[disabled] .theme-cmix .close-colorpicker:hover,
  fieldset[disabled] .theme-cmix button.clear:focus,
  fieldset[disabled] .theme-cmix label.clear.label-btn:focus,
  fieldset[disabled] .theme-cmix md-autocomplete .md-show-clear-button button:focus,
  md-autocomplete .md-show-clear-button fieldset[disabled] .theme-cmix button:focus,
  fieldset[disabled] .theme-cmix md-autocomplete .md-show-clear-button label.label-btn:focus,
  md-autocomplete .md-show-clear-button fieldset[disabled] .theme-cmix label.label-btn:focus,
  fieldset[disabled] .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button:focus,
  md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .theme-cmix .md-confirm-button:focus,
  fieldset[disabled] .theme-cmix md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-confirm-button:focus,
  md-dialog md-dialog-actions md-autocomplete .md-show-clear-button fieldset[disabled] .theme-cmix .md-confirm-button:focus,
  fieldset[disabled] .theme-cmix md-dialog .close-dialog:focus,
  md-dialog fieldset[disabled] .theme-cmix .close-dialog:focus,
  fieldset[disabled] .theme-cmix md-dialog md-dialog-actions .md-cancel-button:focus,
  md-dialog md-dialog-actions fieldset[disabled] .theme-cmix .md-cancel-button:focus,
  fieldset[disabled] .theme-cmix md-dialog md-dialog-actions .clear.md-confirm-button:focus,
  md-dialog md-dialog-actions fieldset[disabled] .theme-cmix .clear.md-confirm-button:focus,
  fieldset[disabled] .theme-cmix .colorpicker .close-colorpicker:focus,
  .colorpicker fieldset[disabled] .theme-cmix .close-colorpicker:focus,
  fieldset[disabled] .theme-cmix button.clear:hover:before,
  fieldset[disabled] .theme-cmix label.clear.label-btn:hover:before,
  fieldset[disabled] .theme-cmix md-autocomplete .md-show-clear-button button:hover:before,
  md-autocomplete .md-show-clear-button fieldset[disabled] .theme-cmix button:hover:before,
  fieldset[disabled] .theme-cmix md-autocomplete .md-show-clear-button label.label-btn:hover:before,
  md-autocomplete .md-show-clear-button fieldset[disabled] .theme-cmix label.label-btn:hover:before,
  fieldset[disabled] .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button:hover:before,
  md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .theme-cmix .md-confirm-button:hover:before,
  fieldset[disabled] .theme-cmix md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-confirm-button:hover:before,
  md-dialog md-dialog-actions md-autocomplete .md-show-clear-button fieldset[disabled] .theme-cmix .md-confirm-button:hover:before,
  fieldset[disabled] .theme-cmix md-dialog .close-dialog:hover:before,
  md-dialog fieldset[disabled] .theme-cmix .close-dialog:hover:before,
  fieldset[disabled] .theme-cmix md-dialog md-dialog-actions .md-cancel-button:hover:before,
  md-dialog md-dialog-actions fieldset[disabled] .theme-cmix .md-cancel-button:hover:before,
  fieldset[disabled] .theme-cmix md-dialog md-dialog-actions .clear.md-confirm-button:hover:before,
  md-dialog md-dialog-actions fieldset[disabled] .theme-cmix .clear.md-confirm-button:hover:before,
  fieldset[disabled] .theme-cmix .colorpicker .close-colorpicker:hover:before,
  .colorpicker fieldset[disabled] .theme-cmix .close-colorpicker:hover:before,
  fieldset[disabled] .theme-cmix button.clear:focus:before,
  fieldset[disabled] .theme-cmix label.clear.label-btn:focus:before,
  fieldset[disabled] .theme-cmix md-autocomplete .md-show-clear-button button:focus:before,
  md-autocomplete .md-show-clear-button fieldset[disabled] .theme-cmix button:focus:before,
  fieldset[disabled] .theme-cmix md-autocomplete .md-show-clear-button label.label-btn:focus:before,
  md-autocomplete .md-show-clear-button fieldset[disabled] .theme-cmix label.label-btn:focus:before,
  fieldset[disabled] .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button:focus:before,
  md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .theme-cmix .md-confirm-button:focus:before,
  fieldset[disabled] .theme-cmix md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-confirm-button:focus:before,
  md-dialog md-dialog-actions md-autocomplete .md-show-clear-button fieldset[disabled] .theme-cmix .md-confirm-button:focus:before,
  fieldset[disabled] .theme-cmix md-dialog .close-dialog:focus:before,
  md-dialog fieldset[disabled] .theme-cmix .close-dialog:focus:before,
  fieldset[disabled] .theme-cmix md-dialog md-dialog-actions .md-cancel-button:focus:before,
  md-dialog md-dialog-actions fieldset[disabled] .theme-cmix .md-cancel-button:focus:before,
  fieldset[disabled] .theme-cmix md-dialog md-dialog-actions .clear.md-confirm-button:focus:before,
  md-dialog md-dialog-actions fieldset[disabled] .theme-cmix .clear.md-confirm-button:focus:before,
  fieldset[disabled] .theme-cmix .colorpicker .close-colorpicker:focus:before,
  .colorpicker fieldset[disabled] .theme-cmix .close-colorpicker:focus:before {
    color: #585863; }
  .theme-cmix button.clear.light, .theme-cmix label.clear.light.label-btn, .theme-cmix md-autocomplete .md-show-clear-button button.light, md-autocomplete .md-show-clear-button .theme-cmix button.light, .theme-cmix md-autocomplete .md-show-clear-button label.light.label-btn, md-autocomplete .md-show-clear-button .theme-cmix label.light.label-btn, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .light.md-confirm-button, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-cmix .light.md-confirm-button, .theme-cmix md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .light.md-confirm-button, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix .light.md-confirm-button, .theme-cmix md-dialog .light.close-dialog, md-dialog .theme-cmix .light.close-dialog, .theme-cmix md-dialog md-dialog-actions .light.md-cancel-button, md-dialog md-dialog-actions .theme-cmix .light.md-cancel-button, .theme-cmix md-dialog md-dialog-actions .clear.light.md-confirm-button, md-dialog md-dialog-actions .theme-cmix .clear.light.md-confirm-button, .theme-cmix .colorpicker .light.close-colorpicker, .colorpicker .theme-cmix .light.close-colorpicker, .theme-cmix button.clear.light:before, .theme-cmix label.clear.light.label-btn:before, .theme-cmix md-autocomplete .md-show-clear-button button.light:before, md-autocomplete .md-show-clear-button .theme-cmix button.light:before, .theme-cmix md-autocomplete .md-show-clear-button label.light.label-btn:before, md-autocomplete .md-show-clear-button .theme-cmix label.light.label-btn:before, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .light.md-confirm-button:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-cmix .light.md-confirm-button:before, .theme-cmix md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .light.md-confirm-button:before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix .light.md-confirm-button:before, .theme-cmix md-dialog .light.close-dialog:before, md-dialog .theme-cmix .light.close-dialog:before, .theme-cmix md-dialog md-dialog-actions .light.md-cancel-button:before, md-dialog md-dialog-actions .theme-cmix .light.md-cancel-button:before, .theme-cmix md-dialog md-dialog-actions .clear.light.md-confirm-button:before, md-dialog md-dialog-actions .theme-cmix .clear.light.md-confirm-button:before, .theme-cmix .colorpicker .light.close-colorpicker:before, .colorpicker .theme-cmix .light.close-colorpicker:before {
    color: #FFFFFF; }
  .theme-cmix button.clear.light:hover, .theme-cmix label.clear.light.label-btn:hover, .theme-cmix md-autocomplete .md-show-clear-button button.light:hover, md-autocomplete .md-show-clear-button .theme-cmix button.light:hover, .theme-cmix md-autocomplete .md-show-clear-button label.light.label-btn:hover, md-autocomplete .md-show-clear-button .theme-cmix label.light.label-btn:hover, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .light.md-confirm-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-cmix .light.md-confirm-button:hover, .theme-cmix md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .light.md-confirm-button:hover, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix .light.md-confirm-button:hover, .theme-cmix md-dialog .light.close-dialog:hover, md-dialog .theme-cmix .light.close-dialog:hover, .theme-cmix md-dialog md-dialog-actions .light.md-cancel-button:hover, md-dialog md-dialog-actions .theme-cmix .light.md-cancel-button:hover, .theme-cmix md-dialog md-dialog-actions .clear.light.md-confirm-button:hover, md-dialog md-dialog-actions .theme-cmix .clear.light.md-confirm-button:hover, .theme-cmix .colorpicker .light.close-colorpicker:hover, .colorpicker .theme-cmix .light.close-colorpicker:hover, .theme-cmix button.clear.light:focus, .theme-cmix label.clear.light.label-btn:focus, .theme-cmix md-autocomplete .md-show-clear-button button.light:focus, md-autocomplete .md-show-clear-button .theme-cmix button.light:focus, .theme-cmix md-autocomplete .md-show-clear-button label.light.label-btn:focus, md-autocomplete .md-show-clear-button .theme-cmix label.light.label-btn:focus, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .light.md-confirm-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-cmix .light.md-confirm-button:focus, .theme-cmix md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .light.md-confirm-button:focus, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix .light.md-confirm-button:focus, .theme-cmix md-dialog .light.close-dialog:focus, md-dialog .theme-cmix .light.close-dialog:focus, .theme-cmix md-dialog md-dialog-actions .light.md-cancel-button:focus, md-dialog md-dialog-actions .theme-cmix .light.md-cancel-button:focus, .theme-cmix md-dialog md-dialog-actions .clear.light.md-confirm-button:focus, md-dialog md-dialog-actions .theme-cmix .clear.light.md-confirm-button:focus, .theme-cmix .colorpicker .light.close-colorpicker:focus, .colorpicker .theme-cmix .light.close-colorpicker:focus, .theme-cmix button.clear.light:hover:before, .theme-cmix label.clear.light.label-btn:hover:before, .theme-cmix md-autocomplete .md-show-clear-button button.light:hover:before, md-autocomplete .md-show-clear-button .theme-cmix button.light:hover:before, .theme-cmix md-autocomplete .md-show-clear-button label.light.label-btn:hover:before, md-autocomplete .md-show-clear-button .theme-cmix label.light.label-btn:hover:before, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .light.md-confirm-button:hover:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-cmix .light.md-confirm-button:hover:before, .theme-cmix md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .light.md-confirm-button:hover:before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix .light.md-confirm-button:hover:before, .theme-cmix md-dialog .light.close-dialog:hover:before, md-dialog .theme-cmix .light.close-dialog:hover:before, .theme-cmix md-dialog md-dialog-actions .light.md-cancel-button:hover:before, md-dialog md-dialog-actions .theme-cmix .light.md-cancel-button:hover:before, .theme-cmix md-dialog md-dialog-actions .clear.light.md-confirm-button:hover:before, md-dialog md-dialog-actions .theme-cmix .clear.light.md-confirm-button:hover:before, .theme-cmix .colorpicker .light.close-colorpicker:hover:before, .colorpicker .theme-cmix .light.close-colorpicker:hover:before, .theme-cmix button.clear.light:focus:before, .theme-cmix label.clear.light.label-btn:focus:before, .theme-cmix md-autocomplete .md-show-clear-button button.light:focus:before, md-autocomplete .md-show-clear-button .theme-cmix button.light:focus:before, .theme-cmix md-autocomplete .md-show-clear-button label.light.label-btn:focus:before, md-autocomplete .md-show-clear-button .theme-cmix label.light.label-btn:focus:before, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .light.md-confirm-button:focus:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-cmix .light.md-confirm-button:focus:before, .theme-cmix md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .light.md-confirm-button:focus:before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix .light.md-confirm-button:focus:before, .theme-cmix md-dialog .light.close-dialog:focus:before, md-dialog .theme-cmix .light.close-dialog:focus:before, .theme-cmix md-dialog md-dialog-actions .light.md-cancel-button:focus:before, md-dialog md-dialog-actions .theme-cmix .light.md-cancel-button:focus:before, .theme-cmix md-dialog md-dialog-actions .clear.light.md-confirm-button:focus:before, md-dialog md-dialog-actions .theme-cmix .clear.light.md-confirm-button:focus:before, .theme-cmix .colorpicker .light.close-colorpicker:focus:before, .colorpicker .theme-cmix .light.close-colorpicker:focus:before {
    color: #DF4E71; }
  .theme-cmix button.clear.light:active, .theme-cmix label.clear.light.label-btn:active, .theme-cmix md-autocomplete .md-show-clear-button button.light:active, md-autocomplete .md-show-clear-button .theme-cmix button.light:active, .theme-cmix md-autocomplete .md-show-clear-button label.light.label-btn:active, md-autocomplete .md-show-clear-button .theme-cmix label.light.label-btn:active, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .light.md-confirm-button:active, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-cmix .light.md-confirm-button:active, .theme-cmix md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .light.md-confirm-button:active, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix .light.md-confirm-button:active, .theme-cmix md-dialog .light.close-dialog:active, md-dialog .theme-cmix .light.close-dialog:active, .theme-cmix md-dialog md-dialog-actions .light.md-cancel-button:active, md-dialog md-dialog-actions .theme-cmix .light.md-cancel-button:active, .theme-cmix md-dialog md-dialog-actions .clear.light.md-confirm-button:active, md-dialog md-dialog-actions .theme-cmix .clear.light.md-confirm-button:active, .theme-cmix .colorpicker .light.close-colorpicker:active, .colorpicker .theme-cmix .light.close-colorpicker:active, .theme-cmix button.clear.light:active:before, .theme-cmix label.clear.light.label-btn:active:before, .theme-cmix md-autocomplete .md-show-clear-button button.light:active:before, md-autocomplete .md-show-clear-button .theme-cmix button.light:active:before, .theme-cmix md-autocomplete .md-show-clear-button label.light.label-btn:active:before, md-autocomplete .md-show-clear-button .theme-cmix label.light.label-btn:active:before, .theme-cmix md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .light.md-confirm-button:active:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-cmix .light.md-confirm-button:active:before, .theme-cmix md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .light.md-confirm-button:active:before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-cmix .light.md-confirm-button:active:before, .theme-cmix md-dialog .light.close-dialog:active:before, md-dialog .theme-cmix .light.close-dialog:active:before, .theme-cmix md-dialog md-dialog-actions .light.md-cancel-button:active:before, md-dialog md-dialog-actions .theme-cmix .light.md-cancel-button:active:before, .theme-cmix md-dialog md-dialog-actions .clear.light.md-confirm-button:active:before, md-dialog md-dialog-actions .theme-cmix .clear.light.md-confirm-button:active:before, .theme-cmix .colorpicker .light.close-colorpicker:active:before, .colorpicker .theme-cmix .light.close-colorpicker:active:before {
    color: #db3860; }
  .theme-marketview button.clear, .theme-marketview label.clear.label-btn, .theme-marketview md-autocomplete .md-show-clear-button button, md-autocomplete .md-show-clear-button .theme-marketview button, .theme-marketview md-autocomplete .md-show-clear-button label.label-btn, md-autocomplete .md-show-clear-button .theme-marketview label.label-btn, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-marketview .md-confirm-button, .theme-marketview md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-confirm-button, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview .md-confirm-button, .theme-marketview md-dialog .close-dialog, md-dialog .theme-marketview .close-dialog, .theme-marketview md-dialog md-dialog-actions .md-cancel-button, md-dialog md-dialog-actions .theme-marketview .md-cancel-button, .theme-marketview md-dialog md-dialog-actions .clear.md-confirm-button, md-dialog md-dialog-actions .theme-marketview .clear.md-confirm-button, .theme-marketview .colorpicker .close-colorpicker, .colorpicker .theme-marketview .close-colorpicker, .theme-marketview button.clear:before, .theme-marketview label.clear.label-btn:before, .theme-marketview md-autocomplete .md-show-clear-button button:before, md-autocomplete .md-show-clear-button .theme-marketview button:before, .theme-marketview md-autocomplete .md-show-clear-button label.label-btn:before, md-autocomplete .md-show-clear-button .theme-marketview label.label-btn:before, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-marketview .md-confirm-button:before, .theme-marketview md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-confirm-button:before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview .md-confirm-button:before, .theme-marketview md-dialog .close-dialog:before, md-dialog .theme-marketview .close-dialog:before, .theme-marketview md-dialog md-dialog-actions .md-cancel-button:before, md-dialog md-dialog-actions .theme-marketview .md-cancel-button:before, .theme-marketview md-dialog md-dialog-actions .clear.md-confirm-button:before, md-dialog md-dialog-actions .theme-marketview .clear.md-confirm-button:before, .theme-marketview .colorpicker .close-colorpicker:before, .colorpicker .theme-marketview .close-colorpicker:before {
    color: #666666; }
  .theme-marketview button.clear:hover, .theme-marketview label.clear.label-btn:hover, .theme-marketview md-autocomplete .md-show-clear-button button:hover, md-autocomplete .md-show-clear-button .theme-marketview button:hover, .theme-marketview md-autocomplete .md-show-clear-button label.label-btn:hover, md-autocomplete .md-show-clear-button .theme-marketview label.label-btn:hover, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-marketview .md-confirm-button:hover, .theme-marketview md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-confirm-button:hover, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview .md-confirm-button:hover, .theme-marketview md-dialog .close-dialog:hover, md-dialog .theme-marketview .close-dialog:hover, .theme-marketview md-dialog md-dialog-actions .md-cancel-button:hover, md-dialog md-dialog-actions .theme-marketview .md-cancel-button:hover, .theme-marketview md-dialog md-dialog-actions .clear.md-confirm-button:hover, md-dialog md-dialog-actions .theme-marketview .clear.md-confirm-button:hover, .theme-marketview .colorpicker .close-colorpicker:hover, .colorpicker .theme-marketview .close-colorpicker:hover, .theme-marketview button.clear:focus, .theme-marketview label.clear.label-btn:focus, .theme-marketview md-autocomplete .md-show-clear-button button:focus, md-autocomplete .md-show-clear-button .theme-marketview button:focus, .theme-marketview md-autocomplete .md-show-clear-button label.label-btn:focus, md-autocomplete .md-show-clear-button .theme-marketview label.label-btn:focus, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-marketview .md-confirm-button:focus, .theme-marketview md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-confirm-button:focus, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview .md-confirm-button:focus, .theme-marketview md-dialog .close-dialog:focus, md-dialog .theme-marketview .close-dialog:focus, .theme-marketview md-dialog md-dialog-actions .md-cancel-button:focus, md-dialog md-dialog-actions .theme-marketview .md-cancel-button:focus, .theme-marketview md-dialog md-dialog-actions .clear.md-confirm-button:focus, md-dialog md-dialog-actions .theme-marketview .clear.md-confirm-button:focus, .theme-marketview .colorpicker .close-colorpicker:focus, .colorpicker .theme-marketview .close-colorpicker:focus, .theme-marketview button.clear:hover:before, .theme-marketview label.clear.label-btn:hover:before, .theme-marketview md-autocomplete .md-show-clear-button button:hover:before, md-autocomplete .md-show-clear-button .theme-marketview button:hover:before, .theme-marketview md-autocomplete .md-show-clear-button label.label-btn:hover:before, md-autocomplete .md-show-clear-button .theme-marketview label.label-btn:hover:before, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button:hover:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-marketview .md-confirm-button:hover:before, .theme-marketview md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-confirm-button:hover:before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview .md-confirm-button:hover:before, .theme-marketview md-dialog .close-dialog:hover:before, md-dialog .theme-marketview .close-dialog:hover:before, .theme-marketview md-dialog md-dialog-actions .md-cancel-button:hover:before, md-dialog md-dialog-actions .theme-marketview .md-cancel-button:hover:before, .theme-marketview md-dialog md-dialog-actions .clear.md-confirm-button:hover:before, md-dialog md-dialog-actions .theme-marketview .clear.md-confirm-button:hover:before, .theme-marketview .colorpicker .close-colorpicker:hover:before, .colorpicker .theme-marketview .close-colorpicker:hover:before, .theme-marketview button.clear:focus:before, .theme-marketview label.clear.label-btn:focus:before, .theme-marketview md-autocomplete .md-show-clear-button button:focus:before, md-autocomplete .md-show-clear-button .theme-marketview button:focus:before, .theme-marketview md-autocomplete .md-show-clear-button label.label-btn:focus:before, md-autocomplete .md-show-clear-button .theme-marketview label.label-btn:focus:before, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button:focus:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-marketview .md-confirm-button:focus:before, .theme-marketview md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-confirm-button:focus:before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview .md-confirm-button:focus:before, .theme-marketview md-dialog .close-dialog:focus:before, md-dialog .theme-marketview .close-dialog:focus:before, .theme-marketview md-dialog md-dialog-actions .md-cancel-button:focus:before, md-dialog md-dialog-actions .theme-marketview .md-cancel-button:focus:before, .theme-marketview md-dialog md-dialog-actions .clear.md-confirm-button:focus:before, md-dialog md-dialog-actions .theme-marketview .clear.md-confirm-button:focus:before, .theme-marketview .colorpicker .close-colorpicker:focus:before, .colorpicker .theme-marketview .close-colorpicker:focus:before {
    color: #DF4E71; }
  .theme-marketview button.clear:active, .theme-marketview label.clear.label-btn:active, .theme-marketview md-autocomplete .md-show-clear-button button:active, md-autocomplete .md-show-clear-button .theme-marketview button:active, .theme-marketview md-autocomplete .md-show-clear-button label.label-btn:active, md-autocomplete .md-show-clear-button .theme-marketview label.label-btn:active, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button:active, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-marketview .md-confirm-button:active, .theme-marketview md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-confirm-button:active, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview .md-confirm-button:active, .theme-marketview md-dialog .close-dialog:active, md-dialog .theme-marketview .close-dialog:active, .theme-marketview md-dialog md-dialog-actions .md-cancel-button:active, md-dialog md-dialog-actions .theme-marketview .md-cancel-button:active, .theme-marketview md-dialog md-dialog-actions .clear.md-confirm-button:active, md-dialog md-dialog-actions .theme-marketview .clear.md-confirm-button:active, .theme-marketview .colorpicker .close-colorpicker:active, .colorpicker .theme-marketview .close-colorpicker:active, .theme-marketview button.clear:active:before, .theme-marketview label.clear.label-btn:active:before, .theme-marketview md-autocomplete .md-show-clear-button button:active:before, md-autocomplete .md-show-clear-button .theme-marketview button:active:before, .theme-marketview md-autocomplete .md-show-clear-button label.label-btn:active:before, md-autocomplete .md-show-clear-button .theme-marketview label.label-btn:active:before, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button:active:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-marketview .md-confirm-button:active:before, .theme-marketview md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-confirm-button:active:before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview .md-confirm-button:active:before, .theme-marketview md-dialog .close-dialog:active:before, md-dialog .theme-marketview .close-dialog:active:before, .theme-marketview md-dialog md-dialog-actions .md-cancel-button:active:before, md-dialog md-dialog-actions .theme-marketview .md-cancel-button:active:before, .theme-marketview md-dialog md-dialog-actions .clear.md-confirm-button:active:before, md-dialog md-dialog-actions .theme-marketview .clear.md-confirm-button:active:before, .theme-marketview .colorpicker .close-colorpicker:active:before, .colorpicker .theme-marketview .close-colorpicker:active:before {
    color: #db3860; }
  .theme-marketview button.clear.disabled:hover, .theme-marketview label.clear.disabled.label-btn:hover, .theme-marketview .input-w-inlay input.disabled + button.clear:hover, .input-w-inlay .theme-marketview input.disabled + button.clear:hover, .theme-marketview .input-w-inlay input.disabled + label.clear.label-btn:hover, .input-w-inlay .theme-marketview input.disabled + label.clear.label-btn:hover, .theme-marketview .input-w-inlay md-autocomplete .md-show-clear-button input.disabled + button:hover, .input-w-inlay md-autocomplete .md-show-clear-button .theme-marketview input.disabled + button:hover, .theme-marketview md-autocomplete .md-show-clear-button .input-w-inlay input.disabled + button:hover, md-autocomplete .md-show-clear-button .input-w-inlay .theme-marketview input.disabled + button:hover, .theme-marketview .input-w-inlay md-autocomplete .md-show-clear-button input.disabled + label.label-btn:hover, .input-w-inlay md-autocomplete .md-show-clear-button .theme-marketview input.disabled + label.label-btn:hover, .theme-marketview md-autocomplete .md-show-clear-button .input-w-inlay input.disabled + label.label-btn:hover, md-autocomplete .md-show-clear-button .input-w-inlay .theme-marketview input.disabled + label.label-btn:hover, .theme-marketview .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input.disabled + .md-cancel-button:hover, .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input.disabled + .md-cancel-button:hover, .theme-marketview .input-w-inlay md-autocomplete .md-show-clear-button md-dialog md-dialog-actions input.disabled + .md-confirm-button:hover, .input-w-inlay md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-marketview input.disabled + .md-confirm-button:hover, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay input.disabled + .md-confirm-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay .theme-marketview input.disabled + .md-confirm-button:hover, .theme-marketview .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input.disabled + .md-confirm-button:hover, .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input.disabled + .md-confirm-button:hover, .theme-marketview md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-inlay input.disabled + .md-confirm-button:hover, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-inlay .theme-marketview input.disabled + .md-confirm-button:hover, .theme-marketview .input-w-inlay md-dialog input.disabled + .close-dialog:hover, .input-w-inlay md-dialog .theme-marketview input.disabled + .close-dialog:hover, .theme-marketview md-dialog .input-w-inlay input.disabled + .close-dialog:hover, md-dialog .input-w-inlay .theme-marketview input.disabled + .close-dialog:hover, .theme-marketview .input-w-inlay md-dialog md-dialog-actions input.disabled + .md-cancel-button:hover, .input-w-inlay md-dialog md-dialog-actions .theme-marketview input.disabled + .md-cancel-button:hover, .theme-marketview md-dialog md-dialog-actions .input-w-inlay input.disabled + .md-cancel-button:hover, md-dialog md-dialog-actions .input-w-inlay .theme-marketview input.disabled + .md-cancel-button:hover, .theme-marketview .input-w-inlay md-dialog md-dialog-actions input.disabled + .clear.md-confirm-button:hover, .input-w-inlay md-dialog md-dialog-actions .theme-marketview input.disabled + .clear.md-confirm-button:hover, .theme-marketview md-dialog md-dialog-actions .input-w-inlay input.disabled + .clear.md-confirm-button:hover, md-dialog md-dialog-actions .input-w-inlay .theme-marketview input.disabled + .clear.md-confirm-button:hover, .theme-marketview .input-w-inlay .colorpicker input.disabled + .close-colorpicker:hover, .input-w-inlay .colorpicker .theme-marketview input.disabled + .close-colorpicker:hover, .theme-marketview .colorpicker .input-w-inlay input.disabled + .close-colorpicker:hover, .colorpicker .input-w-inlay .theme-marketview input.disabled + .close-colorpicker:hover, .theme-marketview .input-w-inlay input[disabled] + button.clear:hover, .input-w-inlay .theme-marketview input[disabled] + button.clear:hover, .theme-marketview .input-w-inlay input[disabled] + label.clear.label-btn:hover, .input-w-inlay .theme-marketview input[disabled] + label.clear.label-btn:hover, .theme-marketview .input-w-inlay md-autocomplete .md-show-clear-button input[disabled] + button:hover, .input-w-inlay md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + button:hover, .theme-marketview md-autocomplete .md-show-clear-button .input-w-inlay input[disabled] + button:hover, md-autocomplete .md-show-clear-button .input-w-inlay .theme-marketview input[disabled] + button:hover, .theme-marketview .input-w-inlay md-autocomplete .md-show-clear-button input[disabled] + label.label-btn:hover, .input-w-inlay md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + label.label-btn:hover, .theme-marketview md-autocomplete .md-show-clear-button .input-w-inlay input[disabled] + label.label-btn:hover, md-autocomplete .md-show-clear-button .input-w-inlay .theme-marketview input[disabled] + label.label-btn:hover, .theme-marketview .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input[disabled] + .md-cancel-button:hover, .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + .md-cancel-button:hover, .theme-marketview .input-w-inlay md-autocomplete .md-show-clear-button md-dialog md-dialog-actions input[disabled] + .md-confirm-button:hover, .input-w-inlay md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-marketview input[disabled] + .md-confirm-button:hover, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay input[disabled] + .md-confirm-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay .theme-marketview input[disabled] + .md-confirm-button:hover, .theme-marketview .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input[disabled] + .md-confirm-button:hover, .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + .md-confirm-button:hover, .theme-marketview md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-inlay input[disabled] + .md-confirm-button:hover, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-inlay .theme-marketview input[disabled] + .md-confirm-button:hover, .theme-marketview .input-w-inlay md-dialog input[disabled] + .close-dialog:hover, .input-w-inlay md-dialog .theme-marketview input[disabled] + .close-dialog:hover, .theme-marketview md-dialog .input-w-inlay input[disabled] + .close-dialog:hover, md-dialog .input-w-inlay .theme-marketview input[disabled] + .close-dialog:hover, .theme-marketview .input-w-inlay md-dialog md-dialog-actions input[disabled] + .md-cancel-button:hover, .input-w-inlay md-dialog md-dialog-actions .theme-marketview input[disabled] + .md-cancel-button:hover, .theme-marketview md-dialog md-dialog-actions .input-w-inlay input[disabled] + .md-cancel-button:hover, md-dialog md-dialog-actions .input-w-inlay .theme-marketview input[disabled] + .md-cancel-button:hover, .theme-marketview .input-w-inlay md-dialog md-dialog-actions input[disabled] + .clear.md-confirm-button:hover, .input-w-inlay md-dialog md-dialog-actions .theme-marketview input[disabled] + .clear.md-confirm-button:hover, .theme-marketview md-dialog md-dialog-actions .input-w-inlay input[disabled] + .clear.md-confirm-button:hover, md-dialog md-dialog-actions .input-w-inlay .theme-marketview input[disabled] + .clear.md-confirm-button:hover, .theme-marketview .input-w-inlay .colorpicker input[disabled] + .close-colorpicker:hover, .input-w-inlay .colorpicker .theme-marketview input[disabled] + .close-colorpicker:hover, .theme-marketview .colorpicker .input-w-inlay input[disabled] + .close-colorpicker:hover, .colorpicker .input-w-inlay .theme-marketview input[disabled] + .close-colorpicker:hover,
  .theme-marketview fieldset[disabled] .input-w-inlay input + button.clear:hover, fieldset[disabled] .input-w-inlay .theme-marketview input + button.clear:hover, .theme-marketview fieldset[disabled] .input-w-inlay input + label.clear.label-btn:hover, fieldset[disabled] .input-w-inlay .theme-marketview input + label.clear.label-btn:hover, .theme-marketview fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button input + button:hover, fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button .theme-marketview input + button:hover, .theme-marketview md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay input + button:hover, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay .theme-marketview input + button:hover, .theme-marketview fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button input + label.label-btn:hover, fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button .theme-marketview input + label.label-btn:hover, .theme-marketview md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay input + label.label-btn:hover, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay .theme-marketview input + label.label-btn:hover, .theme-marketview fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input + .md-cancel-button:hover, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input + .md-cancel-button:hover, .theme-marketview fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button md-dialog md-dialog-actions input + .md-confirm-button:hover, fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-marketview input + .md-confirm-button:hover, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .md-confirm-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay .theme-marketview input + .md-confirm-button:hover, .theme-marketview fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input + .md-confirm-button:hover, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input + .md-confirm-button:hover, .theme-marketview md-dialog md-dialog-actions md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay input + .md-confirm-button:hover, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay .theme-marketview input + .md-confirm-button:hover, .theme-marketview fieldset[disabled] .input-w-inlay md-dialog input + .close-dialog:hover, fieldset[disabled] .input-w-inlay md-dialog .theme-marketview input + .close-dialog:hover, .theme-marketview md-dialog fieldset[disabled] .input-w-inlay input + .close-dialog:hover, md-dialog fieldset[disabled] .input-w-inlay .theme-marketview input + .close-dialog:hover, .theme-marketview fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .md-cancel-button:hover, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions .theme-marketview input + .md-cancel-button:hover, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .md-cancel-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay .theme-marketview input + .md-cancel-button:hover, .theme-marketview fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .clear.md-confirm-button:hover, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions .theme-marketview input + .clear.md-confirm-button:hover, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .clear.md-confirm-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay .theme-marketview input + .clear.md-confirm-button:hover, .theme-marketview fieldset[disabled] .input-w-inlay .colorpicker input + .close-colorpicker:hover, fieldset[disabled] .input-w-inlay .colorpicker .theme-marketview input + .close-colorpicker:hover, .theme-marketview .colorpicker fieldset[disabled] .input-w-inlay input + .close-colorpicker:hover, .colorpicker fieldset[disabled] .input-w-inlay .theme-marketview input + .close-colorpicker:hover, .theme-marketview .input-w-clear input.disabled + button:hover, .input-w-clear .theme-marketview input.disabled + button:hover, .theme-marketview .input-w-clear input.disabled + label.label-btn:hover, .input-w-clear .theme-marketview input.disabled + label.label-btn:hover, .theme-marketview .input-w-clear md-dialog md-dialog-actions input.disabled + .md-cancel-button:hover, .input-w-clear md-dialog md-dialog-actions .theme-marketview input.disabled + .md-cancel-button:hover, .theme-marketview md-dialog md-dialog-actions .input-w-clear input.disabled + .md-cancel-button:hover, md-dialog md-dialog-actions .input-w-clear .theme-marketview input.disabled + .md-cancel-button:hover, .theme-marketview .input-w-clear md-dialog md-dialog-actions input.disabled + .md-confirm-button:hover, .input-w-clear md-dialog md-dialog-actions .theme-marketview input.disabled + .md-confirm-button:hover, .theme-marketview md-dialog md-dialog-actions .input-w-clear input.disabled + .md-confirm-button:hover, md-dialog md-dialog-actions .input-w-clear .theme-marketview input.disabled + .md-confirm-button:hover, .theme-marketview .input-w-clear input[disabled] + button:hover, .input-w-clear .theme-marketview input[disabled] + button:hover, .theme-marketview .input-w-clear input[disabled] + label.label-btn:hover, .input-w-clear .theme-marketview input[disabled] + label.label-btn:hover, .theme-marketview .input-w-clear md-dialog md-dialog-actions input[disabled] + .md-cancel-button:hover, .input-w-clear md-dialog md-dialog-actions .theme-marketview input[disabled] + .md-cancel-button:hover, .theme-marketview md-dialog md-dialog-actions .input-w-clear input[disabled] + .md-cancel-button:hover, md-dialog md-dialog-actions .input-w-clear .theme-marketview input[disabled] + .md-cancel-button:hover, .theme-marketview .input-w-clear md-dialog md-dialog-actions input[disabled] + .md-confirm-button:hover, .input-w-clear md-dialog md-dialog-actions .theme-marketview input[disabled] + .md-confirm-button:hover, .theme-marketview md-dialog md-dialog-actions .input-w-clear input[disabled] + .md-confirm-button:hover, md-dialog md-dialog-actions .input-w-clear .theme-marketview input[disabled] + .md-confirm-button:hover,
  .theme-marketview fieldset[disabled] .input-w-clear input + button:hover, fieldset[disabled] .input-w-clear .theme-marketview input + button:hover, .theme-marketview fieldset[disabled] .input-w-clear input + label.label-btn:hover, fieldset[disabled] .input-w-clear .theme-marketview input + label.label-btn:hover, .theme-marketview fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .md-cancel-button:hover, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions .theme-marketview input + .md-cancel-button:hover, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .md-cancel-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear .theme-marketview input + .md-cancel-button:hover, .theme-marketview fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .md-confirm-button:hover, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions .theme-marketview input + .md-confirm-button:hover, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .md-confirm-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear .theme-marketview input + .md-confirm-button:hover, .theme-marketview .input-w-button input.disabled + button.clear:hover, .input-w-button .theme-marketview input.disabled + button.clear:hover, .theme-marketview .input-w-button input.disabled + label.clear.label-btn:hover, .input-w-button .theme-marketview input.disabled + label.clear.label-btn:hover, .theme-marketview .input-w-button md-autocomplete .md-show-clear-button input.disabled + button:hover, .input-w-button md-autocomplete .md-show-clear-button .theme-marketview input.disabled + button:hover, .theme-marketview md-autocomplete .md-show-clear-button .input-w-button input.disabled + button:hover, md-autocomplete .md-show-clear-button .input-w-button .theme-marketview input.disabled + button:hover, .theme-marketview .input-w-button md-autocomplete .md-show-clear-button input.disabled + label.label-btn:hover, .input-w-button md-autocomplete .md-show-clear-button .theme-marketview input.disabled + label.label-btn:hover, .theme-marketview md-autocomplete .md-show-clear-button .input-w-button input.disabled + label.label-btn:hover, md-autocomplete .md-show-clear-button .input-w-button .theme-marketview input.disabled + label.label-btn:hover, .theme-marketview .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input.disabled + .md-cancel-button:hover, .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input.disabled + .md-cancel-button:hover, .theme-marketview .input-w-button md-autocomplete .md-show-clear-button md-dialog md-dialog-actions input.disabled + .md-confirm-button:hover, .input-w-button md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-marketview input.disabled + .md-confirm-button:hover, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button input.disabled + .md-confirm-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button .theme-marketview input.disabled + .md-confirm-button:hover, .theme-marketview .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input.disabled + .md-confirm-button:hover, .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input.disabled + .md-confirm-button:hover, .theme-marketview md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-button input.disabled + .md-confirm-button:hover, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-button .theme-marketview input.disabled + .md-confirm-button:hover, .theme-marketview .input-w-button md-dialog input.disabled + .close-dialog:hover, .input-w-button md-dialog .theme-marketview input.disabled + .close-dialog:hover, .theme-marketview md-dialog .input-w-button input.disabled + .close-dialog:hover, md-dialog .input-w-button .theme-marketview input.disabled + .close-dialog:hover, .theme-marketview .input-w-button md-dialog md-dialog-actions input.disabled + .md-cancel-button:hover, .input-w-button md-dialog md-dialog-actions .theme-marketview input.disabled + .md-cancel-button:hover, .theme-marketview md-dialog md-dialog-actions .input-w-button input.disabled + .md-cancel-button:hover, md-dialog md-dialog-actions .input-w-button .theme-marketview input.disabled + .md-cancel-button:hover, .theme-marketview .input-w-button md-dialog md-dialog-actions input.disabled + .clear.md-confirm-button:hover, .input-w-button md-dialog md-dialog-actions .theme-marketview input.disabled + .clear.md-confirm-button:hover, .theme-marketview md-dialog md-dialog-actions .input-w-button input.disabled + .clear.md-confirm-button:hover, md-dialog md-dialog-actions .input-w-button .theme-marketview input.disabled + .clear.md-confirm-button:hover, .theme-marketview .input-w-button .colorpicker input.disabled + .close-colorpicker:hover, .input-w-button .colorpicker .theme-marketview input.disabled + .close-colorpicker:hover, .theme-marketview .colorpicker .input-w-button input.disabled + .close-colorpicker:hover, .colorpicker .input-w-button .theme-marketview input.disabled + .close-colorpicker:hover, .theme-marketview .input-w-button input[disabled] + button.clear:hover, .input-w-button .theme-marketview input[disabled] + button.clear:hover, .theme-marketview .input-w-button input[disabled] + label.clear.label-btn:hover, .input-w-button .theme-marketview input[disabled] + label.clear.label-btn:hover, .theme-marketview .input-w-button md-autocomplete .md-show-clear-button input[disabled] + button:hover, .input-w-button md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + button:hover, .theme-marketview md-autocomplete .md-show-clear-button .input-w-button input[disabled] + button:hover, md-autocomplete .md-show-clear-button .input-w-button .theme-marketview input[disabled] + button:hover, .theme-marketview .input-w-button md-autocomplete .md-show-clear-button input[disabled] + label.label-btn:hover, .input-w-button md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + label.label-btn:hover, .theme-marketview md-autocomplete .md-show-clear-button .input-w-button input[disabled] + label.label-btn:hover, md-autocomplete .md-show-clear-button .input-w-button .theme-marketview input[disabled] + label.label-btn:hover, .theme-marketview .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input[disabled] + .md-cancel-button:hover, .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + .md-cancel-button:hover, .theme-marketview .input-w-button md-autocomplete .md-show-clear-button md-dialog md-dialog-actions input[disabled] + .md-confirm-button:hover, .input-w-button md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-marketview input[disabled] + .md-confirm-button:hover, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button input[disabled] + .md-confirm-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button .theme-marketview input[disabled] + .md-confirm-button:hover, .theme-marketview .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input[disabled] + .md-confirm-button:hover, .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + .md-confirm-button:hover, .theme-marketview md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-button input[disabled] + .md-confirm-button:hover, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-button .theme-marketview input[disabled] + .md-confirm-button:hover, .theme-marketview .input-w-button md-dialog input[disabled] + .close-dialog:hover, .input-w-button md-dialog .theme-marketview input[disabled] + .close-dialog:hover, .theme-marketview md-dialog .input-w-button input[disabled] + .close-dialog:hover, md-dialog .input-w-button .theme-marketview input[disabled] + .close-dialog:hover, .theme-marketview .input-w-button md-dialog md-dialog-actions input[disabled] + .md-cancel-button:hover, .input-w-button md-dialog md-dialog-actions .theme-marketview input[disabled] + .md-cancel-button:hover, .theme-marketview md-dialog md-dialog-actions .input-w-button input[disabled] + .md-cancel-button:hover, md-dialog md-dialog-actions .input-w-button .theme-marketview input[disabled] + .md-cancel-button:hover, .theme-marketview .input-w-button md-dialog md-dialog-actions input[disabled] + .clear.md-confirm-button:hover, .input-w-button md-dialog md-dialog-actions .theme-marketview input[disabled] + .clear.md-confirm-button:hover, .theme-marketview md-dialog md-dialog-actions .input-w-button input[disabled] + .clear.md-confirm-button:hover, md-dialog md-dialog-actions .input-w-button .theme-marketview input[disabled] + .clear.md-confirm-button:hover, .theme-marketview .input-w-button .colorpicker input[disabled] + .close-colorpicker:hover, .input-w-button .colorpicker .theme-marketview input[disabled] + .close-colorpicker:hover, .theme-marketview .colorpicker .input-w-button input[disabled] + .close-colorpicker:hover, .colorpicker .input-w-button .theme-marketview input[disabled] + .close-colorpicker:hover,
  .theme-marketview fieldset[disabled] .input-w-button input + button.clear:hover, fieldset[disabled] .input-w-button .theme-marketview input + button.clear:hover, .theme-marketview fieldset[disabled] .input-w-button input + label.clear.label-btn:hover, fieldset[disabled] .input-w-button .theme-marketview input + label.clear.label-btn:hover, .theme-marketview fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button input + button:hover, fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button .theme-marketview input + button:hover, .theme-marketview md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button input + button:hover, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button .theme-marketview input + button:hover, .theme-marketview fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button input + label.label-btn:hover, fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button .theme-marketview input + label.label-btn:hover, .theme-marketview md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button input + label.label-btn:hover, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button .theme-marketview input + label.label-btn:hover, .theme-marketview fieldset[disabled] .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input + .md-cancel-button:hover, fieldset[disabled] .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input + .md-cancel-button:hover, .theme-marketview fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button md-dialog md-dialog-actions input + .md-confirm-button:hover, fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-marketview input + .md-confirm-button:hover, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .md-confirm-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-button .theme-marketview input + .md-confirm-button:hover, .theme-marketview fieldset[disabled] .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input + .md-confirm-button:hover, fieldset[disabled] .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input + .md-confirm-button:hover, .theme-marketview md-dialog md-dialog-actions md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button input + .md-confirm-button:hover, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button .theme-marketview input + .md-confirm-button:hover, .theme-marketview fieldset[disabled] .input-w-button md-dialog input + .close-dialog:hover, fieldset[disabled] .input-w-button md-dialog .theme-marketview input + .close-dialog:hover, .theme-marketview md-dialog fieldset[disabled] .input-w-button input + .close-dialog:hover, md-dialog fieldset[disabled] .input-w-button .theme-marketview input + .close-dialog:hover, .theme-marketview fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .md-cancel-button:hover, fieldset[disabled] .input-w-button md-dialog md-dialog-actions .theme-marketview input + .md-cancel-button:hover, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .md-cancel-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-button .theme-marketview input + .md-cancel-button:hover, .theme-marketview fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .clear.md-confirm-button:hover, fieldset[disabled] .input-w-button md-dialog md-dialog-actions .theme-marketview input + .clear.md-confirm-button:hover, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .clear.md-confirm-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-button .theme-marketview input + .clear.md-confirm-button:hover, .theme-marketview fieldset[disabled] .input-w-button .colorpicker input + .close-colorpicker:hover, fieldset[disabled] .input-w-button .colorpicker .theme-marketview input + .close-colorpicker:hover, .theme-marketview .colorpicker fieldset[disabled] .input-w-button input + .close-colorpicker:hover, .colorpicker fieldset[disabled] .input-w-button .theme-marketview input + .close-colorpicker:hover, .theme-marketview md-autocomplete .md-show-clear-button button.disabled:hover, md-autocomplete .md-show-clear-button .theme-marketview button.disabled:hover, .theme-marketview md-autocomplete .md-show-clear-button label.disabled.label-btn:hover, md-autocomplete .md-show-clear-button .theme-marketview label.disabled.label-btn:hover, .theme-marketview md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions input.disabled + .md-cancel-button:hover, md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions .theme-marketview input.disabled + .md-cancel-button:hover, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay input.disabled + .md-cancel-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay .theme-marketview input.disabled + .md-cancel-button:hover, .theme-marketview md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button input.disabled + .md-cancel-button:hover, md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button .theme-marketview input.disabled + .md-cancel-button:hover, .theme-marketview md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions input.disabled + .md-confirm-button:hover, md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions .theme-marketview input.disabled + .md-confirm-button:hover, .theme-marketview md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button input.disabled + .md-confirm-button:hover, md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button .theme-marketview input.disabled + .md-confirm-button:hover, .theme-marketview md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions input[disabled] + .md-cancel-button:hover, md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions .theme-marketview input[disabled] + .md-cancel-button:hover, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay input[disabled] + .md-cancel-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay .theme-marketview input[disabled] + .md-cancel-button:hover, .theme-marketview md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button input[disabled] + .md-cancel-button:hover, md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + .md-cancel-button:hover, .theme-marketview md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions input[disabled] + .md-confirm-button:hover, md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions .theme-marketview input[disabled] + .md-confirm-button:hover, .theme-marketview md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button input[disabled] + .md-confirm-button:hover, md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + .md-confirm-button:hover, .theme-marketview md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .md-cancel-button:hover, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions .theme-marketview input + .md-cancel-button:hover, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .md-cancel-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay .theme-marketview input + .md-cancel-button:hover, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button input + .md-cancel-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button .theme-marketview input + .md-cancel-button:hover, .theme-marketview md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .md-confirm-button:hover, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions .theme-marketview input + .md-confirm-button:hover, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button input + .md-confirm-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button .theme-marketview input + .md-confirm-button:hover, .theme-marketview md-autocomplete .md-show-clear-button .input-w-clear input.disabled + button:hover, md-autocomplete .md-show-clear-button .input-w-clear .theme-marketview input.disabled + button:hover, .theme-marketview .input-w-clear md-autocomplete .md-show-clear-button input.disabled + button:hover, .input-w-clear md-autocomplete .md-show-clear-button .theme-marketview input.disabled + button:hover, .theme-marketview md-autocomplete .md-show-clear-button .input-w-clear input.disabled + label.label-btn:hover, md-autocomplete .md-show-clear-button .input-w-clear .theme-marketview input.disabled + label.label-btn:hover, .theme-marketview .input-w-clear md-autocomplete .md-show-clear-button input.disabled + label.label-btn:hover, .input-w-clear md-autocomplete .md-show-clear-button .theme-marketview input.disabled + label.label-btn:hover, .theme-marketview md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions input.disabled + .md-cancel-button:hover, md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions .theme-marketview input.disabled + .md-cancel-button:hover, .theme-marketview .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input.disabled + .md-cancel-button:hover, .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input.disabled + .md-cancel-button:hover, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear input.disabled + .md-cancel-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear .theme-marketview input.disabled + .md-cancel-button:hover, .theme-marketview md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button input.disabled + .md-cancel-button:hover, md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button .theme-marketview input.disabled + .md-cancel-button:hover, .theme-marketview md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions input.disabled + .md-confirm-button:hover, md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions .theme-marketview input.disabled + .md-confirm-button:hover, .theme-marketview .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input.disabled + .md-confirm-button:hover, .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input.disabled + .md-confirm-button:hover, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear input.disabled + .md-confirm-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear .theme-marketview input.disabled + .md-confirm-button:hover, .theme-marketview md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button input.disabled + .md-confirm-button:hover, md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button .theme-marketview input.disabled + .md-confirm-button:hover, .theme-marketview md-autocomplete .md-show-clear-button .input-w-clear input[disabled] + button:hover, md-autocomplete .md-show-clear-button .input-w-clear .theme-marketview input[disabled] + button:hover, .theme-marketview .input-w-clear md-autocomplete .md-show-clear-button input[disabled] + button:hover, .input-w-clear md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + button:hover, .theme-marketview md-autocomplete .md-show-clear-button .input-w-clear input[disabled] + label.label-btn:hover, md-autocomplete .md-show-clear-button .input-w-clear .theme-marketview input[disabled] + label.label-btn:hover, .theme-marketview .input-w-clear md-autocomplete .md-show-clear-button input[disabled] + label.label-btn:hover, .input-w-clear md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + label.label-btn:hover, .theme-marketview md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions input[disabled] + .md-cancel-button:hover, md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions .theme-marketview input[disabled] + .md-cancel-button:hover, .theme-marketview .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input[disabled] + .md-cancel-button:hover, .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + .md-cancel-button:hover, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear input[disabled] + .md-cancel-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear .theme-marketview input[disabled] + .md-cancel-button:hover, .theme-marketview md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button input[disabled] + .md-cancel-button:hover, md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + .md-cancel-button:hover, .theme-marketview md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions input[disabled] + .md-confirm-button:hover, md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions .theme-marketview input[disabled] + .md-confirm-button:hover, .theme-marketview .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input[disabled] + .md-confirm-button:hover, .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + .md-confirm-button:hover, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear input[disabled] + .md-confirm-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear .theme-marketview input[disabled] + .md-confirm-button:hover, .theme-marketview md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button input[disabled] + .md-confirm-button:hover, md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + .md-confirm-button:hover,
  .theme-marketview md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear input + button:hover, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear .theme-marketview input + button:hover, .theme-marketview fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button input + button:hover, fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button .theme-marketview input + button:hover, .theme-marketview md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear input + label.label-btn:hover, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear .theme-marketview input + label.label-btn:hover, .theme-marketview fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button input + label.label-btn:hover, fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button .theme-marketview input + label.label-btn:hover, .theme-marketview md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .md-cancel-button:hover, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear md-dialog md-dialog-actions .theme-marketview input + .md-cancel-button:hover, .theme-marketview fieldset[disabled] .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input + .md-cancel-button:hover, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input + .md-cancel-button:hover, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .md-cancel-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-clear .theme-marketview input + .md-cancel-button:hover, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button input + .md-cancel-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button .theme-marketview input + .md-cancel-button:hover, .theme-marketview md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .md-confirm-button:hover, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear md-dialog md-dialog-actions .theme-marketview input + .md-confirm-button:hover, .theme-marketview fieldset[disabled] .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input + .md-confirm-button:hover, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input + .md-confirm-button:hover, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .md-confirm-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-clear .theme-marketview input + .md-confirm-button:hover, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button input + .md-confirm-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button .theme-marketview input + .md-confirm-button:hover, .theme-marketview md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions input.disabled + .md-cancel-button:hover, md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions .theme-marketview input.disabled + .md-cancel-button:hover, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button input.disabled + .md-cancel-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button .theme-marketview input.disabled + .md-cancel-button:hover, .theme-marketview md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button input.disabled + .md-cancel-button:hover, md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button .theme-marketview input.disabled + .md-cancel-button:hover, .theme-marketview md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions input.disabled + .md-confirm-button:hover, md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions .theme-marketview input.disabled + .md-confirm-button:hover, .theme-marketview md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button input.disabled + .md-confirm-button:hover, md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button .theme-marketview input.disabled + .md-confirm-button:hover, .theme-marketview md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions input[disabled] + .md-cancel-button:hover, md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions .theme-marketview input[disabled] + .md-cancel-button:hover, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button input[disabled] + .md-cancel-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button .theme-marketview input[disabled] + .md-cancel-button:hover, .theme-marketview md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button input[disabled] + .md-cancel-button:hover, md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + .md-cancel-button:hover, .theme-marketview md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions input[disabled] + .md-confirm-button:hover, md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions .theme-marketview input[disabled] + .md-confirm-button:hover, .theme-marketview md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button input[disabled] + .md-confirm-button:hover, md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + .md-confirm-button:hover, .theme-marketview md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .md-cancel-button:hover, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button md-dialog md-dialog-actions .theme-marketview input + .md-cancel-button:hover, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .md-cancel-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-button .theme-marketview input + .md-cancel-button:hover, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button input + .md-cancel-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button .theme-marketview input + .md-cancel-button:hover, .theme-marketview md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .md-confirm-button:hover, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button md-dialog md-dialog-actions .theme-marketview input + .md-confirm-button:hover, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button input + .md-confirm-button:hover, md-dialog md-dialog-actions fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button .theme-marketview input + .md-confirm-button:hover, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .disabled.md-cancel-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-marketview .disabled.md-cancel-button:hover, .theme-marketview md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .disabled.md-cancel-button:hover, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview .disabled.md-cancel-button:hover, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .disabled.md-confirm-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-marketview .disabled.md-confirm-button:hover, .theme-marketview md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .disabled.md-confirm-button:hover, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview .disabled.md-confirm-button:hover, .theme-marketview md-dialog .disabled.close-dialog:hover, md-dialog .theme-marketview .disabled.close-dialog:hover, .theme-marketview md-dialog md-dialog-actions .disabled.md-cancel-button:hover, md-dialog md-dialog-actions .theme-marketview .disabled.md-cancel-button:hover, .theme-marketview md-dialog md-dialog-actions .clear.disabled.md-confirm-button:hover, md-dialog md-dialog-actions .theme-marketview .clear.disabled.md-confirm-button:hover, .theme-marketview .colorpicker .disabled.close-colorpicker:hover, .colorpicker .theme-marketview .disabled.close-colorpicker:hover, .theme-marketview button.clear.disabled:focus, .theme-marketview label.clear.disabled.label-btn:focus, .theme-marketview .input-w-inlay input.disabled + button.clear:focus, .input-w-inlay .theme-marketview input.disabled + button.clear:focus, .theme-marketview .input-w-inlay input.disabled + label.clear.label-btn:focus, .input-w-inlay .theme-marketview input.disabled + label.clear.label-btn:focus, .theme-marketview .input-w-inlay md-autocomplete .md-show-clear-button input.disabled + button:focus, .input-w-inlay md-autocomplete .md-show-clear-button .theme-marketview input.disabled + button:focus, .theme-marketview md-autocomplete .md-show-clear-button .input-w-inlay input.disabled + button:focus, md-autocomplete .md-show-clear-button .input-w-inlay .theme-marketview input.disabled + button:focus, .theme-marketview .input-w-inlay md-autocomplete .md-show-clear-button input.disabled + label.label-btn:focus, .input-w-inlay md-autocomplete .md-show-clear-button .theme-marketview input.disabled + label.label-btn:focus, .theme-marketview md-autocomplete .md-show-clear-button .input-w-inlay input.disabled + label.label-btn:focus, md-autocomplete .md-show-clear-button .input-w-inlay .theme-marketview input.disabled + label.label-btn:focus, .theme-marketview .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input.disabled + .md-cancel-button:focus, .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input.disabled + .md-cancel-button:focus, .theme-marketview .input-w-inlay md-autocomplete .md-show-clear-button md-dialog md-dialog-actions input.disabled + .md-confirm-button:focus, .input-w-inlay md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-marketview input.disabled + .md-confirm-button:focus, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay input.disabled + .md-confirm-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay .theme-marketview input.disabled + .md-confirm-button:focus, .theme-marketview .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input.disabled + .md-confirm-button:focus, .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input.disabled + .md-confirm-button:focus, .theme-marketview md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-inlay input.disabled + .md-confirm-button:focus, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-inlay .theme-marketview input.disabled + .md-confirm-button:focus, .theme-marketview .input-w-inlay md-dialog input.disabled + .close-dialog:focus, .input-w-inlay md-dialog .theme-marketview input.disabled + .close-dialog:focus, .theme-marketview md-dialog .input-w-inlay input.disabled + .close-dialog:focus, md-dialog .input-w-inlay .theme-marketview input.disabled + .close-dialog:focus, .theme-marketview .input-w-inlay md-dialog md-dialog-actions input.disabled + .md-cancel-button:focus, .input-w-inlay md-dialog md-dialog-actions .theme-marketview input.disabled + .md-cancel-button:focus, .theme-marketview md-dialog md-dialog-actions .input-w-inlay input.disabled + .md-cancel-button:focus, md-dialog md-dialog-actions .input-w-inlay .theme-marketview input.disabled + .md-cancel-button:focus, .theme-marketview .input-w-inlay md-dialog md-dialog-actions input.disabled + .clear.md-confirm-button:focus, .input-w-inlay md-dialog md-dialog-actions .theme-marketview input.disabled + .clear.md-confirm-button:focus, .theme-marketview md-dialog md-dialog-actions .input-w-inlay input.disabled + .clear.md-confirm-button:focus, md-dialog md-dialog-actions .input-w-inlay .theme-marketview input.disabled + .clear.md-confirm-button:focus, .theme-marketview .input-w-inlay .colorpicker input.disabled + .close-colorpicker:focus, .input-w-inlay .colorpicker .theme-marketview input.disabled + .close-colorpicker:focus, .theme-marketview .colorpicker .input-w-inlay input.disabled + .close-colorpicker:focus, .colorpicker .input-w-inlay .theme-marketview input.disabled + .close-colorpicker:focus, .theme-marketview .input-w-inlay input[disabled] + button.clear:focus, .input-w-inlay .theme-marketview input[disabled] + button.clear:focus, .theme-marketview .input-w-inlay input[disabled] + label.clear.label-btn:focus, .input-w-inlay .theme-marketview input[disabled] + label.clear.label-btn:focus, .theme-marketview .input-w-inlay md-autocomplete .md-show-clear-button input[disabled] + button:focus, .input-w-inlay md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + button:focus, .theme-marketview md-autocomplete .md-show-clear-button .input-w-inlay input[disabled] + button:focus, md-autocomplete .md-show-clear-button .input-w-inlay .theme-marketview input[disabled] + button:focus, .theme-marketview .input-w-inlay md-autocomplete .md-show-clear-button input[disabled] + label.label-btn:focus, .input-w-inlay md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + label.label-btn:focus, .theme-marketview md-autocomplete .md-show-clear-button .input-w-inlay input[disabled] + label.label-btn:focus, md-autocomplete .md-show-clear-button .input-w-inlay .theme-marketview input[disabled] + label.label-btn:focus, .theme-marketview .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input[disabled] + .md-cancel-button:focus, .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + .md-cancel-button:focus, .theme-marketview .input-w-inlay md-autocomplete .md-show-clear-button md-dialog md-dialog-actions input[disabled] + .md-confirm-button:focus, .input-w-inlay md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-marketview input[disabled] + .md-confirm-button:focus, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay input[disabled] + .md-confirm-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay .theme-marketview input[disabled] + .md-confirm-button:focus, .theme-marketview .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input[disabled] + .md-confirm-button:focus, .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + .md-confirm-button:focus, .theme-marketview md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-inlay input[disabled] + .md-confirm-button:focus, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-inlay .theme-marketview input[disabled] + .md-confirm-button:focus, .theme-marketview .input-w-inlay md-dialog input[disabled] + .close-dialog:focus, .input-w-inlay md-dialog .theme-marketview input[disabled] + .close-dialog:focus, .theme-marketview md-dialog .input-w-inlay input[disabled] + .close-dialog:focus, md-dialog .input-w-inlay .theme-marketview input[disabled] + .close-dialog:focus, .theme-marketview .input-w-inlay md-dialog md-dialog-actions input[disabled] + .md-cancel-button:focus, .input-w-inlay md-dialog md-dialog-actions .theme-marketview input[disabled] + .md-cancel-button:focus, .theme-marketview md-dialog md-dialog-actions .input-w-inlay input[disabled] + .md-cancel-button:focus, md-dialog md-dialog-actions .input-w-inlay .theme-marketview input[disabled] + .md-cancel-button:focus, .theme-marketview .input-w-inlay md-dialog md-dialog-actions input[disabled] + .clear.md-confirm-button:focus, .input-w-inlay md-dialog md-dialog-actions .theme-marketview input[disabled] + .clear.md-confirm-button:focus, .theme-marketview md-dialog md-dialog-actions .input-w-inlay input[disabled] + .clear.md-confirm-button:focus, md-dialog md-dialog-actions .input-w-inlay .theme-marketview input[disabled] + .clear.md-confirm-button:focus, .theme-marketview .input-w-inlay .colorpicker input[disabled] + .close-colorpicker:focus, .input-w-inlay .colorpicker .theme-marketview input[disabled] + .close-colorpicker:focus, .theme-marketview .colorpicker .input-w-inlay input[disabled] + .close-colorpicker:focus, .colorpicker .input-w-inlay .theme-marketview input[disabled] + .close-colorpicker:focus,
  .theme-marketview fieldset[disabled] .input-w-inlay input + button.clear:focus, fieldset[disabled] .input-w-inlay .theme-marketview input + button.clear:focus, .theme-marketview fieldset[disabled] .input-w-inlay input + label.clear.label-btn:focus, fieldset[disabled] .input-w-inlay .theme-marketview input + label.clear.label-btn:focus, .theme-marketview fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button input + button:focus, fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button .theme-marketview input + button:focus, .theme-marketview md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay input + button:focus, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay .theme-marketview input + button:focus, .theme-marketview fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button input + label.label-btn:focus, fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button .theme-marketview input + label.label-btn:focus, .theme-marketview md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay input + label.label-btn:focus, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay .theme-marketview input + label.label-btn:focus, .theme-marketview fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input + .md-cancel-button:focus, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input + .md-cancel-button:focus, .theme-marketview fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button md-dialog md-dialog-actions input + .md-confirm-button:focus, fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-marketview input + .md-confirm-button:focus, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .md-confirm-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay .theme-marketview input + .md-confirm-button:focus, .theme-marketview fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input + .md-confirm-button:focus, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input + .md-confirm-button:focus, .theme-marketview md-dialog md-dialog-actions md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay input + .md-confirm-button:focus, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay .theme-marketview input + .md-confirm-button:focus, .theme-marketview fieldset[disabled] .input-w-inlay md-dialog input + .close-dialog:focus, fieldset[disabled] .input-w-inlay md-dialog .theme-marketview input + .close-dialog:focus, .theme-marketview md-dialog fieldset[disabled] .input-w-inlay input + .close-dialog:focus, md-dialog fieldset[disabled] .input-w-inlay .theme-marketview input + .close-dialog:focus, .theme-marketview fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .md-cancel-button:focus, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions .theme-marketview input + .md-cancel-button:focus, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .md-cancel-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay .theme-marketview input + .md-cancel-button:focus, .theme-marketview fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .clear.md-confirm-button:focus, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions .theme-marketview input + .clear.md-confirm-button:focus, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .clear.md-confirm-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay .theme-marketview input + .clear.md-confirm-button:focus, .theme-marketview fieldset[disabled] .input-w-inlay .colorpicker input + .close-colorpicker:focus, fieldset[disabled] .input-w-inlay .colorpicker .theme-marketview input + .close-colorpicker:focus, .theme-marketview .colorpicker fieldset[disabled] .input-w-inlay input + .close-colorpicker:focus, .colorpicker fieldset[disabled] .input-w-inlay .theme-marketview input + .close-colorpicker:focus, .theme-marketview .input-w-clear input.disabled + button:focus, .input-w-clear .theme-marketview input.disabled + button:focus, .theme-marketview .input-w-clear input.disabled + label.label-btn:focus, .input-w-clear .theme-marketview input.disabled + label.label-btn:focus, .theme-marketview .input-w-clear md-dialog md-dialog-actions input.disabled + .md-cancel-button:focus, .input-w-clear md-dialog md-dialog-actions .theme-marketview input.disabled + .md-cancel-button:focus, .theme-marketview md-dialog md-dialog-actions .input-w-clear input.disabled + .md-cancel-button:focus, md-dialog md-dialog-actions .input-w-clear .theme-marketview input.disabled + .md-cancel-button:focus, .theme-marketview .input-w-clear md-dialog md-dialog-actions input.disabled + .md-confirm-button:focus, .input-w-clear md-dialog md-dialog-actions .theme-marketview input.disabled + .md-confirm-button:focus, .theme-marketview md-dialog md-dialog-actions .input-w-clear input.disabled + .md-confirm-button:focus, md-dialog md-dialog-actions .input-w-clear .theme-marketview input.disabled + .md-confirm-button:focus, .theme-marketview .input-w-clear input[disabled] + button:focus, .input-w-clear .theme-marketview input[disabled] + button:focus, .theme-marketview .input-w-clear input[disabled] + label.label-btn:focus, .input-w-clear .theme-marketview input[disabled] + label.label-btn:focus, .theme-marketview .input-w-clear md-dialog md-dialog-actions input[disabled] + .md-cancel-button:focus, .input-w-clear md-dialog md-dialog-actions .theme-marketview input[disabled] + .md-cancel-button:focus, .theme-marketview md-dialog md-dialog-actions .input-w-clear input[disabled] + .md-cancel-button:focus, md-dialog md-dialog-actions .input-w-clear .theme-marketview input[disabled] + .md-cancel-button:focus, .theme-marketview .input-w-clear md-dialog md-dialog-actions input[disabled] + .md-confirm-button:focus, .input-w-clear md-dialog md-dialog-actions .theme-marketview input[disabled] + .md-confirm-button:focus, .theme-marketview md-dialog md-dialog-actions .input-w-clear input[disabled] + .md-confirm-button:focus, md-dialog md-dialog-actions .input-w-clear .theme-marketview input[disabled] + .md-confirm-button:focus,
  .theme-marketview fieldset[disabled] .input-w-clear input + button:focus, fieldset[disabled] .input-w-clear .theme-marketview input + button:focus, .theme-marketview fieldset[disabled] .input-w-clear input + label.label-btn:focus, fieldset[disabled] .input-w-clear .theme-marketview input + label.label-btn:focus, .theme-marketview fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .md-cancel-button:focus, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions .theme-marketview input + .md-cancel-button:focus, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .md-cancel-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear .theme-marketview input + .md-cancel-button:focus, .theme-marketview fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .md-confirm-button:focus, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions .theme-marketview input + .md-confirm-button:focus, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .md-confirm-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear .theme-marketview input + .md-confirm-button:focus, .theme-marketview .input-w-button input.disabled + button.clear:focus, .input-w-button .theme-marketview input.disabled + button.clear:focus, .theme-marketview .input-w-button input.disabled + label.clear.label-btn:focus, .input-w-button .theme-marketview input.disabled + label.clear.label-btn:focus, .theme-marketview .input-w-button md-autocomplete .md-show-clear-button input.disabled + button:focus, .input-w-button md-autocomplete .md-show-clear-button .theme-marketview input.disabled + button:focus, .theme-marketview md-autocomplete .md-show-clear-button .input-w-button input.disabled + button:focus, md-autocomplete .md-show-clear-button .input-w-button .theme-marketview input.disabled + button:focus, .theme-marketview .input-w-button md-autocomplete .md-show-clear-button input.disabled + label.label-btn:focus, .input-w-button md-autocomplete .md-show-clear-button .theme-marketview input.disabled + label.label-btn:focus, .theme-marketview md-autocomplete .md-show-clear-button .input-w-button input.disabled + label.label-btn:focus, md-autocomplete .md-show-clear-button .input-w-button .theme-marketview input.disabled + label.label-btn:focus, .theme-marketview .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input.disabled + .md-cancel-button:focus, .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input.disabled + .md-cancel-button:focus, .theme-marketview .input-w-button md-autocomplete .md-show-clear-button md-dialog md-dialog-actions input.disabled + .md-confirm-button:focus, .input-w-button md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-marketview input.disabled + .md-confirm-button:focus, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button input.disabled + .md-confirm-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button .theme-marketview input.disabled + .md-confirm-button:focus, .theme-marketview .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input.disabled + .md-confirm-button:focus, .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input.disabled + .md-confirm-button:focus, .theme-marketview md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-button input.disabled + .md-confirm-button:focus, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-button .theme-marketview input.disabled + .md-confirm-button:focus, .theme-marketview .input-w-button md-dialog input.disabled + .close-dialog:focus, .input-w-button md-dialog .theme-marketview input.disabled + .close-dialog:focus, .theme-marketview md-dialog .input-w-button input.disabled + .close-dialog:focus, md-dialog .input-w-button .theme-marketview input.disabled + .close-dialog:focus, .theme-marketview .input-w-button md-dialog md-dialog-actions input.disabled + .md-cancel-button:focus, .input-w-button md-dialog md-dialog-actions .theme-marketview input.disabled + .md-cancel-button:focus, .theme-marketview md-dialog md-dialog-actions .input-w-button input.disabled + .md-cancel-button:focus, md-dialog md-dialog-actions .input-w-button .theme-marketview input.disabled + .md-cancel-button:focus, .theme-marketview .input-w-button md-dialog md-dialog-actions input.disabled + .clear.md-confirm-button:focus, .input-w-button md-dialog md-dialog-actions .theme-marketview input.disabled + .clear.md-confirm-button:focus, .theme-marketview md-dialog md-dialog-actions .input-w-button input.disabled + .clear.md-confirm-button:focus, md-dialog md-dialog-actions .input-w-button .theme-marketview input.disabled + .clear.md-confirm-button:focus, .theme-marketview .input-w-button .colorpicker input.disabled + .close-colorpicker:focus, .input-w-button .colorpicker .theme-marketview input.disabled + .close-colorpicker:focus, .theme-marketview .colorpicker .input-w-button input.disabled + .close-colorpicker:focus, .colorpicker .input-w-button .theme-marketview input.disabled + .close-colorpicker:focus, .theme-marketview .input-w-button input[disabled] + button.clear:focus, .input-w-button .theme-marketview input[disabled] + button.clear:focus, .theme-marketview .input-w-button input[disabled] + label.clear.label-btn:focus, .input-w-button .theme-marketview input[disabled] + label.clear.label-btn:focus, .theme-marketview .input-w-button md-autocomplete .md-show-clear-button input[disabled] + button:focus, .input-w-button md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + button:focus, .theme-marketview md-autocomplete .md-show-clear-button .input-w-button input[disabled] + button:focus, md-autocomplete .md-show-clear-button .input-w-button .theme-marketview input[disabled] + button:focus, .theme-marketview .input-w-button md-autocomplete .md-show-clear-button input[disabled] + label.label-btn:focus, .input-w-button md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + label.label-btn:focus, .theme-marketview md-autocomplete .md-show-clear-button .input-w-button input[disabled] + label.label-btn:focus, md-autocomplete .md-show-clear-button .input-w-button .theme-marketview input[disabled] + label.label-btn:focus, .theme-marketview .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input[disabled] + .md-cancel-button:focus, .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + .md-cancel-button:focus, .theme-marketview .input-w-button md-autocomplete .md-show-clear-button md-dialog md-dialog-actions input[disabled] + .md-confirm-button:focus, .input-w-button md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-marketview input[disabled] + .md-confirm-button:focus, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button input[disabled] + .md-confirm-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button .theme-marketview input[disabled] + .md-confirm-button:focus, .theme-marketview .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input[disabled] + .md-confirm-button:focus, .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + .md-confirm-button:focus, .theme-marketview md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-button input[disabled] + .md-confirm-button:focus, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-button .theme-marketview input[disabled] + .md-confirm-button:focus, .theme-marketview .input-w-button md-dialog input[disabled] + .close-dialog:focus, .input-w-button md-dialog .theme-marketview input[disabled] + .close-dialog:focus, .theme-marketview md-dialog .input-w-button input[disabled] + .close-dialog:focus, md-dialog .input-w-button .theme-marketview input[disabled] + .close-dialog:focus, .theme-marketview .input-w-button md-dialog md-dialog-actions input[disabled] + .md-cancel-button:focus, .input-w-button md-dialog md-dialog-actions .theme-marketview input[disabled] + .md-cancel-button:focus, .theme-marketview md-dialog md-dialog-actions .input-w-button input[disabled] + .md-cancel-button:focus, md-dialog md-dialog-actions .input-w-button .theme-marketview input[disabled] + .md-cancel-button:focus, .theme-marketview .input-w-button md-dialog md-dialog-actions input[disabled] + .clear.md-confirm-button:focus, .input-w-button md-dialog md-dialog-actions .theme-marketview input[disabled] + .clear.md-confirm-button:focus, .theme-marketview md-dialog md-dialog-actions .input-w-button input[disabled] + .clear.md-confirm-button:focus, md-dialog md-dialog-actions .input-w-button .theme-marketview input[disabled] + .clear.md-confirm-button:focus, .theme-marketview .input-w-button .colorpicker input[disabled] + .close-colorpicker:focus, .input-w-button .colorpicker .theme-marketview input[disabled] + .close-colorpicker:focus, .theme-marketview .colorpicker .input-w-button input[disabled] + .close-colorpicker:focus, .colorpicker .input-w-button .theme-marketview input[disabled] + .close-colorpicker:focus,
  .theme-marketview fieldset[disabled] .input-w-button input + button.clear:focus, fieldset[disabled] .input-w-button .theme-marketview input + button.clear:focus, .theme-marketview fieldset[disabled] .input-w-button input + label.clear.label-btn:focus, fieldset[disabled] .input-w-button .theme-marketview input + label.clear.label-btn:focus, .theme-marketview fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button input + button:focus, fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button .theme-marketview input + button:focus, .theme-marketview md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button input + button:focus, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button .theme-marketview input + button:focus, .theme-marketview fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button input + label.label-btn:focus, fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button .theme-marketview input + label.label-btn:focus, .theme-marketview md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button input + label.label-btn:focus, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button .theme-marketview input + label.label-btn:focus, .theme-marketview fieldset[disabled] .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input + .md-cancel-button:focus, fieldset[disabled] .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input + .md-cancel-button:focus, .theme-marketview fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button md-dialog md-dialog-actions input + .md-confirm-button:focus, fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-marketview input + .md-confirm-button:focus, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .md-confirm-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-button .theme-marketview input + .md-confirm-button:focus, .theme-marketview fieldset[disabled] .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input + .md-confirm-button:focus, fieldset[disabled] .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input + .md-confirm-button:focus, .theme-marketview md-dialog md-dialog-actions md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button input + .md-confirm-button:focus, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button .theme-marketview input + .md-confirm-button:focus, .theme-marketview fieldset[disabled] .input-w-button md-dialog input + .close-dialog:focus, fieldset[disabled] .input-w-button md-dialog .theme-marketview input + .close-dialog:focus, .theme-marketview md-dialog fieldset[disabled] .input-w-button input + .close-dialog:focus, md-dialog fieldset[disabled] .input-w-button .theme-marketview input + .close-dialog:focus, .theme-marketview fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .md-cancel-button:focus, fieldset[disabled] .input-w-button md-dialog md-dialog-actions .theme-marketview input + .md-cancel-button:focus, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .md-cancel-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-button .theme-marketview input + .md-cancel-button:focus, .theme-marketview fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .clear.md-confirm-button:focus, fieldset[disabled] .input-w-button md-dialog md-dialog-actions .theme-marketview input + .clear.md-confirm-button:focus, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .clear.md-confirm-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-button .theme-marketview input + .clear.md-confirm-button:focus, .theme-marketview fieldset[disabled] .input-w-button .colorpicker input + .close-colorpicker:focus, fieldset[disabled] .input-w-button .colorpicker .theme-marketview input + .close-colorpicker:focus, .theme-marketview .colorpicker fieldset[disabled] .input-w-button input + .close-colorpicker:focus, .colorpicker fieldset[disabled] .input-w-button .theme-marketview input + .close-colorpicker:focus, .theme-marketview md-autocomplete .md-show-clear-button button.disabled:focus, md-autocomplete .md-show-clear-button .theme-marketview button.disabled:focus, .theme-marketview md-autocomplete .md-show-clear-button label.disabled.label-btn:focus, md-autocomplete .md-show-clear-button .theme-marketview label.disabled.label-btn:focus, .theme-marketview md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions input.disabled + .md-cancel-button:focus, md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions .theme-marketview input.disabled + .md-cancel-button:focus, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay input.disabled + .md-cancel-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay .theme-marketview input.disabled + .md-cancel-button:focus, .theme-marketview md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button input.disabled + .md-cancel-button:focus, md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button .theme-marketview input.disabled + .md-cancel-button:focus, .theme-marketview md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions input.disabled + .md-confirm-button:focus, md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions .theme-marketview input.disabled + .md-confirm-button:focus, .theme-marketview md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button input.disabled + .md-confirm-button:focus, md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button .theme-marketview input.disabled + .md-confirm-button:focus, .theme-marketview md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions input[disabled] + .md-cancel-button:focus, md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions .theme-marketview input[disabled] + .md-cancel-button:focus, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay input[disabled] + .md-cancel-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay .theme-marketview input[disabled] + .md-cancel-button:focus, .theme-marketview md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button input[disabled] + .md-cancel-button:focus, md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + .md-cancel-button:focus, .theme-marketview md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions input[disabled] + .md-confirm-button:focus, md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions .theme-marketview input[disabled] + .md-confirm-button:focus, .theme-marketview md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button input[disabled] + .md-confirm-button:focus, md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + .md-confirm-button:focus, .theme-marketview md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .md-cancel-button:focus, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions .theme-marketview input + .md-cancel-button:focus, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .md-cancel-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay .theme-marketview input + .md-cancel-button:focus, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button input + .md-cancel-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button .theme-marketview input + .md-cancel-button:focus, .theme-marketview md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .md-confirm-button:focus, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions .theme-marketview input + .md-confirm-button:focus, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button input + .md-confirm-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button .theme-marketview input + .md-confirm-button:focus, .theme-marketview md-autocomplete .md-show-clear-button .input-w-clear input.disabled + button:focus, md-autocomplete .md-show-clear-button .input-w-clear .theme-marketview input.disabled + button:focus, .theme-marketview .input-w-clear md-autocomplete .md-show-clear-button input.disabled + button:focus, .input-w-clear md-autocomplete .md-show-clear-button .theme-marketview input.disabled + button:focus, .theme-marketview md-autocomplete .md-show-clear-button .input-w-clear input.disabled + label.label-btn:focus, md-autocomplete .md-show-clear-button .input-w-clear .theme-marketview input.disabled + label.label-btn:focus, .theme-marketview .input-w-clear md-autocomplete .md-show-clear-button input.disabled + label.label-btn:focus, .input-w-clear md-autocomplete .md-show-clear-button .theme-marketview input.disabled + label.label-btn:focus, .theme-marketview md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions input.disabled + .md-cancel-button:focus, md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions .theme-marketview input.disabled + .md-cancel-button:focus, .theme-marketview .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input.disabled + .md-cancel-button:focus, .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input.disabled + .md-cancel-button:focus, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear input.disabled + .md-cancel-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear .theme-marketview input.disabled + .md-cancel-button:focus, .theme-marketview md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button input.disabled + .md-cancel-button:focus, md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button .theme-marketview input.disabled + .md-cancel-button:focus, .theme-marketview md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions input.disabled + .md-confirm-button:focus, md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions .theme-marketview input.disabled + .md-confirm-button:focus, .theme-marketview .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input.disabled + .md-confirm-button:focus, .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input.disabled + .md-confirm-button:focus, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear input.disabled + .md-confirm-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear .theme-marketview input.disabled + .md-confirm-button:focus, .theme-marketview md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button input.disabled + .md-confirm-button:focus, md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button .theme-marketview input.disabled + .md-confirm-button:focus, .theme-marketview md-autocomplete .md-show-clear-button .input-w-clear input[disabled] + button:focus, md-autocomplete .md-show-clear-button .input-w-clear .theme-marketview input[disabled] + button:focus, .theme-marketview .input-w-clear md-autocomplete .md-show-clear-button input[disabled] + button:focus, .input-w-clear md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + button:focus, .theme-marketview md-autocomplete .md-show-clear-button .input-w-clear input[disabled] + label.label-btn:focus, md-autocomplete .md-show-clear-button .input-w-clear .theme-marketview input[disabled] + label.label-btn:focus, .theme-marketview .input-w-clear md-autocomplete .md-show-clear-button input[disabled] + label.label-btn:focus, .input-w-clear md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + label.label-btn:focus, .theme-marketview md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions input[disabled] + .md-cancel-button:focus, md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions .theme-marketview input[disabled] + .md-cancel-button:focus, .theme-marketview .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input[disabled] + .md-cancel-button:focus, .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + .md-cancel-button:focus, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear input[disabled] + .md-cancel-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear .theme-marketview input[disabled] + .md-cancel-button:focus, .theme-marketview md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button input[disabled] + .md-cancel-button:focus, md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + .md-cancel-button:focus, .theme-marketview md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions input[disabled] + .md-confirm-button:focus, md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions .theme-marketview input[disabled] + .md-confirm-button:focus, .theme-marketview .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input[disabled] + .md-confirm-button:focus, .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + .md-confirm-button:focus, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear input[disabled] + .md-confirm-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear .theme-marketview input[disabled] + .md-confirm-button:focus, .theme-marketview md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button input[disabled] + .md-confirm-button:focus, md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + .md-confirm-button:focus,
  .theme-marketview md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear input + button:focus, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear .theme-marketview input + button:focus, .theme-marketview fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button input + button:focus, fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button .theme-marketview input + button:focus, .theme-marketview md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear input + label.label-btn:focus, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear .theme-marketview input + label.label-btn:focus, .theme-marketview fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button input + label.label-btn:focus, fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button .theme-marketview input + label.label-btn:focus, .theme-marketview md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .md-cancel-button:focus, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear md-dialog md-dialog-actions .theme-marketview input + .md-cancel-button:focus, .theme-marketview fieldset[disabled] .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input + .md-cancel-button:focus, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input + .md-cancel-button:focus, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .md-cancel-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-clear .theme-marketview input + .md-cancel-button:focus, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button input + .md-cancel-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button .theme-marketview input + .md-cancel-button:focus, .theme-marketview md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .md-confirm-button:focus, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear md-dialog md-dialog-actions .theme-marketview input + .md-confirm-button:focus, .theme-marketview fieldset[disabled] .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input + .md-confirm-button:focus, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input + .md-confirm-button:focus, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .md-confirm-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-clear .theme-marketview input + .md-confirm-button:focus, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button input + .md-confirm-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button .theme-marketview input + .md-confirm-button:focus, .theme-marketview md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions input.disabled + .md-cancel-button:focus, md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions .theme-marketview input.disabled + .md-cancel-button:focus, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button input.disabled + .md-cancel-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button .theme-marketview input.disabled + .md-cancel-button:focus, .theme-marketview md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button input.disabled + .md-cancel-button:focus, md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button .theme-marketview input.disabled + .md-cancel-button:focus, .theme-marketview md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions input.disabled + .md-confirm-button:focus, md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions .theme-marketview input.disabled + .md-confirm-button:focus, .theme-marketview md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button input.disabled + .md-confirm-button:focus, md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button .theme-marketview input.disabled + .md-confirm-button:focus, .theme-marketview md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions input[disabled] + .md-cancel-button:focus, md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions .theme-marketview input[disabled] + .md-cancel-button:focus, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button input[disabled] + .md-cancel-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button .theme-marketview input[disabled] + .md-cancel-button:focus, .theme-marketview md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button input[disabled] + .md-cancel-button:focus, md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + .md-cancel-button:focus, .theme-marketview md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions input[disabled] + .md-confirm-button:focus, md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions .theme-marketview input[disabled] + .md-confirm-button:focus, .theme-marketview md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button input[disabled] + .md-confirm-button:focus, md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + .md-confirm-button:focus, .theme-marketview md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .md-cancel-button:focus, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button md-dialog md-dialog-actions .theme-marketview input + .md-cancel-button:focus, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .md-cancel-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-button .theme-marketview input + .md-cancel-button:focus, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button input + .md-cancel-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button .theme-marketview input + .md-cancel-button:focus, .theme-marketview md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .md-confirm-button:focus, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button md-dialog md-dialog-actions .theme-marketview input + .md-confirm-button:focus, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button input + .md-confirm-button:focus, md-dialog md-dialog-actions fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button .theme-marketview input + .md-confirm-button:focus, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .disabled.md-cancel-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-marketview .disabled.md-cancel-button:focus, .theme-marketview md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .disabled.md-cancel-button:focus, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview .disabled.md-cancel-button:focus, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .disabled.md-confirm-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-marketview .disabled.md-confirm-button:focus, .theme-marketview md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .disabled.md-confirm-button:focus, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview .disabled.md-confirm-button:focus, .theme-marketview md-dialog .disabled.close-dialog:focus, md-dialog .theme-marketview .disabled.close-dialog:focus, .theme-marketview md-dialog md-dialog-actions .disabled.md-cancel-button:focus, md-dialog md-dialog-actions .theme-marketview .disabled.md-cancel-button:focus, .theme-marketview md-dialog md-dialog-actions .clear.disabled.md-confirm-button:focus, md-dialog md-dialog-actions .theme-marketview .clear.disabled.md-confirm-button:focus, .theme-marketview .colorpicker .disabled.close-colorpicker:focus, .colorpicker .theme-marketview .disabled.close-colorpicker:focus, .theme-marketview button.clear.disabled:hover:before, .theme-marketview label.clear.disabled.label-btn:hover:before, .theme-marketview .input-w-inlay input.disabled + button.clear:hover:before, .input-w-inlay .theme-marketview input.disabled + button.clear:hover:before, .theme-marketview .input-w-inlay input.disabled + label.clear.label-btn:hover:before, .input-w-inlay .theme-marketview input.disabled + label.clear.label-btn:hover:before, .theme-marketview .input-w-inlay md-autocomplete .md-show-clear-button input.disabled + button:hover:before, .input-w-inlay md-autocomplete .md-show-clear-button .theme-marketview input.disabled + button:hover:before, .theme-marketview md-autocomplete .md-show-clear-button .input-w-inlay input.disabled + button:hover:before, md-autocomplete .md-show-clear-button .input-w-inlay .theme-marketview input.disabled + button:hover:before, .theme-marketview .input-w-inlay md-autocomplete .md-show-clear-button input.disabled + label.label-btn:hover:before, .input-w-inlay md-autocomplete .md-show-clear-button .theme-marketview input.disabled + label.label-btn:hover:before, .theme-marketview md-autocomplete .md-show-clear-button .input-w-inlay input.disabled + label.label-btn:hover:before, md-autocomplete .md-show-clear-button .input-w-inlay .theme-marketview input.disabled + label.label-btn:hover:before, .theme-marketview .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input.disabled + .md-cancel-button:hover:before, .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input.disabled + .md-cancel-button:hover:before, .theme-marketview .input-w-inlay md-autocomplete .md-show-clear-button md-dialog md-dialog-actions input.disabled + .md-confirm-button:hover:before, .input-w-inlay md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-marketview input.disabled + .md-confirm-button:hover:before, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay input.disabled + .md-confirm-button:hover:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay .theme-marketview input.disabled + .md-confirm-button:hover:before, .theme-marketview .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input.disabled + .md-confirm-button:hover:before, .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input.disabled + .md-confirm-button:hover:before, .theme-marketview md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-inlay input.disabled + .md-confirm-button:hover:before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-inlay .theme-marketview input.disabled + .md-confirm-button:hover:before, .theme-marketview .input-w-inlay md-dialog input.disabled + .close-dialog:hover:before, .input-w-inlay md-dialog .theme-marketview input.disabled + .close-dialog:hover:before, .theme-marketview md-dialog .input-w-inlay input.disabled + .close-dialog:hover:before, md-dialog .input-w-inlay .theme-marketview input.disabled + .close-dialog:hover:before, .theme-marketview .input-w-inlay md-dialog md-dialog-actions input.disabled + .md-cancel-button:hover:before, .input-w-inlay md-dialog md-dialog-actions .theme-marketview input.disabled + .md-cancel-button:hover:before, .theme-marketview md-dialog md-dialog-actions .input-w-inlay input.disabled + .md-cancel-button:hover:before, md-dialog md-dialog-actions .input-w-inlay .theme-marketview input.disabled + .md-cancel-button:hover:before, .theme-marketview .input-w-inlay md-dialog md-dialog-actions input.disabled + .clear.md-confirm-button:hover:before, .input-w-inlay md-dialog md-dialog-actions .theme-marketview input.disabled + .clear.md-confirm-button:hover:before, .theme-marketview md-dialog md-dialog-actions .input-w-inlay input.disabled + .clear.md-confirm-button:hover:before, md-dialog md-dialog-actions .input-w-inlay .theme-marketview input.disabled + .clear.md-confirm-button:hover:before, .theme-marketview .input-w-inlay .colorpicker input.disabled + .close-colorpicker:hover:before, .input-w-inlay .colorpicker .theme-marketview input.disabled + .close-colorpicker:hover:before, .theme-marketview .colorpicker .input-w-inlay input.disabled + .close-colorpicker:hover:before, .colorpicker .input-w-inlay .theme-marketview input.disabled + .close-colorpicker:hover:before, .theme-marketview .input-w-inlay input[disabled] + button.clear:hover:before, .input-w-inlay .theme-marketview input[disabled] + button.clear:hover:before, .theme-marketview .input-w-inlay input[disabled] + label.clear.label-btn:hover:before, .input-w-inlay .theme-marketview input[disabled] + label.clear.label-btn:hover:before, .theme-marketview .input-w-inlay md-autocomplete .md-show-clear-button input[disabled] + button:hover:before, .input-w-inlay md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + button:hover:before, .theme-marketview md-autocomplete .md-show-clear-button .input-w-inlay input[disabled] + button:hover:before, md-autocomplete .md-show-clear-button .input-w-inlay .theme-marketview input[disabled] + button:hover:before, .theme-marketview .input-w-inlay md-autocomplete .md-show-clear-button input[disabled] + label.label-btn:hover:before, .input-w-inlay md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + label.label-btn:hover:before, .theme-marketview md-autocomplete .md-show-clear-button .input-w-inlay input[disabled] + label.label-btn:hover:before, md-autocomplete .md-show-clear-button .input-w-inlay .theme-marketview input[disabled] + label.label-btn:hover:before, .theme-marketview .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input[disabled] + .md-cancel-button:hover:before, .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + .md-cancel-button:hover:before, .theme-marketview .input-w-inlay md-autocomplete .md-show-clear-button md-dialog md-dialog-actions input[disabled] + .md-confirm-button:hover:before, .input-w-inlay md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-marketview input[disabled] + .md-confirm-button:hover:before, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay input[disabled] + .md-confirm-button:hover:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay .theme-marketview input[disabled] + .md-confirm-button:hover:before, .theme-marketview .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input[disabled] + .md-confirm-button:hover:before, .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + .md-confirm-button:hover:before, .theme-marketview md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-inlay input[disabled] + .md-confirm-button:hover:before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-inlay .theme-marketview input[disabled] + .md-confirm-button:hover:before, .theme-marketview .input-w-inlay md-dialog input[disabled] + .close-dialog:hover:before, .input-w-inlay md-dialog .theme-marketview input[disabled] + .close-dialog:hover:before, .theme-marketview md-dialog .input-w-inlay input[disabled] + .close-dialog:hover:before, md-dialog .input-w-inlay .theme-marketview input[disabled] + .close-dialog:hover:before, .theme-marketview .input-w-inlay md-dialog md-dialog-actions input[disabled] + .md-cancel-button:hover:before, .input-w-inlay md-dialog md-dialog-actions .theme-marketview input[disabled] + .md-cancel-button:hover:before, .theme-marketview md-dialog md-dialog-actions .input-w-inlay input[disabled] + .md-cancel-button:hover:before, md-dialog md-dialog-actions .input-w-inlay .theme-marketview input[disabled] + .md-cancel-button:hover:before, .theme-marketview .input-w-inlay md-dialog md-dialog-actions input[disabled] + .clear.md-confirm-button:hover:before, .input-w-inlay md-dialog md-dialog-actions .theme-marketview input[disabled] + .clear.md-confirm-button:hover:before, .theme-marketview md-dialog md-dialog-actions .input-w-inlay input[disabled] + .clear.md-confirm-button:hover:before, md-dialog md-dialog-actions .input-w-inlay .theme-marketview input[disabled] + .clear.md-confirm-button:hover:before, .theme-marketview .input-w-inlay .colorpicker input[disabled] + .close-colorpicker:hover:before, .input-w-inlay .colorpicker .theme-marketview input[disabled] + .close-colorpicker:hover:before, .theme-marketview .colorpicker .input-w-inlay input[disabled] + .close-colorpicker:hover:before, .colorpicker .input-w-inlay .theme-marketview input[disabled] + .close-colorpicker:hover:before,
  .theme-marketview fieldset[disabled] .input-w-inlay input + button.clear:hover:before, fieldset[disabled] .input-w-inlay .theme-marketview input + button.clear:hover:before, .theme-marketview fieldset[disabled] .input-w-inlay input + label.clear.label-btn:hover:before, fieldset[disabled] .input-w-inlay .theme-marketview input + label.clear.label-btn:hover:before, .theme-marketview fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button input + button:hover:before, fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button .theme-marketview input + button:hover:before, .theme-marketview md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay input + button:hover:before, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay .theme-marketview input + button:hover:before, .theme-marketview fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button input + label.label-btn:hover:before, fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button .theme-marketview input + label.label-btn:hover:before, .theme-marketview md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay input + label.label-btn:hover:before, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay .theme-marketview input + label.label-btn:hover:before, .theme-marketview fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input + .md-cancel-button:hover:before, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input + .md-cancel-button:hover:before, .theme-marketview fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button md-dialog md-dialog-actions input + .md-confirm-button:hover:before, fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-marketview input + .md-confirm-button:hover:before, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .md-confirm-button:hover:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay .theme-marketview input + .md-confirm-button:hover:before, .theme-marketview fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input + .md-confirm-button:hover:before, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input + .md-confirm-button:hover:before, .theme-marketview md-dialog md-dialog-actions md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay input + .md-confirm-button:hover:before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay .theme-marketview input + .md-confirm-button:hover:before, .theme-marketview fieldset[disabled] .input-w-inlay md-dialog input + .close-dialog:hover:before, fieldset[disabled] .input-w-inlay md-dialog .theme-marketview input + .close-dialog:hover:before, .theme-marketview md-dialog fieldset[disabled] .input-w-inlay input + .close-dialog:hover:before, md-dialog fieldset[disabled] .input-w-inlay .theme-marketview input + .close-dialog:hover:before, .theme-marketview fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .md-cancel-button:hover:before, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions .theme-marketview input + .md-cancel-button:hover:before, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .md-cancel-button:hover:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay .theme-marketview input + .md-cancel-button:hover:before, .theme-marketview fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .clear.md-confirm-button:hover:before, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions .theme-marketview input + .clear.md-confirm-button:hover:before, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .clear.md-confirm-button:hover:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay .theme-marketview input + .clear.md-confirm-button:hover:before, .theme-marketview fieldset[disabled] .input-w-inlay .colorpicker input + .close-colorpicker:hover:before, fieldset[disabled] .input-w-inlay .colorpicker .theme-marketview input + .close-colorpicker:hover:before, .theme-marketview .colorpicker fieldset[disabled] .input-w-inlay input + .close-colorpicker:hover:before, .colorpicker fieldset[disabled] .input-w-inlay .theme-marketview input + .close-colorpicker:hover:before, .theme-marketview .input-w-clear input.disabled + button:hover:before, .input-w-clear .theme-marketview input.disabled + button:hover:before, .theme-marketview .input-w-clear input.disabled + label.label-btn:hover:before, .input-w-clear .theme-marketview input.disabled + label.label-btn:hover:before, .theme-marketview .input-w-clear md-dialog md-dialog-actions input.disabled + .md-cancel-button:hover:before, .input-w-clear md-dialog md-dialog-actions .theme-marketview input.disabled + .md-cancel-button:hover:before, .theme-marketview md-dialog md-dialog-actions .input-w-clear input.disabled + .md-cancel-button:hover:before, md-dialog md-dialog-actions .input-w-clear .theme-marketview input.disabled + .md-cancel-button:hover:before, .theme-marketview .input-w-clear md-dialog md-dialog-actions input.disabled + .md-confirm-button:hover:before, .input-w-clear md-dialog md-dialog-actions .theme-marketview input.disabled + .md-confirm-button:hover:before, .theme-marketview md-dialog md-dialog-actions .input-w-clear input.disabled + .md-confirm-button:hover:before, md-dialog md-dialog-actions .input-w-clear .theme-marketview input.disabled + .md-confirm-button:hover:before, .theme-marketview .input-w-clear input[disabled] + button:hover:before, .input-w-clear .theme-marketview input[disabled] + button:hover:before, .theme-marketview .input-w-clear input[disabled] + label.label-btn:hover:before, .input-w-clear .theme-marketview input[disabled] + label.label-btn:hover:before, .theme-marketview .input-w-clear md-dialog md-dialog-actions input[disabled] + .md-cancel-button:hover:before, .input-w-clear md-dialog md-dialog-actions .theme-marketview input[disabled] + .md-cancel-button:hover:before, .theme-marketview md-dialog md-dialog-actions .input-w-clear input[disabled] + .md-cancel-button:hover:before, md-dialog md-dialog-actions .input-w-clear .theme-marketview input[disabled] + .md-cancel-button:hover:before, .theme-marketview .input-w-clear md-dialog md-dialog-actions input[disabled] + .md-confirm-button:hover:before, .input-w-clear md-dialog md-dialog-actions .theme-marketview input[disabled] + .md-confirm-button:hover:before, .theme-marketview md-dialog md-dialog-actions .input-w-clear input[disabled] + .md-confirm-button:hover:before, md-dialog md-dialog-actions .input-w-clear .theme-marketview input[disabled] + .md-confirm-button:hover:before,
  .theme-marketview fieldset[disabled] .input-w-clear input + button:hover:before, fieldset[disabled] .input-w-clear .theme-marketview input + button:hover:before, .theme-marketview fieldset[disabled] .input-w-clear input + label.label-btn:hover:before, fieldset[disabled] .input-w-clear .theme-marketview input + label.label-btn:hover:before, .theme-marketview fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .md-cancel-button:hover:before, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions .theme-marketview input + .md-cancel-button:hover:before, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .md-cancel-button:hover:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear .theme-marketview input + .md-cancel-button:hover:before, .theme-marketview fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .md-confirm-button:hover:before, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions .theme-marketview input + .md-confirm-button:hover:before, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .md-confirm-button:hover:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear .theme-marketview input + .md-confirm-button:hover:before, .theme-marketview .input-w-button input.disabled + button.clear:hover:before, .input-w-button .theme-marketview input.disabled + button.clear:hover:before, .theme-marketview .input-w-button input.disabled + label.clear.label-btn:hover:before, .input-w-button .theme-marketview input.disabled + label.clear.label-btn:hover:before, .theme-marketview .input-w-button md-autocomplete .md-show-clear-button input.disabled + button:hover:before, .input-w-button md-autocomplete .md-show-clear-button .theme-marketview input.disabled + button:hover:before, .theme-marketview md-autocomplete .md-show-clear-button .input-w-button input.disabled + button:hover:before, md-autocomplete .md-show-clear-button .input-w-button .theme-marketview input.disabled + button:hover:before, .theme-marketview .input-w-button md-autocomplete .md-show-clear-button input.disabled + label.label-btn:hover:before, .input-w-button md-autocomplete .md-show-clear-button .theme-marketview input.disabled + label.label-btn:hover:before, .theme-marketview md-autocomplete .md-show-clear-button .input-w-button input.disabled + label.label-btn:hover:before, md-autocomplete .md-show-clear-button .input-w-button .theme-marketview input.disabled + label.label-btn:hover:before, .theme-marketview .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input.disabled + .md-cancel-button:hover:before, .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input.disabled + .md-cancel-button:hover:before, .theme-marketview .input-w-button md-autocomplete .md-show-clear-button md-dialog md-dialog-actions input.disabled + .md-confirm-button:hover:before, .input-w-button md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-marketview input.disabled + .md-confirm-button:hover:before, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button input.disabled + .md-confirm-button:hover:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button .theme-marketview input.disabled + .md-confirm-button:hover:before, .theme-marketview .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input.disabled + .md-confirm-button:hover:before, .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input.disabled + .md-confirm-button:hover:before, .theme-marketview md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-button input.disabled + .md-confirm-button:hover:before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-button .theme-marketview input.disabled + .md-confirm-button:hover:before, .theme-marketview .input-w-button md-dialog input.disabled + .close-dialog:hover:before, .input-w-button md-dialog .theme-marketview input.disabled + .close-dialog:hover:before, .theme-marketview md-dialog .input-w-button input.disabled + .close-dialog:hover:before, md-dialog .input-w-button .theme-marketview input.disabled + .close-dialog:hover:before, .theme-marketview .input-w-button md-dialog md-dialog-actions input.disabled + .md-cancel-button:hover:before, .input-w-button md-dialog md-dialog-actions .theme-marketview input.disabled + .md-cancel-button:hover:before, .theme-marketview md-dialog md-dialog-actions .input-w-button input.disabled + .md-cancel-button:hover:before, md-dialog md-dialog-actions .input-w-button .theme-marketview input.disabled + .md-cancel-button:hover:before, .theme-marketview .input-w-button md-dialog md-dialog-actions input.disabled + .clear.md-confirm-button:hover:before, .input-w-button md-dialog md-dialog-actions .theme-marketview input.disabled + .clear.md-confirm-button:hover:before, .theme-marketview md-dialog md-dialog-actions .input-w-button input.disabled + .clear.md-confirm-button:hover:before, md-dialog md-dialog-actions .input-w-button .theme-marketview input.disabled + .clear.md-confirm-button:hover:before, .theme-marketview .input-w-button .colorpicker input.disabled + .close-colorpicker:hover:before, .input-w-button .colorpicker .theme-marketview input.disabled + .close-colorpicker:hover:before, .theme-marketview .colorpicker .input-w-button input.disabled + .close-colorpicker:hover:before, .colorpicker .input-w-button .theme-marketview input.disabled + .close-colorpicker:hover:before, .theme-marketview .input-w-button input[disabled] + button.clear:hover:before, .input-w-button .theme-marketview input[disabled] + button.clear:hover:before, .theme-marketview .input-w-button input[disabled] + label.clear.label-btn:hover:before, .input-w-button .theme-marketview input[disabled] + label.clear.label-btn:hover:before, .theme-marketview .input-w-button md-autocomplete .md-show-clear-button input[disabled] + button:hover:before, .input-w-button md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + button:hover:before, .theme-marketview md-autocomplete .md-show-clear-button .input-w-button input[disabled] + button:hover:before, md-autocomplete .md-show-clear-button .input-w-button .theme-marketview input[disabled] + button:hover:before, .theme-marketview .input-w-button md-autocomplete .md-show-clear-button input[disabled] + label.label-btn:hover:before, .input-w-button md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + label.label-btn:hover:before, .theme-marketview md-autocomplete .md-show-clear-button .input-w-button input[disabled] + label.label-btn:hover:before, md-autocomplete .md-show-clear-button .input-w-button .theme-marketview input[disabled] + label.label-btn:hover:before, .theme-marketview .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input[disabled] + .md-cancel-button:hover:before, .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + .md-cancel-button:hover:before, .theme-marketview .input-w-button md-autocomplete .md-show-clear-button md-dialog md-dialog-actions input[disabled] + .md-confirm-button:hover:before, .input-w-button md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-marketview input[disabled] + .md-confirm-button:hover:before, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button input[disabled] + .md-confirm-button:hover:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button .theme-marketview input[disabled] + .md-confirm-button:hover:before, .theme-marketview .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input[disabled] + .md-confirm-button:hover:before, .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + .md-confirm-button:hover:before, .theme-marketview md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-button input[disabled] + .md-confirm-button:hover:before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-button .theme-marketview input[disabled] + .md-confirm-button:hover:before, .theme-marketview .input-w-button md-dialog input[disabled] + .close-dialog:hover:before, .input-w-button md-dialog .theme-marketview input[disabled] + .close-dialog:hover:before, .theme-marketview md-dialog .input-w-button input[disabled] + .close-dialog:hover:before, md-dialog .input-w-button .theme-marketview input[disabled] + .close-dialog:hover:before, .theme-marketview .input-w-button md-dialog md-dialog-actions input[disabled] + .md-cancel-button:hover:before, .input-w-button md-dialog md-dialog-actions .theme-marketview input[disabled] + .md-cancel-button:hover:before, .theme-marketview md-dialog md-dialog-actions .input-w-button input[disabled] + .md-cancel-button:hover:before, md-dialog md-dialog-actions .input-w-button .theme-marketview input[disabled] + .md-cancel-button:hover:before, .theme-marketview .input-w-button md-dialog md-dialog-actions input[disabled] + .clear.md-confirm-button:hover:before, .input-w-button md-dialog md-dialog-actions .theme-marketview input[disabled] + .clear.md-confirm-button:hover:before, .theme-marketview md-dialog md-dialog-actions .input-w-button input[disabled] + .clear.md-confirm-button:hover:before, md-dialog md-dialog-actions .input-w-button .theme-marketview input[disabled] + .clear.md-confirm-button:hover:before, .theme-marketview .input-w-button .colorpicker input[disabled] + .close-colorpicker:hover:before, .input-w-button .colorpicker .theme-marketview input[disabled] + .close-colorpicker:hover:before, .theme-marketview .colorpicker .input-w-button input[disabled] + .close-colorpicker:hover:before, .colorpicker .input-w-button .theme-marketview input[disabled] + .close-colorpicker:hover:before,
  .theme-marketview fieldset[disabled] .input-w-button input + button.clear:hover:before, fieldset[disabled] .input-w-button .theme-marketview input + button.clear:hover:before, .theme-marketview fieldset[disabled] .input-w-button input + label.clear.label-btn:hover:before, fieldset[disabled] .input-w-button .theme-marketview input + label.clear.label-btn:hover:before, .theme-marketview fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button input + button:hover:before, fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button .theme-marketview input + button:hover:before, .theme-marketview md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button input + button:hover:before, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button .theme-marketview input + button:hover:before, .theme-marketview fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button input + label.label-btn:hover:before, fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button .theme-marketview input + label.label-btn:hover:before, .theme-marketview md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button input + label.label-btn:hover:before, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button .theme-marketview input + label.label-btn:hover:before, .theme-marketview fieldset[disabled] .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input + .md-cancel-button:hover:before, fieldset[disabled] .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input + .md-cancel-button:hover:before, .theme-marketview fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button md-dialog md-dialog-actions input + .md-confirm-button:hover:before, fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-marketview input + .md-confirm-button:hover:before, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .md-confirm-button:hover:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-button .theme-marketview input + .md-confirm-button:hover:before, .theme-marketview fieldset[disabled] .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input + .md-confirm-button:hover:before, fieldset[disabled] .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input + .md-confirm-button:hover:before, .theme-marketview md-dialog md-dialog-actions md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button input + .md-confirm-button:hover:before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button .theme-marketview input + .md-confirm-button:hover:before, .theme-marketview fieldset[disabled] .input-w-button md-dialog input + .close-dialog:hover:before, fieldset[disabled] .input-w-button md-dialog .theme-marketview input + .close-dialog:hover:before, .theme-marketview md-dialog fieldset[disabled] .input-w-button input + .close-dialog:hover:before, md-dialog fieldset[disabled] .input-w-button .theme-marketview input + .close-dialog:hover:before, .theme-marketview fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .md-cancel-button:hover:before, fieldset[disabled] .input-w-button md-dialog md-dialog-actions .theme-marketview input + .md-cancel-button:hover:before, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .md-cancel-button:hover:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-button .theme-marketview input + .md-cancel-button:hover:before, .theme-marketview fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .clear.md-confirm-button:hover:before, fieldset[disabled] .input-w-button md-dialog md-dialog-actions .theme-marketview input + .clear.md-confirm-button:hover:before, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .clear.md-confirm-button:hover:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-button .theme-marketview input + .clear.md-confirm-button:hover:before, .theme-marketview fieldset[disabled] .input-w-button .colorpicker input + .close-colorpicker:hover:before, fieldset[disabled] .input-w-button .colorpicker .theme-marketview input + .close-colorpicker:hover:before, .theme-marketview .colorpicker fieldset[disabled] .input-w-button input + .close-colorpicker:hover:before, .colorpicker fieldset[disabled] .input-w-button .theme-marketview input + .close-colorpicker:hover:before, .theme-marketview md-autocomplete .md-show-clear-button button.disabled:hover:before, md-autocomplete .md-show-clear-button .theme-marketview button.disabled:hover:before, .theme-marketview md-autocomplete .md-show-clear-button label.disabled.label-btn:hover:before, md-autocomplete .md-show-clear-button .theme-marketview label.disabled.label-btn:hover:before, .theme-marketview md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions input.disabled + .md-cancel-button:hover:before, md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions .theme-marketview input.disabled + .md-cancel-button:hover:before, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay input.disabled + .md-cancel-button:hover:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay .theme-marketview input.disabled + .md-cancel-button:hover:before, .theme-marketview md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button input.disabled + .md-cancel-button:hover:before, md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button .theme-marketview input.disabled + .md-cancel-button:hover:before, .theme-marketview md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions input.disabled + .md-confirm-button:hover:before, md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions .theme-marketview input.disabled + .md-confirm-button:hover:before, .theme-marketview md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button input.disabled + .md-confirm-button:hover:before, md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button .theme-marketview input.disabled + .md-confirm-button:hover:before, .theme-marketview md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions input[disabled] + .md-cancel-button:hover:before, md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions .theme-marketview input[disabled] + .md-cancel-button:hover:before, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay input[disabled] + .md-cancel-button:hover:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay .theme-marketview input[disabled] + .md-cancel-button:hover:before, .theme-marketview md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button input[disabled] + .md-cancel-button:hover:before, md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + .md-cancel-button:hover:before, .theme-marketview md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions input[disabled] + .md-confirm-button:hover:before, md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions .theme-marketview input[disabled] + .md-confirm-button:hover:before, .theme-marketview md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button input[disabled] + .md-confirm-button:hover:before, md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + .md-confirm-button:hover:before, .theme-marketview md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .md-cancel-button:hover:before, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions .theme-marketview input + .md-cancel-button:hover:before, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .md-cancel-button:hover:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay .theme-marketview input + .md-cancel-button:hover:before, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button input + .md-cancel-button:hover:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button .theme-marketview input + .md-cancel-button:hover:before, .theme-marketview md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .md-confirm-button:hover:before, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions .theme-marketview input + .md-confirm-button:hover:before, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button input + .md-confirm-button:hover:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button .theme-marketview input + .md-confirm-button:hover:before, .theme-marketview md-autocomplete .md-show-clear-button .input-w-clear input.disabled + button:hover:before, md-autocomplete .md-show-clear-button .input-w-clear .theme-marketview input.disabled + button:hover:before, .theme-marketview .input-w-clear md-autocomplete .md-show-clear-button input.disabled + button:hover:before, .input-w-clear md-autocomplete .md-show-clear-button .theme-marketview input.disabled + button:hover:before, .theme-marketview md-autocomplete .md-show-clear-button .input-w-clear input.disabled + label.label-btn:hover:before, md-autocomplete .md-show-clear-button .input-w-clear .theme-marketview input.disabled + label.label-btn:hover:before, .theme-marketview .input-w-clear md-autocomplete .md-show-clear-button input.disabled + label.label-btn:hover:before, .input-w-clear md-autocomplete .md-show-clear-button .theme-marketview input.disabled + label.label-btn:hover:before, .theme-marketview md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions input.disabled + .md-cancel-button:hover:before, md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions .theme-marketview input.disabled + .md-cancel-button:hover:before, .theme-marketview .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input.disabled + .md-cancel-button:hover:before, .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input.disabled + .md-cancel-button:hover:before, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear input.disabled + .md-cancel-button:hover:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear .theme-marketview input.disabled + .md-cancel-button:hover:before, .theme-marketview md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button input.disabled + .md-cancel-button:hover:before, md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button .theme-marketview input.disabled + .md-cancel-button:hover:before, .theme-marketview md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions input.disabled + .md-confirm-button:hover:before, md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions .theme-marketview input.disabled + .md-confirm-button:hover:before, .theme-marketview .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input.disabled + .md-confirm-button:hover:before, .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input.disabled + .md-confirm-button:hover:before, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear input.disabled + .md-confirm-button:hover:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear .theme-marketview input.disabled + .md-confirm-button:hover:before, .theme-marketview md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button input.disabled + .md-confirm-button:hover:before, md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button .theme-marketview input.disabled + .md-confirm-button:hover:before, .theme-marketview md-autocomplete .md-show-clear-button .input-w-clear input[disabled] + button:hover:before, md-autocomplete .md-show-clear-button .input-w-clear .theme-marketview input[disabled] + button:hover:before, .theme-marketview .input-w-clear md-autocomplete .md-show-clear-button input[disabled] + button:hover:before, .input-w-clear md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + button:hover:before, .theme-marketview md-autocomplete .md-show-clear-button .input-w-clear input[disabled] + label.label-btn:hover:before, md-autocomplete .md-show-clear-button .input-w-clear .theme-marketview input[disabled] + label.label-btn:hover:before, .theme-marketview .input-w-clear md-autocomplete .md-show-clear-button input[disabled] + label.label-btn:hover:before, .input-w-clear md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + label.label-btn:hover:before, .theme-marketview md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions input[disabled] + .md-cancel-button:hover:before, md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions .theme-marketview input[disabled] + .md-cancel-button:hover:before, .theme-marketview .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input[disabled] + .md-cancel-button:hover:before, .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + .md-cancel-button:hover:before, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear input[disabled] + .md-cancel-button:hover:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear .theme-marketview input[disabled] + .md-cancel-button:hover:before, .theme-marketview md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button input[disabled] + .md-cancel-button:hover:before, md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + .md-cancel-button:hover:before, .theme-marketview md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions input[disabled] + .md-confirm-button:hover:before, md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions .theme-marketview input[disabled] + .md-confirm-button:hover:before, .theme-marketview .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input[disabled] + .md-confirm-button:hover:before, .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + .md-confirm-button:hover:before, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear input[disabled] + .md-confirm-button:hover:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear .theme-marketview input[disabled] + .md-confirm-button:hover:before, .theme-marketview md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button input[disabled] + .md-confirm-button:hover:before, md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + .md-confirm-button:hover:before,
  .theme-marketview md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear input + button:hover:before, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear .theme-marketview input + button:hover:before, .theme-marketview fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button input + button:hover:before, fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button .theme-marketview input + button:hover:before, .theme-marketview md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear input + label.label-btn:hover:before, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear .theme-marketview input + label.label-btn:hover:before, .theme-marketview fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button input + label.label-btn:hover:before, fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button .theme-marketview input + label.label-btn:hover:before, .theme-marketview md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .md-cancel-button:hover:before, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear md-dialog md-dialog-actions .theme-marketview input + .md-cancel-button:hover:before, .theme-marketview fieldset[disabled] .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input + .md-cancel-button:hover:before, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input + .md-cancel-button:hover:before, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .md-cancel-button:hover:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-clear .theme-marketview input + .md-cancel-button:hover:before, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button input + .md-cancel-button:hover:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button .theme-marketview input + .md-cancel-button:hover:before, .theme-marketview md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .md-confirm-button:hover:before, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear md-dialog md-dialog-actions .theme-marketview input + .md-confirm-button:hover:before, .theme-marketview fieldset[disabled] .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input + .md-confirm-button:hover:before, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input + .md-confirm-button:hover:before, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .md-confirm-button:hover:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-clear .theme-marketview input + .md-confirm-button:hover:before, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button input + .md-confirm-button:hover:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button .theme-marketview input + .md-confirm-button:hover:before, .theme-marketview md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions input.disabled + .md-cancel-button:hover:before, md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions .theme-marketview input.disabled + .md-cancel-button:hover:before, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button input.disabled + .md-cancel-button:hover:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button .theme-marketview input.disabled + .md-cancel-button:hover:before, .theme-marketview md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button input.disabled + .md-cancel-button:hover:before, md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button .theme-marketview input.disabled + .md-cancel-button:hover:before, .theme-marketview md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions input.disabled + .md-confirm-button:hover:before, md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions .theme-marketview input.disabled + .md-confirm-button:hover:before, .theme-marketview md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button input.disabled + .md-confirm-button:hover:before, md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button .theme-marketview input.disabled + .md-confirm-button:hover:before, .theme-marketview md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions input[disabled] + .md-cancel-button:hover:before, md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions .theme-marketview input[disabled] + .md-cancel-button:hover:before, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button input[disabled] + .md-cancel-button:hover:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button .theme-marketview input[disabled] + .md-cancel-button:hover:before, .theme-marketview md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button input[disabled] + .md-cancel-button:hover:before, md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + .md-cancel-button:hover:before, .theme-marketview md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions input[disabled] + .md-confirm-button:hover:before, md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions .theme-marketview input[disabled] + .md-confirm-button:hover:before, .theme-marketview md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button input[disabled] + .md-confirm-button:hover:before, md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + .md-confirm-button:hover:before, .theme-marketview md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .md-cancel-button:hover:before, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button md-dialog md-dialog-actions .theme-marketview input + .md-cancel-button:hover:before, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .md-cancel-button:hover:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-button .theme-marketview input + .md-cancel-button:hover:before, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button input + .md-cancel-button:hover:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button .theme-marketview input + .md-cancel-button:hover:before, .theme-marketview md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .md-confirm-button:hover:before, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button md-dialog md-dialog-actions .theme-marketview input + .md-confirm-button:hover:before, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button input + .md-confirm-button:hover:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button .theme-marketview input + .md-confirm-button:hover:before, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .disabled.md-cancel-button:hover:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-marketview .disabled.md-cancel-button:hover:before, .theme-marketview md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .disabled.md-cancel-button:hover:before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview .disabled.md-cancel-button:hover:before, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .disabled.md-confirm-button:hover:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-marketview .disabled.md-confirm-button:hover:before, .theme-marketview md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .disabled.md-confirm-button:hover:before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview .disabled.md-confirm-button:hover:before, .theme-marketview md-dialog .disabled.close-dialog:hover:before, md-dialog .theme-marketview .disabled.close-dialog:hover:before, .theme-marketview md-dialog md-dialog-actions .disabled.md-cancel-button:hover:before, md-dialog md-dialog-actions .theme-marketview .disabled.md-cancel-button:hover:before, .theme-marketview md-dialog md-dialog-actions .clear.disabled.md-confirm-button:hover:before, md-dialog md-dialog-actions .theme-marketview .clear.disabled.md-confirm-button:hover:before, .theme-marketview .colorpicker .disabled.close-colorpicker:hover:before, .colorpicker .theme-marketview .disabled.close-colorpicker:hover:before, .theme-marketview button.clear.disabled:focus:before, .theme-marketview label.clear.disabled.label-btn:focus:before, .theme-marketview .input-w-inlay input.disabled + button.clear:focus:before, .input-w-inlay .theme-marketview input.disabled + button.clear:focus:before, .theme-marketview .input-w-inlay input.disabled + label.clear.label-btn:focus:before, .input-w-inlay .theme-marketview input.disabled + label.clear.label-btn:focus:before, .theme-marketview .input-w-inlay md-autocomplete .md-show-clear-button input.disabled + button:focus:before, .input-w-inlay md-autocomplete .md-show-clear-button .theme-marketview input.disabled + button:focus:before, .theme-marketview md-autocomplete .md-show-clear-button .input-w-inlay input.disabled + button:focus:before, md-autocomplete .md-show-clear-button .input-w-inlay .theme-marketview input.disabled + button:focus:before, .theme-marketview .input-w-inlay md-autocomplete .md-show-clear-button input.disabled + label.label-btn:focus:before, .input-w-inlay md-autocomplete .md-show-clear-button .theme-marketview input.disabled + label.label-btn:focus:before, .theme-marketview md-autocomplete .md-show-clear-button .input-w-inlay input.disabled + label.label-btn:focus:before, md-autocomplete .md-show-clear-button .input-w-inlay .theme-marketview input.disabled + label.label-btn:focus:before, .theme-marketview .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input.disabled + .md-cancel-button:focus:before, .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input.disabled + .md-cancel-button:focus:before, .theme-marketview .input-w-inlay md-autocomplete .md-show-clear-button md-dialog md-dialog-actions input.disabled + .md-confirm-button:focus:before, .input-w-inlay md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-marketview input.disabled + .md-confirm-button:focus:before, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay input.disabled + .md-confirm-button:focus:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay .theme-marketview input.disabled + .md-confirm-button:focus:before, .theme-marketview .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input.disabled + .md-confirm-button:focus:before, .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input.disabled + .md-confirm-button:focus:before, .theme-marketview md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-inlay input.disabled + .md-confirm-button:focus:before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-inlay .theme-marketview input.disabled + .md-confirm-button:focus:before, .theme-marketview .input-w-inlay md-dialog input.disabled + .close-dialog:focus:before, .input-w-inlay md-dialog .theme-marketview input.disabled + .close-dialog:focus:before, .theme-marketview md-dialog .input-w-inlay input.disabled + .close-dialog:focus:before, md-dialog .input-w-inlay .theme-marketview input.disabled + .close-dialog:focus:before, .theme-marketview .input-w-inlay md-dialog md-dialog-actions input.disabled + .md-cancel-button:focus:before, .input-w-inlay md-dialog md-dialog-actions .theme-marketview input.disabled + .md-cancel-button:focus:before, .theme-marketview md-dialog md-dialog-actions .input-w-inlay input.disabled + .md-cancel-button:focus:before, md-dialog md-dialog-actions .input-w-inlay .theme-marketview input.disabled + .md-cancel-button:focus:before, .theme-marketview .input-w-inlay md-dialog md-dialog-actions input.disabled + .clear.md-confirm-button:focus:before, .input-w-inlay md-dialog md-dialog-actions .theme-marketview input.disabled + .clear.md-confirm-button:focus:before, .theme-marketview md-dialog md-dialog-actions .input-w-inlay input.disabled + .clear.md-confirm-button:focus:before, md-dialog md-dialog-actions .input-w-inlay .theme-marketview input.disabled + .clear.md-confirm-button:focus:before, .theme-marketview .input-w-inlay .colorpicker input.disabled + .close-colorpicker:focus:before, .input-w-inlay .colorpicker .theme-marketview input.disabled + .close-colorpicker:focus:before, .theme-marketview .colorpicker .input-w-inlay input.disabled + .close-colorpicker:focus:before, .colorpicker .input-w-inlay .theme-marketview input.disabled + .close-colorpicker:focus:before, .theme-marketview .input-w-inlay input[disabled] + button.clear:focus:before, .input-w-inlay .theme-marketview input[disabled] + button.clear:focus:before, .theme-marketview .input-w-inlay input[disabled] + label.clear.label-btn:focus:before, .input-w-inlay .theme-marketview input[disabled] + label.clear.label-btn:focus:before, .theme-marketview .input-w-inlay md-autocomplete .md-show-clear-button input[disabled] + button:focus:before, .input-w-inlay md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + button:focus:before, .theme-marketview md-autocomplete .md-show-clear-button .input-w-inlay input[disabled] + button:focus:before, md-autocomplete .md-show-clear-button .input-w-inlay .theme-marketview input[disabled] + button:focus:before, .theme-marketview .input-w-inlay md-autocomplete .md-show-clear-button input[disabled] + label.label-btn:focus:before, .input-w-inlay md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + label.label-btn:focus:before, .theme-marketview md-autocomplete .md-show-clear-button .input-w-inlay input[disabled] + label.label-btn:focus:before, md-autocomplete .md-show-clear-button .input-w-inlay .theme-marketview input[disabled] + label.label-btn:focus:before, .theme-marketview .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input[disabled] + .md-cancel-button:focus:before, .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + .md-cancel-button:focus:before, .theme-marketview .input-w-inlay md-autocomplete .md-show-clear-button md-dialog md-dialog-actions input[disabled] + .md-confirm-button:focus:before, .input-w-inlay md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-marketview input[disabled] + .md-confirm-button:focus:before, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay input[disabled] + .md-confirm-button:focus:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay .theme-marketview input[disabled] + .md-confirm-button:focus:before, .theme-marketview .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input[disabled] + .md-confirm-button:focus:before, .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + .md-confirm-button:focus:before, .theme-marketview md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-inlay input[disabled] + .md-confirm-button:focus:before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-inlay .theme-marketview input[disabled] + .md-confirm-button:focus:before, .theme-marketview .input-w-inlay md-dialog input[disabled] + .close-dialog:focus:before, .input-w-inlay md-dialog .theme-marketview input[disabled] + .close-dialog:focus:before, .theme-marketview md-dialog .input-w-inlay input[disabled] + .close-dialog:focus:before, md-dialog .input-w-inlay .theme-marketview input[disabled] + .close-dialog:focus:before, .theme-marketview .input-w-inlay md-dialog md-dialog-actions input[disabled] + .md-cancel-button:focus:before, .input-w-inlay md-dialog md-dialog-actions .theme-marketview input[disabled] + .md-cancel-button:focus:before, .theme-marketview md-dialog md-dialog-actions .input-w-inlay input[disabled] + .md-cancel-button:focus:before, md-dialog md-dialog-actions .input-w-inlay .theme-marketview input[disabled] + .md-cancel-button:focus:before, .theme-marketview .input-w-inlay md-dialog md-dialog-actions input[disabled] + .clear.md-confirm-button:focus:before, .input-w-inlay md-dialog md-dialog-actions .theme-marketview input[disabled] + .clear.md-confirm-button:focus:before, .theme-marketview md-dialog md-dialog-actions .input-w-inlay input[disabled] + .clear.md-confirm-button:focus:before, md-dialog md-dialog-actions .input-w-inlay .theme-marketview input[disabled] + .clear.md-confirm-button:focus:before, .theme-marketview .input-w-inlay .colorpicker input[disabled] + .close-colorpicker:focus:before, .input-w-inlay .colorpicker .theme-marketview input[disabled] + .close-colorpicker:focus:before, .theme-marketview .colorpicker .input-w-inlay input[disabled] + .close-colorpicker:focus:before, .colorpicker .input-w-inlay .theme-marketview input[disabled] + .close-colorpicker:focus:before,
  .theme-marketview fieldset[disabled] .input-w-inlay input + button.clear:focus:before, fieldset[disabled] .input-w-inlay .theme-marketview input + button.clear:focus:before, .theme-marketview fieldset[disabled] .input-w-inlay input + label.clear.label-btn:focus:before, fieldset[disabled] .input-w-inlay .theme-marketview input + label.clear.label-btn:focus:before, .theme-marketview fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button input + button:focus:before, fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button .theme-marketview input + button:focus:before, .theme-marketview md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay input + button:focus:before, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay .theme-marketview input + button:focus:before, .theme-marketview fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button input + label.label-btn:focus:before, fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button .theme-marketview input + label.label-btn:focus:before, .theme-marketview md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay input + label.label-btn:focus:before, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay .theme-marketview input + label.label-btn:focus:before, .theme-marketview fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input + .md-cancel-button:focus:before, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input + .md-cancel-button:focus:before, .theme-marketview fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button md-dialog md-dialog-actions input + .md-confirm-button:focus:before, fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-marketview input + .md-confirm-button:focus:before, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .md-confirm-button:focus:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay .theme-marketview input + .md-confirm-button:focus:before, .theme-marketview fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input + .md-confirm-button:focus:before, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input + .md-confirm-button:focus:before, .theme-marketview md-dialog md-dialog-actions md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay input + .md-confirm-button:focus:before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay .theme-marketview input + .md-confirm-button:focus:before, .theme-marketview fieldset[disabled] .input-w-inlay md-dialog input + .close-dialog:focus:before, fieldset[disabled] .input-w-inlay md-dialog .theme-marketview input + .close-dialog:focus:before, .theme-marketview md-dialog fieldset[disabled] .input-w-inlay input + .close-dialog:focus:before, md-dialog fieldset[disabled] .input-w-inlay .theme-marketview input + .close-dialog:focus:before, .theme-marketview fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .md-cancel-button:focus:before, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions .theme-marketview input + .md-cancel-button:focus:before, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .md-cancel-button:focus:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay .theme-marketview input + .md-cancel-button:focus:before, .theme-marketview fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .clear.md-confirm-button:focus:before, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions .theme-marketview input + .clear.md-confirm-button:focus:before, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .clear.md-confirm-button:focus:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay .theme-marketview input + .clear.md-confirm-button:focus:before, .theme-marketview fieldset[disabled] .input-w-inlay .colorpicker input + .close-colorpicker:focus:before, fieldset[disabled] .input-w-inlay .colorpicker .theme-marketview input + .close-colorpicker:focus:before, .theme-marketview .colorpicker fieldset[disabled] .input-w-inlay input + .close-colorpicker:focus:before, .colorpicker fieldset[disabled] .input-w-inlay .theme-marketview input + .close-colorpicker:focus:before, .theme-marketview .input-w-clear input.disabled + button:focus:before, .input-w-clear .theme-marketview input.disabled + button:focus:before, .theme-marketview .input-w-clear input.disabled + label.label-btn:focus:before, .input-w-clear .theme-marketview input.disabled + label.label-btn:focus:before, .theme-marketview .input-w-clear md-dialog md-dialog-actions input.disabled + .md-cancel-button:focus:before, .input-w-clear md-dialog md-dialog-actions .theme-marketview input.disabled + .md-cancel-button:focus:before, .theme-marketview md-dialog md-dialog-actions .input-w-clear input.disabled + .md-cancel-button:focus:before, md-dialog md-dialog-actions .input-w-clear .theme-marketview input.disabled + .md-cancel-button:focus:before, .theme-marketview .input-w-clear md-dialog md-dialog-actions input.disabled + .md-confirm-button:focus:before, .input-w-clear md-dialog md-dialog-actions .theme-marketview input.disabled + .md-confirm-button:focus:before, .theme-marketview md-dialog md-dialog-actions .input-w-clear input.disabled + .md-confirm-button:focus:before, md-dialog md-dialog-actions .input-w-clear .theme-marketview input.disabled + .md-confirm-button:focus:before, .theme-marketview .input-w-clear input[disabled] + button:focus:before, .input-w-clear .theme-marketview input[disabled] + button:focus:before, .theme-marketview .input-w-clear input[disabled] + label.label-btn:focus:before, .input-w-clear .theme-marketview input[disabled] + label.label-btn:focus:before, .theme-marketview .input-w-clear md-dialog md-dialog-actions input[disabled] + .md-cancel-button:focus:before, .input-w-clear md-dialog md-dialog-actions .theme-marketview input[disabled] + .md-cancel-button:focus:before, .theme-marketview md-dialog md-dialog-actions .input-w-clear input[disabled] + .md-cancel-button:focus:before, md-dialog md-dialog-actions .input-w-clear .theme-marketview input[disabled] + .md-cancel-button:focus:before, .theme-marketview .input-w-clear md-dialog md-dialog-actions input[disabled] + .md-confirm-button:focus:before, .input-w-clear md-dialog md-dialog-actions .theme-marketview input[disabled] + .md-confirm-button:focus:before, .theme-marketview md-dialog md-dialog-actions .input-w-clear input[disabled] + .md-confirm-button:focus:before, md-dialog md-dialog-actions .input-w-clear .theme-marketview input[disabled] + .md-confirm-button:focus:before,
  .theme-marketview fieldset[disabled] .input-w-clear input + button:focus:before, fieldset[disabled] .input-w-clear .theme-marketview input + button:focus:before, .theme-marketview fieldset[disabled] .input-w-clear input + label.label-btn:focus:before, fieldset[disabled] .input-w-clear .theme-marketview input + label.label-btn:focus:before, .theme-marketview fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .md-cancel-button:focus:before, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions .theme-marketview input + .md-cancel-button:focus:before, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .md-cancel-button:focus:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear .theme-marketview input + .md-cancel-button:focus:before, .theme-marketview fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .md-confirm-button:focus:before, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions .theme-marketview input + .md-confirm-button:focus:before, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .md-confirm-button:focus:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear .theme-marketview input + .md-confirm-button:focus:before, .theme-marketview .input-w-button input.disabled + button.clear:focus:before, .input-w-button .theme-marketview input.disabled + button.clear:focus:before, .theme-marketview .input-w-button input.disabled + label.clear.label-btn:focus:before, .input-w-button .theme-marketview input.disabled + label.clear.label-btn:focus:before, .theme-marketview .input-w-button md-autocomplete .md-show-clear-button input.disabled + button:focus:before, .input-w-button md-autocomplete .md-show-clear-button .theme-marketview input.disabled + button:focus:before, .theme-marketview md-autocomplete .md-show-clear-button .input-w-button input.disabled + button:focus:before, md-autocomplete .md-show-clear-button .input-w-button .theme-marketview input.disabled + button:focus:before, .theme-marketview .input-w-button md-autocomplete .md-show-clear-button input.disabled + label.label-btn:focus:before, .input-w-button md-autocomplete .md-show-clear-button .theme-marketview input.disabled + label.label-btn:focus:before, .theme-marketview md-autocomplete .md-show-clear-button .input-w-button input.disabled + label.label-btn:focus:before, md-autocomplete .md-show-clear-button .input-w-button .theme-marketview input.disabled + label.label-btn:focus:before, .theme-marketview .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input.disabled + .md-cancel-button:focus:before, .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input.disabled + .md-cancel-button:focus:before, .theme-marketview .input-w-button md-autocomplete .md-show-clear-button md-dialog md-dialog-actions input.disabled + .md-confirm-button:focus:before, .input-w-button md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-marketview input.disabled + .md-confirm-button:focus:before, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button input.disabled + .md-confirm-button:focus:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button .theme-marketview input.disabled + .md-confirm-button:focus:before, .theme-marketview .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input.disabled + .md-confirm-button:focus:before, .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input.disabled + .md-confirm-button:focus:before, .theme-marketview md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-button input.disabled + .md-confirm-button:focus:before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-button .theme-marketview input.disabled + .md-confirm-button:focus:before, .theme-marketview .input-w-button md-dialog input.disabled + .close-dialog:focus:before, .input-w-button md-dialog .theme-marketview input.disabled + .close-dialog:focus:before, .theme-marketview md-dialog .input-w-button input.disabled + .close-dialog:focus:before, md-dialog .input-w-button .theme-marketview input.disabled + .close-dialog:focus:before, .theme-marketview .input-w-button md-dialog md-dialog-actions input.disabled + .md-cancel-button:focus:before, .input-w-button md-dialog md-dialog-actions .theme-marketview input.disabled + .md-cancel-button:focus:before, .theme-marketview md-dialog md-dialog-actions .input-w-button input.disabled + .md-cancel-button:focus:before, md-dialog md-dialog-actions .input-w-button .theme-marketview input.disabled + .md-cancel-button:focus:before, .theme-marketview .input-w-button md-dialog md-dialog-actions input.disabled + .clear.md-confirm-button:focus:before, .input-w-button md-dialog md-dialog-actions .theme-marketview input.disabled + .clear.md-confirm-button:focus:before, .theme-marketview md-dialog md-dialog-actions .input-w-button input.disabled + .clear.md-confirm-button:focus:before, md-dialog md-dialog-actions .input-w-button .theme-marketview input.disabled + .clear.md-confirm-button:focus:before, .theme-marketview .input-w-button .colorpicker input.disabled + .close-colorpicker:focus:before, .input-w-button .colorpicker .theme-marketview input.disabled + .close-colorpicker:focus:before, .theme-marketview .colorpicker .input-w-button input.disabled + .close-colorpicker:focus:before, .colorpicker .input-w-button .theme-marketview input.disabled + .close-colorpicker:focus:before, .theme-marketview .input-w-button input[disabled] + button.clear:focus:before, .input-w-button .theme-marketview input[disabled] + button.clear:focus:before, .theme-marketview .input-w-button input[disabled] + label.clear.label-btn:focus:before, .input-w-button .theme-marketview input[disabled] + label.clear.label-btn:focus:before, .theme-marketview .input-w-button md-autocomplete .md-show-clear-button input[disabled] + button:focus:before, .input-w-button md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + button:focus:before, .theme-marketview md-autocomplete .md-show-clear-button .input-w-button input[disabled] + button:focus:before, md-autocomplete .md-show-clear-button .input-w-button .theme-marketview input[disabled] + button:focus:before, .theme-marketview .input-w-button md-autocomplete .md-show-clear-button input[disabled] + label.label-btn:focus:before, .input-w-button md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + label.label-btn:focus:before, .theme-marketview md-autocomplete .md-show-clear-button .input-w-button input[disabled] + label.label-btn:focus:before, md-autocomplete .md-show-clear-button .input-w-button .theme-marketview input[disabled] + label.label-btn:focus:before, .theme-marketview .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input[disabled] + .md-cancel-button:focus:before, .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + .md-cancel-button:focus:before, .theme-marketview .input-w-button md-autocomplete .md-show-clear-button md-dialog md-dialog-actions input[disabled] + .md-confirm-button:focus:before, .input-w-button md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-marketview input[disabled] + .md-confirm-button:focus:before, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button input[disabled] + .md-confirm-button:focus:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button .theme-marketview input[disabled] + .md-confirm-button:focus:before, .theme-marketview .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input[disabled] + .md-confirm-button:focus:before, .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + .md-confirm-button:focus:before, .theme-marketview md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-button input[disabled] + .md-confirm-button:focus:before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .input-w-button .theme-marketview input[disabled] + .md-confirm-button:focus:before, .theme-marketview .input-w-button md-dialog input[disabled] + .close-dialog:focus:before, .input-w-button md-dialog .theme-marketview input[disabled] + .close-dialog:focus:before, .theme-marketview md-dialog .input-w-button input[disabled] + .close-dialog:focus:before, md-dialog .input-w-button .theme-marketview input[disabled] + .close-dialog:focus:before, .theme-marketview .input-w-button md-dialog md-dialog-actions input[disabled] + .md-cancel-button:focus:before, .input-w-button md-dialog md-dialog-actions .theme-marketview input[disabled] + .md-cancel-button:focus:before, .theme-marketview md-dialog md-dialog-actions .input-w-button input[disabled] + .md-cancel-button:focus:before, md-dialog md-dialog-actions .input-w-button .theme-marketview input[disabled] + .md-cancel-button:focus:before, .theme-marketview .input-w-button md-dialog md-dialog-actions input[disabled] + .clear.md-confirm-button:focus:before, .input-w-button md-dialog md-dialog-actions .theme-marketview input[disabled] + .clear.md-confirm-button:focus:before, .theme-marketview md-dialog md-dialog-actions .input-w-button input[disabled] + .clear.md-confirm-button:focus:before, md-dialog md-dialog-actions .input-w-button .theme-marketview input[disabled] + .clear.md-confirm-button:focus:before, .theme-marketview .input-w-button .colorpicker input[disabled] + .close-colorpicker:focus:before, .input-w-button .colorpicker .theme-marketview input[disabled] + .close-colorpicker:focus:before, .theme-marketview .colorpicker .input-w-button input[disabled] + .close-colorpicker:focus:before, .colorpicker .input-w-button .theme-marketview input[disabled] + .close-colorpicker:focus:before,
  .theme-marketview fieldset[disabled] .input-w-button input + button.clear:focus:before, fieldset[disabled] .input-w-button .theme-marketview input + button.clear:focus:before, .theme-marketview fieldset[disabled] .input-w-button input + label.clear.label-btn:focus:before, fieldset[disabled] .input-w-button .theme-marketview input + label.clear.label-btn:focus:before, .theme-marketview fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button input + button:focus:before, fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button .theme-marketview input + button:focus:before, .theme-marketview md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button input + button:focus:before, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button .theme-marketview input + button:focus:before, .theme-marketview fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button input + label.label-btn:focus:before, fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button .theme-marketview input + label.label-btn:focus:before, .theme-marketview md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button input + label.label-btn:focus:before, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button .theme-marketview input + label.label-btn:focus:before, .theme-marketview fieldset[disabled] .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input + .md-cancel-button:focus:before, fieldset[disabled] .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input + .md-cancel-button:focus:before, .theme-marketview fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button md-dialog md-dialog-actions input + .md-confirm-button:focus:before, fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-marketview input + .md-confirm-button:focus:before, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .md-confirm-button:focus:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-button .theme-marketview input + .md-confirm-button:focus:before, .theme-marketview fieldset[disabled] .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input + .md-confirm-button:focus:before, fieldset[disabled] .input-w-button md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input + .md-confirm-button:focus:before, .theme-marketview md-dialog md-dialog-actions md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button input + .md-confirm-button:focus:before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button .theme-marketview input + .md-confirm-button:focus:before, .theme-marketview fieldset[disabled] .input-w-button md-dialog input + .close-dialog:focus:before, fieldset[disabled] .input-w-button md-dialog .theme-marketview input + .close-dialog:focus:before, .theme-marketview md-dialog fieldset[disabled] .input-w-button input + .close-dialog:focus:before, md-dialog fieldset[disabled] .input-w-button .theme-marketview input + .close-dialog:focus:before, .theme-marketview fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .md-cancel-button:focus:before, fieldset[disabled] .input-w-button md-dialog md-dialog-actions .theme-marketview input + .md-cancel-button:focus:before, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .md-cancel-button:focus:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-button .theme-marketview input + .md-cancel-button:focus:before, .theme-marketview fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .clear.md-confirm-button:focus:before, fieldset[disabled] .input-w-button md-dialog md-dialog-actions .theme-marketview input + .clear.md-confirm-button:focus:before, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .clear.md-confirm-button:focus:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-button .theme-marketview input + .clear.md-confirm-button:focus:before, .theme-marketview fieldset[disabled] .input-w-button .colorpicker input + .close-colorpicker:focus:before, fieldset[disabled] .input-w-button .colorpicker .theme-marketview input + .close-colorpicker:focus:before, .theme-marketview .colorpicker fieldset[disabled] .input-w-button input + .close-colorpicker:focus:before, .colorpicker fieldset[disabled] .input-w-button .theme-marketview input + .close-colorpicker:focus:before, .theme-marketview md-autocomplete .md-show-clear-button button.disabled:focus:before, md-autocomplete .md-show-clear-button .theme-marketview button.disabled:focus:before, .theme-marketview md-autocomplete .md-show-clear-button label.disabled.label-btn:focus:before, md-autocomplete .md-show-clear-button .theme-marketview label.disabled.label-btn:focus:before, .theme-marketview md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions input.disabled + .md-cancel-button:focus:before, md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions .theme-marketview input.disabled + .md-cancel-button:focus:before, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay input.disabled + .md-cancel-button:focus:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay .theme-marketview input.disabled + .md-cancel-button:focus:before, .theme-marketview md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button input.disabled + .md-cancel-button:focus:before, md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button .theme-marketview input.disabled + .md-cancel-button:focus:before, .theme-marketview md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions input.disabled + .md-confirm-button:focus:before, md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions .theme-marketview input.disabled + .md-confirm-button:focus:before, .theme-marketview md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button input.disabled + .md-confirm-button:focus:before, md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button .theme-marketview input.disabled + .md-confirm-button:focus:before, .theme-marketview md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions input[disabled] + .md-cancel-button:focus:before, md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions .theme-marketview input[disabled] + .md-cancel-button:focus:before, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay input[disabled] + .md-cancel-button:focus:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-inlay .theme-marketview input[disabled] + .md-cancel-button:focus:before, .theme-marketview md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button input[disabled] + .md-cancel-button:focus:before, md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + .md-cancel-button:focus:before, .theme-marketview md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions input[disabled] + .md-confirm-button:focus:before, md-autocomplete .md-show-clear-button .input-w-inlay md-dialog md-dialog-actions .theme-marketview input[disabled] + .md-confirm-button:focus:before, .theme-marketview md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button input[disabled] + .md-confirm-button:focus:before, md-dialog md-dialog-actions .input-w-inlay md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + .md-confirm-button:focus:before, .theme-marketview md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .md-cancel-button:focus:before, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions .theme-marketview input + .md-cancel-button:focus:before, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .md-cancel-button:focus:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay .theme-marketview input + .md-cancel-button:focus:before, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button input + .md-cancel-button:focus:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button .theme-marketview input + .md-cancel-button:focus:before, .theme-marketview md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .md-confirm-button:focus:before, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions .theme-marketview input + .md-confirm-button:focus:before, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button input + .md-confirm-button:focus:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay md-autocomplete .md-show-clear-button .theme-marketview input + .md-confirm-button:focus:before, .theme-marketview md-autocomplete .md-show-clear-button .input-w-clear input.disabled + button:focus:before, md-autocomplete .md-show-clear-button .input-w-clear .theme-marketview input.disabled + button:focus:before, .theme-marketview .input-w-clear md-autocomplete .md-show-clear-button input.disabled + button:focus:before, .input-w-clear md-autocomplete .md-show-clear-button .theme-marketview input.disabled + button:focus:before, .theme-marketview md-autocomplete .md-show-clear-button .input-w-clear input.disabled + label.label-btn:focus:before, md-autocomplete .md-show-clear-button .input-w-clear .theme-marketview input.disabled + label.label-btn:focus:before, .theme-marketview .input-w-clear md-autocomplete .md-show-clear-button input.disabled + label.label-btn:focus:before, .input-w-clear md-autocomplete .md-show-clear-button .theme-marketview input.disabled + label.label-btn:focus:before, .theme-marketview md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions input.disabled + .md-cancel-button:focus:before, md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions .theme-marketview input.disabled + .md-cancel-button:focus:before, .theme-marketview .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input.disabled + .md-cancel-button:focus:before, .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input.disabled + .md-cancel-button:focus:before, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear input.disabled + .md-cancel-button:focus:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear .theme-marketview input.disabled + .md-cancel-button:focus:before, .theme-marketview md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button input.disabled + .md-cancel-button:focus:before, md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button .theme-marketview input.disabled + .md-cancel-button:focus:before, .theme-marketview md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions input.disabled + .md-confirm-button:focus:before, md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions .theme-marketview input.disabled + .md-confirm-button:focus:before, .theme-marketview .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input.disabled + .md-confirm-button:focus:before, .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input.disabled + .md-confirm-button:focus:before, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear input.disabled + .md-confirm-button:focus:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear .theme-marketview input.disabled + .md-confirm-button:focus:before, .theme-marketview md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button input.disabled + .md-confirm-button:focus:before, md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button .theme-marketview input.disabled + .md-confirm-button:focus:before, .theme-marketview md-autocomplete .md-show-clear-button .input-w-clear input[disabled] + button:focus:before, md-autocomplete .md-show-clear-button .input-w-clear .theme-marketview input[disabled] + button:focus:before, .theme-marketview .input-w-clear md-autocomplete .md-show-clear-button input[disabled] + button:focus:before, .input-w-clear md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + button:focus:before, .theme-marketview md-autocomplete .md-show-clear-button .input-w-clear input[disabled] + label.label-btn:focus:before, md-autocomplete .md-show-clear-button .input-w-clear .theme-marketview input[disabled] + label.label-btn:focus:before, .theme-marketview .input-w-clear md-autocomplete .md-show-clear-button input[disabled] + label.label-btn:focus:before, .input-w-clear md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + label.label-btn:focus:before, .theme-marketview md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions input[disabled] + .md-cancel-button:focus:before, md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions .theme-marketview input[disabled] + .md-cancel-button:focus:before, .theme-marketview .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input[disabled] + .md-cancel-button:focus:before, .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + .md-cancel-button:focus:before, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear input[disabled] + .md-cancel-button:focus:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear .theme-marketview input[disabled] + .md-cancel-button:focus:before, .theme-marketview md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button input[disabled] + .md-cancel-button:focus:before, md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + .md-cancel-button:focus:before, .theme-marketview md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions input[disabled] + .md-confirm-button:focus:before, md-autocomplete .md-show-clear-button .input-w-clear md-dialog md-dialog-actions .theme-marketview input[disabled] + .md-confirm-button:focus:before, .theme-marketview .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input[disabled] + .md-confirm-button:focus:before, .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + .md-confirm-button:focus:before, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear input[disabled] + .md-confirm-button:focus:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-clear .theme-marketview input[disabled] + .md-confirm-button:focus:before, .theme-marketview md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button input[disabled] + .md-confirm-button:focus:before, md-dialog md-dialog-actions .input-w-clear md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + .md-confirm-button:focus:before,
  .theme-marketview md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear input + button:focus:before, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear .theme-marketview input + button:focus:before, .theme-marketview fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button input + button:focus:before, fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button .theme-marketview input + button:focus:before, .theme-marketview md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear input + label.label-btn:focus:before, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear .theme-marketview input + label.label-btn:focus:before, .theme-marketview fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button input + label.label-btn:focus:before, fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button .theme-marketview input + label.label-btn:focus:before, .theme-marketview md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .md-cancel-button:focus:before, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear md-dialog md-dialog-actions .theme-marketview input + .md-cancel-button:focus:before, .theme-marketview fieldset[disabled] .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input + .md-cancel-button:focus:before, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input + .md-cancel-button:focus:before, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .md-cancel-button:focus:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-clear .theme-marketview input + .md-cancel-button:focus:before, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button input + .md-cancel-button:focus:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button .theme-marketview input + .md-cancel-button:focus:before, .theme-marketview md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .md-confirm-button:focus:before, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-clear md-dialog md-dialog-actions .theme-marketview input + .md-confirm-button:focus:before, .theme-marketview fieldset[disabled] .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button input + .md-confirm-button:focus:before, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview input + .md-confirm-button:focus:before, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .md-confirm-button:focus:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-clear .theme-marketview input + .md-confirm-button:focus:before, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button input + .md-confirm-button:focus:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear md-autocomplete .md-show-clear-button .theme-marketview input + .md-confirm-button:focus:before, .theme-marketview md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions input.disabled + .md-cancel-button:focus:before, md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions .theme-marketview input.disabled + .md-cancel-button:focus:before, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button input.disabled + .md-cancel-button:focus:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button .theme-marketview input.disabled + .md-cancel-button:focus:before, .theme-marketview md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button input.disabled + .md-cancel-button:focus:before, md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button .theme-marketview input.disabled + .md-cancel-button:focus:before, .theme-marketview md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions input.disabled + .md-confirm-button:focus:before, md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions .theme-marketview input.disabled + .md-confirm-button:focus:before, .theme-marketview md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button input.disabled + .md-confirm-button:focus:before, md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button .theme-marketview input.disabled + .md-confirm-button:focus:before, .theme-marketview md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions input[disabled] + .md-cancel-button:focus:before, md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions .theme-marketview input[disabled] + .md-cancel-button:focus:before, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button input[disabled] + .md-cancel-button:focus:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .input-w-button .theme-marketview input[disabled] + .md-cancel-button:focus:before, .theme-marketview md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button input[disabled] + .md-cancel-button:focus:before, md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + .md-cancel-button:focus:before, .theme-marketview md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions input[disabled] + .md-confirm-button:focus:before, md-autocomplete .md-show-clear-button .input-w-button md-dialog md-dialog-actions .theme-marketview input[disabled] + .md-confirm-button:focus:before, .theme-marketview md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button input[disabled] + .md-confirm-button:focus:before, md-dialog md-dialog-actions .input-w-button md-autocomplete .md-show-clear-button .theme-marketview input[disabled] + .md-confirm-button:focus:before, .theme-marketview md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .md-cancel-button:focus:before, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button md-dialog md-dialog-actions .theme-marketview input + .md-cancel-button:focus:before, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .md-cancel-button:focus:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .input-w-button .theme-marketview input + .md-cancel-button:focus:before, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button input + .md-cancel-button:focus:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button .theme-marketview input + .md-cancel-button:focus:before, .theme-marketview md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .md-confirm-button:focus:before, md-autocomplete .md-show-clear-button fieldset[disabled] .input-w-button md-dialog md-dialog-actions .theme-marketview input + .md-confirm-button:focus:before, .theme-marketview md-dialog md-dialog-actions fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button input + .md-confirm-button:focus:before, md-dialog md-dialog-actions fieldset[disabled] .input-w-button md-autocomplete .md-show-clear-button .theme-marketview input + .md-confirm-button:focus:before, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .disabled.md-cancel-button:focus:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-marketview .disabled.md-cancel-button:focus:before, .theme-marketview md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .disabled.md-cancel-button:focus:before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview .disabled.md-cancel-button:focus:before, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .disabled.md-confirm-button:focus:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-marketview .disabled.md-confirm-button:focus:before, .theme-marketview md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .disabled.md-confirm-button:focus:before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview .disabled.md-confirm-button:focus:before, .theme-marketview md-dialog .disabled.close-dialog:focus:before, md-dialog .theme-marketview .disabled.close-dialog:focus:before, .theme-marketview md-dialog md-dialog-actions .disabled.md-cancel-button:focus:before, md-dialog md-dialog-actions .theme-marketview .disabled.md-cancel-button:focus:before, .theme-marketview md-dialog md-dialog-actions .clear.disabled.md-confirm-button:focus:before, md-dialog md-dialog-actions .theme-marketview .clear.disabled.md-confirm-button:focus:before, .theme-marketview .colorpicker .disabled.close-colorpicker:focus:before, .colorpicker .theme-marketview .disabled.close-colorpicker:focus:before, .theme-marketview button.clear[disabled]:hover, .theme-marketview label.clear.label-btn[disabled]:hover, .theme-marketview md-autocomplete .md-show-clear-button button[disabled]:hover, md-autocomplete .md-show-clear-button .theme-marketview button[disabled]:hover, .theme-marketview md-autocomplete .md-show-clear-button label.label-btn[disabled]:hover, md-autocomplete .md-show-clear-button .theme-marketview label.label-btn[disabled]:hover, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button[disabled]:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-marketview .md-confirm-button[disabled]:hover, .theme-marketview md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-confirm-button[disabled]:hover, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview .md-confirm-button[disabled]:hover, .theme-marketview md-dialog .close-dialog[disabled]:hover, md-dialog .theme-marketview .close-dialog[disabled]:hover, .theme-marketview md-dialog md-dialog-actions .md-cancel-button[disabled]:hover, md-dialog md-dialog-actions .theme-marketview .md-cancel-button[disabled]:hover, .theme-marketview md-dialog md-dialog-actions .clear.md-confirm-button[disabled]:hover, md-dialog md-dialog-actions .theme-marketview .clear.md-confirm-button[disabled]:hover, .theme-marketview .colorpicker .close-colorpicker[disabled]:hover, .colorpicker .theme-marketview .close-colorpicker[disabled]:hover, .theme-marketview button.clear[disabled]:focus, .theme-marketview label.clear.label-btn[disabled]:focus, .theme-marketview md-autocomplete .md-show-clear-button button[disabled]:focus, md-autocomplete .md-show-clear-button .theme-marketview button[disabled]:focus, .theme-marketview md-autocomplete .md-show-clear-button label.label-btn[disabled]:focus, md-autocomplete .md-show-clear-button .theme-marketview label.label-btn[disabled]:focus, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button[disabled]:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-marketview .md-confirm-button[disabled]:focus, .theme-marketview md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-confirm-button[disabled]:focus, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview .md-confirm-button[disabled]:focus, .theme-marketview md-dialog .close-dialog[disabled]:focus, md-dialog .theme-marketview .close-dialog[disabled]:focus, .theme-marketview md-dialog md-dialog-actions .md-cancel-button[disabled]:focus, md-dialog md-dialog-actions .theme-marketview .md-cancel-button[disabled]:focus, .theme-marketview md-dialog md-dialog-actions .clear.md-confirm-button[disabled]:focus, md-dialog md-dialog-actions .theme-marketview .clear.md-confirm-button[disabled]:focus, .theme-marketview .colorpicker .close-colorpicker[disabled]:focus, .colorpicker .theme-marketview .close-colorpicker[disabled]:focus, .theme-marketview button.clear[disabled]:hover:before, .theme-marketview label.clear.label-btn[disabled]:hover:before, .theme-marketview md-autocomplete .md-show-clear-button button[disabled]:hover:before, md-autocomplete .md-show-clear-button .theme-marketview button[disabled]:hover:before, .theme-marketview md-autocomplete .md-show-clear-button label.label-btn[disabled]:hover:before, md-autocomplete .md-show-clear-button .theme-marketview label.label-btn[disabled]:hover:before, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button[disabled]:hover:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-marketview .md-confirm-button[disabled]:hover:before, .theme-marketview md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-confirm-button[disabled]:hover:before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview .md-confirm-button[disabled]:hover:before, .theme-marketview md-dialog .close-dialog[disabled]:hover:before, md-dialog .theme-marketview .close-dialog[disabled]:hover:before, .theme-marketview md-dialog md-dialog-actions .md-cancel-button[disabled]:hover:before, md-dialog md-dialog-actions .theme-marketview .md-cancel-button[disabled]:hover:before, .theme-marketview md-dialog md-dialog-actions .clear.md-confirm-button[disabled]:hover:before, md-dialog md-dialog-actions .theme-marketview .clear.md-confirm-button[disabled]:hover:before, .theme-marketview .colorpicker .close-colorpicker[disabled]:hover:before, .colorpicker .theme-marketview .close-colorpicker[disabled]:hover:before, .theme-marketview button.clear[disabled]:focus:before, .theme-marketview label.clear.label-btn[disabled]:focus:before, .theme-marketview md-autocomplete .md-show-clear-button button[disabled]:focus:before, md-autocomplete .md-show-clear-button .theme-marketview button[disabled]:focus:before, .theme-marketview md-autocomplete .md-show-clear-button label.label-btn[disabled]:focus:before, md-autocomplete .md-show-clear-button .theme-marketview label.label-btn[disabled]:focus:before, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button[disabled]:focus:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-marketview .md-confirm-button[disabled]:focus:before, .theme-marketview md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-confirm-button[disabled]:focus:before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview .md-confirm-button[disabled]:focus:before, .theme-marketview md-dialog .close-dialog[disabled]:focus:before, md-dialog .theme-marketview .close-dialog[disabled]:focus:before, .theme-marketview md-dialog md-dialog-actions .md-cancel-button[disabled]:focus:before, md-dialog md-dialog-actions .theme-marketview .md-cancel-button[disabled]:focus:before, .theme-marketview md-dialog md-dialog-actions .clear.md-confirm-button[disabled]:focus:before, md-dialog md-dialog-actions .theme-marketview .clear.md-confirm-button[disabled]:focus:before, .theme-marketview .colorpicker .close-colorpicker[disabled]:focus:before, .colorpicker .theme-marketview .close-colorpicker[disabled]:focus:before,
  fieldset[disabled] .theme-marketview button.clear:hover,
  fieldset[disabled] .theme-marketview label.clear.label-btn:hover,
  fieldset[disabled] .theme-marketview md-autocomplete .md-show-clear-button button:hover,
  md-autocomplete .md-show-clear-button fieldset[disabled] .theme-marketview button:hover,
  fieldset[disabled] .theme-marketview md-autocomplete .md-show-clear-button label.label-btn:hover,
  md-autocomplete .md-show-clear-button fieldset[disabled] .theme-marketview label.label-btn:hover,
  fieldset[disabled] .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button:hover,
  md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .theme-marketview .md-confirm-button:hover,
  fieldset[disabled] .theme-marketview md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-confirm-button:hover,
  md-dialog md-dialog-actions md-autocomplete .md-show-clear-button fieldset[disabled] .theme-marketview .md-confirm-button:hover,
  fieldset[disabled] .theme-marketview md-dialog .close-dialog:hover,
  md-dialog fieldset[disabled] .theme-marketview .close-dialog:hover,
  fieldset[disabled] .theme-marketview md-dialog md-dialog-actions .md-cancel-button:hover,
  md-dialog md-dialog-actions fieldset[disabled] .theme-marketview .md-cancel-button:hover,
  fieldset[disabled] .theme-marketview md-dialog md-dialog-actions .clear.md-confirm-button:hover,
  md-dialog md-dialog-actions fieldset[disabled] .theme-marketview .clear.md-confirm-button:hover,
  fieldset[disabled] .theme-marketview .colorpicker .close-colorpicker:hover,
  .colorpicker fieldset[disabled] .theme-marketview .close-colorpicker:hover,
  fieldset[disabled] .theme-marketview button.clear:focus,
  fieldset[disabled] .theme-marketview label.clear.label-btn:focus,
  fieldset[disabled] .theme-marketview md-autocomplete .md-show-clear-button button:focus,
  md-autocomplete .md-show-clear-button fieldset[disabled] .theme-marketview button:focus,
  fieldset[disabled] .theme-marketview md-autocomplete .md-show-clear-button label.label-btn:focus,
  md-autocomplete .md-show-clear-button fieldset[disabled] .theme-marketview label.label-btn:focus,
  fieldset[disabled] .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button:focus,
  md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .theme-marketview .md-confirm-button:focus,
  fieldset[disabled] .theme-marketview md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-confirm-button:focus,
  md-dialog md-dialog-actions md-autocomplete .md-show-clear-button fieldset[disabled] .theme-marketview .md-confirm-button:focus,
  fieldset[disabled] .theme-marketview md-dialog .close-dialog:focus,
  md-dialog fieldset[disabled] .theme-marketview .close-dialog:focus,
  fieldset[disabled] .theme-marketview md-dialog md-dialog-actions .md-cancel-button:focus,
  md-dialog md-dialog-actions fieldset[disabled] .theme-marketview .md-cancel-button:focus,
  fieldset[disabled] .theme-marketview md-dialog md-dialog-actions .clear.md-confirm-button:focus,
  md-dialog md-dialog-actions fieldset[disabled] .theme-marketview .clear.md-confirm-button:focus,
  fieldset[disabled] .theme-marketview .colorpicker .close-colorpicker:focus,
  .colorpicker fieldset[disabled] .theme-marketview .close-colorpicker:focus,
  fieldset[disabled] .theme-marketview button.clear:hover:before,
  fieldset[disabled] .theme-marketview label.clear.label-btn:hover:before,
  fieldset[disabled] .theme-marketview md-autocomplete .md-show-clear-button button:hover:before,
  md-autocomplete .md-show-clear-button fieldset[disabled] .theme-marketview button:hover:before,
  fieldset[disabled] .theme-marketview md-autocomplete .md-show-clear-button label.label-btn:hover:before,
  md-autocomplete .md-show-clear-button fieldset[disabled] .theme-marketview label.label-btn:hover:before,
  fieldset[disabled] .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button:hover:before,
  md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .theme-marketview .md-confirm-button:hover:before,
  fieldset[disabled] .theme-marketview md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-confirm-button:hover:before,
  md-dialog md-dialog-actions md-autocomplete .md-show-clear-button fieldset[disabled] .theme-marketview .md-confirm-button:hover:before,
  fieldset[disabled] .theme-marketview md-dialog .close-dialog:hover:before,
  md-dialog fieldset[disabled] .theme-marketview .close-dialog:hover:before,
  fieldset[disabled] .theme-marketview md-dialog md-dialog-actions .md-cancel-button:hover:before,
  md-dialog md-dialog-actions fieldset[disabled] .theme-marketview .md-cancel-button:hover:before,
  fieldset[disabled] .theme-marketview md-dialog md-dialog-actions .clear.md-confirm-button:hover:before,
  md-dialog md-dialog-actions fieldset[disabled] .theme-marketview .clear.md-confirm-button:hover:before,
  fieldset[disabled] .theme-marketview .colorpicker .close-colorpicker:hover:before,
  .colorpicker fieldset[disabled] .theme-marketview .close-colorpicker:hover:before,
  fieldset[disabled] .theme-marketview button.clear:focus:before,
  fieldset[disabled] .theme-marketview label.clear.label-btn:focus:before,
  fieldset[disabled] .theme-marketview md-autocomplete .md-show-clear-button button:focus:before,
  md-autocomplete .md-show-clear-button fieldset[disabled] .theme-marketview button:focus:before,
  fieldset[disabled] .theme-marketview md-autocomplete .md-show-clear-button label.label-btn:focus:before,
  md-autocomplete .md-show-clear-button fieldset[disabled] .theme-marketview label.label-btn:focus:before,
  fieldset[disabled] .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button:focus:before,
  md-autocomplete .md-show-clear-button md-dialog md-dialog-actions fieldset[disabled] .theme-marketview .md-confirm-button:focus:before,
  fieldset[disabled] .theme-marketview md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-confirm-button:focus:before,
  md-dialog md-dialog-actions md-autocomplete .md-show-clear-button fieldset[disabled] .theme-marketview .md-confirm-button:focus:before,
  fieldset[disabled] .theme-marketview md-dialog .close-dialog:focus:before,
  md-dialog fieldset[disabled] .theme-marketview .close-dialog:focus:before,
  fieldset[disabled] .theme-marketview md-dialog md-dialog-actions .md-cancel-button:focus:before,
  md-dialog md-dialog-actions fieldset[disabled] .theme-marketview .md-cancel-button:focus:before,
  fieldset[disabled] .theme-marketview md-dialog md-dialog-actions .clear.md-confirm-button:focus:before,
  md-dialog md-dialog-actions fieldset[disabled] .theme-marketview .clear.md-confirm-button:focus:before,
  fieldset[disabled] .theme-marketview .colorpicker .close-colorpicker:focus:before,
  .colorpicker fieldset[disabled] .theme-marketview .close-colorpicker:focus:before {
    color: #666666; }
  .theme-marketview button.clear.light, .theme-marketview label.clear.light.label-btn, .theme-marketview md-autocomplete .md-show-clear-button button.light, md-autocomplete .md-show-clear-button .theme-marketview button.light, .theme-marketview md-autocomplete .md-show-clear-button label.light.label-btn, md-autocomplete .md-show-clear-button .theme-marketview label.light.label-btn, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .light.md-confirm-button, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-marketview .light.md-confirm-button, .theme-marketview md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .light.md-confirm-button, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview .light.md-confirm-button, .theme-marketview md-dialog .light.close-dialog, md-dialog .theme-marketview .light.close-dialog, .theme-marketview md-dialog md-dialog-actions .light.md-cancel-button, md-dialog md-dialog-actions .theme-marketview .light.md-cancel-button, .theme-marketview md-dialog md-dialog-actions .clear.light.md-confirm-button, md-dialog md-dialog-actions .theme-marketview .clear.light.md-confirm-button, .theme-marketview .colorpicker .light.close-colorpicker, .colorpicker .theme-marketview .light.close-colorpicker, .theme-marketview button.clear.light:before, .theme-marketview label.clear.light.label-btn:before, .theme-marketview md-autocomplete .md-show-clear-button button.light:before, md-autocomplete .md-show-clear-button .theme-marketview button.light:before, .theme-marketview md-autocomplete .md-show-clear-button label.light.label-btn:before, md-autocomplete .md-show-clear-button .theme-marketview label.light.label-btn:before, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .light.md-confirm-button:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-marketview .light.md-confirm-button:before, .theme-marketview md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .light.md-confirm-button:before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview .light.md-confirm-button:before, .theme-marketview md-dialog .light.close-dialog:before, md-dialog .theme-marketview .light.close-dialog:before, .theme-marketview md-dialog md-dialog-actions .light.md-cancel-button:before, md-dialog md-dialog-actions .theme-marketview .light.md-cancel-button:before, .theme-marketview md-dialog md-dialog-actions .clear.light.md-confirm-button:before, md-dialog md-dialog-actions .theme-marketview .clear.light.md-confirm-button:before, .theme-marketview .colorpicker .light.close-colorpicker:before, .colorpicker .theme-marketview .light.close-colorpicker:before {
    color: #FFFFFF; }
  .theme-marketview button.clear.light:hover, .theme-marketview label.clear.light.label-btn:hover, .theme-marketview md-autocomplete .md-show-clear-button button.light:hover, md-autocomplete .md-show-clear-button .theme-marketview button.light:hover, .theme-marketview md-autocomplete .md-show-clear-button label.light.label-btn:hover, md-autocomplete .md-show-clear-button .theme-marketview label.light.label-btn:hover, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .light.md-confirm-button:hover, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-marketview .light.md-confirm-button:hover, .theme-marketview md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .light.md-confirm-button:hover, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview .light.md-confirm-button:hover, .theme-marketview md-dialog .light.close-dialog:hover, md-dialog .theme-marketview .light.close-dialog:hover, .theme-marketview md-dialog md-dialog-actions .light.md-cancel-button:hover, md-dialog md-dialog-actions .theme-marketview .light.md-cancel-button:hover, .theme-marketview md-dialog md-dialog-actions .clear.light.md-confirm-button:hover, md-dialog md-dialog-actions .theme-marketview .clear.light.md-confirm-button:hover, .theme-marketview .colorpicker .light.close-colorpicker:hover, .colorpicker .theme-marketview .light.close-colorpicker:hover, .theme-marketview button.clear.light:focus, .theme-marketview label.clear.light.label-btn:focus, .theme-marketview md-autocomplete .md-show-clear-button button.light:focus, md-autocomplete .md-show-clear-button .theme-marketview button.light:focus, .theme-marketview md-autocomplete .md-show-clear-button label.light.label-btn:focus, md-autocomplete .md-show-clear-button .theme-marketview label.light.label-btn:focus, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .light.md-confirm-button:focus, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-marketview .light.md-confirm-button:focus, .theme-marketview md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .light.md-confirm-button:focus, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview .light.md-confirm-button:focus, .theme-marketview md-dialog .light.close-dialog:focus, md-dialog .theme-marketview .light.close-dialog:focus, .theme-marketview md-dialog md-dialog-actions .light.md-cancel-button:focus, md-dialog md-dialog-actions .theme-marketview .light.md-cancel-button:focus, .theme-marketview md-dialog md-dialog-actions .clear.light.md-confirm-button:focus, md-dialog md-dialog-actions .theme-marketview .clear.light.md-confirm-button:focus, .theme-marketview .colorpicker .light.close-colorpicker:focus, .colorpicker .theme-marketview .light.close-colorpicker:focus, .theme-marketview button.clear.light:hover:before, .theme-marketview label.clear.light.label-btn:hover:before, .theme-marketview md-autocomplete .md-show-clear-button button.light:hover:before, md-autocomplete .md-show-clear-button .theme-marketview button.light:hover:before, .theme-marketview md-autocomplete .md-show-clear-button label.light.label-btn:hover:before, md-autocomplete .md-show-clear-button .theme-marketview label.light.label-btn:hover:before, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .light.md-confirm-button:hover:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-marketview .light.md-confirm-button:hover:before, .theme-marketview md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .light.md-confirm-button:hover:before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview .light.md-confirm-button:hover:before, .theme-marketview md-dialog .light.close-dialog:hover:before, md-dialog .theme-marketview .light.close-dialog:hover:before, .theme-marketview md-dialog md-dialog-actions .light.md-cancel-button:hover:before, md-dialog md-dialog-actions .theme-marketview .light.md-cancel-button:hover:before, .theme-marketview md-dialog md-dialog-actions .clear.light.md-confirm-button:hover:before, md-dialog md-dialog-actions .theme-marketview .clear.light.md-confirm-button:hover:before, .theme-marketview .colorpicker .light.close-colorpicker:hover:before, .colorpicker .theme-marketview .light.close-colorpicker:hover:before, .theme-marketview button.clear.light:focus:before, .theme-marketview label.clear.light.label-btn:focus:before, .theme-marketview md-autocomplete .md-show-clear-button button.light:focus:before, md-autocomplete .md-show-clear-button .theme-marketview button.light:focus:before, .theme-marketview md-autocomplete .md-show-clear-button label.light.label-btn:focus:before, md-autocomplete .md-show-clear-button .theme-marketview label.light.label-btn:focus:before, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .light.md-confirm-button:focus:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-marketview .light.md-confirm-button:focus:before, .theme-marketview md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .light.md-confirm-button:focus:before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview .light.md-confirm-button:focus:before, .theme-marketview md-dialog .light.close-dialog:focus:before, md-dialog .theme-marketview .light.close-dialog:focus:before, .theme-marketview md-dialog md-dialog-actions .light.md-cancel-button:focus:before, md-dialog md-dialog-actions .theme-marketview .light.md-cancel-button:focus:before, .theme-marketview md-dialog md-dialog-actions .clear.light.md-confirm-button:focus:before, md-dialog md-dialog-actions .theme-marketview .clear.light.md-confirm-button:focus:before, .theme-marketview .colorpicker .light.close-colorpicker:focus:before, .colorpicker .theme-marketview .light.close-colorpicker:focus:before {
    color: #DF4E71; }
  .theme-marketview button.clear.light:active, .theme-marketview label.clear.light.label-btn:active, .theme-marketview md-autocomplete .md-show-clear-button button.light:active, md-autocomplete .md-show-clear-button .theme-marketview button.light:active, .theme-marketview md-autocomplete .md-show-clear-button label.light.label-btn:active, md-autocomplete .md-show-clear-button .theme-marketview label.light.label-btn:active, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .light.md-confirm-button:active, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-marketview .light.md-confirm-button:active, .theme-marketview md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .light.md-confirm-button:active, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview .light.md-confirm-button:active, .theme-marketview md-dialog .light.close-dialog:active, md-dialog .theme-marketview .light.close-dialog:active, .theme-marketview md-dialog md-dialog-actions .light.md-cancel-button:active, md-dialog md-dialog-actions .theme-marketview .light.md-cancel-button:active, .theme-marketview md-dialog md-dialog-actions .clear.light.md-confirm-button:active, md-dialog md-dialog-actions .theme-marketview .clear.light.md-confirm-button:active, .theme-marketview .colorpicker .light.close-colorpicker:active, .colorpicker .theme-marketview .light.close-colorpicker:active, .theme-marketview button.clear.light:active:before, .theme-marketview label.clear.light.label-btn:active:before, .theme-marketview md-autocomplete .md-show-clear-button button.light:active:before, md-autocomplete .md-show-clear-button .theme-marketview button.light:active:before, .theme-marketview md-autocomplete .md-show-clear-button label.light.label-btn:active:before, md-autocomplete .md-show-clear-button .theme-marketview label.light.label-btn:active:before, .theme-marketview md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .light.md-confirm-button:active:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .theme-marketview .light.md-confirm-button:active:before, .theme-marketview md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .light.md-confirm-button:active:before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .theme-marketview .light.md-confirm-button:active:before, .theme-marketview md-dialog .light.close-dialog:active:before, md-dialog .theme-marketview .light.close-dialog:active:before, .theme-marketview md-dialog md-dialog-actions .light.md-cancel-button:active:before, md-dialog md-dialog-actions .theme-marketview .light.md-cancel-button:active:before, .theme-marketview md-dialog md-dialog-actions .clear.light.md-confirm-button:active:before, md-dialog md-dialog-actions .theme-marketview .clear.light.md-confirm-button:active:before, .theme-marketview .colorpicker .light.close-colorpicker:active:before, .colorpicker .theme-marketview .light.close-colorpicker:active:before {
    color: #db3860; }

/**
* Buttons with `icon-favorite(d)` will automatically get special styling.
* Otherwise, same rules apply as a `.symbol` button.
*
* @section Favorite Button
* @sectionof Buttons
* @example
* <button class="icon-favorite" title="Favorite this Item.">
*   <span class="sr-only">Favorite</span>
* </button>
* <button class="icon-favorited" title="Favorited. Click to unfavorite.">
*   <span class="sr-only">Favorited. Click to unfavorite.</span>
* </button>
*/
.theme-cmix button.icon-favorite, .theme-cmix label.icon-favorite.label-btn, .theme-cmix md-dialog md-dialog-actions .icon-favorite.md-cancel-button, md-dialog md-dialog-actions .theme-cmix .icon-favorite.md-cancel-button, .theme-cmix md-dialog md-dialog-actions .icon-favorite.md-confirm-button, md-dialog md-dialog-actions .theme-cmix .icon-favorite.md-confirm-button, .theme-cmix button.icon-favorite:before, .theme-cmix label.icon-favorite.label-btn:before, .theme-cmix md-dialog md-dialog-actions .icon-favorite.md-cancel-button:before, md-dialog md-dialog-actions .theme-cmix .icon-favorite.md-cancel-button:before, .theme-cmix md-dialog md-dialog-actions .icon-favorite.md-confirm-button:before, md-dialog md-dialog-actions .theme-cmix .icon-favorite.md-confirm-button:before, .theme-cmix button.icon-favorited, .theme-cmix label.icon-favorited.label-btn, .theme-cmix md-dialog md-dialog-actions .icon-favorited.md-cancel-button, md-dialog md-dialog-actions .theme-cmix .icon-favorited.md-cancel-button, .theme-cmix md-dialog md-dialog-actions .icon-favorited.md-confirm-button, md-dialog md-dialog-actions .theme-cmix .icon-favorited.md-confirm-button, .theme-cmix button.icon-favorited:before, .theme-cmix label.icon-favorited.label-btn:before, .theme-cmix md-dialog md-dialog-actions .icon-favorited.md-cancel-button:before, md-dialog md-dialog-actions .theme-cmix .icon-favorited.md-cancel-button:before, .theme-cmix md-dialog md-dialog-actions .icon-favorited.md-confirm-button:before, md-dialog md-dialog-actions .theme-cmix .icon-favorited.md-confirm-button:before {
  color: #52C1A3; }

.theme-cmix button.icon-favorite:hover, .theme-cmix label.icon-favorite.label-btn:hover, .theme-cmix md-dialog md-dialog-actions .icon-favorite.md-cancel-button:hover, md-dialog md-dialog-actions .theme-cmix .icon-favorite.md-cancel-button:hover, .theme-cmix md-dialog md-dialog-actions .icon-favorite.md-confirm-button:hover, md-dialog md-dialog-actions .theme-cmix .icon-favorite.md-confirm-button:hover, .theme-cmix button.icon-favorite:focus, .theme-cmix label.icon-favorite.label-btn:focus, .theme-cmix md-dialog md-dialog-actions .icon-favorite.md-cancel-button:focus, md-dialog md-dialog-actions .theme-cmix .icon-favorite.md-cancel-button:focus, .theme-cmix md-dialog md-dialog-actions .icon-favorite.md-confirm-button:focus, md-dialog md-dialog-actions .theme-cmix .icon-favorite.md-confirm-button:focus, .theme-cmix button.icon-favorite:hover:before, .theme-cmix label.icon-favorite.label-btn:hover:before, .theme-cmix md-dialog md-dialog-actions .icon-favorite.md-cancel-button:hover:before, md-dialog md-dialog-actions .theme-cmix .icon-favorite.md-cancel-button:hover:before, .theme-cmix md-dialog md-dialog-actions .icon-favorite.md-confirm-button:hover:before, md-dialog md-dialog-actions .theme-cmix .icon-favorite.md-confirm-button:hover:before, .theme-cmix button.icon-favorite:focus:before, .theme-cmix label.icon-favorite.label-btn:focus:before, .theme-cmix md-dialog md-dialog-actions .icon-favorite.md-cancel-button:focus:before, md-dialog md-dialog-actions .theme-cmix .icon-favorite.md-cancel-button:focus:before, .theme-cmix md-dialog md-dialog-actions .icon-favorite.md-confirm-button:focus:before, md-dialog md-dialog-actions .theme-cmix .icon-favorite.md-confirm-button:focus:before, .theme-cmix button.icon-favorited:hover, .theme-cmix label.icon-favorited.label-btn:hover, .theme-cmix md-dialog md-dialog-actions .icon-favorited.md-cancel-button:hover, md-dialog md-dialog-actions .theme-cmix .icon-favorited.md-cancel-button:hover, .theme-cmix md-dialog md-dialog-actions .icon-favorited.md-confirm-button:hover, md-dialog md-dialog-actions .theme-cmix .icon-favorited.md-confirm-button:hover, .theme-cmix button.icon-favorited:focus, .theme-cmix label.icon-favorited.label-btn:focus, .theme-cmix md-dialog md-dialog-actions .icon-favorited.md-cancel-button:focus, md-dialog md-dialog-actions .theme-cmix .icon-favorited.md-cancel-button:focus, .theme-cmix md-dialog md-dialog-actions .icon-favorited.md-confirm-button:focus, md-dialog md-dialog-actions .theme-cmix .icon-favorited.md-confirm-button:focus, .theme-cmix button.icon-favorited:hover:before, .theme-cmix label.icon-favorited.label-btn:hover:before, .theme-cmix md-dialog md-dialog-actions .icon-favorited.md-cancel-button:hover:before, md-dialog md-dialog-actions .theme-cmix .icon-favorited.md-cancel-button:hover:before, .theme-cmix md-dialog md-dialog-actions .icon-favorited.md-confirm-button:hover:before, md-dialog md-dialog-actions .theme-cmix .icon-favorited.md-confirm-button:hover:before, .theme-cmix button.icon-favorited:focus:before, .theme-cmix label.icon-favorited.label-btn:focus:before, .theme-cmix md-dialog md-dialog-actions .icon-favorited.md-cancel-button:focus:before, md-dialog md-dialog-actions .theme-cmix .icon-favorited.md-cancel-button:focus:before, .theme-cmix md-dialog md-dialog-actions .icon-favorited.md-confirm-button:focus:before, md-dialog md-dialog-actions .theme-cmix .icon-favorited.md-confirm-button:focus:before {
  color: #65c8ad; }

.theme-cmix button.icon-favorite:active, .theme-cmix label.icon-favorite.label-btn:active, .theme-cmix md-dialog md-dialog-actions .icon-favorite.md-cancel-button:active, md-dialog md-dialog-actions .theme-cmix .icon-favorite.md-cancel-button:active, .theme-cmix md-dialog md-dialog-actions .icon-favorite.md-confirm-button:active, md-dialog md-dialog-actions .theme-cmix .icon-favorite.md-confirm-button:active, .theme-cmix button.icon-favorite:active:before, .theme-cmix label.icon-favorite.label-btn:active:before, .theme-cmix md-dialog md-dialog-actions .icon-favorite.md-cancel-button:active:before, md-dialog md-dialog-actions .theme-cmix .icon-favorite.md-cancel-button:active:before, .theme-cmix md-dialog md-dialog-actions .icon-favorite.md-confirm-button:active:before, md-dialog md-dialog-actions .theme-cmix .icon-favorite.md-confirm-button:active:before, .theme-cmix button.icon-favorited:active, .theme-cmix label.icon-favorited.label-btn:active, .theme-cmix md-dialog md-dialog-actions .icon-favorited.md-cancel-button:active, md-dialog md-dialog-actions .theme-cmix .icon-favorited.md-cancel-button:active, .theme-cmix md-dialog md-dialog-actions .icon-favorited.md-confirm-button:active, md-dialog md-dialog-actions .theme-cmix .icon-favorited.md-confirm-button:active, .theme-cmix button.icon-favorited:active:before, .theme-cmix label.icon-favorited.label-btn:active:before, .theme-cmix md-dialog md-dialog-actions .icon-favorited.md-cancel-button:active:before, md-dialog md-dialog-actions .theme-cmix .icon-favorited.md-cancel-button:active:before, .theme-cmix md-dialog md-dialog-actions .icon-favorited.md-confirm-button:active:before, md-dialog md-dialog-actions .theme-cmix .icon-favorited.md-confirm-button:active:before {
  color: #4ec0a1; }

.theme-marketview button.icon-favorite, .theme-marketview label.icon-favorite.label-btn, .theme-marketview md-dialog md-dialog-actions .icon-favorite.md-cancel-button, md-dialog md-dialog-actions .theme-marketview .icon-favorite.md-cancel-button, .theme-marketview md-dialog md-dialog-actions .icon-favorite.md-confirm-button, md-dialog md-dialog-actions .theme-marketview .icon-favorite.md-confirm-button, .theme-marketview button.icon-favorite:before, .theme-marketview label.icon-favorite.label-btn:before, .theme-marketview md-dialog md-dialog-actions .icon-favorite.md-cancel-button:before, md-dialog md-dialog-actions .theme-marketview .icon-favorite.md-cancel-button:before, .theme-marketview md-dialog md-dialog-actions .icon-favorite.md-confirm-button:before, md-dialog md-dialog-actions .theme-marketview .icon-favorite.md-confirm-button:before, .theme-marketview button.icon-favorited, .theme-marketview label.icon-favorited.label-btn, .theme-marketview md-dialog md-dialog-actions .icon-favorited.md-cancel-button, md-dialog md-dialog-actions .theme-marketview .icon-favorited.md-cancel-button, .theme-marketview md-dialog md-dialog-actions .icon-favorited.md-confirm-button, md-dialog md-dialog-actions .theme-marketview .icon-favorited.md-confirm-button, .theme-marketview button.icon-favorited:before, .theme-marketview label.icon-favorited.label-btn:before, .theme-marketview md-dialog md-dialog-actions .icon-favorited.md-cancel-button:before, md-dialog md-dialog-actions .theme-marketview .icon-favorited.md-cancel-button:before, .theme-marketview md-dialog md-dialog-actions .icon-favorited.md-confirm-button:before, md-dialog md-dialog-actions .theme-marketview .icon-favorited.md-confirm-button:before {
  color: #5BB78A; }

.theme-marketview button.icon-favorite:hover, .theme-marketview label.icon-favorite.label-btn:hover, .theme-marketview md-dialog md-dialog-actions .icon-favorite.md-cancel-button:hover, md-dialog md-dialog-actions .theme-marketview .icon-favorite.md-cancel-button:hover, .theme-marketview md-dialog md-dialog-actions .icon-favorite.md-confirm-button:hover, md-dialog md-dialog-actions .theme-marketview .icon-favorite.md-confirm-button:hover, .theme-marketview button.icon-favorite:focus, .theme-marketview label.icon-favorite.label-btn:focus, .theme-marketview md-dialog md-dialog-actions .icon-favorite.md-cancel-button:focus, md-dialog md-dialog-actions .theme-marketview .icon-favorite.md-cancel-button:focus, .theme-marketview md-dialog md-dialog-actions .icon-favorite.md-confirm-button:focus, md-dialog md-dialog-actions .theme-marketview .icon-favorite.md-confirm-button:focus, .theme-marketview button.icon-favorite:hover:before, .theme-marketview label.icon-favorite.label-btn:hover:before, .theme-marketview md-dialog md-dialog-actions .icon-favorite.md-cancel-button:hover:before, md-dialog md-dialog-actions .theme-marketview .icon-favorite.md-cancel-button:hover:before, .theme-marketview md-dialog md-dialog-actions .icon-favorite.md-confirm-button:hover:before, md-dialog md-dialog-actions .theme-marketview .icon-favorite.md-confirm-button:hover:before, .theme-marketview button.icon-favorite:focus:before, .theme-marketview label.icon-favorite.label-btn:focus:before, .theme-marketview md-dialog md-dialog-actions .icon-favorite.md-cancel-button:focus:before, md-dialog md-dialog-actions .theme-marketview .icon-favorite.md-cancel-button:focus:before, .theme-marketview md-dialog md-dialog-actions .icon-favorite.md-confirm-button:focus:before, md-dialog md-dialog-actions .theme-marketview .icon-favorite.md-confirm-button:focus:before, .theme-marketview button.icon-favorited:hover, .theme-marketview label.icon-favorited.label-btn:hover, .theme-marketview md-dialog md-dialog-actions .icon-favorited.md-cancel-button:hover, md-dialog md-dialog-actions .theme-marketview .icon-favorited.md-cancel-button:hover, .theme-marketview md-dialog md-dialog-actions .icon-favorited.md-confirm-button:hover, md-dialog md-dialog-actions .theme-marketview .icon-favorited.md-confirm-button:hover, .theme-marketview button.icon-favorited:focus, .theme-marketview label.icon-favorited.label-btn:focus, .theme-marketview md-dialog md-dialog-actions .icon-favorited.md-cancel-button:focus, md-dialog md-dialog-actions .theme-marketview .icon-favorited.md-cancel-button:focus, .theme-marketview md-dialog md-dialog-actions .icon-favorited.md-confirm-button:focus, md-dialog md-dialog-actions .theme-marketview .icon-favorited.md-confirm-button:focus, .theme-marketview button.icon-favorited:hover:before, .theme-marketview label.icon-favorited.label-btn:hover:before, .theme-marketview md-dialog md-dialog-actions .icon-favorited.md-cancel-button:hover:before, md-dialog md-dialog-actions .theme-marketview .icon-favorited.md-cancel-button:hover:before, .theme-marketview md-dialog md-dialog-actions .icon-favorited.md-confirm-button:hover:before, md-dialog md-dialog-actions .theme-marketview .icon-favorited.md-confirm-button:hover:before, .theme-marketview button.icon-favorited:focus:before, .theme-marketview label.icon-favorited.label-btn:focus:before, .theme-marketview md-dialog md-dialog-actions .icon-favorited.md-cancel-button:focus:before, md-dialog md-dialog-actions .theme-marketview .icon-favorited.md-cancel-button:focus:before, .theme-marketview md-dialog md-dialog-actions .icon-favorited.md-confirm-button:focus:before, md-dialog md-dialog-actions .theme-marketview .icon-favorited.md-confirm-button:focus:before {
  color: #6dbf97; }

.theme-marketview button.icon-favorite:active, .theme-marketview label.icon-favorite.label-btn:active, .theme-marketview md-dialog md-dialog-actions .icon-favorite.md-cancel-button:active, md-dialog md-dialog-actions .theme-marketview .icon-favorite.md-cancel-button:active, .theme-marketview md-dialog md-dialog-actions .icon-favorite.md-confirm-button:active, md-dialog md-dialog-actions .theme-marketview .icon-favorite.md-confirm-button:active, .theme-marketview button.icon-favorite:active:before, .theme-marketview label.icon-favorite.label-btn:active:before, .theme-marketview md-dialog md-dialog-actions .icon-favorite.md-cancel-button:active:before, md-dialog md-dialog-actions .theme-marketview .icon-favorite.md-cancel-button:active:before, .theme-marketview md-dialog md-dialog-actions .icon-favorite.md-confirm-button:active:before, md-dialog md-dialog-actions .theme-marketview .icon-favorite.md-confirm-button:active:before, .theme-marketview button.icon-favorited:active, .theme-marketview label.icon-favorited.label-btn:active, .theme-marketview md-dialog md-dialog-actions .icon-favorited.md-cancel-button:active, md-dialog md-dialog-actions .theme-marketview .icon-favorited.md-cancel-button:active, .theme-marketview md-dialog md-dialog-actions .icon-favorited.md-confirm-button:active, md-dialog md-dialog-actions .theme-marketview .icon-favorited.md-confirm-button:active, .theme-marketview button.icon-favorited:active:before, .theme-marketview label.icon-favorited.label-btn:active:before, .theme-marketview md-dialog md-dialog-actions .icon-favorited.md-cancel-button:active:before, md-dialog md-dialog-actions .theme-marketview .icon-favorited.md-cancel-button:active:before, .theme-marketview md-dialog md-dialog-actions .icon-favorited.md-confirm-button:active:before, md-dialog md-dialog-actions .theme-marketview .icon-favorited.md-confirm-button:active:before {
  color: #57b587; }

/**
* __Usage:__ Add an associated color to a button. For use with graph controls, where the button's color is associated with the color of a data point.
*
* Add the class `active` if the button is activated.
*
* __To set a color__, name-space the button and style the `border-top-color` and `.active` `background-color`.
* You may also need to set the `.active` color to the `text` color variable if the color you're using is too light for white text.
*
* _Example:_
* ```css
* button.my-button-class {
*   border-top-color: green;
*   &.active,
*   &:active {
*     background-color: green;
*   }
* }
* ```
*
* @section Key Button
* @sectionof Buttons
* @example
* <button class="key">Show Data Point</button>
* <button class="key active">Data Point Showing</button>
*/
button.key, label.key.label-btn, md-dialog md-dialog-actions .key.md-cancel-button, md-dialog md-dialog-actions .key.md-confirm-button {
  line-height: 30px;
  padding-bottom: 2px; }
  button.key.active, label.key.active.label-btn, md-dialog md-dialog-actions .key.active.md-cancel-button, md-dialog md-dialog-actions .key.active.md-confirm-button {
    color: white; }
  .theme-cmix button.key, .theme-cmix label.key.label-btn, .theme-cmix md-dialog md-dialog-actions .key.md-cancel-button, md-dialog md-dialog-actions .theme-cmix .key.md-cancel-button, .theme-cmix md-dialog md-dialog-actions .key.md-confirm-button, md-dialog md-dialog-actions .theme-cmix .key.md-confirm-button {
    border-top: 3px solid #2E91C9; }
    .theme-cmix button.key.active, .theme-cmix label.key.active.label-btn, .theme-cmix md-dialog md-dialog-actions .key.active.md-cancel-button, md-dialog md-dialog-actions .theme-cmix .key.active.md-cancel-button, .theme-cmix md-dialog md-dialog-actions .key.active.md-confirm-button, md-dialog md-dialog-actions .theme-cmix .key.active.md-confirm-button {
      background-color: #2E91C9; }
  .theme-marketview button.key, .theme-marketview label.key.label-btn, .theme-marketview md-dialog md-dialog-actions .key.md-cancel-button, md-dialog md-dialog-actions .theme-marketview .key.md-cancel-button, .theme-marketview md-dialog md-dialog-actions .key.md-confirm-button, md-dialog md-dialog-actions .theme-marketview .key.md-confirm-button {
    border-top: 3px solid #5B9CB7; }
    .theme-marketview button.key.active, .theme-marketview label.key.active.label-btn, .theme-marketview md-dialog md-dialog-actions .key.active.md-cancel-button, md-dialog md-dialog-actions .theme-marketview .key.active.md-cancel-button, .theme-marketview md-dialog md-dialog-actions .key.active.md-confirm-button, md-dialog md-dialog-actions .theme-marketview .key.active.md-confirm-button {
      background-color: #5B9CB7; }

/**
* __Usage:__ For toggle controls (e.g. toggling chart data).
*
* Add class `active` to the activated button option.
*
* @section Button Group
* @sectionof Buttons
* @example
* <div class="btn-group">
*   <button>Option 1</button>
*   <button>Option 2</button>
*   <button class="active">Option 3</button>
*   <button>Option 4</button>
* </div>
* <div style="margin-top: 1em;"></div>
* <div class="btn-group">
*   <button class="key option-one" style="border-top-color: lightblue;">Option 1</button>
*   <button class="key option-two active" style="background-color: purple;border-top-color: purple;">Option 2</button>
*   <button class="key option-three" style="border-top-color: forestgreen;">Option 3</button>
*   <button class="key option-four" style="border-top-color: brown;">Option 4</button>
* </div>
*
* @code
* <div class="btn-group">
*   <button>Option 1</button>
*   <button>Option 2</button>
*   <button class="active">Option 3</button>
*   <button>Option 4</button>
* </div>
* <div class="btn-group">
*   <button class="key option-one">Option 1</button>
*   <button class="key option-two active">Option 2</button>
*   <button class="key option-three">Option 3</button>
*   <button class="key option-four">Option 4</button>
* </div>
*/
.btn-group {
  position: relative;
  display: inline-block;
  vertical-align: middle; }
  .btn-group button, .btn-group label.label-btn, .btn-group md-dialog md-dialog-actions .md-cancel-button, md-dialog md-dialog-actions .btn-group .md-cancel-button, .btn-group md-dialog md-dialog-actions .md-confirm-button, md-dialog md-dialog-actions .btn-group .md-confirm-button {
    margin: 0;
    position: relative;
    float: left; }
    .btn-group button + button, .btn-group label.label-btn + button, .btn-group md-dialog md-dialog-actions .md-cancel-button + button, md-dialog md-dialog-actions .btn-group .md-cancel-button + button, .btn-group md-dialog md-dialog-actions .md-confirm-button + button, md-dialog md-dialog-actions .btn-group .md-confirm-button + button, .btn-group button + label.label-btn, .btn-group label.label-btn + label.label-btn, .btn-group md-dialog md-dialog-actions .md-cancel-button + label.label-btn, md-dialog md-dialog-actions .btn-group .md-cancel-button + label.label-btn, .btn-group md-dialog md-dialog-actions .md-confirm-button + label.label-btn, md-dialog md-dialog-actions .btn-group .md-confirm-button + label.label-btn, .btn-group md-dialog md-dialog-actions button + .md-cancel-button, md-dialog md-dialog-actions .btn-group button + .md-cancel-button, .btn-group md-dialog md-dialog-actions label.label-btn + .md-cancel-button, md-dialog md-dialog-actions .btn-group label.label-btn + .md-cancel-button, .btn-group md-dialog md-dialog-actions .md-cancel-button + .md-cancel-button, md-dialog md-dialog-actions .btn-group .md-cancel-button + .md-cancel-button, .btn-group md-dialog md-dialog-actions .md-confirm-button + .md-cancel-button, md-dialog md-dialog-actions .btn-group .md-confirm-button + .md-cancel-button, .btn-group md-dialog md-dialog-actions button + .md-confirm-button, md-dialog md-dialog-actions .btn-group button + .md-confirm-button, .btn-group md-dialog md-dialog-actions label.label-btn + .md-confirm-button, md-dialog md-dialog-actions .btn-group label.label-btn + .md-confirm-button, .btn-group md-dialog md-dialog-actions .md-cancel-button + .md-confirm-button, md-dialog md-dialog-actions .btn-group .md-cancel-button + .md-confirm-button, .btn-group md-dialog md-dialog-actions .md-confirm-button + .md-confirm-button, md-dialog md-dialog-actions .btn-group .md-confirm-button + .md-confirm-button {
      margin-left: -1px; }
    .btn-group button:not(:first-child):not(:last-child), .btn-group label.label-btn:not(:first-child):not(:last-child), .btn-group md-dialog md-dialog-actions .md-cancel-button:not(:first-child):not(:last-child), md-dialog md-dialog-actions .btn-group .md-cancel-button:not(:first-child):not(:last-child), .btn-group md-dialog md-dialog-actions .md-confirm-button:not(:first-child):not(:last-child), md-dialog md-dialog-actions .btn-group .md-confirm-button:not(:first-child):not(:last-child) {
      border-radius: 0; }
    .btn-group button:first-child:not(:last-child), .btn-group label.label-btn:first-child:not(:last-child), .btn-group md-dialog md-dialog-actions .md-cancel-button:first-child:not(:last-child), md-dialog md-dialog-actions .btn-group .md-cancel-button:first-child:not(:last-child), .btn-group md-dialog md-dialog-actions .md-confirm-button:first-child:not(:last-child), md-dialog md-dialog-actions .btn-group .md-confirm-button:first-child:not(:last-child) {
      margin-left: 0;
      border-top-right-radius: 0;
      border-bottom-right-radius: 0; }
    .btn-group button:last-child:not(:first-child), .btn-group label.label-btn:last-child:not(:first-child), .btn-group md-dialog md-dialog-actions .md-cancel-button:last-child:not(:first-child), md-dialog md-dialog-actions .btn-group .md-cancel-button:last-child:not(:first-child), .btn-group md-dialog md-dialog-actions .md-confirm-button:last-child:not(:first-child), md-dialog md-dialog-actions .btn-group .md-confirm-button:last-child:not(:first-child) {
      border-top-left-radius: 0;
      border-bottom-left-radius: 0; }
    .btn-group button.active, .btn-group label.active.label-btn, .btn-group md-dialog md-dialog-actions .active.md-cancel-button, md-dialog md-dialog-actions .btn-group .active.md-cancel-button, .btn-group md-dialog md-dialog-actions .active.md-confirm-button, md-dialog md-dialog-actions .btn-group .active.md-confirm-button, .btn-group button:active, .btn-group label.label-btn:active, .btn-group md-dialog md-dialog-actions .md-cancel-button:active, md-dialog md-dialog-actions .btn-group .md-cancel-button:active, .btn-group md-dialog md-dialog-actions .md-confirm-button:active, md-dialog md-dialog-actions .btn-group .md-confirm-button:active {
      color: white; }
      .theme-cmix .btn-group button.active, .theme-cmix .btn-group label.active.label-btn, .theme-cmix .btn-group md-dialog md-dialog-actions .active.md-cancel-button, md-dialog md-dialog-actions .theme-cmix .btn-group .active.md-cancel-button, .theme-cmix .btn-group md-dialog md-dialog-actions .active.md-confirm-button, md-dialog md-dialog-actions .theme-cmix .btn-group .active.md-confirm-button, .theme-cmix .btn-group button:active, .theme-cmix .btn-group label.label-btn:active, .theme-cmix .btn-group md-dialog md-dialog-actions .md-cancel-button:active, md-dialog md-dialog-actions .theme-cmix .btn-group .md-cancel-button:active, .theme-cmix .btn-group md-dialog md-dialog-actions .md-confirm-button:active, md-dialog md-dialog-actions .theme-cmix .btn-group .md-confirm-button:active {
        background-color: #2E91C9;
        border-color: #2E91C9; }
      .theme-marketview .btn-group button.active, .theme-marketview .btn-group label.active.label-btn, .theme-marketview .btn-group md-dialog md-dialog-actions .active.md-cancel-button, md-dialog md-dialog-actions .theme-marketview .btn-group .active.md-cancel-button, .theme-marketview .btn-group md-dialog md-dialog-actions .active.md-confirm-button, md-dialog md-dialog-actions .theme-marketview .btn-group .active.md-confirm-button, .theme-marketview .btn-group button:active, .theme-marketview .btn-group label.label-btn:active, .theme-marketview .btn-group md-dialog md-dialog-actions .md-cancel-button:active, md-dialog md-dialog-actions .theme-marketview .btn-group .md-cancel-button:active, .theme-marketview .btn-group md-dialog md-dialog-actions .md-confirm-button:active, md-dialog md-dialog-actions .theme-marketview .btn-group .md-confirm-button:active {
        background-color: #5B9CB7;
        border-color: #5B9CB7; }
    .btn-group button:hover, .btn-group label.label-btn:hover, .btn-group md-dialog md-dialog-actions .md-cancel-button:hover, md-dialog md-dialog-actions .btn-group .md-cancel-button:hover, .btn-group md-dialog md-dialog-actions .md-confirm-button:hover, md-dialog md-dialog-actions .btn-group .md-confirm-button:hover, .btn-group button:focus, .btn-group label.label-btn:focus, .btn-group md-dialog md-dialog-actions .md-cancel-button:focus, md-dialog md-dialog-actions .btn-group .md-cancel-button:focus, .btn-group md-dialog md-dialog-actions .md-confirm-button:focus, md-dialog md-dialog-actions .btn-group .md-confirm-button:focus, .btn-group button:active, .btn-group label.label-btn:active, .btn-group md-dialog md-dialog-actions .md-cancel-button:active, md-dialog md-dialog-actions .btn-group .md-cancel-button:active, .btn-group md-dialog md-dialog-actions .md-confirm-button:active, md-dialog md-dialog-actions .btn-group .md-confirm-button:active, .btn-group button.active, .btn-group label.active.label-btn, .btn-group md-dialog md-dialog-actions .active.md-cancel-button, md-dialog md-dialog-actions .btn-group .active.md-cancel-button, .btn-group md-dialog md-dialog-actions .active.md-confirm-button, md-dialog md-dialog-actions .btn-group .active.md-confirm-button {
      z-index: 2; }

/**
* @section File Upload Button
* @sectionof Buttons
* @example
<label class="label-btn" for="fileUpload">Select File</label>
<input type="file" id="fileUpload">
<p [hidden]="ifNoFileChosen">file-name-if-one-chosen.extension</p>
*/
label.label-btn {
  font-weight: normal; }
  label.label-btn + input[type="file"] + p {
    display: inline-block;
    vertical-align: middle;
    margin-left: 0.25em; }
    label.label-btn + input[type="file"] + p[hidden] {
      display: none; }

/**
* @section Button Sizes
* @sectionof Buttons
* @example
* <button class="small">Small Button</button>
* <button>Normal</button>
* <button class="large">Large Button</button>
* <div style="margin-top: 1em;">
*   <button class="block">Block Button</button>
* </div>
* @code
* <button class="small">Small Button</button>
* <button>Normal</button>
* <button class="large">Large Button</button>
* <button class="block">Block Button</button>
*/
button.small, label.small.label-btn, md-dialog md-dialog-actions .small.md-cancel-button, md-dialog md-dialog-actions .small.md-confirm-button, .dropdown-button.small-button {
  font-size: 12px;
  padding: 0 12px;
  line-height: 28px; }
  button.small.primary, label.small.primary.label-btn, md-dialog md-dialog-actions .small.primary.md-cancel-button, md-dialog md-dialog-actions .small.md-confirm-button, .primary.dropdown-button.small-button, button.small.special-action, label.small.special-action.label-btn, md-dialog md-dialog-actions .small.special-action.md-cancel-button, md-dialog md-dialog-actions .small.special-action.md-confirm-button, .special-action.dropdown-button.small-button, button.small.symbol, button.small.icon-favorite, label.small.icon-favorite.label-btn, md-dialog md-dialog-actions .small.icon-favorite.md-cancel-button, md-dialog md-dialog-actions .small.icon-favorite.md-confirm-button, .icon-favorite.dropdown-button.small-button,
  button.small.icon-favorited, label.small.icon-favorited.label-btn, md-dialog md-dialog-actions .small.icon-favorited.md-cancel-button, md-dialog md-dialog-actions .small.icon-favorited.md-confirm-button, .icon-favorited.dropdown-button.small-button, label.small.symbol.label-btn, md-dialog md-dialog-actions .small.symbol.md-cancel-button, md-dialog md-dialog-actions .small.symbol.md-confirm-button, .symbol.dropdown-button.small-button, button.small.clear, label.small.clear.label-btn, md-autocomplete .md-show-clear-button button.small, md-autocomplete .md-show-clear-button label.small.label-btn, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .small.md-confirm-button, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .small.md-confirm-button, md-autocomplete .md-show-clear-button .dropdown-button.small-button, md-dialog .small.close-dialog, md-dialog md-dialog-actions .small.md-cancel-button, md-dialog md-dialog-actions .small.clear.md-confirm-button, .clear.dropdown-button.small-button, .colorpicker .small.close-colorpicker {
    line-height: 30px; }
  button.small.key, label.small.key.label-btn, md-dialog md-dialog-actions .small.key.md-cancel-button, md-dialog md-dialog-actions .small.key.md-confirm-button, .key.dropdown-button.small-button {
    line-height: 24px;
    padding-bottom: 2px; }
  button.small.symbol.flush, button.small.flush.icon-favorite, label.small.flush.icon-favorite.label-btn, .people-card.-expandable button.small.icon-favorite.expand-user, .people-card.-expandable label.small.icon-favorite.expand-user.label-btn, .people-card.-expandable md-dialog md-dialog-actions .small.icon-favorite.expand-user.md-cancel-button, md-dialog md-dialog-actions .people-card.-expandable .small.icon-favorite.expand-user.md-cancel-button, .people-card.-expandable md-dialog md-dialog-actions .small.icon-favorite.expand-user.md-confirm-button, md-dialog md-dialog-actions .people-card.-expandable .small.icon-favorite.expand-user.md-confirm-button, .people-card.-expandable .icon-favorite.expand-user.dropdown-button.small-button, md-dialog md-dialog-actions .small.flush.icon-favorite.md-cancel-button, md-dialog md-dialog-actions .small.flush.icon-favorite.md-confirm-button, .flush.icon-favorite.dropdown-button.small-button,
  button.small.flush.icon-favorited, label.small.flush.icon-favorited.label-btn, .people-card.-expandable button.small.icon-favorited.expand-user, .people-card.-expandable label.small.icon-favorited.expand-user.label-btn, .people-card.-expandable md-dialog md-dialog-actions .small.icon-favorited.expand-user.md-cancel-button, md-dialog md-dialog-actions .people-card.-expandable .small.icon-favorited.expand-user.md-cancel-button, .people-card.-expandable md-dialog md-dialog-actions .small.icon-favorited.expand-user.md-confirm-button, md-dialog md-dialog-actions .people-card.-expandable .small.icon-favorited.expand-user.md-confirm-button, .people-card.-expandable .icon-favorited.expand-user.dropdown-button.small-button, md-dialog md-dialog-actions .small.flush.icon-favorited.md-cancel-button, md-dialog md-dialog-actions .small.flush.icon-favorited.md-confirm-button, .flush.icon-favorited.dropdown-button.small-button, label.small.symbol.flush.label-btn, .people-card.-expandable button.small.symbol.expand-user, .people-card.-expandable label.small.symbol.expand-user.label-btn, .people-card.-expandable md-dialog md-dialog-actions .small.symbol.expand-user.md-cancel-button, md-dialog md-dialog-actions .people-card.-expandable .small.symbol.expand-user.md-cancel-button, .people-card.-expandable md-dialog md-dialog-actions .small.symbol.expand-user.md-confirm-button, md-dialog md-dialog-actions .people-card.-expandable .small.symbol.expand-user.md-confirm-button, .people-card.-expandable .symbol.expand-user.dropdown-button.small-button, md-dialog md-dialog-actions .small.symbol.flush.md-cancel-button, md-dialog md-dialog-actions .small.symbol.flush.md-confirm-button, .symbol.flush.dropdown-button.small-button {
    line-height: 1; }
  button.small.clear.flush, label.small.clear.flush.label-btn, .people-card.-expandable button.small.clear.expand-user, .people-card.-expandable label.small.clear.expand-user.label-btn, .people-card.-expandable md-autocomplete .md-show-clear-button button.small.expand-user, md-autocomplete .md-show-clear-button .people-card.-expandable button.small.expand-user, .people-card.-expandable md-autocomplete .md-show-clear-button label.small.expand-user.label-btn, md-autocomplete .md-show-clear-button .people-card.-expandable label.small.expand-user.label-btn, .people-card.-expandable md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .small.expand-user.md-confirm-button, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .people-card.-expandable .small.expand-user.md-confirm-button, .people-card.-expandable md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .small.expand-user.md-confirm-button, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .people-card.-expandable .small.expand-user.md-confirm-button, .people-card.-expandable md-autocomplete .md-show-clear-button .expand-user.dropdown-button.small-button, md-autocomplete .md-show-clear-button .people-card.-expandable .expand-user.dropdown-button.small-button, .people-card.-expandable md-dialog .small.expand-user.close-dialog, md-dialog .people-card.-expandable .small.expand-user.close-dialog, .people-card.-expandable md-dialog md-dialog-actions .small.expand-user.md-cancel-button, md-dialog md-dialog-actions .people-card.-expandable .small.expand-user.md-cancel-button, .people-card.-expandable md-dialog md-dialog-actions .small.clear.expand-user.md-confirm-button, md-dialog md-dialog-actions .people-card.-expandable .small.clear.expand-user.md-confirm-button, .people-card.-expandable .clear.expand-user.dropdown-button.small-button, .people-card.-expandable .colorpicker .small.expand-user.close-colorpicker, .colorpicker .people-card.-expandable .small.expand-user.close-colorpicker, md-autocomplete .md-show-clear-button button.small.flush, md-autocomplete .md-show-clear-button label.small.flush.label-btn, md-autocomplete .md-show-clear-button .people-card.-expandable md-dialog md-dialog-actions .small.expand-user.md-confirm-button, md-dialog md-dialog-actions .people-card.-expandable md-autocomplete .md-show-clear-button .small.expand-user.md-confirm-button, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .small.flush.md-confirm-button, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .small.flush.md-confirm-button, md-autocomplete .md-show-clear-button .flush.dropdown-button.small-button, md-dialog .small.close-dialog, md-dialog md-dialog-actions .small.flush.md-cancel-button, md-dialog md-dialog-actions .people-card.-expandable .md-cancel-button.expand-user.dropdown-button.small-button, .people-card.-expandable md-dialog md-dialog-actions .md-cancel-button.expand-user.dropdown-button.small-button, md-dialog md-dialog-actions .small.clear.flush.md-confirm-button, .clear.flush.dropdown-button.small-button, .people-card.-expandable md-dialog .dropdown-button.small-button.expand-user.close-dialog, md-dialog .people-card.-expandable .dropdown-button.small-button.expand-user.close-dialog, .people-card.-expandable .colorpicker .dropdown-button.small-button.expand-user.close-colorpicker, .colorpicker .people-card.-expandable .dropdown-button.small-button.expand-user.close-colorpicker, .colorpicker .small.close-colorpicker {
    line-height: 1.2; }

button.large, label.large.label-btn, md-dialog md-dialog-actions .large.md-cancel-button, md-dialog md-dialog-actions .large.md-confirm-button {
  font-size: 16px;
  padding: 0 24px;
  line-height: 40px; }
  button.large.primary, label.large.primary.label-btn, md-dialog md-dialog-actions .large.primary.md-cancel-button, md-dialog md-dialog-actions .large.md-confirm-button, button.large.special-action, label.large.special-action.label-btn, md-dialog md-dialog-actions .large.special-action.md-cancel-button, md-dialog md-dialog-actions .large.special-action.md-confirm-button, button.large.symbol, button.large.icon-favorite, label.large.icon-favorite.label-btn, md-dialog md-dialog-actions .large.icon-favorite.md-cancel-button, md-dialog md-dialog-actions .large.icon-favorite.md-confirm-button,
  button.large.icon-favorited, label.large.icon-favorited.label-btn, md-dialog md-dialog-actions .large.icon-favorited.md-cancel-button, md-dialog md-dialog-actions .large.icon-favorited.md-confirm-button, label.large.symbol.label-btn, md-dialog md-dialog-actions .large.symbol.md-cancel-button, md-dialog md-dialog-actions .large.symbol.md-confirm-button, button.large.clear, label.large.clear.label-btn, md-autocomplete .md-show-clear-button button.large, md-autocomplete .md-show-clear-button label.large.label-btn, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .large.md-confirm-button, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .large.md-confirm-button, md-dialog .large.close-dialog, md-dialog md-dialog-actions .large.md-cancel-button, md-dialog md-dialog-actions .large.clear.md-confirm-button, .colorpicker .large.close-colorpicker {
    line-height: 42px; }
  button.large.key, label.large.key.label-btn, md-dialog md-dialog-actions .large.key.md-cancel-button, md-dialog md-dialog-actions .large.key.md-confirm-button {
    line-height: 36px;
    padding-bottom: 2px; }
  button.large.symbol.flush, button.large.flush.icon-favorite, label.large.flush.icon-favorite.label-btn, .people-card.-expandable button.large.icon-favorite.expand-user, .people-card.-expandable label.large.icon-favorite.expand-user.label-btn, .people-card.-expandable md-dialog md-dialog-actions .large.icon-favorite.expand-user.md-cancel-button, md-dialog md-dialog-actions .people-card.-expandable .large.icon-favorite.expand-user.md-cancel-button, .people-card.-expandable md-dialog md-dialog-actions .large.icon-favorite.expand-user.md-confirm-button, md-dialog md-dialog-actions .people-card.-expandable .large.icon-favorite.expand-user.md-confirm-button, md-dialog md-dialog-actions .large.flush.icon-favorite.md-cancel-button, md-dialog md-dialog-actions .large.flush.icon-favorite.md-confirm-button,
  button.large.flush.icon-favorited, label.large.flush.icon-favorited.label-btn, .people-card.-expandable button.large.icon-favorited.expand-user, .people-card.-expandable label.large.icon-favorited.expand-user.label-btn, .people-card.-expandable md-dialog md-dialog-actions .large.icon-favorited.expand-user.md-cancel-button, md-dialog md-dialog-actions .people-card.-expandable .large.icon-favorited.expand-user.md-cancel-button, .people-card.-expandable md-dialog md-dialog-actions .large.icon-favorited.expand-user.md-confirm-button, md-dialog md-dialog-actions .people-card.-expandable .large.icon-favorited.expand-user.md-confirm-button, md-dialog md-dialog-actions .large.flush.icon-favorited.md-cancel-button, md-dialog md-dialog-actions .large.flush.icon-favorited.md-confirm-button, label.large.symbol.flush.label-btn, .people-card.-expandable button.large.symbol.expand-user, .people-card.-expandable label.large.symbol.expand-user.label-btn, .people-card.-expandable md-dialog md-dialog-actions .large.symbol.expand-user.md-cancel-button, md-dialog md-dialog-actions .people-card.-expandable .large.symbol.expand-user.md-cancel-button, .people-card.-expandable md-dialog md-dialog-actions .large.symbol.expand-user.md-confirm-button, md-dialog md-dialog-actions .people-card.-expandable .large.symbol.expand-user.md-confirm-button, md-dialog md-dialog-actions .large.symbol.flush.md-cancel-button, md-dialog md-dialog-actions .large.symbol.flush.md-confirm-button {
    line-height: 1; }
  button.large.clear.flush, label.large.clear.flush.label-btn, .people-card.-expandable button.large.clear.expand-user, .people-card.-expandable label.large.clear.expand-user.label-btn, .people-card.-expandable md-autocomplete .md-show-clear-button button.large.expand-user, md-autocomplete .md-show-clear-button .people-card.-expandable button.large.expand-user, .people-card.-expandable md-autocomplete .md-show-clear-button label.large.expand-user.label-btn, md-autocomplete .md-show-clear-button .people-card.-expandable label.large.expand-user.label-btn, .people-card.-expandable md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .large.expand-user.md-confirm-button, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .people-card.-expandable .large.expand-user.md-confirm-button, .people-card.-expandable md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .large.expand-user.md-confirm-button, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .people-card.-expandable .large.expand-user.md-confirm-button, .people-card.-expandable md-dialog .large.expand-user.close-dialog, md-dialog .people-card.-expandable .large.expand-user.close-dialog, .people-card.-expandable md-dialog md-dialog-actions .large.expand-user.md-cancel-button, md-dialog md-dialog-actions .people-card.-expandable .large.expand-user.md-cancel-button, .people-card.-expandable md-dialog md-dialog-actions .large.clear.expand-user.md-confirm-button, md-dialog md-dialog-actions .people-card.-expandable .large.clear.expand-user.md-confirm-button, .people-card.-expandable .colorpicker .large.expand-user.close-colorpicker, .colorpicker .people-card.-expandable .large.expand-user.close-colorpicker, md-autocomplete .md-show-clear-button button.large.flush, md-autocomplete .md-show-clear-button label.large.flush.label-btn, md-autocomplete .md-show-clear-button .people-card.-expandable md-dialog md-dialog-actions .large.expand-user.md-confirm-button, md-dialog md-dialog-actions .people-card.-expandable md-autocomplete .md-show-clear-button .large.expand-user.md-confirm-button, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .large.flush.md-confirm-button, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .large.flush.md-confirm-button, md-dialog .large.close-dialog, md-dialog md-dialog-actions .large.flush.md-cancel-button, md-dialog md-dialog-actions .large.clear.flush.md-confirm-button, .colorpicker .large.close-colorpicker {
    line-height: 1.2; }

button.block, label.block.label-btn, md-dialog md-dialog-actions .block.md-cancel-button, md-dialog md-dialog-actions .block.md-confirm-button {
  display: block;
  margin: 0;
  width: 100%; }

/**
* Remember that [links are not buttons](http://www.karlgroves.com/2013/05/14/links-are-not-buttons-neither-are-divs-and-spans/).
*
* Add the class `button-spacing` to add the same padding as buttons, for when links are inline with buttons. Add the class `flush-sides` to an `a.button-spacing` to flush the left and right padding.
*
* @section Links
* @sectionof Buttons
*
* @example
* <a href="#0">Standard Link</a>
* <a href="#0" class="button-spacing">Link w/ Button Spacing</a>
* <button>Button to Compare With</button>
* <a href="#0" class="button-spacing flush-sides">Link w/ Button Spacing & Flushed Sides</a>
*/
a.button-spacing {
  display: inline-block;
  vertical-align: middle;
  padding: 0 16px;
  line-height: 36px;
  border: none; }
  a.button-spacing + button, a.button-spacing + label.label-btn, md-dialog md-dialog-actions a.button-spacing + .md-cancel-button, md-dialog md-dialog-actions a.button-spacing + .md-confirm-button,
  a.button-spacing + a.button-spacing {
    margin-left: 0.75em; }
  a.button-spacing.flush-sides {
    padding-left: 0;
    padding-right: 0;
    border-left-width: 0px;
    border-right-width: 0px; }
  a.button-spacing.flush-icon:before {
    margin: 0; }

/**
* Indicates when an item is being saved, successfully saved, or failed to save.
* Typically seen next to inputs where edits are saved on the fly.
*
* The `promise-indicator` is transparent by default so it will take up space in a layout, this
* prevents things from shifting when the indicator appears.
*
* Add the class `pending` to indicate that content is being saved.
*
* Add the class `resolved` if the save was successful, remove the class after a period of time (3 seconds).
*
* Add the class `rejected` if the save fails. Use JS to add a popup and explain to the user what failed.
*
* The indicator has padding to match button and input heights, add the class `flush` to strip this padding.
* Or `flush-sides` to strip only the left/right padding.
* 
* @section Promise Indicator
*
* @example
* <strong class='promise-indicator' role="alert">
*   <span class="sr-only"></span>
* </strong>
* <strong class='promise-indicator pending' role="alert">
*   <span class="sr-only">Saving</span>
* </strong>
* <strong class='promise-indicator resolved' role="alert">
*   <span class="sr-only">Saved!</span>
* </strong>
* <strong class='promise-indicator rejected' role="alert">
*   <span class="sr-only">Failed to save.</span>
* </strong>
*/
.promise-indicator {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  color: transparent;
  padding: 4px;
  transition: color 200ms linear; }
  .promise-indicator:before {
    vertical-align: middle;
    margin-right: 0;
    line-height: 50%; }
  .promise-indicator.flush, .people-card.-expandable button.promise-indicator.expand-user, .people-card.-expandable label.promise-indicator.expand-user.label-btn, .people-card.-expandable md-dialog md-dialog-actions .promise-indicator.expand-user.md-cancel-button, md-dialog md-dialog-actions .people-card.-expandable .promise-indicator.expand-user.md-cancel-button, .people-card.-expandable md-dialog md-dialog-actions .promise-indicator.expand-user.md-confirm-button, md-dialog md-dialog-actions .people-card.-expandable .promise-indicator.expand-user.md-confirm-button {
    padding: 0; }
  .promise-indicator.flush-sides {
    padding-left: 0;
    padding-right: 0; }
  .theme-cmix .promise-indicator.pending {
    color: #22232D; }
  .theme-cmix .promise-indicator.resolved {
    color: #52C1A3; }
  .theme-cmix .promise-indicator.rejected {
    color: #DF4E71; }
  .theme-marketview .promise-indicator.pending {
    color: #414042; }
  .theme-marketview .promise-indicator.resolved {
    color: #5BB78A; }
  .theme-marketview .promise-indicator.rejected {
    color: #DF4E71; }

.context-menu {
  display: inline-block;
  position: relative; }
  .context-menu + button:not(.no-autospace), .context-menu + label.label-btn:not(.no-autospace), md-dialog md-dialog-actions .context-menu + .md-cancel-button:not(.no-autospace), md-dialog md-dialog-actions .context-menu + .md-confirm-button:not(.no-autospace),
  .context-menu + a.button-spacing:not(.no-autospace),
  button:not(.no-autospace) + .context-menu,
  label.label-btn:not(.no-autospace) + .context-menu,
  md-dialog md-dialog-actions .md-cancel-button:not(.no-autospace) + .context-menu,
  md-dialog md-dialog-actions .md-confirm-button:not(.no-autospace) + .context-menu,
  a.button-spacing:not(.no-autospace) + .context-menu {
    margin-left: 0.75em; }

.context-menu-items {
  background-color: white;
  border: 1px solid #DDE1E7;
  border-radius: 4px;
  text-align: left;
  padding: 0.317em 0.5em 0.5em;
  min-width: 9.969em;
  max-width: 17.713em;
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.2);
  position: absolute;
  left: 50%;
  top: 1.777em;
  transform: translateX(-50%) scale(0);
  transform-origin: center top;
  opacity: 0;
  transition: transform 200ms ease, opacity 200ms ease;
  z-index: 10; }
  .context-menu-items a,
  .context-menu-items button,
  .context-menu-items label.label-btn,
  .context-menu-items md-dialog md-dialog-actions .md-cancel-button,
  md-dialog md-dialog-actions .context-menu-items .md-cancel-button,
  .context-menu-items md-dialog md-dialog-actions .md-confirm-button,
  md-dialog md-dialog-actions .context-menu-items .md-confirm-button {
    display: block;
    width: 100%; }
    .context-menu-items a + a,
    .context-menu-items a + button,
    .context-menu-items a + label.label-btn,
    .context-menu-items md-dialog md-dialog-actions a + .md-cancel-button,
    md-dialog md-dialog-actions .context-menu-items a + .md-cancel-button,
    .context-menu-items md-dialog md-dialog-actions a + .md-confirm-button,
    md-dialog md-dialog-actions .context-menu-items a + .md-confirm-button,
    .context-menu-items button + a,
    .context-menu-items label.label-btn + a,
    .context-menu-items md-dialog md-dialog-actions .md-cancel-button + a,
    md-dialog md-dialog-actions .context-menu-items .md-cancel-button + a,
    .context-menu-items md-dialog md-dialog-actions .md-confirm-button + a,
    md-dialog md-dialog-actions .context-menu-items .md-confirm-button + a,
    .context-menu-items button + button,
    .context-menu-items label.label-btn + button,
    .context-menu-items md-dialog md-dialog-actions .md-cancel-button + button,
    md-dialog md-dialog-actions .context-menu-items .md-cancel-button + button,
    .context-menu-items md-dialog md-dialog-actions .md-confirm-button + button,
    md-dialog md-dialog-actions .context-menu-items .md-confirm-button + button,
    .context-menu-items button + label.label-btn,
    .context-menu-items label.label-btn + label.label-btn,
    .context-menu-items md-dialog md-dialog-actions .md-cancel-button + label.label-btn,
    md-dialog md-dialog-actions .context-menu-items .md-cancel-button + label.label-btn,
    .context-menu-items md-dialog md-dialog-actions .md-confirm-button + label.label-btn,
    md-dialog md-dialog-actions .context-menu-items .md-confirm-button + label.label-btn,
    .context-menu-items md-dialog md-dialog-actions button + .md-cancel-button,
    md-dialog md-dialog-actions .context-menu-items button + .md-cancel-button,
    .context-menu-items md-dialog md-dialog-actions label.label-btn + .md-cancel-button,
    md-dialog md-dialog-actions .context-menu-items label.label-btn + .md-cancel-button,
    .context-menu-items md-dialog md-dialog-actions .md-cancel-button + .md-cancel-button,
    md-dialog md-dialog-actions .context-menu-items .md-cancel-button + .md-cancel-button,
    .context-menu-items md-dialog md-dialog-actions .md-confirm-button + .md-cancel-button,
    md-dialog md-dialog-actions .context-menu-items .md-confirm-button + .md-cancel-button,
    .context-menu-items md-dialog md-dialog-actions button + .md-confirm-button,
    md-dialog md-dialog-actions .context-menu-items button + .md-confirm-button,
    .context-menu-items md-dialog md-dialog-actions label.label-btn + .md-confirm-button,
    md-dialog md-dialog-actions .context-menu-items label.label-btn + .md-confirm-button,
    .context-menu-items md-dialog md-dialog-actions .md-cancel-button + .md-confirm-button,
    md-dialog md-dialog-actions .context-menu-items .md-cancel-button + .md-confirm-button,
    .context-menu-items md-dialog md-dialog-actions .md-confirm-button + .md-confirm-button,
    md-dialog md-dialog-actions .context-menu-items .md-confirm-button + .md-confirm-button {
      margin-top: 0.317em;
      margin-left: 0; }
  .context-menu-items.show {
    transform: translateX(-50%) scale(1);
    opacity: 1; }
  .context-menu-items:before {
    content: ' ';
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 9px solid #585863;
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1; }

.context-menu-items.top-left {
  top: auto;
  right: 0.25em;
  bottom: 2em;
  left: auto;
  transform: scale(0);
  transform-origin: right bottom; }
  .context-menu-items.top-left.show {
    transform: scale(1); }
  .context-menu-items.top-left:before {
    border-bottom-color: transparent;
    border-top: 9px solid #585863;
    top: auto;
    right: 0.5em;
    bottom: -19px;
    left: auto;
    transform: none; }

.context-menu-items.top {
  top: auto;
  bottom: 2em;
  transform-origin: center bottom; }
  .context-menu-items.top:before {
    border-bottom-color: transparent;
    border-top: 9px solid #585863;
    top: auto;
    bottom: -19px; }

.context-menu-items.top-right {
  top: auto;
  bottom: 2em;
  left: 0.25em;
  transform: scale(0);
  transform-origin: left bottom; }
  .context-menu-items.top-right.show {
    transform: scale(1); }
  .context-menu-items.top-right:before {
    border-bottom-color: transparent;
    border-top: 9px solid #585863;
    top: auto;
    bottom: -19px;
    left: 0.5em;
    transform: none; }

.context-menu-items.right {
  top: auto;
  bottom: 50%;
  left: 100%;
  transform: translateY(50%) scale(0);
  transform-origin: left center; }
  .context-menu-items.right.show {
    transform: translateY(50%) scale(1); }
  .context-menu-items.right:before {
    border-bottom-color: transparent;
    border-right-color: #585863;
    border-top: 9px solid transparent;
    top: 50%;
    left: -19px;
    transform: translateY(-50%); }

.context-menu-items.bottom-right {
  left: 0.25em;
  transform: scale(0);
  transform-origin: left top; }
  .context-menu-items.bottom-right.show {
    transform: scale(1); }
  .context-menu-items.bottom-right:before {
    left: 0.5em;
    transform: none; }

.context-menu-items.bottom-left {
  right: 0.25em;
  left: auto;
  transform: scale(0);
  transform-origin: right top; }
  .context-menu-items.bottom-left.show {
    transform: scale(1); }
  .context-menu-items.bottom-left:before {
    right: 0.5em;
    left: auto;
    transform: none; }

.context-menu-items.left {
  top: auto;
  right: 100%;
  bottom: 50%;
  left: auto;
  transform: translateY(50%) scale(0);
  transform-origin: right center; }
  .context-menu-items.left.show {
    transform: translateY(50%) scale(1); }
  .context-menu-items.left:before {
    border-bottom-color: transparent;
    border-top: 9px solid transparent;
    border-left-color: #585863;
    top: 50%;
    right: -19px;
    left: auto;
    transform: translateY(-50%); }

/**
* @section Inputs
*/
fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0; }

input[type="file"] {
  display: block; }

input[type="range"] {
  display: block;
  width: 100%; }

select[multiple],
select[size] {
  height: auto; }

input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px; }

input[type="search"], md-autocomplete input[type="search"] {
  -webkit-appearance: none; }

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type="date"],
  input[type="time"],
  input[type="datetime-local"],
  input[type="month"] {
    line-height: 22px; } }

/**
* Inputs are full width by default, constrain the width using the grid or setting a `max-width`.
*
* In most cases, add a label for a text input and alwyas place it above.
*
* When using an input for requesting information, add placeholder text that serves as an example of what to enter.
* For example, an input for entering an email will have an "Email" label and a placeholder that reads "jon@doe.com".
*
* For required inputs, add the class `required` to the label for displaying the asterisk.
*
* For __disabled__ inputs apply the class `disabled` to the input.
*
* For __error__ states, add the class `error` to the __label__ above the input. If there is no label, add the class to the input itself.
*
* Add the class `flush` to the label (or the input if there is no label) to strip the `margin-top` automatically applied if placed after paragraphs, headers or lists, etc.
*
* @section Text Inputs
* @sectionof Inputs
*
* @example
* <label class="required">Label with Required Asterisk</label>
* <br>
* <label for="unique-id">Basic Input</label>
* <input type="text" id="unique-id" placeholder="Basic Input">
* <label for="unique-id_disabled">Disabled Input</label>
* <input disabled type="text" id="unique-id_disabled" placeholder="Disabled">
* <label class="error" for="unique-id_disabled">Input with Error</label>
* <input type="text" class="error" id="unique-id_disabled" placeholder="Error">
* <p class="error-msg">Error message.</p>
* <label for="unique-id_textarea">Text Area</label>
* <textarea id="unique-id_textarea"></textarea>
*/
label {
  display: block;
  margin-bottom: 8px; }
  label.flush {
    margin-top: 0; }
  label.required:after {
    content: '*';
    display: inline-block;
    margin-left: 4px; }
  .error-msg + label {
    margin-top: 12px; }
  .theme-cmix label.error {
    color: #DF4E71; }
  .theme-cmix label.required:after {
    color: #DF4E71; }
  .theme-marketview label.error {
    color: #DF4E71; }
  .theme-marketview label.required:after {
    color: #DF4E71; }

input[type="text"],
input[type="password"], input[type="search"], md-autocomplete input[type="search"],
input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"],
input[type="number"],
input[type="email"],
input[type="tel"],
textarea,
.fr-inline-editor .fr-view {
  border: 1px solid transparent;
  line-height: 22px;
  border-radius: 4px;
  padding: 6px 16px;
  display: block;
  width: 100%;
  max-width: 100%;
  min-height: 36px; }
  input[type="text"] + label,
  input[type="text"] + input,
  input[type="text"] + textarea,
  .fr-inline-editor input[type="text"] + .fr-view,
  input[type="text"] + .input-w-inlay,
  input[type="text"] + .input-w-clear,
  input[type="text"] + .input-w-button,
  input[type="text"] + .checkable,
  input[type="text"] + .inline-checkables,
  input[type="text"] + p,
  p + input[type="text"],
  input[type="text"] + ul,
  ul + input[type="text"] input[type="text"] + ol,
  ol + input[type="text"] input[type="text"] + table,
  table + input[type="text"],
  input[type="text"] + .responsive-table,
  .responsive-table + input[type="text"],
  .error-msg + input[type="text"],
  h1 + input[type="text"],
  h2 + input[type="text"],
  h3 + input[type="text"],
  h4 + input[type="text"],
  h5 + input[type="text"],
  h6 + input[type="text"],
  input[type="password"] + label,
  input[type="password"] + input,
  input[type="password"] + textarea,
  .fr-inline-editor input[type="password"] + .fr-view,
  input[type="password"] + .input-w-inlay,
  input[type="password"] + .input-w-clear,
  input[type="password"] + .input-w-button,
  input[type="password"] + .checkable,
  input[type="password"] + .inline-checkables,
  input[type="password"] + p,
  p +
  input[type="password"],
  input[type="password"] + ul,
  ul +
  input[type="password"] input[type="text"] + ol,
  ol +
  input[type="password"] input[type="text"] + table,
  table +
  input[type="password"],
  input[type="password"] + .responsive-table,
  .responsive-table +
  input[type="password"],
  .error-msg +
  input[type="password"],
  h1 +
  input[type="password"],
  h2 +
  input[type="password"],
  h3 +
  input[type="password"],
  h4 +
  input[type="password"],
  h5 +
  input[type="password"],
  h6 +
  input[type="password"],
  input[type="search"] + label,
  md-autocomplete input[type="search"] + label,
  input[type="search"] + input,
  md-autocomplete input[type="search"] + input,
  input[type="search"] + textarea,
  md-autocomplete input[type="search"] + textarea,
  .fr-inline-editor input[type="search"] + .fr-view,
  .fr-inline-editor md-autocomplete input[type="search"] + .fr-view,
  input[type="search"] + .input-w-inlay,
  md-autocomplete input[type="search"] + .input-w-inlay,
  input[type="search"] + .input-w-clear,
  md-autocomplete input[type="search"] + .input-w-clear,
  input[type="search"] + .input-w-button,
  md-autocomplete input[type="search"] + .input-w-button,
  input[type="search"] + .checkable,
  md-autocomplete input[type="search"] + .checkable,
  input[type="search"] + .inline-checkables,
  md-autocomplete input[type="search"] + .inline-checkables,
  input[type="search"] + p,
  md-autocomplete input[type="search"] + p,
  p + input[type="search"],
  md-autocomplete p + input[type="search"],
  input[type="search"] + ul,
  md-autocomplete input[type="search"] + ul,
  ul + input[type="search"] input[type="text"] + ol,
  md-autocomplete ul + input[type="search"] input[type="text"] + ol,
  ol + input[type="search"] input[type="text"] + table,
  md-autocomplete ol + input[type="search"] input[type="text"] + table,
  table + input[type="search"],
  md-autocomplete table + input[type="search"],
  input[type="search"] + .responsive-table,
  md-autocomplete input[type="search"] + .responsive-table,
  .responsive-table + input[type="search"],
  md-autocomplete .responsive-table + input[type="search"],
  .error-msg + input[type="search"],
  md-autocomplete .error-msg + input[type="search"],
  h1 + input[type="search"],
  md-autocomplete h1 + input[type="search"],
  h2 + input[type="search"],
  md-autocomplete h2 + input[type="search"],
  h3 + input[type="search"],
  md-autocomplete h3 + input[type="search"],
  h4 + input[type="search"],
  md-autocomplete h4 + input[type="search"],
  h5 + input[type="search"],
  md-autocomplete h5 + input[type="search"],
  h6 + input[type="search"],
  md-autocomplete h6 + input[type="search"],
  input[type="date"] + label,
  input[type="date"] + input,
  input[type="date"] + textarea,
  .fr-inline-editor input[type="date"] + .fr-view,
  input[type="date"] + .input-w-inlay,
  input[type="date"] + .input-w-clear,
  input[type="date"] + .input-w-button,
  input[type="date"] + .checkable,
  input[type="date"] + .inline-checkables,
  input[type="date"] + p,
  p +
  input[type="date"],
  input[type="date"] + ul,
  ul +
  input[type="date"] input[type="text"] + ol,
  ol +
  input[type="date"] input[type="text"] + table,
  table +
  input[type="date"],
  input[type="date"] + .responsive-table,
  .responsive-table +
  input[type="date"],
  .error-msg +
  input[type="date"],
  h1 +
  input[type="date"],
  h2 +
  input[type="date"],
  h3 +
  input[type="date"],
  h4 +
  input[type="date"],
  h5 +
  input[type="date"],
  h6 +
  input[type="date"],
  input[type="time"] + label,
  input[type="time"] + input,
  input[type="time"] + textarea,
  .fr-inline-editor input[type="time"] + .fr-view,
  input[type="time"] + .input-w-inlay,
  input[type="time"] + .input-w-clear,
  input[type="time"] + .input-w-button,
  input[type="time"] + .checkable,
  input[type="time"] + .inline-checkables,
  input[type="time"] + p,
  p +
  input[type="time"],
  input[type="time"] + ul,
  ul +
  input[type="time"] input[type="text"] + ol,
  ol +
  input[type="time"] input[type="text"] + table,
  table +
  input[type="time"],
  input[type="time"] + .responsive-table,
  .responsive-table +
  input[type="time"],
  .error-msg +
  input[type="time"],
  h1 +
  input[type="time"],
  h2 +
  input[type="time"],
  h3 +
  input[type="time"],
  h4 +
  input[type="time"],
  h5 +
  input[type="time"],
  h6 +
  input[type="time"],
  input[type="datetime-local"] + label,
  input[type="datetime-local"] + input,
  input[type="datetime-local"] + textarea,
  .fr-inline-editor input[type="datetime-local"] + .fr-view,
  input[type="datetime-local"] + .input-w-inlay,
  input[type="datetime-local"] + .input-w-clear,
  input[type="datetime-local"] + .input-w-button,
  input[type="datetime-local"] + .checkable,
  input[type="datetime-local"] + .inline-checkables,
  input[type="datetime-local"] + p,
  p +
  input[type="datetime-local"],
  input[type="datetime-local"] + ul,
  ul +
  input[type="datetime-local"] input[type="text"] + ol,
  ol +
  input[type="datetime-local"] input[type="text"] + table,
  table +
  input[type="datetime-local"],
  input[type="datetime-local"] + .responsive-table,
  .responsive-table +
  input[type="datetime-local"],
  .error-msg +
  input[type="datetime-local"],
  h1 +
  input[type="datetime-local"],
  h2 +
  input[type="datetime-local"],
  h3 +
  input[type="datetime-local"],
  h4 +
  input[type="datetime-local"],
  h5 +
  input[type="datetime-local"],
  h6 +
  input[type="datetime-local"],
  input[type="month"] + label,
  input[type="month"] + input,
  input[type="month"] + textarea,
  .fr-inline-editor input[type="month"] + .fr-view,
  input[type="month"] + .input-w-inlay,
  input[type="month"] + .input-w-clear,
  input[type="month"] + .input-w-button,
  input[type="month"] + .checkable,
  input[type="month"] + .inline-checkables,
  input[type="month"] + p,
  p +
  input[type="month"],
  input[type="month"] + ul,
  ul +
  input[type="month"] input[type="text"] + ol,
  ol +
  input[type="month"] input[type="text"] + table,
  table +
  input[type="month"],
  input[type="month"] + .responsive-table,
  .responsive-table +
  input[type="month"],
  .error-msg +
  input[type="month"],
  h1 +
  input[type="month"],
  h2 +
  input[type="month"],
  h3 +
  input[type="month"],
  h4 +
  input[type="month"],
  h5 +
  input[type="month"],
  h6 +
  input[type="month"],
  input[type="number"] + label,
  input[type="number"] + input,
  input[type="number"] + textarea,
  .fr-inline-editor input[type="number"] + .fr-view,
  input[type="number"] + .input-w-inlay,
  input[type="number"] + .input-w-clear,
  input[type="number"] + .input-w-button,
  input[type="number"] + .checkable,
  input[type="number"] + .inline-checkables,
  input[type="number"] + p,
  p +
  input[type="number"],
  input[type="number"] + ul,
  ul +
  input[type="number"] input[type="text"] + ol,
  ol +
  input[type="number"] input[type="text"] + table,
  table +
  input[type="number"],
  input[type="number"] + .responsive-table,
  .responsive-table +
  input[type="number"],
  .error-msg +
  input[type="number"],
  h1 +
  input[type="number"],
  h2 +
  input[type="number"],
  h3 +
  input[type="number"],
  h4 +
  input[type="number"],
  h5 +
  input[type="number"],
  h6 +
  input[type="number"],
  input[type="email"] + label,
  input[type="email"] + input,
  input[type="email"] + textarea,
  .fr-inline-editor input[type="email"] + .fr-view,
  input[type="email"] + .input-w-inlay,
  input[type="email"] + .input-w-clear,
  input[type="email"] + .input-w-button,
  input[type="email"] + .checkable,
  input[type="email"] + .inline-checkables,
  input[type="email"] + p,
  p +
  input[type="email"],
  input[type="email"] + ul,
  ul +
  input[type="email"] input[type="text"] + ol,
  ol +
  input[type="email"] input[type="text"] + table,
  table +
  input[type="email"],
  input[type="email"] + .responsive-table,
  .responsive-table +
  input[type="email"],
  .error-msg +
  input[type="email"],
  h1 +
  input[type="email"],
  h2 +
  input[type="email"],
  h3 +
  input[type="email"],
  h4 +
  input[type="email"],
  h5 +
  input[type="email"],
  h6 +
  input[type="email"],
  input[type="tel"] + label,
  input[type="tel"] + input,
  input[type="tel"] + textarea,
  .fr-inline-editor input[type="tel"] + .fr-view,
  input[type="tel"] + .input-w-inlay,
  input[type="tel"] + .input-w-clear,
  input[type="tel"] + .input-w-button,
  input[type="tel"] + .checkable,
  input[type="tel"] + .inline-checkables,
  input[type="tel"] + p,
  p +
  input[type="tel"],
  input[type="tel"] + ul,
  ul +
  input[type="tel"] input[type="text"] + ol,
  ol +
  input[type="tel"] input[type="text"] + table,
  table +
  input[type="tel"],
  input[type="tel"] + .responsive-table,
  .responsive-table +
  input[type="tel"],
  .error-msg +
  input[type="tel"],
  h1 +
  input[type="tel"],
  h2 +
  input[type="tel"],
  h3 +
  input[type="tel"],
  h4 +
  input[type="tel"],
  h5 +
  input[type="tel"],
  h6 +
  input[type="tel"],
  textarea + label,
  .fr-inline-editor .fr-view + label,
  textarea + input,
  .fr-inline-editor .fr-view + input,
  textarea + textarea,
  .fr-inline-editor .fr-view + textarea,
  .fr-inline-editor textarea + .fr-view,
  .fr-inline-editor .fr-view + .fr-view,
  textarea + .input-w-inlay,
  .fr-inline-editor .fr-view + .input-w-inlay,
  textarea + .input-w-clear,
  .fr-inline-editor .fr-view + .input-w-clear,
  textarea + .input-w-button,
  .fr-inline-editor .fr-view + .input-w-button,
  textarea + .checkable,
  .fr-inline-editor .fr-view + .checkable,
  textarea + .inline-checkables,
  .fr-inline-editor .fr-view + .inline-checkables,
  textarea + p,
  .fr-inline-editor .fr-view + p,
  p + textarea,
  .fr-inline-editor p + .fr-view,
  textarea + ul,
  .fr-inline-editor .fr-view + ul,
  ul + textarea input[type="text"] + ol,
  .fr-inline-editor ul + .fr-view input[type="text"] + ol,
  ol + textarea input[type="text"] + table,
  .fr-inline-editor ol + .fr-view input[type="text"] + table,
  table + textarea,
  .fr-inline-editor table + .fr-view,
  textarea + .responsive-table,
  .fr-inline-editor .fr-view + .responsive-table,
  .responsive-table + textarea,
  .fr-inline-editor .responsive-table + .fr-view,
  .error-msg + textarea,
  .fr-inline-editor .error-msg + .fr-view,
  h1 + textarea,
  .fr-inline-editor h1 + .fr-view,
  h2 + textarea,
  .fr-inline-editor h2 + .fr-view,
  h3 + textarea,
  .fr-inline-editor h3 + .fr-view,
  h4 + textarea,
  .fr-inline-editor h4 + .fr-view,
  h5 + textarea,
  .fr-inline-editor h5 + .fr-view,
  h6 + textarea,
  .fr-inline-editor h6 + .fr-view,
  ul + input[type="text"]
  input[type="password"] + ol,
  ol + input[type="text"]
  input[type="password"] + table,
  ul +
  input[type="password"]
  input[type="password"] + ol,
  ol +
  input[type="password"]
  input[type="password"] + table,
  ul + input[type="search"] input[type="password"] + ol,
  md-autocomplete ul + input[type="search"] input[type="password"] + ol,
  ol + input[type="search"] input[type="password"] + table,
  md-autocomplete ol + input[type="search"] input[type="password"] + table,
  ul +
  input[type="date"]
  input[type="password"] + ol,
  ol +
  input[type="date"]
  input[type="password"] + table,
  ul +
  input[type="time"]
  input[type="password"] + ol,
  ol +
  input[type="time"]
  input[type="password"] + table,
  ul +
  input[type="datetime-local"]
  input[type="password"] + ol,
  ol +
  input[type="datetime-local"]
  input[type="password"] + table,
  ul +
  input[type="month"]
  input[type="password"] + ol,
  ol +
  input[type="month"]
  input[type="password"] + table,
  ul +
  input[type="number"]
  input[type="password"] + ol,
  ol +
  input[type="number"]
  input[type="password"] + table,
  ul +
  input[type="email"]
  input[type="password"] + ol,
  ol +
  input[type="email"]
  input[type="password"] + table,
  ul +
  input[type="tel"]
  input[type="password"] + ol,
  ol +
  input[type="tel"]
  input[type="password"] + table,
  ul + textarea input[type="password"] + ol,
  .fr-inline-editor ul + .fr-view input[type="password"] + ol,
  ol + textarea input[type="password"] + table,
  .fr-inline-editor ol + .fr-view input[type="password"] + table,
  ul + input[type="text"] input[type="search"] + ol,
  ul + input[type="text"] md-autocomplete input[type="search"] + ol,
  md-autocomplete ul + input[type="text"] input[type="search"] + ol,
  ol + input[type="text"] input[type="search"] + table,
  ol + input[type="text"] md-autocomplete input[type="search"] + table,
  md-autocomplete ol + input[type="text"] input[type="search"] + table,
  ul + input[type="password"] input[type="search"] + ol,
  ul + input[type="password"] md-autocomplete input[type="search"] + ol,
  md-autocomplete ul + input[type="password"] input[type="search"] + ol,
  ol + input[type="password"] input[type="search"] + table,
  ol + input[type="password"] md-autocomplete input[type="search"] + table,
  md-autocomplete ol + input[type="password"] input[type="search"] + table,
  ul + input[type="search"] input[type="search"] + ol,
  ul + input[type="search"] md-autocomplete input[type="search"] + ol,
  md-autocomplete ul + input[type="search"] input[type="search"] + ol,
  ol + input[type="search"] input[type="search"] + table,
  ol + input[type="search"] md-autocomplete input[type="search"] + table,
  md-autocomplete ol + input[type="search"] input[type="search"] + table,
  ul + input[type="date"] input[type="search"] + ol,
  ul + input[type="date"] md-autocomplete input[type="search"] + ol,
  md-autocomplete ul + input[type="date"] input[type="search"] + ol,
  ol + input[type="date"] input[type="search"] + table,
  ol + input[type="date"] md-autocomplete input[type="search"] + table,
  md-autocomplete ol + input[type="date"] input[type="search"] + table,
  ul + input[type="time"] input[type="search"] + ol,
  ul + input[type="time"] md-autocomplete input[type="search"] + ol,
  md-autocomplete ul + input[type="time"] input[type="search"] + ol,
  ol + input[type="time"] input[type="search"] + table,
  ol + input[type="time"] md-autocomplete input[type="search"] + table,
  md-autocomplete ol + input[type="time"] input[type="search"] + table,
  ul + input[type="datetime-local"] input[type="search"] + ol,
  ul + input[type="datetime-local"] md-autocomplete input[type="search"] + ol,
  md-autocomplete ul + input[type="datetime-local"] input[type="search"] + ol,
  ol + input[type="datetime-local"] input[type="search"] + table,
  ol + input[type="datetime-local"] md-autocomplete input[type="search"] + table,
  md-autocomplete ol + input[type="datetime-local"] input[type="search"] + table,
  ul + input[type="month"] input[type="search"] + ol,
  ul + input[type="month"] md-autocomplete input[type="search"] + ol,
  md-autocomplete ul + input[type="month"] input[type="search"] + ol,
  ol + input[type="month"] input[type="search"] + table,
  ol + input[type="month"] md-autocomplete input[type="search"] + table,
  md-autocomplete ol + input[type="month"] input[type="search"] + table,
  ul + input[type="number"] input[type="search"] + ol,
  ul + input[type="number"] md-autocomplete input[type="search"] + ol,
  md-autocomplete ul + input[type="number"] input[type="search"] + ol,
  ol + input[type="number"] input[type="search"] + table,
  ol + input[type="number"] md-autocomplete input[type="search"] + table,
  md-autocomplete ol + input[type="number"] input[type="search"] + table,
  ul + input[type="email"] input[type="search"] + ol,
  ul + input[type="email"] md-autocomplete input[type="search"] + ol,
  md-autocomplete ul + input[type="email"] input[type="search"] + ol,
  ol + input[type="email"] input[type="search"] + table,
  ol + input[type="email"] md-autocomplete input[type="search"] + table,
  md-autocomplete ol + input[type="email"] input[type="search"] + table,
  ul + input[type="tel"] input[type="search"] + ol,
  ul + input[type="tel"] md-autocomplete input[type="search"] + ol,
  md-autocomplete ul + input[type="tel"] input[type="search"] + ol,
  ol + input[type="tel"] input[type="search"] + table,
  ol + input[type="tel"] md-autocomplete input[type="search"] + table,
  md-autocomplete ol + input[type="tel"] input[type="search"] + table,
  ul + textarea input[type="search"] + ol,
  .fr-inline-editor ul + .fr-view input[type="search"] + ol,
  ul + textarea md-autocomplete input[type="search"] + ol,
  md-autocomplete ul + textarea input[type="search"] + ol,
  .fr-inline-editor ul + .fr-view md-autocomplete input[type="search"] + ol,
  ol + textarea input[type="search"] + table,
  .fr-inline-editor ol + .fr-view input[type="search"] + table,
  ol + textarea md-autocomplete input[type="search"] + table,
  md-autocomplete ol + textarea input[type="search"] + table,
  .fr-inline-editor ol + .fr-view md-autocomplete input[type="search"] + table,
  ul + input[type="text"]
  input[type="date"] + ol,
  ol + input[type="text"]
  input[type="date"] + table,
  ul +
  input[type="password"]
  input[type="date"] + ol,
  ol +
  input[type="password"]
  input[type="date"] + table,
  ul + input[type="search"] input[type="date"] + ol,
  md-autocomplete ul + input[type="search"] input[type="date"] + ol,
  ol + input[type="search"] input[type="date"] + table,
  md-autocomplete ol + input[type="search"] input[type="date"] + table,
  ul +
  input[type="date"]
  input[type="date"] + ol,
  ol +
  input[type="date"]
  input[type="date"] + table,
  ul +
  input[type="time"]
  input[type="date"] + ol,
  ol +
  input[type="time"]
  input[type="date"] + table,
  ul +
  input[type="datetime-local"]
  input[type="date"] + ol,
  ol +
  input[type="datetime-local"]
  input[type="date"] + table,
  ul +
  input[type="month"]
  input[type="date"] + ol,
  ol +
  input[type="month"]
  input[type="date"] + table,
  ul +
  input[type="number"]
  input[type="date"] + ol,
  ol +
  input[type="number"]
  input[type="date"] + table,
  ul +
  input[type="email"]
  input[type="date"] + ol,
  ol +
  input[type="email"]
  input[type="date"] + table,
  ul +
  input[type="tel"]
  input[type="date"] + ol,
  ol +
  input[type="tel"]
  input[type="date"] + table,
  ul + textarea input[type="date"] + ol,
  .fr-inline-editor ul + .fr-view input[type="date"] + ol,
  ol + textarea input[type="date"] + table,
  .fr-inline-editor ol + .fr-view input[type="date"] + table,
  ul + input[type="text"]
  input[type="time"] + ol,
  ol + input[type="text"]
  input[type="time"] + table,
  ul +
  input[type="password"]
  input[type="time"] + ol,
  ol +
  input[type="password"]
  input[type="time"] + table,
  ul + input[type="search"] input[type="time"] + ol,
  md-autocomplete ul + input[type="search"] input[type="time"] + ol,
  ol + input[type="search"] input[type="time"] + table,
  md-autocomplete ol + input[type="search"] input[type="time"] + table,
  ul +
  input[type="date"]
  input[type="time"] + ol,
  ol +
  input[type="date"]
  input[type="time"] + table,
  ul +
  input[type="time"]
  input[type="time"] + ol,
  ol +
  input[type="time"]
  input[type="time"] + table,
  ul +
  input[type="datetime-local"]
  input[type="time"] + ol,
  ol +
  input[type="datetime-local"]
  input[type="time"] + table,
  ul +
  input[type="month"]
  input[type="time"] + ol,
  ol +
  input[type="month"]
  input[type="time"] + table,
  ul +
  input[type="number"]
  input[type="time"] + ol,
  ol +
  input[type="number"]
  input[type="time"] + table,
  ul +
  input[type="email"]
  input[type="time"] + ol,
  ol +
  input[type="email"]
  input[type="time"] + table,
  ul +
  input[type="tel"]
  input[type="time"] + ol,
  ol +
  input[type="tel"]
  input[type="time"] + table,
  ul + textarea input[type="time"] + ol,
  .fr-inline-editor ul + .fr-view input[type="time"] + ol,
  ol + textarea input[type="time"] + table,
  .fr-inline-editor ol + .fr-view input[type="time"] + table,
  ul + input[type="text"]
  input[type="datetime-local"] + ol,
  ol + input[type="text"]
  input[type="datetime-local"] + table,
  ul +
  input[type="password"]
  input[type="datetime-local"] + ol,
  ol +
  input[type="password"]
  input[type="datetime-local"] + table,
  ul + input[type="search"] input[type="datetime-local"] + ol,
  md-autocomplete ul + input[type="search"] input[type="datetime-local"] + ol,
  ol + input[type="search"] input[type="datetime-local"] + table,
  md-autocomplete ol + input[type="search"] input[type="datetime-local"] + table,
  ul +
  input[type="date"]
  input[type="datetime-local"] + ol,
  ol +
  input[type="date"]
  input[type="datetime-local"] + table,
  ul +
  input[type="time"]
  input[type="datetime-local"] + ol,
  ol +
  input[type="time"]
  input[type="datetime-local"] + table,
  ul +
  input[type="datetime-local"]
  input[type="datetime-local"] + ol,
  ol +
  input[type="datetime-local"]
  input[type="datetime-local"] + table,
  ul +
  input[type="month"]
  input[type="datetime-local"] + ol,
  ol +
  input[type="month"]
  input[type="datetime-local"] + table,
  ul +
  input[type="number"]
  input[type="datetime-local"] + ol,
  ol +
  input[type="number"]
  input[type="datetime-local"] + table,
  ul +
  input[type="email"]
  input[type="datetime-local"] + ol,
  ol +
  input[type="email"]
  input[type="datetime-local"] + table,
  ul +
  input[type="tel"]
  input[type="datetime-local"] + ol,
  ol +
  input[type="tel"]
  input[type="datetime-local"] + table,
  ul + textarea input[type="datetime-local"] + ol,
  .fr-inline-editor ul + .fr-view input[type="datetime-local"] + ol,
  ol + textarea input[type="datetime-local"] + table,
  .fr-inline-editor ol + .fr-view input[type="datetime-local"] + table,
  ul + input[type="text"]
  input[type="month"] + ol,
  ol + input[type="text"]
  input[type="month"] + table,
  ul +
  input[type="password"]
  input[type="month"] + ol,
  ol +
  input[type="password"]
  input[type="month"] + table,
  ul + input[type="search"] input[type="month"] + ol,
  md-autocomplete ul + input[type="search"] input[type="month"] + ol,
  ol + input[type="search"] input[type="month"] + table,
  md-autocomplete ol + input[type="search"] input[type="month"] + table,
  ul +
  input[type="date"]
  input[type="month"] + ol,
  ol +
  input[type="date"]
  input[type="month"] + table,
  ul +
  input[type="time"]
  input[type="month"] + ol,
  ol +
  input[type="time"]
  input[type="month"] + table,
  ul +
  input[type="datetime-local"]
  input[type="month"] + ol,
  ol +
  input[type="datetime-local"]
  input[type="month"] + table,
  ul +
  input[type="month"]
  input[type="month"] + ol,
  ol +
  input[type="month"]
  input[type="month"] + table,
  ul +
  input[type="number"]
  input[type="month"] + ol,
  ol +
  input[type="number"]
  input[type="month"] + table,
  ul +
  input[type="email"]
  input[type="month"] + ol,
  ol +
  input[type="email"]
  input[type="month"] + table,
  ul +
  input[type="tel"]
  input[type="month"] + ol,
  ol +
  input[type="tel"]
  input[type="month"] + table,
  ul + textarea input[type="month"] + ol,
  .fr-inline-editor ul + .fr-view input[type="month"] + ol,
  ol + textarea input[type="month"] + table,
  .fr-inline-editor ol + .fr-view input[type="month"] + table,
  ul + input[type="text"]
  input[type="number"] + ol,
  ol + input[type="text"]
  input[type="number"] + table,
  ul +
  input[type="password"]
  input[type="number"] + ol,
  ol +
  input[type="password"]
  input[type="number"] + table,
  ul + input[type="search"] input[type="number"] + ol,
  md-autocomplete ul + input[type="search"] input[type="number"] + ol,
  ol + input[type="search"] input[type="number"] + table,
  md-autocomplete ol + input[type="search"] input[type="number"] + table,
  ul +
  input[type="date"]
  input[type="number"] + ol,
  ol +
  input[type="date"]
  input[type="number"] + table,
  ul +
  input[type="time"]
  input[type="number"] + ol,
  ol +
  input[type="time"]
  input[type="number"] + table,
  ul +
  input[type="datetime-local"]
  input[type="number"] + ol,
  ol +
  input[type="datetime-local"]
  input[type="number"] + table,
  ul +
  input[type="month"]
  input[type="number"] + ol,
  ol +
  input[type="month"]
  input[type="number"] + table,
  ul +
  input[type="number"]
  input[type="number"] + ol,
  ol +
  input[type="number"]
  input[type="number"] + table,
  ul +
  input[type="email"]
  input[type="number"] + ol,
  ol +
  input[type="email"]
  input[type="number"] + table,
  ul +
  input[type="tel"]
  input[type="number"] + ol,
  ol +
  input[type="tel"]
  input[type="number"] + table,
  ul + textarea input[type="number"] + ol,
  .fr-inline-editor ul + .fr-view input[type="number"] + ol,
  ol + textarea input[type="number"] + table,
  .fr-inline-editor ol + .fr-view input[type="number"] + table,
  ul + input[type="text"]
  input[type="email"] + ol,
  ol + input[type="text"]
  input[type="email"] + table,
  ul +
  input[type="password"]
  input[type="email"] + ol,
  ol +
  input[type="password"]
  input[type="email"] + table,
  ul + input[type="search"] input[type="email"] + ol,
  md-autocomplete ul + input[type="search"] input[type="email"] + ol,
  ol + input[type="search"] input[type="email"] + table,
  md-autocomplete ol + input[type="search"] input[type="email"] + table,
  ul +
  input[type="date"]
  input[type="email"] + ol,
  ol +
  input[type="date"]
  input[type="email"] + table,
  ul +
  input[type="time"]
  input[type="email"] + ol,
  ol +
  input[type="time"]
  input[type="email"] + table,
  ul +
  input[type="datetime-local"]
  input[type="email"] + ol,
  ol +
  input[type="datetime-local"]
  input[type="email"] + table,
  ul +
  input[type="month"]
  input[type="email"] + ol,
  ol +
  input[type="month"]
  input[type="email"] + table,
  ul +
  input[type="number"]
  input[type="email"] + ol,
  ol +
  input[type="number"]
  input[type="email"] + table,
  ul +
  input[type="email"]
  input[type="email"] + ol,
  ol +
  input[type="email"]
  input[type="email"] + table,
  ul +
  input[type="tel"]
  input[type="email"] + ol,
  ol +
  input[type="tel"]
  input[type="email"] + table,
  ul + textarea input[type="email"] + ol,
  .fr-inline-editor ul + .fr-view input[type="email"] + ol,
  ol + textarea input[type="email"] + table,
  .fr-inline-editor ol + .fr-view input[type="email"] + table,
  ul + input[type="text"]
  input[type="tel"] + ol,
  ol + input[type="text"]
  input[type="tel"] + table,
  ul +
  input[type="password"]
  input[type="tel"] + ol,
  ol +
  input[type="password"]
  input[type="tel"] + table,
  ul + input[type="search"] input[type="tel"] + ol,
  md-autocomplete ul + input[type="search"] input[type="tel"] + ol,
  ol + input[type="search"] input[type="tel"] + table,
  md-autocomplete ol + input[type="search"] input[type="tel"] + table,
  ul +
  input[type="date"]
  input[type="tel"] + ol,
  ol +
  input[type="date"]
  input[type="tel"] + table,
  ul +
  input[type="time"]
  input[type="tel"] + ol,
  ol +
  input[type="time"]
  input[type="tel"] + table,
  ul +
  input[type="datetime-local"]
  input[type="tel"] + ol,
  ol +
  input[type="datetime-local"]
  input[type="tel"] + table,
  ul +
  input[type="month"]
  input[type="tel"] + ol,
  ol +
  input[type="month"]
  input[type="tel"] + table,
  ul +
  input[type="number"]
  input[type="tel"] + ol,
  ol +
  input[type="number"]
  input[type="tel"] + table,
  ul +
  input[type="email"]
  input[type="tel"] + ol,
  ol +
  input[type="email"]
  input[type="tel"] + table,
  ul +
  input[type="tel"]
  input[type="tel"] + ol,
  ol +
  input[type="tel"]
  input[type="tel"] + table,
  ul + textarea input[type="tel"] + ol,
  .fr-inline-editor ul + .fr-view input[type="tel"] + ol,
  ol + textarea input[type="tel"] + table,
  .fr-inline-editor ol + .fr-view input[type="tel"] + table,
  ul + input[type="text"] textarea + ol,
  ul + input[type="text"] .fr-inline-editor .fr-view + ol,
  .fr-inline-editor ul + input[type="text"] .fr-view + ol,
  ol + input[type="text"] textarea + table,
  ol + input[type="text"] .fr-inline-editor .fr-view + table,
  .fr-inline-editor ol + input[type="text"] .fr-view + table,
  ul + input[type="password"] textarea + ol,
  ul + input[type="password"] .fr-inline-editor .fr-view + ol,
  .fr-inline-editor ul + input[type="password"] .fr-view + ol,
  ol + input[type="password"] textarea + table,
  ol + input[type="password"] .fr-inline-editor .fr-view + table,
  .fr-inline-editor ol + input[type="password"] .fr-view + table,
  ul + input[type="search"] textarea + ol,
  md-autocomplete ul + input[type="search"] textarea + ol,
  ul + input[type="search"] .fr-inline-editor .fr-view + ol,
  .fr-inline-editor ul + input[type="search"] .fr-view + ol,
  md-autocomplete ul + input[type="search"] .fr-inline-editor .fr-view + ol,
  .fr-inline-editor md-autocomplete ul + input[type="search"] .fr-view + ol,
  ol + input[type="search"] textarea + table,
  md-autocomplete ol + input[type="search"] textarea + table,
  ol + input[type="search"] .fr-inline-editor .fr-view + table,
  .fr-inline-editor ol + input[type="search"] .fr-view + table,
  md-autocomplete ol + input[type="search"] .fr-inline-editor .fr-view + table,
  .fr-inline-editor md-autocomplete ol + input[type="search"] .fr-view + table,
  ul + input[type="date"] textarea + ol,
  ul + input[type="date"] .fr-inline-editor .fr-view + ol,
  .fr-inline-editor ul + input[type="date"] .fr-view + ol,
  ol + input[type="date"] textarea + table,
  ol + input[type="date"] .fr-inline-editor .fr-view + table,
  .fr-inline-editor ol + input[type="date"] .fr-view + table,
  ul + input[type="time"] textarea + ol,
  ul + input[type="time"] .fr-inline-editor .fr-view + ol,
  .fr-inline-editor ul + input[type="time"] .fr-view + ol,
  ol + input[type="time"] textarea + table,
  ol + input[type="time"] .fr-inline-editor .fr-view + table,
  .fr-inline-editor ol + input[type="time"] .fr-view + table,
  ul + input[type="datetime-local"] textarea + ol,
  ul + input[type="datetime-local"] .fr-inline-editor .fr-view + ol,
  .fr-inline-editor ul + input[type="datetime-local"] .fr-view + ol,
  ol + input[type="datetime-local"] textarea + table,
  ol + input[type="datetime-local"] .fr-inline-editor .fr-view + table,
  .fr-inline-editor ol + input[type="datetime-local"] .fr-view + table,
  ul + input[type="month"] textarea + ol,
  ul + input[type="month"] .fr-inline-editor .fr-view + ol,
  .fr-inline-editor ul + input[type="month"] .fr-view + ol,
  ol + input[type="month"] textarea + table,
  ol + input[type="month"] .fr-inline-editor .fr-view + table,
  .fr-inline-editor ol + input[type="month"] .fr-view + table,
  ul + input[type="number"] textarea + ol,
  ul + input[type="number"] .fr-inline-editor .fr-view + ol,
  .fr-inline-editor ul + input[type="number"] .fr-view + ol,
  ol + input[type="number"] textarea + table,
  ol + input[type="number"] .fr-inline-editor .fr-view + table,
  .fr-inline-editor ol + input[type="number"] .fr-view + table,
  ul + input[type="email"] textarea + ol,
  ul + input[type="email"] .fr-inline-editor .fr-view + ol,
  .fr-inline-editor ul + input[type="email"] .fr-view + ol,
  ol + input[type="email"] textarea + table,
  ol + input[type="email"] .fr-inline-editor .fr-view + table,
  .fr-inline-editor ol + input[type="email"] .fr-view + table,
  ul + input[type="tel"] textarea + ol,
  ul + input[type="tel"] .fr-inline-editor .fr-view + ol,
  .fr-inline-editor ul + input[type="tel"] .fr-view + ol,
  ol + input[type="tel"] textarea + table,
  ol + input[type="tel"] .fr-inline-editor .fr-view + table,
  .fr-inline-editor ol + input[type="tel"] .fr-view + table,
  ul + textarea textarea + ol,
  .fr-inline-editor ul + .fr-view textarea + ol,
  ul + textarea .fr-inline-editor .fr-view + ol,
  .fr-inline-editor ul + textarea .fr-view + ol,
  .fr-inline-editor ul + .fr-view .fr-view + ol,
  ol + textarea textarea + table,
  .fr-inline-editor ol + .fr-view textarea + table,
  ol + textarea .fr-inline-editor .fr-view + table,
  .fr-inline-editor ol + textarea .fr-view + table,
  .fr-inline-editor ol + .fr-view .fr-view + table {
    margin-top: 12px; }
  input[type="text"] + h1,
  input[type="text"] + h2,
  input[type="text"] + h3,
  input[type="text"] + h4,
  input[type="text"] + h5,
  input[type="text"] + h6,
  input[type="password"] + h1,
  input[type="password"] + h2,
  input[type="password"] + h3,
  input[type="password"] + h4,
  input[type="password"] + h5,
  input[type="password"] + h6,
  input[type="search"] + h1,
  md-autocomplete input[type="search"] + h1,
  input[type="search"] + h2,
  md-autocomplete input[type="search"] + h2,
  input[type="search"] + h3,
  md-autocomplete input[type="search"] + h3,
  input[type="search"] + h4,
  md-autocomplete input[type="search"] + h4,
  input[type="search"] + h5,
  md-autocomplete input[type="search"] + h5,
  input[type="search"] + h6,
  md-autocomplete input[type="search"] + h6,
  input[type="date"] + h1,
  input[type="date"] + h2,
  input[type="date"] + h3,
  input[type="date"] + h4,
  input[type="date"] + h5,
  input[type="date"] + h6,
  input[type="time"] + h1,
  input[type="time"] + h2,
  input[type="time"] + h3,
  input[type="time"] + h4,
  input[type="time"] + h5,
  input[type="time"] + h6,
  input[type="datetime-local"] + h1,
  input[type="datetime-local"] + h2,
  input[type="datetime-local"] + h3,
  input[type="datetime-local"] + h4,
  input[type="datetime-local"] + h5,
  input[type="datetime-local"] + h6,
  input[type="month"] + h1,
  input[type="month"] + h2,
  input[type="month"] + h3,
  input[type="month"] + h4,
  input[type="month"] + h5,
  input[type="month"] + h6,
  input[type="number"] + h1,
  input[type="number"] + h2,
  input[type="number"] + h3,
  input[type="number"] + h4,
  input[type="number"] + h5,
  input[type="number"] + h6,
  input[type="email"] + h1,
  input[type="email"] + h2,
  input[type="email"] + h3,
  input[type="email"] + h4,
  input[type="email"] + h5,
  input[type="email"] + h6,
  input[type="tel"] + h1,
  input[type="tel"] + h2,
  input[type="tel"] + h3,
  input[type="tel"] + h4,
  input[type="tel"] + h5,
  input[type="tel"] + h6,
  textarea + h1,
  .fr-inline-editor .fr-view + h1,
  textarea + h2,
  .fr-inline-editor .fr-view + h2,
  textarea + h3,
  .fr-inline-editor .fr-view + h3,
  textarea + h4,
  .fr-inline-editor .fr-view + h4,
  textarea + h5,
  .fr-inline-editor .fr-view + h5,
  textarea + h6,
  .fr-inline-editor .fr-view + h6 {
    margin-top: 16px; }
  input[type="text"].flush,
  input[type="password"].flush,
  input[type="search"].flush,
  input[type="date"].flush,
  input[type="time"].flush,
  input[type="datetime-local"].flush,
  input[type="month"].flush,
  input[type="number"].flush,
  input[type="email"].flush,
  input[type="tel"].flush,
  textarea.flush,
  .fr-inline-editor .flush.fr-view,
  .fr-inline-editor .people-card.-expandable button.fr-view.expand-user,
  .people-card.-expandable .fr-inline-editor button.fr-view.expand-user,
  .fr-inline-editor .people-card.-expandable label.fr-view.expand-user.label-btn,
  .people-card.-expandable .fr-inline-editor label.fr-view.expand-user.label-btn,
  .fr-inline-editor .people-card.-expandable md-dialog md-dialog-actions .fr-view.expand-user.md-cancel-button,
  .people-card.-expandable md-dialog md-dialog-actions .fr-inline-editor .fr-view.expand-user.md-cancel-button,
  .fr-inline-editor md-dialog md-dialog-actions .people-card.-expandable .fr-view.expand-user.md-cancel-button,
  md-dialog md-dialog-actions .people-card.-expandable .fr-inline-editor .fr-view.expand-user.md-cancel-button,
  .fr-inline-editor .people-card.-expandable md-dialog md-dialog-actions .fr-view.expand-user.md-confirm-button,
  .people-card.-expandable md-dialog md-dialog-actions .fr-inline-editor .fr-view.expand-user.md-confirm-button,
  .fr-inline-editor md-dialog md-dialog-actions .people-card.-expandable .fr-view.expand-user.md-confirm-button,
  md-dialog md-dialog-actions .people-card.-expandable .fr-inline-editor .fr-view.expand-user.md-confirm-button {
    margin-top: 0; }
  input[type="text"] + p.error-msg,
  input[type="password"] + p.error-msg,
  input[type="search"] + p.error-msg,
  md-autocomplete input[type="search"] + p.error-msg,
  input[type="date"] + p.error-msg,
  input[type="time"] + p.error-msg,
  input[type="datetime-local"] + p.error-msg,
  input[type="month"] + p.error-msg,
  input[type="number"] + p.error-msg,
  input[type="email"] + p.error-msg,
  input[type="tel"] + p.error-msg,
  textarea + p.error-msg,
  .fr-inline-editor .fr-view + p.error-msg {
    margin-top: 4px; }
  input[type="text"]:focus,
  input[type="password"]:focus,
  input[type="search"]:focus,
  input[type="date"]:focus,
  input[type="time"]:focus,
  input[type="datetime-local"]:focus,
  input[type="month"]:focus,
  input[type="number"]:focus,
  input[type="email"]:focus,
  input[type="tel"]:focus,
  textarea:focus,
  .fr-inline-editor .fr-view:focus {
    outline: 0; }
  input[type="text"].disabled, input[type="text"][disabled],
  fieldset[disabled] input[type="text"],
  label.disabled + input[type="text"],
  label[disabled] + input[type="text"],
  input[type="password"].disabled,
  input[type="password"][disabled],
  fieldset[disabled]
  input[type="password"],
  label.disabled +
  input[type="password"],
  label[disabled] +
  input[type="password"],
  input[type="search"].disabled,
  input[type="search"][disabled],
  fieldset[disabled] input[type="search"],
  label.disabled + input[type="search"],
  md-autocomplete label.disabled + input[type="search"],
  label[disabled] + input[type="search"],
  md-autocomplete label[disabled] + input[type="search"],
  input[type="date"].disabled,
  input[type="date"][disabled],
  fieldset[disabled]
  input[type="date"],
  label.disabled +
  input[type="date"],
  label[disabled] +
  input[type="date"],
  input[type="time"].disabled,
  input[type="time"][disabled],
  fieldset[disabled]
  input[type="time"],
  label.disabled +
  input[type="time"],
  label[disabled] +
  input[type="time"],
  input[type="datetime-local"].disabled,
  input[type="datetime-local"][disabled],
  fieldset[disabled]
  input[type="datetime-local"],
  label.disabled +
  input[type="datetime-local"],
  label[disabled] +
  input[type="datetime-local"],
  input[type="month"].disabled,
  input[type="month"][disabled],
  fieldset[disabled]
  input[type="month"],
  label.disabled +
  input[type="month"],
  label[disabled] +
  input[type="month"],
  input[type="number"].disabled,
  input[type="number"][disabled],
  fieldset[disabled]
  input[type="number"],
  label.disabled +
  input[type="number"],
  label[disabled] +
  input[type="number"],
  input[type="email"].disabled,
  input[type="email"][disabled],
  fieldset[disabled]
  input[type="email"],
  label.disabled +
  input[type="email"],
  label[disabled] +
  input[type="email"],
  input[type="tel"].disabled,
  input[type="tel"][disabled],
  fieldset[disabled]
  input[type="tel"],
  label.disabled +
  input[type="tel"],
  label[disabled] +
  input[type="tel"],
  textarea.disabled,
  .fr-inline-editor .disabled.fr-view,
  textarea[disabled],
  .fr-inline-editor .fr-view[disabled],
  fieldset[disabled] textarea,
  fieldset[disabled] .fr-inline-editor .fr-view,
  .fr-inline-editor fieldset[disabled] .fr-view,
  label.disabled + textarea,
  .fr-inline-editor label.disabled + .fr-view,
  label[disabled] + textarea,
  .fr-inline-editor label[disabled] + .fr-view {
    opacity: 0.65;
    pointer-events: none;
    cursor: not-allowed; }
    .theme-cmix input[type="text"].disabled, .theme-cmix input[type="text"][disabled], .theme-cmix
    fieldset[disabled] input[type="text"], .theme-cmix
    label.disabled + input[type="text"], .theme-cmix
    label[disabled] + input[type="text"], .theme-cmix
    input[type="password"].disabled, .theme-cmix
    input[type="password"][disabled], .theme-cmix
    fieldset[disabled]
    input[type="password"], .theme-cmix
    label.disabled +
    input[type="password"], .theme-cmix
    label[disabled] +
    input[type="password"], .theme-cmix input[type="search"].disabled, .theme-cmix input[type="search"][disabled], .theme-cmix fieldset[disabled] input[type="search"], .theme-cmix label.disabled + input[type="search"], .theme-cmix md-autocomplete label.disabled + input[type="search"], .theme-cmix label[disabled] + input[type="search"], .theme-cmix md-autocomplete label[disabled] + input[type="search"], .theme-cmix
    input[type="date"].disabled, .theme-cmix
    input[type="date"][disabled], .theme-cmix
    fieldset[disabled]
    input[type="date"], .theme-cmix
    label.disabled +
    input[type="date"], .theme-cmix
    label[disabled] +
    input[type="date"], .theme-cmix
    input[type="time"].disabled, .theme-cmix
    input[type="time"][disabled], .theme-cmix
    fieldset[disabled]
    input[type="time"], .theme-cmix
    label.disabled +
    input[type="time"], .theme-cmix
    label[disabled] +
    input[type="time"], .theme-cmix
    input[type="datetime-local"].disabled, .theme-cmix
    input[type="datetime-local"][disabled], .theme-cmix
    fieldset[disabled]
    input[type="datetime-local"], .theme-cmix
    label.disabled +
    input[type="datetime-local"], .theme-cmix
    label[disabled] +
    input[type="datetime-local"], .theme-cmix
    input[type="month"].disabled, .theme-cmix
    input[type="month"][disabled], .theme-cmix
    fieldset[disabled]
    input[type="month"], .theme-cmix
    label.disabled +
    input[type="month"], .theme-cmix
    label[disabled] +
    input[type="month"], .theme-cmix
    input[type="number"].disabled, .theme-cmix
    input[type="number"][disabled], .theme-cmix
    fieldset[disabled]
    input[type="number"], .theme-cmix
    label.disabled +
    input[type="number"], .theme-cmix
    label[disabled] +
    input[type="number"], .theme-cmix
    input[type="email"].disabled, .theme-cmix
    input[type="email"][disabled], .theme-cmix
    fieldset[disabled]
    input[type="email"], .theme-cmix
    label.disabled +
    input[type="email"], .theme-cmix
    label[disabled] +
    input[type="email"], .theme-cmix
    input[type="tel"].disabled, .theme-cmix
    input[type="tel"][disabled], .theme-cmix
    fieldset[disabled]
    input[type="tel"], .theme-cmix
    label.disabled +
    input[type="tel"], .theme-cmix
    label[disabled] +
    input[type="tel"], .theme-cmix textarea.disabled, .theme-cmix .fr-inline-editor .disabled.fr-view, .fr-inline-editor .theme-cmix .disabled.fr-view, .theme-cmix textarea[disabled], .theme-cmix .fr-inline-editor .fr-view[disabled], .fr-inline-editor .theme-cmix .fr-view[disabled], .theme-cmix fieldset[disabled] textarea, .theme-cmix fieldset[disabled] .fr-inline-editor .fr-view, .fr-inline-editor .theme-cmix fieldset[disabled] .fr-view, .theme-cmix label.disabled + textarea, .theme-cmix .fr-inline-editor label.disabled + .fr-view, .fr-inline-editor .theme-cmix label.disabled + .fr-view, .theme-cmix label[disabled] + textarea, .theme-cmix .fr-inline-editor label[disabled] + .fr-view, .fr-inline-editor .theme-cmix label[disabled] + .fr-view {
      background-color: #FAFAFA; }
    .theme-marketview input[type="text"].disabled, .theme-marketview input[type="text"][disabled], .theme-marketview
    fieldset[disabled] input[type="text"], .theme-marketview
    label.disabled + input[type="text"], .theme-marketview
    label[disabled] + input[type="text"], .theme-marketview
    input[type="password"].disabled, .theme-marketview
    input[type="password"][disabled], .theme-marketview
    fieldset[disabled]
    input[type="password"], .theme-marketview
    label.disabled +
    input[type="password"], .theme-marketview
    label[disabled] +
    input[type="password"], .theme-marketview input[type="search"].disabled, .theme-marketview input[type="search"][disabled], .theme-marketview fieldset[disabled] input[type="search"], .theme-marketview label.disabled + input[type="search"], .theme-marketview md-autocomplete label.disabled + input[type="search"], .theme-marketview label[disabled] + input[type="search"], .theme-marketview md-autocomplete label[disabled] + input[type="search"], .theme-marketview
    input[type="date"].disabled, .theme-marketview
    input[type="date"][disabled], .theme-marketview
    fieldset[disabled]
    input[type="date"], .theme-marketview
    label.disabled +
    input[type="date"], .theme-marketview
    label[disabled] +
    input[type="date"], .theme-marketview
    input[type="time"].disabled, .theme-marketview
    input[type="time"][disabled], .theme-marketview
    fieldset[disabled]
    input[type="time"], .theme-marketview
    label.disabled +
    input[type="time"], .theme-marketview
    label[disabled] +
    input[type="time"], .theme-marketview
    input[type="datetime-local"].disabled, .theme-marketview
    input[type="datetime-local"][disabled], .theme-marketview
    fieldset[disabled]
    input[type="datetime-local"], .theme-marketview
    label.disabled +
    input[type="datetime-local"], .theme-marketview
    label[disabled] +
    input[type="datetime-local"], .theme-marketview
    input[type="month"].disabled, .theme-marketview
    input[type="month"][disabled], .theme-marketview
    fieldset[disabled]
    input[type="month"], .theme-marketview
    label.disabled +
    input[type="month"], .theme-marketview
    label[disabled] +
    input[type="month"], .theme-marketview
    input[type="number"].disabled, .theme-marketview
    input[type="number"][disabled], .theme-marketview
    fieldset[disabled]
    input[type="number"], .theme-marketview
    label.disabled +
    input[type="number"], .theme-marketview
    label[disabled] +
    input[type="number"], .theme-marketview
    input[type="email"].disabled, .theme-marketview
    input[type="email"][disabled], .theme-marketview
    fieldset[disabled]
    input[type="email"], .theme-marketview
    label.disabled +
    input[type="email"], .theme-marketview
    label[disabled] +
    input[type="email"], .theme-marketview
    input[type="tel"].disabled, .theme-marketview
    input[type="tel"][disabled], .theme-marketview
    fieldset[disabled]
    input[type="tel"], .theme-marketview
    label.disabled +
    input[type="tel"], .theme-marketview
    label[disabled] +
    input[type="tel"], .theme-marketview textarea.disabled, .theme-marketview .fr-inline-editor .disabled.fr-view, .fr-inline-editor .theme-marketview .disabled.fr-view, .theme-marketview textarea[disabled], .theme-marketview .fr-inline-editor .fr-view[disabled], .fr-inline-editor .theme-marketview .fr-view[disabled], .theme-marketview fieldset[disabled] textarea, .theme-marketview fieldset[disabled] .fr-inline-editor .fr-view, .fr-inline-editor .theme-marketview fieldset[disabled] .fr-view, .theme-marketview label.disabled + textarea, .theme-marketview .fr-inline-editor label.disabled + .fr-view, .fr-inline-editor .theme-marketview label.disabled + .fr-view, .theme-marketview label[disabled] + textarea, .theme-marketview .fr-inline-editor label[disabled] + .fr-view, .fr-inline-editor .theme-marketview label[disabled] + .fr-view {
      background-color: #FAFAFA; }
  .theme-cmix input[type="text"], .theme-cmix
  input[type="password"], .theme-cmix input[type="search"], .theme-cmix
  input[type="date"], .theme-cmix
  input[type="time"], .theme-cmix
  input[type="datetime-local"], .theme-cmix
  input[type="month"], .theme-cmix
  input[type="number"], .theme-cmix
  input[type="email"], .theme-cmix
  input[type="tel"], .theme-cmix textarea, .theme-cmix .fr-inline-editor .fr-view, .fr-inline-editor .theme-cmix .fr-view {
    border-color: #DDE1E7; }
    .theme-cmix input[type="text"]:focus, .theme-cmix
    input[type="password"]:focus, .theme-cmix input[type="search"]:focus, .theme-cmix
    input[type="date"]:focus, .theme-cmix
    input[type="time"]:focus, .theme-cmix
    input[type="datetime-local"]:focus, .theme-cmix
    input[type="month"]:focus, .theme-cmix
    input[type="number"]:focus, .theme-cmix
    input[type="email"]:focus, .theme-cmix
    input[type="tel"]:focus, .theme-cmix textarea:focus, .theme-cmix .fr-inline-editor .fr-view:focus, .fr-inline-editor .theme-cmix .fr-view:focus {
      border-color: #3EA8DD; }
    .theme-cmix input[type="text"].error, .theme-cmix
    input[type="password"].error, .theme-cmix input[type="search"].error, .theme-cmix
    input[type="date"].error, .theme-cmix
    input[type="time"].error, .theme-cmix
    input[type="datetime-local"].error, .theme-cmix
    input[type="month"].error, .theme-cmix
    input[type="number"].error, .theme-cmix
    input[type="email"].error, .theme-cmix
    input[type="tel"].error, .theme-cmix textarea.error, .theme-cmix .fr-inline-editor .error.fr-view, .fr-inline-editor .theme-cmix .error.fr-view {
      border-color: #DF4E71; }
  .theme-marketview input[type="text"], .theme-marketview
  input[type="password"], .theme-marketview input[type="search"], .theme-marketview
  input[type="date"], .theme-marketview
  input[type="time"], .theme-marketview
  input[type="datetime-local"], .theme-marketview
  input[type="month"], .theme-marketview
  input[type="number"], .theme-marketview
  input[type="email"], .theme-marketview
  input[type="tel"], .theme-marketview textarea, .theme-marketview .fr-inline-editor .fr-view, .fr-inline-editor .theme-marketview .fr-view {
    border-color: #DDE1E7; }
    .theme-marketview input[type="text"]:focus, .theme-marketview
    input[type="password"]:focus, .theme-marketview input[type="search"]:focus, .theme-marketview
    input[type="date"]:focus, .theme-marketview
    input[type="time"]:focus, .theme-marketview
    input[type="datetime-local"]:focus, .theme-marketview
    input[type="month"]:focus, .theme-marketview
    input[type="number"]:focus, .theme-marketview
    input[type="email"]:focus, .theme-marketview
    input[type="tel"]:focus, .theme-marketview textarea:focus, .theme-marketview .fr-inline-editor .fr-view:focus, .fr-inline-editor .theme-marketview .fr-view:focus {
      border-color: #115FA6; }
    .theme-marketview input[type="text"].error, .theme-marketview
    input[type="password"].error, .theme-marketview input[type="search"].error, .theme-marketview
    input[type="date"].error, .theme-marketview
    input[type="time"].error, .theme-marketview
    input[type="datetime-local"].error, .theme-marketview
    input[type="month"].error, .theme-marketview
    input[type="number"].error, .theme-marketview
    input[type="email"].error, .theme-marketview
    input[type="tel"].error, .theme-marketview textarea.error, .theme-marketview .fr-inline-editor .error.fr-view, .fr-inline-editor .theme-marketview .error.fr-view {
      border-color: #DF4E71; }

/**
* For use with things like material autocompletes, when you want an input to appear as a dropdown.
*
* @section Text Input as Dropdown
* @sectionof Inputs
*
* @example
* <div class="dropdown-input">
*   <input type="text">
* </div>
*/
.dropdown-input {
  position: relative; }
  .dropdown-input input {
    padding-right: 32px; }
  .dropdown-input:before {
    font-family: "cmix-icons";
    font-style: normal;
    font-weight: normal;
    line-height: 22px;
    speak: none;
    display: inline-block;
    text-align: center;
    padding: 6px 0;
    position: absolute;
    top: 1px;
    right: 16px;
    pointer-events: none;
    /* For safety - reset parent styles, that can break glyph codes*/
    font-variant: normal;
    text-transform: none; }
    .theme-cmix .dropdown-input:before {
      color: #585863; }
    .theme-marketview .dropdown-input:before {
      color: #666666; }

/**
* Follow the markup as demonstrated.
*
* For __disabled__ inputs apply the class `disabled` to the input.
*
* For __error__ states, add the class `error` to the label, or to the input itself if there is no label.
*
* Add the class `flush` to the container to strip the `margin-top` automatically applied if placed after paragraphs, headers or lists, etc.
*
* @section Inputs with Inlay Buttons
* @sectionof Inputs
* @example
* <label for="search-input">Search</label>
* <div class="input-w-inlay">
*   <input type="text" id="search-input">
*   <button class="icon-search" title="search">
*     <span class="sr-only">Search</span>
*   </button>
* </div>
* <label for="example">Input with a Clear Button</label>
* <div class="input-w-clear">
*   <input type="text" id="example">
*   <button class="clear icon-remove" title="Clear Text">
*     <span class="sr-only">Clear Text</span>
*   </button>
* </div>
* <label for="search-input">Input with inlay and clear.</label>
* <div class="input-w-inlay -w-clear">
*   <input type="text" id="search-input">
*   <button class="icon-search" title="search">
*     <span class="sr-only">Search</span>
*   </button>
*   <button class="clear icon-remove" title="Clear Text">
*     <span class="sr-only">Clear Text</span>
*   </button>
* </div>
*
* <label for="search-input" class="error">With Error</label>
* <div class="input-w-inlay">
*   <input type="text" class="error" id="search-input">
*   <button class="icon-search" title="search">
*     <span class="sr-only">Search</span>
*   </button>
* </div>
* <label for="example">Disabled</label>
* <div class="input-w-clear">
*   <input type="text" disabled id="example">
*   <button class="clear icon-remove" title="Clear Text">
*     <span class="sr-only">Clear Text</span>
*   </button>
* </div>
*/
.input-w-inlay {
  display: flex;
  align-items: center; }
  .input-w-inlay + label,
  .input-w-inlay + input,
  .input-w-inlay + textarea,
  .fr-inline-editor .input-w-inlay + .fr-view,
  .input-w-inlay + .input-w-inlay,
  .input-w-inlay + .input-w-clear,
  .input-w-inlay + .input-w-button,
  .input-w-inlay + .checkable,
  .input-w-inlay + .inline-checkables,
  .input-w-inlay + p,
  p + .input-w-inlay,
  .input-w-inlay + ul,
  ul + .input-w-inlay .input-w-inlay + ol,
  ol + .input-w-inlay .input-w-inlay + table,
  table + .input-w-inlay,
  .input-w-inlay + .responsive-table,
  .responsive-table + .input-w-inlay,
  .error-msg + .input-w-inlay,
  h1 + .input-w-inlay,
  h2 + .input-w-inlay,
  h3 + .input-w-inlay,
  h4 + .input-w-inlay,
  h5 + .input-w-inlay,
  h6 + .input-w-inlay {
    margin-top: 12px; }
  .input-w-inlay + h1,
  .input-w-inlay + h2,
  .input-w-inlay + h3,
  .input-w-inlay + h4,
  .input-w-inlay + h5,
  .input-w-inlay + h6 {
    margin-top: 16px; }
  .input-w-inlay.flush, .people-card.-expandable button.input-w-inlay.expand-user, .people-card.-expandable label.input-w-inlay.expand-user.label-btn, .people-card.-expandable md-dialog md-dialog-actions .input-w-inlay.expand-user.md-cancel-button, md-dialog md-dialog-actions .people-card.-expandable .input-w-inlay.expand-user.md-cancel-button, .people-card.-expandable md-dialog md-dialog-actions .input-w-inlay.expand-user.md-confirm-button, md-dialog md-dialog-actions .people-card.-expandable .input-w-inlay.expand-user.md-confirm-button {
    margin-top: 0; }
  .input-w-inlay + p.error-msg {
    margin-top: 4px; }
  .input-w-inlay label {
    width: 100%; }
  .input-w-inlay input {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    flex: 1; }
    .input-w-inlay input + button, .input-w-inlay input + label.label-btn, .input-w-inlay md-dialog md-dialog-actions input + .md-cancel-button, md-dialog md-dialog-actions .input-w-inlay input + .md-cancel-button, .input-w-inlay md-dialog md-dialog-actions input + .md-confirm-button, md-dialog md-dialog-actions .input-w-inlay input + .md-confirm-button {
      margin-left: -1px;
      border-top-left-radius: 0;
      border-bottom-left-radius: 0; }
      .theme-cmix .input-w-inlay input + button, .theme-cmix .input-w-inlay input + label.label-btn, .theme-cmix .input-w-inlay md-dialog md-dialog-actions input + .md-cancel-button, md-dialog md-dialog-actions .theme-cmix .input-w-inlay input + .md-cancel-button, .theme-cmix .input-w-inlay md-dialog md-dialog-actions input + .md-confirm-button, md-dialog md-dialog-actions .theme-cmix .input-w-inlay input + .md-confirm-button {
        border-color: #DDE1E7; }
      .theme-marketview .input-w-inlay input + button, .theme-marketview .input-w-inlay input + label.label-btn, .theme-marketview .input-w-inlay md-dialog md-dialog-actions input + .md-cancel-button, md-dialog md-dialog-actions .theme-marketview .input-w-inlay input + .md-cancel-button, .theme-marketview .input-w-inlay md-dialog md-dialog-actions input + .md-confirm-button, md-dialog md-dialog-actions .theme-marketview .input-w-inlay input + .md-confirm-button {
        border-color: #DDE1E7; }
      .input-w-inlay input + button:before, .input-w-inlay input + label.label-btn:before, .input-w-inlay md-dialog md-dialog-actions input + .md-cancel-button:before, md-dialog md-dialog-actions .input-w-inlay input + .md-cancel-button:before, .input-w-inlay md-dialog md-dialog-actions input + .md-confirm-button:before, md-dialog md-dialog-actions .input-w-inlay input + .md-confirm-button:before {
        margin-right: 0; }
      .input-w-inlay input + button:active, .input-w-inlay input + label.label-btn:active, .input-w-inlay md-dialog md-dialog-actions input + .md-cancel-button:active, md-dialog md-dialog-actions .input-w-inlay input + .md-cancel-button:active, .input-w-inlay md-dialog md-dialog-actions input + .md-confirm-button:active, md-dialog md-dialog-actions .input-w-inlay input + .md-confirm-button:active {
        transform: none; }
    .theme-cmix .input-w-inlay input:focus + button, .theme-cmix .input-w-inlay input:focus + label.label-btn, .theme-cmix .input-w-inlay md-dialog md-dialog-actions input:focus + .md-cancel-button, md-dialog md-dialog-actions .theme-cmix .input-w-inlay input:focus + .md-cancel-button, .theme-cmix .input-w-inlay md-dialog md-dialog-actions input:focus + .md-confirm-button, md-dialog md-dialog-actions .theme-cmix .input-w-inlay input:focus + .md-confirm-button {
      border-top-color: #2E91C9;
      border-right-color: #2E91C9;
      border-bottom-color: #2E91C9; }
    .theme-marketview .input-w-inlay input:focus + button, .theme-marketview .input-w-inlay input:focus + label.label-btn, .theme-marketview .input-w-inlay md-dialog md-dialog-actions input:focus + .md-cancel-button, md-dialog md-dialog-actions .theme-marketview .input-w-inlay input:focus + .md-cancel-button, .theme-marketview .input-w-inlay md-dialog md-dialog-actions input:focus + .md-confirm-button, md-dialog md-dialog-actions .theme-marketview .input-w-inlay input:focus + .md-confirm-button {
      border-top-color: #5B9CB7;
      border-right-color: #5B9CB7;
      border-bottom-color: #5B9CB7; }
    .input-w-inlay input.disabled + button, .input-w-inlay input.disabled + label.label-btn, .input-w-inlay md-dialog md-dialog-actions input.disabled + .md-cancel-button, md-dialog md-dialog-actions .input-w-inlay input.disabled + .md-cancel-button, .input-w-inlay md-dialog md-dialog-actions input.disabled + .md-confirm-button, md-dialog md-dialog-actions .input-w-inlay input.disabled + .md-confirm-button, .input-w-inlay input[disabled] + button, .input-w-inlay input[disabled] + label.label-btn, .input-w-inlay md-dialog md-dialog-actions input[disabled] + .md-cancel-button, md-dialog md-dialog-actions .input-w-inlay input[disabled] + .md-cancel-button, .input-w-inlay md-dialog md-dialog-actions input[disabled] + .md-confirm-button, md-dialog md-dialog-actions .input-w-inlay input[disabled] + .md-confirm-button,
    fieldset[disabled] .input-w-inlay input + button,
    fieldset[disabled] .input-w-inlay input + label.label-btn,
    fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .md-cancel-button,
    md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .md-cancel-button,
    fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .md-confirm-button,
    md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .md-confirm-button {
      box-shadow: none; }
      .theme-cmix .input-w-inlay input.disabled + button, .theme-cmix .input-w-inlay input.disabled + label.label-btn, .theme-cmix .input-w-inlay md-dialog md-dialog-actions input.disabled + .md-cancel-button, md-dialog md-dialog-actions .theme-cmix .input-w-inlay input.disabled + .md-cancel-button, .theme-cmix .input-w-inlay md-dialog md-dialog-actions input.disabled + .md-confirm-button, md-dialog md-dialog-actions .theme-cmix .input-w-inlay input.disabled + .md-confirm-button, .theme-cmix .input-w-inlay input[disabled] + button, .theme-cmix .input-w-inlay input[disabled] + label.label-btn, .theme-cmix .input-w-inlay md-dialog md-dialog-actions input[disabled] + .md-cancel-button, md-dialog md-dialog-actions .theme-cmix .input-w-inlay input[disabled] + .md-cancel-button, .theme-cmix .input-w-inlay md-dialog md-dialog-actions input[disabled] + .md-confirm-button, md-dialog md-dialog-actions .theme-cmix .input-w-inlay input[disabled] + .md-confirm-button, .theme-cmix fieldset[disabled] .input-w-inlay input + button, .theme-cmix fieldset[disabled] .input-w-inlay input + label.label-btn, .theme-cmix fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .md-cancel-button, md-dialog md-dialog-actions .theme-cmix fieldset[disabled] .input-w-inlay input + .md-cancel-button, .theme-cmix fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .md-confirm-button, md-dialog md-dialog-actions .theme-cmix fieldset[disabled] .input-w-inlay input + .md-confirm-button {
        background-color: #FAFAFA; }
      .theme-marketview .input-w-inlay input.disabled + button, .theme-marketview .input-w-inlay input.disabled + label.label-btn, .theme-marketview .input-w-inlay md-dialog md-dialog-actions input.disabled + .md-cancel-button, md-dialog md-dialog-actions .theme-marketview .input-w-inlay input.disabled + .md-cancel-button, .theme-marketview .input-w-inlay md-dialog md-dialog-actions input.disabled + .md-confirm-button, md-dialog md-dialog-actions .theme-marketview .input-w-inlay input.disabled + .md-confirm-button, .theme-marketview .input-w-inlay input[disabled] + button, .theme-marketview .input-w-inlay input[disabled] + label.label-btn, .theme-marketview .input-w-inlay md-dialog md-dialog-actions input[disabled] + .md-cancel-button, md-dialog md-dialog-actions .theme-marketview .input-w-inlay input[disabled] + .md-cancel-button, .theme-marketview .input-w-inlay md-dialog md-dialog-actions input[disabled] + .md-confirm-button, md-dialog md-dialog-actions .theme-marketview .input-w-inlay input[disabled] + .md-confirm-button, .theme-marketview fieldset[disabled] .input-w-inlay input + button, .theme-marketview fieldset[disabled] .input-w-inlay input + label.label-btn, .theme-marketview fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .md-cancel-button, md-dialog md-dialog-actions .theme-marketview fieldset[disabled] .input-w-inlay input + .md-cancel-button, .theme-marketview fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .md-confirm-button, md-dialog md-dialog-actions .theme-marketview fieldset[disabled] .input-w-inlay input + .md-confirm-button {
        background-color: #FAFAFA; }
  .input-w-inlay.-w-clear {
    position: relative; }
    .input-w-inlay.-w-clear input {
      padding-right: 36px; }
    .input-w-inlay.-w-clear .clear {
      position: absolute;
      bottom: 0;
      right: 46px;
      padding-left: 8px;
      padding-right: 8px;
      margin: 0; }
      .input-w-inlay.-w-clear .clear:before {
        margin-right: 0; }
  .theme-cmix .input-w-inlay label.error + input + button, .theme-cmix .input-w-inlay label.error + input + label.label-btn, .theme-cmix .input-w-inlay md-dialog md-dialog-actions label.error + input + .md-cancel-button, md-dialog md-dialog-actions .theme-cmix .input-w-inlay label.error + input + .md-cancel-button, .theme-cmix .input-w-inlay md-dialog md-dialog-actions label.error + input + .md-confirm-button, md-dialog md-dialog-actions .theme-cmix .input-w-inlay label.error + input + .md-confirm-button, .theme-cmix .input-w-inlay input.error + button, .theme-cmix .input-w-inlay input.error + label.label-btn, .theme-cmix .input-w-inlay md-dialog md-dialog-actions input.error + .md-cancel-button, md-dialog md-dialog-actions .theme-cmix .input-w-inlay input.error + .md-cancel-button, .theme-cmix .input-w-inlay md-dialog md-dialog-actions input.error + .md-confirm-button, md-dialog md-dialog-actions .theme-cmix .input-w-inlay input.error + .md-confirm-button {
    border-top-color: #DF4E71;
    border-right-color: #DF4E71;
    border-bottom-color: #DF4E71; }
  .theme-marketview .input-w-inlay label.error + input + button, .theme-marketview .input-w-inlay label.error + input + label.label-btn, .theme-marketview .input-w-inlay md-dialog md-dialog-actions label.error + input + .md-cancel-button, md-dialog md-dialog-actions .theme-marketview .input-w-inlay label.error + input + .md-cancel-button, .theme-marketview .input-w-inlay md-dialog md-dialog-actions label.error + input + .md-confirm-button, md-dialog md-dialog-actions .theme-marketview .input-w-inlay label.error + input + .md-confirm-button, .theme-marketview .input-w-inlay input.error + button, .theme-marketview .input-w-inlay input.error + label.label-btn, .theme-marketview .input-w-inlay md-dialog md-dialog-actions input.error + .md-cancel-button, md-dialog md-dialog-actions .theme-marketview .input-w-inlay input.error + .md-cancel-button, .theme-marketview .input-w-inlay md-dialog md-dialog-actions input.error + .md-confirm-button, md-dialog md-dialog-actions .theme-marketview .input-w-inlay input.error + .md-confirm-button {
    border-top-color: #DF4E71;
    border-right-color: #DF4E71;
    border-bottom-color: #DF4E71; }

.input-w-clear {
  position: relative; }
  .input-w-clear + label,
  .input-w-clear + input,
  .input-w-clear + textarea,
  .fr-inline-editor .input-w-clear + .fr-view,
  .input-w-clear + .input-w-inlay,
  .input-w-clear + .input-w-clear,
  .input-w-clear + .input-w-button,
  .input-w-clear + .checkable,
  .input-w-clear + .inline-checkables,
  .input-w-clear + p,
  p + .input-w-clear,
  .input-w-clear + ul,
  ul + .input-w-clear .input-w-clear + ol,
  ol + .input-w-clear .input-w-clear + table,
  table + .input-w-clear,
  .input-w-clear + .responsive-table,
  .responsive-table + .input-w-clear,
  .error-msg + .input-w-clear,
  h1 + .input-w-clear,
  h2 + .input-w-clear,
  h3 + .input-w-clear,
  h4 + .input-w-clear,
  h5 + .input-w-clear,
  h6 + .input-w-clear {
    margin-top: 12px; }
  .input-w-clear + h1,
  .input-w-clear + h2,
  .input-w-clear + h3,
  .input-w-clear + h4,
  .input-w-clear + h5,
  .input-w-clear + h6 {
    margin-top: 16px; }
  .input-w-clear.flush, .people-card.-expandable button.input-w-clear.expand-user, .people-card.-expandable label.input-w-clear.expand-user.label-btn, .people-card.-expandable md-dialog md-dialog-actions .input-w-clear.expand-user.md-cancel-button, md-dialog md-dialog-actions .people-card.-expandable .input-w-clear.expand-user.md-cancel-button, .people-card.-expandable md-dialog md-dialog-actions .input-w-clear.expand-user.md-confirm-button, md-dialog md-dialog-actions .people-card.-expandable .input-w-clear.expand-user.md-confirm-button {
    margin-top: 0; }
  .input-w-clear + p.error-msg {
    margin-top: 4px; }
  .input-w-clear input {
    padding-right: 40px; }
  .input-w-clear .clear {
    position: absolute;
    padding-left: 8px;
    padding-right: 8px;
    right: 8px;
    bottom: 0; }
    .input-w-clear .clear:before {
      margin-right: 0; }

/**
* Add the class `flush` to `input-w-button` to strip the `margin-top` automatically applied if placed after paragraphs, headers or lists, etc.
*
* @section Inputs with Accompanying Buttons
* @sectionof Inputs
* @example
* <label for="example">Input with an accompanying button.</label>
* <div class="input-w-button">
*   <input type="text" id="example">
*   <button>Go</button>
* </div>
* <label for="example" class="error">Error State</label>
* <div class="input-w-button">
*   <input type="text" class="error" id="example">
*   <button>Go</button>
* </div>
* <label for="example">Disabled State</label>
* <div class="input-w-button">
*   <input type="text" disabled id="example">
*   <button>Go</button>
* </div>
*/
.input-w-button {
  display: flex;
  flex-wrap: wrap; }
  .input-w-button label {
    width: 100%; }
  .input-w-button + label,
  .input-w-button + input,
  .input-w-button + textarea,
  .fr-inline-editor .input-w-button + .fr-view,
  .input-w-button + .input-w-inlay,
  .input-w-button + .input-w-clear,
  .input-w-button + .input-w-button,
  .input-w-button + .checkable,
  .input-w-button + .inline-checkables,
  .input-w-button + p,
  p + .input-w-button,
  .input-w-button + ul,
  ul + .input-w-button .input-w-button + ol,
  ol + .input-w-button .input-w-button + table,
  table + .input-w-button,
  .input-w-button + .responsive-table,
  .responsive-table + .input-w-button,
  .error-msg + .input-w-button,
  h1 + .input-w-button,
  h2 + .input-w-button,
  h3 + .input-w-button,
  h4 + .input-w-button,
  h5 + .input-w-button,
  h6 + .input-w-button {
    margin-top: 12px; }
  .input-w-button + h1,
  .input-w-button + h2,
  .input-w-button + h3,
  .input-w-button + h4,
  .input-w-button + h5,
  .input-w-button + h6 {
    margin-top: 16px; }
  .input-w-button.flush, .people-card.-expandable button.input-w-button.expand-user, .people-card.-expandable label.input-w-button.expand-user.label-btn, .people-card.-expandable md-dialog md-dialog-actions .input-w-button.expand-user.md-cancel-button, md-dialog md-dialog-actions .people-card.-expandable .input-w-button.expand-user.md-cancel-button, .people-card.-expandable md-dialog md-dialog-actions .input-w-button.expand-user.md-confirm-button, md-dialog md-dialog-actions .people-card.-expandable .input-w-button.expand-user.md-confirm-button {
    margin-top: 0; }
  .input-w-button + p.error-msg {
    margin-top: 4px; }
  .input-w-button input {
    flex: 1; }
  .input-w-button button, .input-w-button label.label-btn, .input-w-button md-dialog md-dialog-actions .md-cancel-button, md-dialog md-dialog-actions .input-w-button .md-cancel-button, .input-w-button md-dialog md-dialog-actions .md-confirm-button, md-dialog md-dialog-actions .input-w-button .md-confirm-button {
    margin-left: 8px; }

/**
* Checkbox and radio inputs require a container with the class `checkable`. This is to ensure the alignment of the input with the label text is plumb in different browsers.
*
* For __inline__ checkbox or radio inputs, add a container around all the inputs with the class `inline-checkables`.
*
* For __disabling__, make sure to add the `disabled` class to the container, as well as the `disabled` attribute to the input (so it can't be entered by tabbing).
*
* For __error__ states, add the class `error` to the `checkable` container.
*
* Add the class `flush` to the container _(either the `checkable` container or the `inline-checkables` container if using one)_
* to strip the `margin-top` automatically applied if placed after paragraphs, headers or lists, etc.
*
* @section Checkbox & Radio Inputs
* @sectionof Inputs
*
* @example
* <h4>Radios</h4>
* <div class="checkable">
*   <label>
*     <input type="radio" name="optionsRadios" id="uniqueId1" value="option1">
*     Option 1
*   </label>
* </div>
* <div class="checkable">
*   <label>
*     <input type="radio" name="optionsRadios" id="uniqueId2" value="option2">
*     Option 2
*   </label>
* </div>
*
* <h4>Checkboxes</h4>
* <div class="checkable">
*   <label>
*     <input type="checkbox" value="option1">
*     Option 1
*   </label>
* </div>
* <div class="checkable">
*   <label>
*     <input type="checkbox" value="option2">
*     Option 2
*   </label>
* </div>
*
* <h4>Inline</h4>
* <div class="inline-checkables">
*   <div class="checkable">
*     <label>
*       <input type="radio" name="inlineOptions" id="uniqueId3" value="option1">
*       Option 1
*     </label>
*   </div>
*   <div class="checkable">
*     <label>
*       <input type="radio" name="inlineOptions" id="uniqueId4" value="option2">
*       Option 2
*     </label>
*   </div>
* </div>
*
* <h4>Disabled States</h4>
* <div class="checkable disabled">
*   <label>
*     <input type="radio" name="disabledRadio" id="uniqueId5" value="option1" disabled>
*     Option 1
*   </label>
* </div>
* <div class="checkable disabled">
*   <label>
*     <input type="checkbox" value="option1" disabled>
*     Option 1
*   </label>
* </div>
*
* <h4>Error States</h4>
* <div class="checkable error">
*   <label>
*     <input type="radio" name="radioError" id="uniqueId6" value="option1">
*     Option 1
*   </label>
* </div>
* <div class="checkable error">
*   <label>
*     <input type="checkbox" value="option1">
*     Option 1
*   </label>
* </div>
*
*/
input[type="radio"],
input[type="checkbox"] {
  cursor: pointer; }
  input[type="radio"][disabled], input[type="radio"].disabled,
  fieldset[disabled] input[type="radio"],
  input[type="checkbox"][disabled],
  input[type="checkbox"].disabled,
  fieldset[disabled]
  input[type="checkbox"] {
    cursor: not-allowed; }

.checkable {
  display: block;
  line-height: 1;
  padding-top: 5px;
  padding-bottom: 5px; }
  .checkable + label,
  .checkable + input,
  .checkable + textarea,
  .fr-inline-editor .checkable + .fr-view,
  .checkable + .input-w-inlay,
  .checkable + .input-w-clear,
  .checkable + .input-w-button,
  .checkable + .checkable,
  .checkable + .inline-checkables,
  .checkable + p,
  p + .checkable,
  .checkable + ul,
  ul + .checkable .checkable + ol,
  ol + .checkable .checkable + table,
  table + .checkable,
  .checkable + .responsive-table,
  .responsive-table + .checkable,
  .error-msg + .checkable,
  h1 + .checkable,
  h2 + .checkable,
  h3 + .checkable,
  h4 + .checkable,
  h5 + .checkable,
  h6 + .checkable {
    margin-top: 12px; }
  .checkable + h1,
  .checkable + h2,
  .checkable + h3,
  .checkable + h4,
  .checkable + h5,
  .checkable + h6 {
    margin-top: 16px; }
  .checkable.flush, .people-card.-expandable button.checkable.expand-user, .people-card.-expandable label.checkable.expand-user.label-btn, .people-card.-expandable md-dialog md-dialog-actions .checkable.expand-user.md-cancel-button, md-dialog md-dialog-actions .people-card.-expandable .checkable.expand-user.md-cancel-button, .people-card.-expandable md-dialog md-dialog-actions .checkable.expand-user.md-confirm-button, md-dialog md-dialog-actions .people-card.-expandable .checkable.expand-user.md-confirm-button {
    margin-top: 0; }
  .checkable + p.error-msg {
    margin-top: 4px; }
  .checkable label {
    font-weight: normal;
    display: inline-block;
    line-height: 1;
    padding-left: 24px;
    text-indent: -24px;
    margin-bottom: 0;
    cursor: pointer; }
    .checkable label span,
    .checkable label strong {
      text-indent: 0; }
  .checkable input[type="radio"],
  .checkable input[type="checkbox"] {
    width: 14px;
    height: 14px;
    line-height: 1;
    padding: 0;
    margin: 0;
    vertical-align: bottom;
    position: relative;
    *overflow: hidden; }
  .checkable + .checkable {
    margin-top: 8px; }
  .checkable.disabled,
  fieldset[disabled] .checkable {
    cursor: not-allowed; }
    .checkable.disabled label,
    fieldset[disabled] .checkable label {
      cursor: not-allowed; }
      .theme-cmix .checkable.disabled label, .theme-cmix
      fieldset[disabled] .checkable label {
        color: #585863; }
      .theme-marketview .checkable.disabled label, .theme-marketview
      fieldset[disabled] .checkable label {
        color: #666666; }
  .theme-cmix .checkable.error {
    color: #DF4E71; }
  .theme-marketview .checkable.error {
    color: #DF4E71; }

.inline-checkables + label,
.inline-checkables + input,
.inline-checkables + textarea,
.fr-inline-editor .inline-checkables + .fr-view,
.inline-checkables + .input-w-inlay,
.inline-checkables + .input-w-clear,
.inline-checkables + .input-w-button,
.inline-checkables + .checkable,
.inline-checkables + .inline-checkables,
.inline-checkables + p,
p + .inline-checkables,
.inline-checkables + ul,
ul + .inline-checkables .inline-checkables + ol,
ol + .inline-checkables .inline-checkables + table,
table + .inline-checkables,
.inline-checkables + .responsive-table,
.responsive-table + .inline-checkables,
.error-msg + .inline-checkables,
h1 + .inline-checkables,
h2 + .inline-checkables,
h3 + .inline-checkables,
h4 + .inline-checkables,
h5 + .inline-checkables,
h6 + .inline-checkables {
  margin-top: 12px; }

.inline-checkables + h1,
.inline-checkables + h2,
.inline-checkables + h3,
.inline-checkables + h4,
.inline-checkables + h5,
.inline-checkables + h6 {
  margin-top: 16px; }

.inline-checkables.flush, .people-card.-expandable button.inline-checkables.expand-user, .people-card.-expandable label.inline-checkables.expand-user.label-btn, .people-card.-expandable md-dialog md-dialog-actions .inline-checkables.expand-user.md-cancel-button, md-dialog md-dialog-actions .people-card.-expandable .inline-checkables.expand-user.md-cancel-button, .people-card.-expandable md-dialog md-dialog-actions .inline-checkables.expand-user.md-confirm-button, md-dialog md-dialog-actions .people-card.-expandable .inline-checkables.expand-user.md-confirm-button {
  margin-top: 0; }

.inline-checkables + p.error-msg {
  margin-top: 4px; }

.inline-checkables .checkable {
  display: inline-block;
  vertical-align: middle; }
  .inline-checkables .checkable + .checkable {
    margin-top: 0;
    margin-left: 24px; }

/**
* Panels are static layout elements used to separate content in a mixed content UI.
* Panels will be displayed in layouts with a shaded background (using the `$shade` color variable).
*
* Add the class `flush` to strip the inner padding.
*
* Add the class `no-autospace` to strip the margin top applied to panels following other panels.
*
* @section Panels
* @example
* <div style="background-color: #F1F2F3; padding: 16px;">
*   <div class="panel">
*     <h2>Panel</h2>
*     <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Sunt fugit culpa accusantium, at quo, soluta expedita dignissimos quam voluptates iusto, praesentium, beatae assumenda quod earum. Nulla nobis quae et placeat deleniti eaque perferendis saepe eveniet harum velit, ut sapiente molestias.</p>
*   </div>
*   <div class="panel">
*     <h2>Panel</h2>
*     <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Sunt fugit culpa accusantium, at quo, soluta expedita dignissimos quam voluptates iusto, praesentium, beatae assumenda quod earum. Nulla nobis quae et placeat deleniti eaque perferendis saepe eveniet harum velit, ut sapiente molestias.</p>
*   </div>
* </div>
*/
.panel {
  background-color: white;
  border-radius: 4px;
  padding: 16px; }
  .panel + .panel {
    margin-top: 1em; }
  .panel.flush, .people-card.-expandable button.panel.expand-user, .people-card.-expandable label.panel.expand-user.label-btn, .people-card.-expandable md-dialog md-dialog-actions .panel.expand-user.md-cancel-button, md-dialog md-dialog-actions .people-card.-expandable .panel.expand-user.md-cancel-button, .people-card.-expandable md-dialog md-dialog-actions .panel.expand-user.md-confirm-button, md-dialog md-dialog-actions .people-card.-expandable .panel.expand-user.md-confirm-button {
    padding: 0; }
  .panel.no-autospace {
    margin-top: 0; }

/**
* Cards are flexible content pieces in a layout. Primarily used in the Build & Edit UI, cards may move, be resized or
* otherwise function as a dynamic content area as appose to panels, which are static in a layout.
*
* @section Cards
*/
/**
* Add the class `flush` to the `.cm-card` container to strip the automatic `margin-top` applied when a card follows another card.
*
* Add the class `flush` to `cm-card-body` to clear the padding.
*
* _Note:_ Cards have the `cm-` namespace to avoid clashing with Angular Material cards.
*
* @section Basic Card Markup
* @sectionof Cards
* @example
* <div class="cm-card">
*   <div class="cm-card-header">
*     <h2 class="cm-card-title">Card Title</h2>
*   </div>
*   <div class="cm-card-body">
*     <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Nihil repellendus modi, quod recusandae voluptate itaque nemo laudantium asperiores odit repudiandae?</p>
*     <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Blanditiis, voluptatum.</p>
*   </div>
* </div>
*/
.cm-card {
  background-color: white;
  border-radius: 4px;
  border: 1px solid transparent;
  min-height: 4em;
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.1); }
  .theme-cmix .cm-card {
    border-color: #DDE1E7; }
  .theme-marketview .cm-card {
    border-color: #DDE1E7; }
  .cm-card + .cm-card {
    margin-top: 16px; }
  .cm-card + .cm-card.flush, .people-card.-expandable .cm-card + button.cm-card.expand-user, .people-card.-expandable .cm-card + label.cm-card.expand-user.label-btn, .people-card.-expandable md-dialog md-dialog-actions .cm-card + .cm-card.expand-user.md-cancel-button, md-dialog md-dialog-actions .people-card.-expandable .cm-card + .cm-card.expand-user.md-cancel-button, .people-card.-expandable md-dialog md-dialog-actions .cm-card + .cm-card.expand-user.md-confirm-button, md-dialog md-dialog-actions .people-card.-expandable .cm-card + .cm-card.expand-user.md-confirm-button {
    margin-top: 0; }

.cm-card-header {
  background-color: white;
  border-bottom: 1px solid transparent;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  padding: 16px;
  min-height: 40px; }
  .theme-cmix .cm-card-header {
    border-bottom-color: #DDE1E7; }
  .theme-marketview .cm-card-header {
    border-bottom-color: #DDE1E7; }
  .cm-card-header .cm-card-title {
    font-size: 16px;
    line-height: 22px;
    margin: 0;
    width: 100%;
    display: inline-block;
    vertical-align: middle;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }

.cm-card-body {
  padding: 16px;
  border-top: 0; }
  .cm-card-body.flush, .people-card.-expandable button.cm-card-body.expand-user, .people-card.-expandable label.cm-card-body.expand-user.label-btn, .people-card.-expandable md-dialog md-dialog-actions .cm-card-body.expand-user.md-cancel-button, md-dialog md-dialog-actions .people-card.-expandable .cm-card-body.expand-user.md-cancel-button, .people-card.-expandable md-dialog md-dialog-actions .cm-card-body.expand-user.md-confirm-button, md-dialog md-dialog-actions .people-card.-expandable .cm-card-body.expand-user.md-confirm-button {
    padding: 0; }

/**
* When a card needs supporting items to the right of the header.
*
* __Usage:__
* - Add the class `split` to `cm-card-header`.
* - Add a div in `cm-card-header` for `cm-card-header-content`
*
* @section Split Card Header
* @sectionof Cards
* @example
* <div class="cm-card">
*   <div class="cm-card-header split">
*     <h2 class="cm-card-title">Card Title</h2>
*     <div class="cm-card-header-content">
*       <button class="symbol icon-edit flush" title="Edit">
*         <span class="sr-only">Edit</span>
*       </button>
*       <button class="small">Button</button>
*     </div>
*   </div>
*   <div class="cm-card-body">
*     <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Nihil repellendus modi, quod recusandae voluptate itaque nemo laudantium asperiores odit repudiandae?</p>
*     <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Blanditiis, voluptatum.</p>
*   </div>
* </div>
*/
.cm-card-header.split {
  display: flex;
  align-items: center; }
  .cm-card-header.split .cm-card-title {
    padding-right: 16px;
    flex-grow: 1; }
  .cm-card-header.split .cm-card-header-content {
    text-align: right;
    white-space: nowrap;
    vertical-align: middle;
    float: right;
    flex-shrink: 0; }

/**
* For cards that will be draggable, add the class `draggable-card` to `cm-card-header` and add the `.icon-drag-handle` to a `span` before the `.cm-card-title`.
*
* @section Card Drag Handle
* @sectionof Cards
* @example
* <div class="cm-card">
*   <div class="cm-card-header draggable-card">
*     <span class="icon-drag-handle"></span>
*     <h2 class="cm-card-title">Card Title</h2>
*   </div>
*   <div class="cm-card-body">
*     <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Blanditiis, voluptatum.</p>
*   </div>
* </div>
* <div class="cm-card">
*   <div class="cm-card-header split draggable-card">
*     <span class="icon-drag-handle"></span>
*     <h2 class="cm-card-title">Card Title</h2>
*     <div class="cm-card-header-content">
*       <button class="symbol icon-edit flush" title="Edit">
*         <span class="sr-only">Edit</span>
*       </button>
*     </div>
*   </div>
*   <div class="cm-card-body">
*     <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Blanditiis, voluptatum.</p>
*   </div>
* </div>
*/
.cm-card-header.draggable-card {
  padding-left: 8px;
  display: flex;
  align-items: center; }
  .cm-card-header.draggable-card .icon-drag-handle {
    font-size: 16px;
    cursor: move;
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
    padding-right: 8px;
    opacity: 0.4; }
    .cm-card-header.draggable-card .icon-drag-handle:before {
      margin: 0; }
    .cm-card-header.draggable-card .icon-drag-handle:hover, .cm-card-header.draggable-card .icon-drag-handle:focus {
      opacity: 1; }
  .cm-card-header.draggable-card .cm-card-title {
    max-width: calc(100% - 1.6em); }

.cm-card.stateless {
  box-shadow: none; }

/**
* @section People Cards
*/
/**
* Pay special note to the title and alt attributes so the user's name is visible
* and accessibility is considered. You may not need the title attribute if using
* a tooltip to diplay the name and/or further details.
*
* @section Person Image
* @sectionof People Cards
* @example
* <div class="person" title="James Dean">
*   <span>JD</span>
* </div>
* <div class="person" title="James Dean">
*   <img src="./img/100x100_person.jpg" alt="Profile image for James Dead">
* </div>
* <div class="person small" title="James Dean">
*   <span>JD</span>
* </div>
* <div class="person small" title="James Dean">
*   <img src="./img/100x100_person.jpg" alt="Profile image for James Dead">
* </div>
*/
.person {
  border: 1px solid #DDE1E7;
  border-radius: 50%;
  text-align: center;
  width: 50px;
  height: 50px;
  display: inline-block;
  vertical-align: middle;
  overflow: hidden; }
  .person span {
    font-size: 1.5rem;
    text-transform: uppercase;
    display: block;
    line-height: 1;
    margin-top: 50%;
    transform: translateY(-50%); }
  .person img {
    width: 100%; }
  .person.small {
    width: 30px;
    height: 30px; }
    .person.small span {
      font-size: 1rem; }
  .theme-cmix .person {
    background-color: #FAFAFA;
    border-color: #DDE1E7; }
  .theme-marketview .person {
    background-color: #FAFAFA;
    border-color: #DDE1E7; }

/**
* There are a number of different variations for different situations and permissions.
* A number of combinations are displayed, but other combinations may exist (e.g. checkbox
* with remove and/or edit role, etc);
*
* The cards have a default max-width, but depending on the layout, this max-width may
* be modified to conform to a nice grid (2 per line, 3 per line, etc). Also they're
* `display: inline-block;` by default, but you may need to set them to float.
*
* #### Basic
* The basic, un-editable version. Used for lists of users where none are editable or
* the user viewing doesn't have permission to edit.
*
* #### w/ Company
* When people cards are displayed with mixed company origin. If all the users displayed
* have the same company origin, ideally they don't need to see the company label. Make
* sure to add the `-company` class to the `.people-card` container.
*
* #### w/ Expand
* When people cards can be "expanded", or more details can be displayed in a dialog or
* slide out. Make sure to add the `-expandable` class to the `.people-card` container.
*
* #### w/ Remove & Edit
* When a user has permission to edit the list of people in context, the remove button
* is strictly for removing the person from the list, never for deleting a person's account
* from the system. The edit button next to the role is for modifying the person's permissions
* in the context of the list, never for editing the person's default role and modifications
* will happen in a dialog.
*
* #### w/ Leader Badge
* When a user is designated as a leader in the list (e.g. in a group). If the user viewing
* the list has permission (i.e. is the leader), they may designate other users as the leader
* by hovering their card where a "favorite" button will reveal itself.
*
* #### w/ Checkbox
* When bulk edit options are available for a list of users. When checked, add the class
* `checked` to the `.people-card` container. You may also add the `hovered` class to the
* `.people-card` container when the card is hovered in multi-select scenarios.
*
* @section Detailed People Cards
* @sectionof People Cards
* @example
* <label>Basic</label>
* <div class="people-card">
*   <div class="person">
*     <img src="./img/100x100_person.jpg">
*   </div>
*   <p class="user-details">
*     <span class="name">John Doe</span>
*     <span class="email">jdoe@criticalmix.com</span>
*     <span class="role">Survey Author</span>
*   </p>
* </div>
* <label>w/ Company</label>
* <div class="people-card -company">
*   <p class="company">Critical Mix</p>
*   <div class="person">
*     <img src="./img/100x100_person.jpg">
*   </div>
*   <p class="user-details">
*     <span class="name">John Doe</span>
*     <span class="email">jdoe@criticalmix.com</span>
*     <span class="role">Survey Author</span>
*   </p>
* </div>
* <label>w/ Expand</label>
* <div class="people-card -expandable">
*   <div class="person">
*     <img src="./img/100x100_person.jpg">
*   </div>
*   <p class="user-details">
*     <span class="name">John Doe</span>
*     <span class="email">jdoe@criticalmix.com</span>
*     <span class="role">Survey Author</span>
*   </p>
*   <button class="expand-user">
*     <span class="sr-only">Expand User Details</span>
*   </button>
* </div>
* <label>w/ Remove & Edit</label>
* <div class="people-card">
*   <div class="person">
*     <img src="./img/100x100_person.jpg">
*   </div>
*   <p class="user-details">
*     <span class="name">John Doe</span>
*     <span class="email">jdoe@criticalmix.com</span>
*     <span class="role">Survey Author</span>
*     <button class="symbol icon-edit flush flush-icon">
*       <span class="sr-only">Edit Role</span>
*     </button>
*   </p>
*   <button class="clear icon-remove flush flush-icon">
*     <span class="sr-only">Remove User</span>
*   </button>
* </div>
* <label>w/ Checkbox</label>
* <div class="people-card">
*   <input type="checkbox">
*   <div class="person">
*     <img src="./img/100x100_person.jpg">
*   </div>
*   <p class="user-details">
*     <span class="name">John Doe</span>
*     <span class="email">jdoe@criticalmix.com</span>
*     <span class="role">Survey Author</span>
*   </p>
* </div>
* <div class="people-card hovered">
*   <input type="checkbox">
*   <div class="person">
*     <img src="./img/100x100_person.jpg">
*   </div>
*   <p class="user-details">
*     <span class="name">John Doe</span>
*     <span class="email">jdoe@criticalmix.com</span>
*     <span class="role">Survey Author</span>
*   </p>
* </div>
* <div class="people-card checked">
*   <input type="checkbox" checked>
*   <div class="person">
*     <img src="./img/100x100_person.jpg">
*   </div>
*   <p class="user-details">
*     <span class="name">John Doe</span>
*     <span class="email">jdoe@criticalmix.com</span>
*     <span class="role">Survey Author</span>
*   </p>
* </div>
* <label>w/ Leader Badge</label>
* <div class="people-card">
*   <span class="leader icon-favorited"></span>
*   <div class="person">
*     <img src="./img/100x100_person.jpg">
*   </div>
*   <p class="user-details">
*     <span class="name">John Doe</span>
*     <span class="email">jdoe@criticalmix.com</span>
*     <span class="role">Survey Author</span>
*   </p>
* </div>
* <div class="people-card">
*   <button class="leader symbol icon-favorite">
*     <span class="sr-only">Designate as Leader</span>
*   </button>
*   <div class="person">
*     <img src="./img/100x100_person.jpg">
*   </div>
*   <p class="user-details">
*     <span class="name">John Doe</span>
*     <span class="email">jdoe@criticalmix.com</span>
*     <span class="role">Survey Author</span>
*   </p>
* </div>
* <label>w/ Everything</label>
* <div class="people-card -expandable -company">
*   <span class="leader icon-favorited"></span>
*   <p class="company">Critical Mix</p>
*   <input type="checkbox">
*   <div class="person">
*     <img src="./img/100x100_person.jpg">
*   </div>
*   <p class="user-details">
*     <span class="name">John Doe</span>
*     <span class="email">jdoe@criticalmix.com</span>
*     <span class="role">Survey Author</span>
*     <button class="symbol icon-edit flush flush-icon">
*       <span class="sr-only">Edit Role</span>
*     </button>
*   </p>
*   <button class="clear icon-remove flush flush-icon">
*     <span class="sr-only">Remove User</span>
*   </button>
*   <button class="expand-user">
*     <span class="sr-only">Expand User Details</span>
*   </button>
* </div>
*/
.people-card {
  background-color: white;
  border: 1px solid #DDE1E7;
  border-radius: 4px;
  width: 100%;
  max-width: 17.713em;
  display: inline-flex;
  vertical-align: top;
  position: relative;
  flex-wrap: wrap;
  align-items: center; }
  .theme-cmix .people-card {
    border-color: #DDE1E7; }
  .theme-marketview .people-card {
    border-color: #DDE1E7; }
  .people-card .company {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    line-height: 24px;
    padding: 0 4px;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
    text-overflow: ellipsis;
    position: relative;
    z-index: 3; }
    .theme-cmix .people-card .company {
      background-color: #FAFAFA;
      border-bottom: 1px solid #DDE1E7; }
    .theme-marketview .people-card .company {
      background-color: #FAFAFA;
      border-bottom: 1px solid #DDE1E7; }
  .people-card .person {
    margin: 4px 0 4px 4px;
    float: left; }
  .people-card p.user-details {
    line-height: 1.4;
    padding: 4px 8px;
    float: left;
    width: calc((100% - 52px) - 4px); }
    .people-card p.user-details .name {
      font-weight: bold;
      display: block;
      max-width: 100%;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis; }
    .people-card p.user-details .email {
      display: block;
      font-size: 12px;
      overflow: hidden;
      text-overflow: ellipsis; }
    .people-card p.user-details .role {
      font-size: 12px; }
    .people-card p.user-details button, .people-card p.user-details label.label-btn, .people-card p.user-details md-dialog md-dialog-actions .md-cancel-button, md-dialog md-dialog-actions .people-card p.user-details .md-cancel-button, .people-card p.user-details md-dialog md-dialog-actions .md-confirm-button, md-dialog md-dialog-actions .people-card p.user-details .md-confirm-button {
      font-size: 12px;
      line-height: 1; }
  .people-card .leader {
    position: absolute;
    top: -0.5em;
    left: -0.5em;
    z-index: 5; }
    .people-card .leader:before {
      margin-right: 0; }
    .people-card .leader.icon-favorite {
      padding: 0;
      opacity: 0;
      pointer-events: none;
      transition: opacity 150ms ease; }
    .theme-cmix .people-card .leader.icon-favorited:before {
      color: #F9CF71; }
    .theme-cmix .people-card .leader.icon-favorite:before {
      color: #585863; }
    .theme-marketview .people-card .leader.icon-favorited:before {
      color: #EDB73E; }
    .theme-marketview .people-card .leader.icon-favorite:before {
      color: #666666; }
  .people-card:hover .leader.icon-favorite {
    opacity: 1;
    pointer-events: all; }
  .people-card input[type="checkbox"],
  .people-card input[type="radio"] {
    position: absolute;
    top: 50%;
    left: 4px;
    transform: translateY(-50%); }
    .people-card input[type="checkbox"] + .person,
    .people-card input[type="radio"] + .person {
      margin-left: 24px; }
      .people-card input[type="checkbox"] + .person + p.user-details,
      .people-card input[type="radio"] + .person + p.user-details {
        width: calc((100% - 52px) - 24px); }
  .people-card button.clear, .people-card label.clear.label-btn, .people-card md-autocomplete .md-show-clear-button button, md-autocomplete .md-show-clear-button .people-card button, .people-card md-autocomplete .md-show-clear-button label.label-btn, md-autocomplete .md-show-clear-button .people-card label.label-btn, .people-card md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .people-card .md-confirm-button, .people-card md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-confirm-button, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .people-card .md-confirm-button, .people-card md-dialog .close-dialog, md-dialog .people-card .close-dialog, .people-card md-dialog md-dialog-actions .md-cancel-button, md-dialog md-dialog-actions .people-card .md-cancel-button, .people-card md-dialog md-dialog-actions .clear.md-confirm-button, md-dialog md-dialog-actions .people-card .clear.md-confirm-button, .people-card .colorpicker .close-colorpicker, .colorpicker .people-card .close-colorpicker {
    line-height: 1;
    position: absolute;
    top: -0.5em;
    right: -0.5em;
    z-index: 5; }
  .people-card.-company input[type="checkbox"],
  .people-card.-company input[type="radio"] {
    top: calc(50% + 12px); }
  .theme-cmix .people-card.hovered {
    background-color: #b2d8ed;
    border-color: #2E91C9; }
  .theme-marketview .people-card.hovered {
    background-color: #d0e3ea;
    border-color: #5B9CB7; }
  .people-card.checked {
    color: white; }
    .people-card.checked .company {
      color: white; }
    .theme-cmix .people-card.checked {
      background-color: #2E91C9;
      border-color: #25739f; }
      .theme-cmix .people-card.checked .company {
        background-color: #2E91C9;
        border-bottom-color: #25739f; }
      .theme-cmix .people-card.checked .person {
        color: #22232D; }
    .theme-marketview .people-card.checked {
      background-color: #5B9CB7;
      border-color: #44819b; }
      .theme-marketview .people-card.checked .company {
        background-color: #5B9CB7;
        border-bottom-color: #44819b; }
      .theme-marketview .people-card.checked .person {
        color: #414042; }
    .people-card.checked button.clear, .people-card.checked label.clear.label-btn, .people-card.checked md-autocomplete .md-show-clear-button button, md-autocomplete .md-show-clear-button .people-card.checked button, .people-card.checked md-autocomplete .md-show-clear-button label.label-btn, md-autocomplete .md-show-clear-button .people-card.checked label.label-btn, .people-card.checked md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .people-card.checked .md-confirm-button, .people-card.checked md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-confirm-button, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .people-card.checked .md-confirm-button, .people-card.checked md-dialog .close-dialog, md-dialog .people-card.checked .close-dialog, .people-card.checked md-dialog md-dialog-actions .md-cancel-button, md-dialog md-dialog-actions .people-card.checked .md-cancel-button, .people-card.checked md-dialog md-dialog-actions .clear.md-confirm-button, md-dialog md-dialog-actions .people-card.checked .clear.md-confirm-button, .people-card.checked .colorpicker .close-colorpicker, .colorpicker .people-card.checked .close-colorpicker,
    .people-card.checked p.user-details button,
    .people-card.checked p.user-details label.label-btn,
    .people-card.checked p.user-details md-dialog md-dialog-actions .md-cancel-button,
    md-dialog md-dialog-actions .people-card.checked p.user-details .md-cancel-button,
    .people-card.checked p.user-details md-dialog md-dialog-actions .md-confirm-button,
    md-dialog md-dialog-actions .people-card.checked p.user-details .md-confirm-button,
    .people-card.checked button.expand-user,
    .people-card.checked label.expand-user.label-btn,
    .people-card.checked md-dialog md-dialog-actions .expand-user.md-cancel-button,
    md-dialog md-dialog-actions .people-card.checked .expand-user.md-cancel-button,
    .people-card.checked md-dialog md-dialog-actions .expand-user.md-confirm-button,
    md-dialog md-dialog-actions .people-card.checked .expand-user.md-confirm-button {
      display: none; }

.people-card.-expandable {
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1); }
  .people-card.-expandable .user-details {
    padding-right: 1.333em; }
  .people-card.-expandable button.expand-user, .people-card.-expandable label.expand-user.label-btn, .people-card.-expandable md-dialog md-dialog-actions .expand-user.md-cancel-button, md-dialog md-dialog-actions .people-card.-expandable .expand-user.md-cancel-button, .people-card.-expandable md-dialog md-dialog-actions .expand-user.md-confirm-button, md-dialog md-dialog-actions .people-card.-expandable .expand-user.md-confirm-button {
    border-width: 0 0 0 1px;
    border-radius: 0 4px 4px 0;
    padding-right: 4px;
    padding-left: 4px;
    box-shadow: none;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1; }
    .people-card.-expandable button.expand-user:before, .people-card.-expandable label.expand-user.label-btn:before, .people-card.-expandable md-dialog md-dialog-actions .expand-user.md-cancel-button:before, md-dialog md-dialog-actions .people-card.-expandable .expand-user.md-cancel-button:before, .people-card.-expandable md-dialog md-dialog-actions .expand-user.md-confirm-button:before, md-dialog md-dialog-actions .people-card.-expandable .expand-user.md-confirm-button:before {
      margin-right: 0; }
      .theme-cmix .people-card.-expandable button.expand-user:before, .theme-cmix .people-card.-expandable label.expand-user.label-btn:before, .theme-cmix .people-card.-expandable md-dialog md-dialog-actions .expand-user.md-cancel-button:before, md-dialog md-dialog-actions .theme-cmix .people-card.-expandable .expand-user.md-cancel-button:before, .theme-cmix .people-card.-expandable md-dialog md-dialog-actions .expand-user.md-confirm-button:before, md-dialog md-dialog-actions .theme-cmix .people-card.-expandable .expand-user.md-confirm-button:before {
        color: #3EA8DD; }
      .theme-marketview .people-card.-expandable button.expand-user:before, .theme-marketview .people-card.-expandable label.expand-user.label-btn:before, .theme-marketview .people-card.-expandable md-dialog md-dialog-actions .expand-user.md-cancel-button:before, md-dialog md-dialog-actions .theme-marketview .people-card.-expandable .expand-user.md-cancel-button:before, .theme-marketview .people-card.-expandable md-dialog md-dialog-actions .expand-user.md-confirm-button:before, md-dialog md-dialog-actions .theme-marketview .people-card.-expandable .expand-user.md-confirm-button:before {
        color: #115FA6; }
    .people-card.-expandable button.expand-user:active:before, .people-card.-expandable label.expand-user.label-btn:active:before, .people-card.-expandable md-dialog md-dialog-actions .expand-user.md-cancel-button:active:before, md-dialog md-dialog-actions .people-card.-expandable .expand-user.md-cancel-button:active:before, .people-card.-expandable md-dialog md-dialog-actions .expand-user.md-confirm-button:active:before, md-dialog md-dialog-actions .people-card.-expandable .expand-user.md-confirm-button:active:before {
      color: white; }
  .people-card.-expandable.-company button.expand-user, .people-card.-expandable.-company label.expand-user.label-btn, .people-card.-expandable.-company md-dialog md-dialog-actions .expand-user.md-cancel-button, md-dialog md-dialog-actions .people-card.-expandable.-company .expand-user.md-cancel-button, .people-card.-expandable.-company md-dialog md-dialog-actions .expand-user.md-confirm-button, md-dialog md-dialog-actions .people-card.-expandable.-company .expand-user.md-confirm-button {
    top: 24px; }

/**
* @section Group Cards
*/
/**
* Used when groups are displayed in a compact list.
*
* #### Standard
* Used when groups in a compact list aren't editable either because of permissions
* or they just can't be modified in that location.
*
* #### w/ Remove
* Used when groups in a compact list may be removed. Never used for deleting a group,
* this is most likely when groups are added to a survey and someone with the proper
* permissions desire to remove the group's access to the survey.
*
* @section Small
* @sectionof Group Cards
* @example
* <label>Standard</label>
* <div class="group-tag">
*   <p>Group Name</p>
* </div>
* <label>w/ Remove</label>
* <div class="group-tag">
*   <p>Group Name</p>
*   <button class="clear icon-remove">
*     <span class="sr-only">Remove Group</span>
*   </button>
* </div>
*/
.group-tag {
  border: 1px solid transparent;
  border-radius: 2em;
  line-height: 34px;
  padding: 0 16px;
  display: inline-block;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  max-width: 100%;
  white-space: nowrap; }
  .theme-cmix .group-tag {
    background-color: #FAFAFA;
    border-color: #DDE1E7; }
  .theme-marketview .group-tag {
    background-color: #FAFAFA;
    border-color: #DDE1E7; }
  .group-tag p {
    line-height: 34px;
    display: inline-block;
    vertical-align: middle;
    max-width: 23.612em;
    overflow-x: hidden;
    text-overflow: ellipsis; }
    .group-tag p:before {
      margin-right: 0.5em; }
  .group-tag button.clear, .group-tag label.clear.label-btn, .group-tag md-autocomplete .md-show-clear-button button, md-autocomplete .md-show-clear-button .group-tag button, .group-tag md-autocomplete .md-show-clear-button label.label-btn, md-autocomplete .md-show-clear-button .group-tag label.label-btn, .group-tag md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .group-tag .md-confirm-button, .group-tag md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-confirm-button, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .group-tag .md-confirm-button, .group-tag md-dialog .close-dialog, md-dialog .group-tag .close-dialog, .group-tag md-dialog md-dialog-actions .md-cancel-button, md-dialog md-dialog-actions .group-tag .md-cancel-button, .group-tag md-dialog md-dialog-actions .clear.md-confirm-button, md-dialog md-dialog-actions .group-tag .clear.md-confirm-button, .group-tag .colorpicker .close-colorpicker, .colorpicker .group-tag .close-colorpicker {
    line-height: 34px;
    margin-left: 8px;
    padding: 0;
    border: none; }
    .group-tag button.clear:before, .group-tag label.clear.label-btn:before, .group-tag md-autocomplete .md-show-clear-button button:before, md-autocomplete .md-show-clear-button .group-tag button:before, .group-tag md-autocomplete .md-show-clear-button label.label-btn:before, md-autocomplete .md-show-clear-button .group-tag label.label-btn:before, .group-tag md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .group-tag .md-confirm-button:before, .group-tag md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-confirm-button:before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .group-tag .md-confirm-button:before, .group-tag md-dialog .close-dialog:before, md-dialog .group-tag .close-dialog:before, .group-tag md-dialog md-dialog-actions .md-cancel-button:before, md-dialog md-dialog-actions .group-tag .md-cancel-button:before, .group-tag md-dialog md-dialog-actions .clear.md-confirm-button:before, md-dialog md-dialog-actions .group-tag .clear.md-confirm-button:before, .group-tag .colorpicker .close-colorpicker:before, .colorpicker .group-tag .close-colorpicker:before {
      margin-right: 0; }

/**
* Used when groups are displayed in a more expanded list (e.g. the Manage Groups UI).
*
* #### Standard
* Used when the groups aren't editable, either because of permissions or they just
* aren't edited in that location.
*
* #### w/ More than 5 Users
* When more than 5 users are in the group, 5 user faces will show followed by a button 
* displaying the number of users not shown with an expand arrow. Clicking the expand
* arrow will enlarge the card vertically and display the rest of the user faces.
*
* #### w/ Additional Controls
* The checkbox is for when these cards appears in a list and needs to be selectable for
* bulk edit purposes. Add the class `checked` to the `.group` container to display the
* checked state.
*
* Clicking the edit button will open a dialog displaying the group's details.
*
* When the card is displayed in a list and the group may be removed from the current
* context, a remove button is displayed. The remove button will never be used for
* deleting the actual group.
*
* @section Large
* @sectionof Group Cards
* @example
* <label>Standard</label>
* <div class="group">
*   <p>Group Name</p>
*   <div class="people">
*     <div class="person" title="John Doe">
*       <img src="./img/100x100_person.jpg" alt="Name">
*     </div>
*     <div class="person" title="John Doe">
*       <span>JD</span>
*     </div>
*     <div class="person" title="John Doe">
*       <img src="./img/100x100_person.jpg" alt="Name">
*     </div>
*     <div class="person" title="John Doe">
*       <img src="./img/100x100_person.jpg" alt="Name">
*     </div>
*     <div class="person" title="John Doe">
*       <img src="./img/100x100_person.jpg" alt="Name">
*     </div>
*   </div>
* </div>
* <label>w/ More than 5 Users</label>
* <div class="group">
*   <p>Group Name</p>
*   <div class="people">
*     <div class="person" title="John Doe">
*       <img src="./img/100x100_person.jpg" alt="Name">
*     </div>
*     <div class="person" title="John Doe">
*       <img src="./img/100x100_person.jpg" alt="Name">
*     </div>
*     <div class="person" title="John Doe">
*       <img src="./img/100x100_person.jpg" alt="Name">
*     </div>
*     <div class="person" title="John Doe">
*       <img src="./img/100x100_person.jpg" alt="Name">
*     </div>
*     <div class="person" title="John Doe">
*       <img src="./img/100x100_person.jpg" alt="Name">
*     </div>
*     <button>
*       4 <span class="sr-only">More Users</span>
*       <span class="icon-right"></span>
*     </button>
*   </div>
* </div>
* <label>w/ Additional Controls</label>
* <div class="group">
*   <div class="controls">
*     <div class="checkable">
*       <label>
*         <input type="checkbox">
*         Group Name
*       </label>
*     </div>
*     <button class="symbol icon-edit flush">
*       <span class="sr-only">Edit Group</span>
*     </button>
*     <button class="clear icon-remove flush flush-icon">
*       <span class="sr-only">Remove Group</span>
*     </button>
*   </div>
*   <div class="people">
*     <div class="person" title="John Doe">
*       <img src="./img/100x100_person.jpg" alt="Name">
*     </div>
*     <div class="person" title="John Doe">
*       <img src="./img/100x100_person.jpg" alt="Name">
*     </div>
*     <div class="person" title="John Doe">
*       <img src="./img/100x100_person.jpg" alt="Name">
*     </div>
*     <div class="person" title="John Doe">
*       <img src="./img/100x100_person.jpg" alt="Name">
*     </div>
*     <div class="person" title="John Doe">
*       <img src="./img/100x100_person.jpg" alt="Name">
*     </div>
*     <button>
*       4 <span class="sr-only">More Users</span>
*       <span class="icon-right"></span>
*     </button>
*   </div>
* </div>
* <div class="group checked">
*   <div class="controls">
*     <div class="checkable">
*       <label>
*         <input type="checkbox" checked>
*         Group Name
*       </label>
*     </div>
*     <button class="symbol icon-edit flush">
*       <span class="sr-only">Edit Group</span>
*     </button>
*     <button class="clear icon-remove flush flush-icon">
*       <span class="sr-only">Remove Group</span>
*     </button>
*   </div>
*   <div class="people">
*     <div class="person" title="John Doe">
*       <img src="./img/100x100_person.jpg" alt="Name">
*     </div>
*     <div class="person" title="John Doe">
*       <img src="./img/100x100_person.jpg" alt="Name">
*     </div>
*     <div class="person" title="John Doe">
*       <img src="./img/100x100_person.jpg" alt="Name">
*     </div>
*     <div class="person" title="John Doe">
*       <img src="./img/100x100_person.jpg" alt="Name">
*     </div>
*     <div class="person" title="John Doe">
*       <img src="./img/100x100_person.jpg" alt="Name">
*     </div>
*     <button>
*       4 <span class="sr-only">More Users</span>
*       <span class="icon-right"></span>
*     </button>
*   </div>
* </div>
*/
.group {
  background-color: white;
  border: 1px solid #DDE1E7;
  border-radius: 4px;
  padding: 7px 11px;
  width: 20.25em;
  display: inline-block;
  vertical-align: top; }
  .theme-cmix .group {
    border-color: #DDE1E7; }
  .theme-marketview .group {
    border-color: #DDE1E7; }
  .group p {
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    overflow-x: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px; }
  .group .controls {
    white-space: nowrap;
    display: flex;
    align-items: center;
    margin-bottom: 4px; }
    .group .controls > p,
    .group .controls .checkable {
      flex: 1;
      overflow: hidden; }
  .group .people {
    margin-top: 4px; }
    .group .people .person {
      width: 21px;
      height: 21px; }
      .group .people .person span {
        font-size: 0.75em; }
    .group .people button, .group .people label.label-btn, .group .people md-dialog md-dialog-actions .md-cancel-button, md-dialog md-dialog-actions .group .people .md-cancel-button, .group .people md-dialog md-dialog-actions .md-confirm-button, md-dialog md-dialog-actions .group .people .md-confirm-button {
      padding-left: 8px;
      padding-right: 4px;
      line-height: 19px; }
      .group .people button span:before, .group .people label.label-btn span:before, .group .people md-dialog md-dialog-actions .md-cancel-button span:before, md-dialog md-dialog-actions .group .people .md-cancel-button span:before, .group .people md-dialog md-dialog-actions .md-confirm-button span:before, md-dialog md-dialog-actions .group .people .md-confirm-button span:before {
        margin: 0; }
  .group.checked {
    color: white; }
    .group.checked button, .group.checked label.label-btn, .group.checked md-dialog md-dialog-actions .md-cancel-button, md-dialog md-dialog-actions .group.checked .md-cancel-button, .group.checked md-dialog md-dialog-actions .md-confirm-button, md-dialog md-dialog-actions .group.checked .md-confirm-button {
      display: none; }
    .theme-cmix .group.checked {
      background-color: #2E91C9;
      border-color: #25739f; }
    .theme-marketview .group.checked {
      background-color: #5B9CB7;
      border-color: #44819b; }

/**
* @section Tables
*/
/**
* Table markup is straight forward. You can make use of the [helper classes](#typography) for general alignment.
*
* Be sure to carefully develop tables when using complex column and row spanning. Make sure your markup is to HTML spec.
*
* Add the class `condensed` for a more compact table.
*
* Add the class `flush` to strip the `margin-top` automatically applied if placed after paragraphs, headers or lists.
*
* Add the class `separator` to a `<th>` or `<td>` with a `colspan` to add a separating row.
*
* Add the class `disable-default-patterns` to disable all styles from the Critical Mix pattern library.
*
* @section Standard Tables
* @sectionof Tables
*
* @example
* <h3>Basic table.</h3>
* <table>
*   <thead>
*     <tr>
*       <th></th>
*       <th>Column 1</th>
*       <th>Column 2</th>
*       <th class="center">Centered</th>
*       <th class="right">Right Aligned</th>
*     </tr>
*   </thead>
*   <tbody>
*     <tr>
*       <td>1</td>
*       <td>2</td>
*       <td>3</td>
*       <td class="center">4</td>
*       <td class="right"><button>Button</button></td>
*     </tr>
*     <tr>
*       <td>a</td>
*       <td>b</td>
*       <td>c</td>
*       <td class="center">d</td>
*       <td class="right"><button>Button</button></td>
*     </tr>
*   </tbody>
* </table>
* <h3>Complex table with column and row spans.</h3>
* <table>
*   <thead>
*     <tr>
*       <th colspan="2">Column 1 with colspan</th>
*       <th>Column 2</th>
*       <th>Column 3</th>
*     </tr>
*   </thead>
*   <tbody>
*     <tr>
*       <td>a</td>
*       <td>b</td>
*       <td>c</td>
*       <td>d</td>
*     </tr>
*     <tr>
*       <th class="separator" colspan="5">Separator</th>
*     </tr>
*     <tr>
*       <td rowspan="2">1 with rowspan</td>
*       <td>2</td>
*       <td>3</td>
*       <td>4</td>
*     </tr>
*     <tr>
*       <td>5</td>
*       <td>6</td>
*       <td>7</td>
*     </tr>
*   </tbody>
* </table>
* <h3>Condensed table.</h3>
* <table class="condensed">
*   <thead>
*     <tr>
*       <th></th>
*       <th>Column</th>
*       <th>Column</th>
*     </tr>
*   </thead>
*   <tbody>
*     <tr>
*       <td>1</td>
*       <td>2</td>
*       <td>3</td>
*     </tr>
*     <tr>
*       <td>a</td>
*       <td>b</td>
*       <td>c</td>
*     </tr>
*   </tbody>
* </table>
* <h3>Disabled Pattern Styles</h3>
* <table class="disable-default-patterns">
*   <thead>
*     <tr>
*       <th>Column 1</th>
*       <th>Column 2</th>
*       <th class="center">Centered</th>
*       <th class="right">Right Aligned</th>
*     </tr>
*   </thead>
*   <tbody>
*     <tr>
*       <td>1</td>
*       <td>2</td>
*       <td class="center">4</td>
*       <td class="right">5</td>
*     </tr>
*     <tr>
*       <td>a</td>
*       <td>b</td>
*       <td class="center">d</td>
*       <td class="right"><button>Button</button></td>
*     </tr>
*   </tbody>
* </table>
*/
table:not(.disable-default-patterns) {
  background-color: white;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  max-width: 100%; }
  table:not(.disable-default-patterns) + table {
    margin-top: 16px; }
  table:not(.disable-default-patterns).flush {
    margin-top: 0; }
  table:not(.disable-default-patterns) th {
    border-top-width: 0;
    border-left-width: 0;
    border-right-width: 0;
    border-bottom: 2px solid #DDE1E7;
    border-style: solid;
    font-size: 12px;
    line-height: 1.4;
    text-align: left;
    font-weight: normal;
    vertical-align: bottom;
    padding: 16px; }
    table:not(.disable-default-patterns) th.center {
      text-align: center; }
    table:not(.disable-default-patterns) th.right {
      text-align: right; }
  table:not(.disable-default-patterns) td {
    padding: 16px;
    border-top-width: 0;
    border-left-width: 0;
    border-bottom: 1px solid #DDE1E7;
    border-right: 1px solid #DDE1E7;
    border-style: solid; }
    table:not(.disable-default-patterns) td:last-child {
      border-right-width: 0; }
  table:not(.disable-default-patterns) tbody tr:first-child td {
    border-top-width: 1px; }
  table:not(.disable-default-patterns) th.separator,
  table:not(.disable-default-patterns) td.separator {
    padding: 16px;
    border-bottom: 1px solid #DDE1E7; }
  table:not(.disable-default-patterns).condensed th,
  table:not(.disable-default-patterns).condensed td {
    padding: 8px; }
  .theme-cmix table:not(.disable-default-patterns) th {
    color: rgba(34, 35, 45, 0.7);
    border-color: #DDE1E7; }
  .theme-cmix table:not(.disable-default-patterns) th, .theme-cmix table:not(.disable-default-patterns) td {
    border-color: #DDE1E7; }
    .theme-cmix table:not(.disable-default-patterns) th.separator, .theme-cmix table:not(.disable-default-patterns) td.separator {
      border-color: #DDE1E7; }
  .theme-marketview table:not(.disable-default-patterns) th {
    color: rgba(65, 64, 66, 0.7);
    border-color: #DDE1E7; }
  .theme-marketview table:not(.disable-default-patterns) th, .theme-marketview table:not(.disable-default-patterns) td {
    border-color: #DDE1E7; }
    .theme-marketview table:not(.disable-default-patterns) th.separator, .theme-marketview table:not(.disable-default-patterns) td.separator {
      border-color: #DDE1E7; }

/**
* Add the class `no-borders` to strip the borders between cells.
*
* @section No Borders
* @sectionof Tables
* @example
* <table class="no-borders">
*   <thead>
*     <tr>
*       <th></th>
*       <th>Column 1</th>
*       <th>Column 2</th>
*       <th class="center">Centered</th>
*       <th class="right">Right Aligned</th>
*     </tr>
*   </thead>
*   <tbody>
*     <tr>
*       <td>1</td>
*       <td>2</td>
*       <td>3</td>
*       <td class="center">4</td>
*       <td class="right">5</td>
*     </tr>
*     <tr>
*       <td>a</td>
*       <td>b</td>
*       <td>c</td>
*       <td class="center">d</td>
*       <td class="right"><button>Button</button></td>
*     </tr>
*   </tbody>
* </table>
*/
table.no-borders th,
table.no-borders td {
  border-left: 0;
  border-right: 0; }

table.no-borders tbody tr:last-child td {
  border-bottom-width: 0; }

/**
* For sortable table headers, use a button with the class `sort`. Include a `span` in the button for the sort icons.
*
* When sorting is toggled to ascending order, use the class `.icon-sort-down`.
*
* When sorting is toggled to descending order, use the class `.icon-sort-up`.
*
* @section Sortable Table Headers
* @sectionof Tables
* @example
* <table>
*   <thead>
*     <tr>
*       <th class="sortable">
*         <button class="sort-btn">Sortable Column</button>
*       </th>
*       <th class="sortable active-up">
*         <button class="sort-btn">Sorted Up</button>
*       </th>
*       <th class="sortable active-down">
*         <button class="sort-btn">Sorted Down</button>
*       </th>
*       <th>Unsortable</th>
*     </tr>
*   </thead>
*   <tbody>
*     <tr>
*       <td>1</td>
*       <td>2</td>
*       <td>3</td>
*       <td>4</td>
*     </tr>
*     <tr>
*       <td>1</td>
*       <td>2</td>
*       <td>3</td>
*       <td>4</td>
*     </tr>
*   </tbody>
* </table>
*/
table th.sortable .sort-btn {
  font-size: 12px;
  background: transparent;
  line-height: 1.4;
  text-align: left;
  padding: 0;
  border: none;
  box-shadow: none;
  white-space: initial;
  -webkit-user-select: initial;
          user-select: initial; }
  table th.sortable .sort-btn:after {
    margin-right: 0;
    margin-left: 4px;
    line-height: 50%; }
  .theme-cmix table th.sortable .sort-btn {
    color: rgba(34, 35, 45, 0.7); }
    .theme-cmix table th.sortable .sort-btn:hover, .theme-cmix table th.sortable .sort-btn:focus {
      color: #22232D; }
  .theme-marketview table th.sortable .sort-btn {
    color: rgba(65, 64, 66, 0.7); }
    .theme-marketview table th.sortable .sort-btn:hover, .theme-marketview table th.sortable .sort-btn:focus {
      color: #414042; }

.theme-cmix table th.sortable.active-up, .theme-cmix table th.sortable.active-down {
  background-color: rgba(46, 145, 201, 0.05); }
  .theme-cmix table th.sortable.active-up .sort-btn, .theme-cmix table th.sortable.active-down .sort-btn {
    color: #2E91C9; }

.theme-marketview table th.sortable.active-up, .theme-marketview table th.sortable.active-down {
  background-color: rgba(91, 156, 183, 0.05); }
  .theme-marketview table th.sortable.active-up .sort-btn, .theme-marketview table th.sortable.active-down .sort-btn {
    color: #5B9CB7; }

/**
* __Usage:__ An aid for comparing data across a row.
*
* Table rows should generally not be 'clickable', but instead an explicit item in the row should (e.g. menu button, link, etc).
*
* Add the class `highlight` to the `<table>`.
*
* @section Highlightable Rows
* @sectionof Tables
* @example
* <table class="highlight no-borders">
*   <thead>
*     <tr>
*       <th></th>
*       <th>Column 1</th>
*       <th>Column 2</th>
*       <th>Column 3</th>
*       <th>Column 4</th>
*     </tr>
*   </thead>
*   <tbody>
*     <tr>
*       <td>A</td>
*       <td>1</td>
*       <td>2</td>
*       <td>3</td>
*       <td>4</td>
*     </tr>
*     <tr>
*       <td>B</td>
*       <td>1</td>
*       <td>2</td>
*       <td>3</td>
*       <td>4</td>
*     </tr>
*     <tr>
*       <td>C</td>
*       <td>1</td>
*       <td>2</td>
*       <td>3</td>
*       <td>4</td>
*     </tr>
*   </tbody>
* </table>
*/
.theme-cmix table.highlight tbody tr:hover {
  background-color: #FAFAFA; }

.theme-marketview table.highlight tbody tr:hover {
  background-color: #FAFAFA; }

/**
* Tables are not capable of being truly responsive. The next best thing is making them horizontally scrollable on small devices.
*
* Add a container around a table with the class `responsive-table` to enable horizontal scrolling on smaller viewports.
*
* _Note: If you have any tooltips or other floating elements, make sure they're appended to the `<body>`, or the overflow property of the `.responsive-table` element will cut them off.
*
* Add the class `flush` on the `responsive-table` div to strip the automatic `margin-top` that's automatically applied if placed after paragraphs, headers or lists.
*
* @section Responsive Tables
* @sectionof Tables
* @example
* <div class="responsive-table">
*   <table>
*     <thead>
*       <tr>
*         <th>Column 1</th>
*         <th>Column 2</th>
*         <th>Column 3</th>
*         <th>Column 4</th>
*         <th>Column 5</th>
*       </tr>
*     </thead>
*     <tbody>
*       <tr>
*         <td><span style="white-space: nowrap;">Example text that doesn't wrap, for demonstration.</span></td>
*         <td><span style="white-space: nowrap;">Example text that doesn't wrap, for demonstration.</span></td>
*         <td><span style="white-space: nowrap;">Example text that doesn't wrap, for demonstration.</span></td>
*         <td><span style="white-space: nowrap;">Example text that doesn't wrap, for demonstration.</span></td>
*         <td><span style="white-space: nowrap;">Example text that doesn't wrap, for demonstration.</span></td>
*       </tr>
*     </tbody>
*   </table>
* </div>
*/
.responsive-table {
  overflow: auto;
  padding-bottom: 16px; }

/**
* When using tabs, make the `tab-item` an `<a href="">` tag if it changes the URL.
* Otherwise use buttons instead.
*
* Add the class `active` to the the active tab.
*
* @section Tabs
* @example
* <div class="tab-list">
*   <a href="#0" class="tab-item">Page 1</a>
*   <a href="#0" class="tab-item active">Page 2</a>
*   <button class="tab-item">Page 3</button>
*   <button class="tab-item">Page 4</button>
*   <button class="tab-item">Page 4</button>
* </div>
*/
.tab-list {
  padding-left: 24px;
  padding-right: 24px; }
  .theme-cmix .tab-list {
    border-bottom: 1px solid #DDE1E7; }
  .theme-marketview .tab-list {
    border-bottom: 1px solid #DDE1E7; }
  .tab-list .tab-item {
    background-color: transparent;
    text-align: center;
    border: none;
    border-radius: 0px;
    line-height: 36px;
    padding: 0 0 8px 0;
    display: inline-block;
    vertical-align: bottom;
    text-decoration: none;
    position: relative; }
    .tab-list .tab-item:hover, .tab-list .tab-item:focus {
      background-color: transparent; }
    .tab-list .tab-item:active {
      background-color: transparent; }
    .tab-list .tab-item:after {
      content: ' ';
      background-color: transparent;
      border-radius: 3px;
      height: 3px;
      width: 100%;
      position: absolute;
      right: 0;
      bottom: -2px; }
    .tab-list .tab-item + .tab-item {
      margin-left: 24px; }
    .tab-list .tab-item.active {
      font-weight: bold; }
    .theme-cmix .tab-list .tab-item {
      color: #22232D; }
      .theme-cmix .tab-list .tab-item:hover:after, .theme-cmix .tab-list .tab-item:focus:after {
        background-color: rgba(46, 145, 201, 0.6); }
      .theme-cmix .tab-list .tab-item.active {
        color: #2E91C9; }
        .theme-cmix .tab-list .tab-item.active:after {
          background-color: #2E91C9; }
    .theme-marketview .tab-list .tab-item {
      color: #414042; }
      .theme-marketview .tab-list .tab-item:hover:after, .theme-marketview .tab-list .tab-item:focus:after {
        background-color: rgba(91, 156, 183, 0.6); }
      .theme-marketview .tab-list .tab-item.active {
        color: #5B9CB7; }
        .theme-marketview .tab-list .tab-item.active:after {
          background-color: #5B9CB7; }

/**
* The number of items in your tab list will determine at what point the list needs to "collapse".
* Use the `.collapse-{breakpoint}` modifiers to collapse the tabs into a vertical list at the necessary breakpoint.
*
* `.collapse-xs` = collapse at `(max-width: 480px)`
*
* `.collapse-sm` = collapse at `(max-width: 768px)`
*
* `.collapse-md` = collapse at `(max-width: 992px)`
*
* `.collapse-lg` = collapse at `(max-width: 1200px)`
*
* To show the tabs collapsed always, add the class `collapse`.
*
* @section Responsive Tab List
* @sectionof Tabs
* @example
* <h4 style="margin-bottom: 0.5em;">Collapses at min-width: 1200px</h4>
* <div class="tab-list collapse-lg">
*   <a href="#0" class="tab-item">Page 1 - lorem ipsum</a>
*   <a href="#0" class="tab-item active">Page 2 - lorem ipsum</a>
*   <button class="tab-item">Page 3 - lorem ipsum</button>
*   <button class="tab-item">Page 4 - lorem ipsum</button>
*   <button class="tab-item">Page 4 - lorem</button>
* </div>
* <h4 style="margin: 1em 0 0.5em;">Always Collapsed</h4>
* <div class="tab-list collapse">
*   <a href="#0" class="tab-item">Page 1 - lorem ipsum</a>
*   <a href="#0" class="tab-item active">Page 2 - lorem ipsum</a>
*   <button class="tab-item">Page 3 - lorem ipsum</button>
*   <button class="tab-item">Page 4 - lorem ipsum</button>
*   <button class="tab-item">Page 4 - lorem</button>
* </div>
* <h4 style="margin: 1em 0 0.5em;">Always Collapsed, Condenced</h4>
* <div class="tab-list condenced collapse">
*   <button class="tab-item">Item 1</button>
*   <button class="tab-item active">Item 2</button>
*   <button class="tab-item">Item 3</button>
* </div>
*/
.tab-list.collapse {
  padding: 0 0 4px; }
  .tab-list.collapse .tab-item {
    text-align: left;
    display: block;
    width: 100%;
    padding: 0 16px 0 20px;
    line-height: 40px; }
    .tab-list.collapse .tab-item.active {
      font-weight: normal; }
    .tab-list.collapse .tab-item + .tab-item {
      margin-left: 0; }
    .tab-list.collapse .tab-item:after {
      border-radius: 0;
      width: 8px;
      height: 100%;
      top: 0;
      right: auto;
      bottom: auto;
      left: 0; }
    .theme-cmix .tab-list.collapse .tab-item {
      color: rgba(34, 35, 45, 0.7); }
      .theme-cmix .tab-list.collapse .tab-item:hover, .theme-cmix .tab-list.collapse .tab-item:focus, .theme-cmix .tab-list.collapse .tab-item:active {
        color: #22232D; }
      .theme-cmix .tab-list.collapse .tab-item.active {
        background-color: rgba(46, 145, 201, 0.15);
        color: #22232D; }
    .theme-marketview .tab-list.collapse .tab-item {
      color: rgba(65, 64, 66, 0.7); }
      .theme-marketview .tab-list.collapse .tab-item:hover, .theme-marketview .tab-list.collapse .tab-item:focus, .theme-marketview .tab-list.collapse .tab-item:active {
        color: #414042; }
      .theme-marketview .tab-list.collapse .tab-item.active {
        background-color: rgba(91, 156, 183, 0.15);
        color: #414042; }
  .tab-list.collapse.condenced .tab-item {
    line-height: 32px; }

@media (max-width: 480px) {
  .tab-list.collapse-xs {
    padding: 0 0 4px; }
    .tab-list.collapse-xs .tab-item {
      text-align: left;
      display: block;
      width: 100%;
      padding: 0 16px 0 20px;
      line-height: 40px; }
      .tab-list.collapse-xs .tab-item.active {
        font-weight: normal; }
      .tab-list.collapse-xs .tab-item + .tab-item {
        margin-left: 0; }
      .tab-list.collapse-xs .tab-item:after {
        border-radius: 0;
        width: 8px;
        height: 100%;
        top: 0;
        right: auto;
        bottom: auto;
        left: 0; }
      .theme-cmix .tab-list.collapse-xs .tab-item {
        color: rgba(34, 35, 45, 0.7); }
        .theme-cmix .tab-list.collapse-xs .tab-item:hover, .theme-cmix .tab-list.collapse-xs .tab-item:focus, .theme-cmix .tab-list.collapse-xs .tab-item:active {
          color: #22232D; }
        .theme-cmix .tab-list.collapse-xs .tab-item.active {
          background-color: rgba(46, 145, 201, 0.15);
          color: #22232D; }
      .theme-marketview .tab-list.collapse-xs .tab-item {
        color: rgba(65, 64, 66, 0.7); }
        .theme-marketview .tab-list.collapse-xs .tab-item:hover, .theme-marketview .tab-list.collapse-xs .tab-item:focus, .theme-marketview .tab-list.collapse-xs .tab-item:active {
          color: #414042; }
        .theme-marketview .tab-list.collapse-xs .tab-item.active {
          background-color: rgba(91, 156, 183, 0.15);
          color: #414042; }
    .tab-list.collapse-xs.condenced .tab-item {
      line-height: 32px; } }

@media (max-width: 768px) {
  .tab-list.collapse-sm {
    padding: 0 0 4px; }
    .tab-list.collapse-sm .tab-item {
      text-align: left;
      display: block;
      width: 100%;
      padding: 0 16px 0 20px;
      line-height: 40px; }
      .tab-list.collapse-sm .tab-item.active {
        font-weight: normal; }
      .tab-list.collapse-sm .tab-item + .tab-item {
        margin-left: 0; }
      .tab-list.collapse-sm .tab-item:after {
        border-radius: 0;
        width: 8px;
        height: 100%;
        top: 0;
        right: auto;
        bottom: auto;
        left: 0; }
      .theme-cmix .tab-list.collapse-sm .tab-item {
        color: rgba(34, 35, 45, 0.7); }
        .theme-cmix .tab-list.collapse-sm .tab-item:hover, .theme-cmix .tab-list.collapse-sm .tab-item:focus, .theme-cmix .tab-list.collapse-sm .tab-item:active {
          color: #22232D; }
        .theme-cmix .tab-list.collapse-sm .tab-item.active {
          background-color: rgba(46, 145, 201, 0.15);
          color: #22232D; }
      .theme-marketview .tab-list.collapse-sm .tab-item {
        color: rgba(65, 64, 66, 0.7); }
        .theme-marketview .tab-list.collapse-sm .tab-item:hover, .theme-marketview .tab-list.collapse-sm .tab-item:focus, .theme-marketview .tab-list.collapse-sm .tab-item:active {
          color: #414042; }
        .theme-marketview .tab-list.collapse-sm .tab-item.active {
          background-color: rgba(91, 156, 183, 0.15);
          color: #414042; }
    .tab-list.collapse-sm.condenced .tab-item {
      line-height: 32px; } }

@media (max-width: 992px) {
  .tab-list.collapse-md {
    padding: 0 0 4px; }
    .tab-list.collapse-md .tab-item {
      text-align: left;
      display: block;
      width: 100%;
      padding: 0 16px 0 20px;
      line-height: 40px; }
      .tab-list.collapse-md .tab-item.active {
        font-weight: normal; }
      .tab-list.collapse-md .tab-item + .tab-item {
        margin-left: 0; }
      .tab-list.collapse-md .tab-item:after {
        border-radius: 0;
        width: 8px;
        height: 100%;
        top: 0;
        right: auto;
        bottom: auto;
        left: 0; }
      .theme-cmix .tab-list.collapse-md .tab-item {
        color: rgba(34, 35, 45, 0.7); }
        .theme-cmix .tab-list.collapse-md .tab-item:hover, .theme-cmix .tab-list.collapse-md .tab-item:focus, .theme-cmix .tab-list.collapse-md .tab-item:active {
          color: #22232D; }
        .theme-cmix .tab-list.collapse-md .tab-item.active {
          background-color: rgba(46, 145, 201, 0.15);
          color: #22232D; }
      .theme-marketview .tab-list.collapse-md .tab-item {
        color: rgba(65, 64, 66, 0.7); }
        .theme-marketview .tab-list.collapse-md .tab-item:hover, .theme-marketview .tab-list.collapse-md .tab-item:focus, .theme-marketview .tab-list.collapse-md .tab-item:active {
          color: #414042; }
        .theme-marketview .tab-list.collapse-md .tab-item.active {
          background-color: rgba(91, 156, 183, 0.15);
          color: #414042; }
    .tab-list.collapse-md.condenced .tab-item {
      line-height: 32px; } }

@media (max-width: 1200px) {
  .tab-list.collapse-lg {
    padding: 0 0 4px; }
    .tab-list.collapse-lg .tab-item {
      text-align: left;
      display: block;
      width: 100%;
      padding: 0 16px 0 20px;
      line-height: 40px; }
      .tab-list.collapse-lg .tab-item.active {
        font-weight: normal; }
      .tab-list.collapse-lg .tab-item + .tab-item {
        margin-left: 0; }
      .tab-list.collapse-lg .tab-item:after {
        border-radius: 0;
        width: 8px;
        height: 100%;
        top: 0;
        right: auto;
        bottom: auto;
        left: 0; }
      .theme-cmix .tab-list.collapse-lg .tab-item {
        color: rgba(34, 35, 45, 0.7); }
        .theme-cmix .tab-list.collapse-lg .tab-item:hover, .theme-cmix .tab-list.collapse-lg .tab-item:focus, .theme-cmix .tab-list.collapse-lg .tab-item:active {
          color: #22232D; }
        .theme-cmix .tab-list.collapse-lg .tab-item.active {
          background-color: rgba(46, 145, 201, 0.15);
          color: #22232D; }
      .theme-marketview .tab-list.collapse-lg .tab-item {
        color: rgba(65, 64, 66, 0.7); }
        .theme-marketview .tab-list.collapse-lg .tab-item:hover, .theme-marketview .tab-list.collapse-lg .tab-item:focus, .theme-marketview .tab-list.collapse-lg .tab-item:active {
          color: #414042; }
        .theme-marketview .tab-list.collapse-lg .tab-item.active {
          background-color: rgba(91, 156, 183, 0.15);
          color: #414042; }
    .tab-list.collapse-lg.condenced .tab-item {
      line-height: 32px; } }

/**
* For expanding and collapsing content areas.
*
* Use a JS directive to control the showing of content (e.g. `ngExpand` directive in the SAT).
*
* Add the class `expanded` to the `collapse-ctrl` button when content is visible.
*
* If the `collapse-content` is taller than 50em, you may need to override the limitation with
* something like `.collapse-ctrl.expanded + .collapse-content { max-height: 100em; }`.
*
* @section Collapsible
* @example
* <button class="collapse-ctrl expanded">Collapse Control</button>
* <div class="collapse-content">
*   <p>Some content here . . .</p>
* </div>
* <button class="collapse-ctrl expanded">Collapse Control</button>
* <div class="collapse-content self-expand expand">
*   <p>Some content here . . .</p>
* </div>
*/
.collapse-ctrl {
  background-color: white;
  text-align: left;
  display: block;
  width: 100%;
  line-height: 46px;
  padding-left: 40px;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis; }
  .collapse-ctrl:before {
    font-size: 1.5em;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%) rotate(-90deg);
    transition: transform 200ms ease; }
  .collapse-ctrl.expanded {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px; }
    .collapse-ctrl.expanded:before {
      transform: translateY(-50%) rotate(0deg); }
  .theme-cmix .collapse-ctrl:before {
    color: rgba(34, 35, 45, 0.4); }
  .theme-marketview .collapse-ctrl:before {
    color: rgba(65, 64, 66, 0.4); }

.collapse-content {
  padding: 16px;
  border: 1px solid transparent;
  border-top-width: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  overflow: hidden; }
  .collapse-content + .collapse-ctrl {
    margin-top: 8px; }
  .collapse-ctrl + .collapse-content, .collapse-content.self-expand {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    transition: max-height 200ms ease, padding 200ms ease, opacity 200ms ease; }
    .collapse-ctrl + .collapse-content > *, .collapse-content.self-expand > * {
      opacity: 0;
      transition: opacity 200ms ease 100ms; }
  .collapse-ctrl.expanded + .collapse-content, .collapse-content.self-expand.expand {
    max-height: 50em;
    padding-top: 16px;
    padding-bottom: 16px;
    opacity: 1;
    overflow-y: auto; }
    .collapse-ctrl.expanded + .collapse-content > *, .collapse-content.self-expand.expand > * {
      opacity: 1; }
  .theme-cmix .collapse-content {
    border-color: #DDE1E7; }
  .theme-marketview .collapse-content {
    border-color: #DDE1E7; }

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 7px;
  padding-right: 7px; }
  .container:before, .container:after {
    content: " ";
    display: table; }
  .container:after {
    clear: both; }
  @media (min-width: 768px) {
    .container {
      width: 750px; } }
  @media (min-width: 992px) {
    .container {
      width: 970px; } }
  @media (min-width: 1200px) {
    .container {
      width: 1170px; } }

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 7px;
  padding-right: 7px; }
  .container-fluid:before, .container-fluid:after {
    content: " ";
    display: table; }
  .container-fluid:after {
    clear: both; }

.row {
  margin-left: -7px;
  margin-right: -7px; }
  .row:before, .row:after {
    content: " ";
    display: table; }
  .row:after {
    clear: both; }

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12, .col-xs-13, .col-sm-13, .col-md-13, .col-lg-13, .col-xs-14, .col-sm-14, .col-md-14, .col-lg-14, .col-xs-15, .col-sm-15, .col-md-15, .col-lg-15, .col-xs-16, .col-sm-16, .col-md-16, .col-lg-16, .col-xs-17, .col-sm-17, .col-md-17, .col-lg-17, .col-xs-18, .col-sm-18, .col-md-18, .col-lg-18, .col-xs-19, .col-sm-19, .col-md-19, .col-lg-19, .col-xs-20, .col-sm-20, .col-md-20, .col-lg-20, .col-xs-21, .col-sm-21, .col-md-21, .col-lg-21, .col-xs-22, .col-sm-22, .col-md-22, .col-lg-22, .col-xs-23, .col-sm-23, .col-md-23, .col-lg-23, .col-xs-24, .col-sm-24, .col-md-24, .col-lg-24 {
  position: relative;
  min-height: 1px;
  padding-left: 7px;
  padding-right: 7px; }

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-13, .col-xs-14, .col-xs-15, .col-xs-16, .col-xs-17, .col-xs-18, .col-xs-19, .col-xs-20, .col-xs-21, .col-xs-22, .col-xs-23, .col-xs-24 {
  float: left; }

.col-xs-1 {
  width: 4.16667%; }

.col-xs-2 {
  width: 8.33333%; }

.col-xs-3 {
  width: 12.5%; }

.col-xs-4 {
  width: 16.66667%; }

.col-xs-5 {
  width: 20.83333%; }

.col-xs-6 {
  width: 25%; }

.col-xs-7 {
  width: 29.16667%; }

.col-xs-8 {
  width: 33.33333%; }

.col-xs-9 {
  width: 37.5%; }

.col-xs-10 {
  width: 41.66667%; }

.col-xs-11 {
  width: 45.83333%; }

.col-xs-12 {
  width: 50%; }

.col-xs-13 {
  width: 54.16667%; }

.col-xs-14 {
  width: 58.33333%; }

.col-xs-15 {
  width: 62.5%; }

.col-xs-16 {
  width: 66.66667%; }

.col-xs-17 {
  width: 70.83333%; }

.col-xs-18 {
  width: 75%; }

.col-xs-19 {
  width: 79.16667%; }

.col-xs-20 {
  width: 83.33333%; }

.col-xs-21 {
  width: 87.5%; }

.col-xs-22 {
  width: 91.66667%; }

.col-xs-23 {
  width: 95.83333%; }

.col-xs-24 {
  width: 100%; }

.col-xs-pull-0 {
  right: auto; }

.col-xs-pull-1 {
  right: 4.16667%; }

.col-xs-pull-2 {
  right: 8.33333%; }

.col-xs-pull-3 {
  right: 12.5%; }

.col-xs-pull-4 {
  right: 16.66667%; }

.col-xs-pull-5 {
  right: 20.83333%; }

.col-xs-pull-6 {
  right: 25%; }

.col-xs-pull-7 {
  right: 29.16667%; }

.col-xs-pull-8 {
  right: 33.33333%; }

.col-xs-pull-9 {
  right: 37.5%; }

.col-xs-pull-10 {
  right: 41.66667%; }

.col-xs-pull-11 {
  right: 45.83333%; }

.col-xs-pull-12 {
  right: 50%; }

.col-xs-pull-13 {
  right: 54.16667%; }

.col-xs-pull-14 {
  right: 58.33333%; }

.col-xs-pull-15 {
  right: 62.5%; }

.col-xs-pull-16 {
  right: 66.66667%; }

.col-xs-pull-17 {
  right: 70.83333%; }

.col-xs-pull-18 {
  right: 75%; }

.col-xs-pull-19 {
  right: 79.16667%; }

.col-xs-pull-20 {
  right: 83.33333%; }

.col-xs-pull-21 {
  right: 87.5%; }

.col-xs-pull-22 {
  right: 91.66667%; }

.col-xs-pull-23 {
  right: 95.83333%; }

.col-xs-pull-24 {
  right: 100%; }

.col-xs-push-0 {
  left: auto; }

.col-xs-push-1 {
  left: 4.16667%; }

.col-xs-push-2 {
  left: 8.33333%; }

.col-xs-push-3 {
  left: 12.5%; }

.col-xs-push-4 {
  left: 16.66667%; }

.col-xs-push-5 {
  left: 20.83333%; }

.col-xs-push-6 {
  left: 25%; }

.col-xs-push-7 {
  left: 29.16667%; }

.col-xs-push-8 {
  left: 33.33333%; }

.col-xs-push-9 {
  left: 37.5%; }

.col-xs-push-10 {
  left: 41.66667%; }

.col-xs-push-11 {
  left: 45.83333%; }

.col-xs-push-12 {
  left: 50%; }

.col-xs-push-13 {
  left: 54.16667%; }

.col-xs-push-14 {
  left: 58.33333%; }

.col-xs-push-15 {
  left: 62.5%; }

.col-xs-push-16 {
  left: 66.66667%; }

.col-xs-push-17 {
  left: 70.83333%; }

.col-xs-push-18 {
  left: 75%; }

.col-xs-push-19 {
  left: 79.16667%; }

.col-xs-push-20 {
  left: 83.33333%; }

.col-xs-push-21 {
  left: 87.5%; }

.col-xs-push-22 {
  left: 91.66667%; }

.col-xs-push-23 {
  left: 95.83333%; }

.col-xs-push-24 {
  left: 100%; }

.col-xs-offset-0 {
  margin-left: 0%; }

.col-xs-offset-1 {
  margin-left: 4.16667%; }

.col-xs-offset-2 {
  margin-left: 8.33333%; }

.col-xs-offset-3 {
  margin-left: 12.5%; }

.col-xs-offset-4 {
  margin-left: 16.66667%; }

.col-xs-offset-5 {
  margin-left: 20.83333%; }

.col-xs-offset-6 {
  margin-left: 25%; }

.col-xs-offset-7 {
  margin-left: 29.16667%; }

.col-xs-offset-8 {
  margin-left: 33.33333%; }

.col-xs-offset-9 {
  margin-left: 37.5%; }

.col-xs-offset-10 {
  margin-left: 41.66667%; }

.col-xs-offset-11 {
  margin-left: 45.83333%; }

.col-xs-offset-12 {
  margin-left: 50%; }

.col-xs-offset-13 {
  margin-left: 54.16667%; }

.col-xs-offset-14 {
  margin-left: 58.33333%; }

.col-xs-offset-15 {
  margin-left: 62.5%; }

.col-xs-offset-16 {
  margin-left: 66.66667%; }

.col-xs-offset-17 {
  margin-left: 70.83333%; }

.col-xs-offset-18 {
  margin-left: 75%; }

.col-xs-offset-19 {
  margin-left: 79.16667%; }

.col-xs-offset-20 {
  margin-left: 83.33333%; }

.col-xs-offset-21 {
  margin-left: 87.5%; }

.col-xs-offset-22 {
  margin-left: 91.66667%; }

.col-xs-offset-23 {
  margin-left: 95.83333%; }

.col-xs-offset-24 {
  margin-left: 100%; }

@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-13, .col-sm-14, .col-sm-15, .col-sm-16, .col-sm-17, .col-sm-18, .col-sm-19, .col-sm-20, .col-sm-21, .col-sm-22, .col-sm-23, .col-sm-24 {
    float: left; }
  .col-sm-1 {
    width: 4.16667%; }
  .col-sm-2 {
    width: 8.33333%; }
  .col-sm-3 {
    width: 12.5%; }
  .col-sm-4 {
    width: 16.66667%; }
  .col-sm-5 {
    width: 20.83333%; }
  .col-sm-6 {
    width: 25%; }
  .col-sm-7 {
    width: 29.16667%; }
  .col-sm-8 {
    width: 33.33333%; }
  .col-sm-9 {
    width: 37.5%; }
  .col-sm-10 {
    width: 41.66667%; }
  .col-sm-11 {
    width: 45.83333%; }
  .col-sm-12 {
    width: 50%; }
  .col-sm-13 {
    width: 54.16667%; }
  .col-sm-14 {
    width: 58.33333%; }
  .col-sm-15 {
    width: 62.5%; }
  .col-sm-16 {
    width: 66.66667%; }
  .col-sm-17 {
    width: 70.83333%; }
  .col-sm-18 {
    width: 75%; }
  .col-sm-19 {
    width: 79.16667%; }
  .col-sm-20 {
    width: 83.33333%; }
  .col-sm-21 {
    width: 87.5%; }
  .col-sm-22 {
    width: 91.66667%; }
  .col-sm-23 {
    width: 95.83333%; }
  .col-sm-24 {
    width: 100%; }
  .col-sm-pull-0 {
    right: auto; }
  .col-sm-pull-1 {
    right: 4.16667%; }
  .col-sm-pull-2 {
    right: 8.33333%; }
  .col-sm-pull-3 {
    right: 12.5%; }
  .col-sm-pull-4 {
    right: 16.66667%; }
  .col-sm-pull-5 {
    right: 20.83333%; }
  .col-sm-pull-6 {
    right: 25%; }
  .col-sm-pull-7 {
    right: 29.16667%; }
  .col-sm-pull-8 {
    right: 33.33333%; }
  .col-sm-pull-9 {
    right: 37.5%; }
  .col-sm-pull-10 {
    right: 41.66667%; }
  .col-sm-pull-11 {
    right: 45.83333%; }
  .col-sm-pull-12 {
    right: 50%; }
  .col-sm-pull-13 {
    right: 54.16667%; }
  .col-sm-pull-14 {
    right: 58.33333%; }
  .col-sm-pull-15 {
    right: 62.5%; }
  .col-sm-pull-16 {
    right: 66.66667%; }
  .col-sm-pull-17 {
    right: 70.83333%; }
  .col-sm-pull-18 {
    right: 75%; }
  .col-sm-pull-19 {
    right: 79.16667%; }
  .col-sm-pull-20 {
    right: 83.33333%; }
  .col-sm-pull-21 {
    right: 87.5%; }
  .col-sm-pull-22 {
    right: 91.66667%; }
  .col-sm-pull-23 {
    right: 95.83333%; }
  .col-sm-pull-24 {
    right: 100%; }
  .col-sm-push-0 {
    left: auto; }
  .col-sm-push-1 {
    left: 4.16667%; }
  .col-sm-push-2 {
    left: 8.33333%; }
  .col-sm-push-3 {
    left: 12.5%; }
  .col-sm-push-4 {
    left: 16.66667%; }
  .col-sm-push-5 {
    left: 20.83333%; }
  .col-sm-push-6 {
    left: 25%; }
  .col-sm-push-7 {
    left: 29.16667%; }
  .col-sm-push-8 {
    left: 33.33333%; }
  .col-sm-push-9 {
    left: 37.5%; }
  .col-sm-push-10 {
    left: 41.66667%; }
  .col-sm-push-11 {
    left: 45.83333%; }
  .col-sm-push-12 {
    left: 50%; }
  .col-sm-push-13 {
    left: 54.16667%; }
  .col-sm-push-14 {
    left: 58.33333%; }
  .col-sm-push-15 {
    left: 62.5%; }
  .col-sm-push-16 {
    left: 66.66667%; }
  .col-sm-push-17 {
    left: 70.83333%; }
  .col-sm-push-18 {
    left: 75%; }
  .col-sm-push-19 {
    left: 79.16667%; }
  .col-sm-push-20 {
    left: 83.33333%; }
  .col-sm-push-21 {
    left: 87.5%; }
  .col-sm-push-22 {
    left: 91.66667%; }
  .col-sm-push-23 {
    left: 95.83333%; }
  .col-sm-push-24 {
    left: 100%; }
  .col-sm-offset-0 {
    margin-left: 0%; }
  .col-sm-offset-1 {
    margin-left: 4.16667%; }
  .col-sm-offset-2 {
    margin-left: 8.33333%; }
  .col-sm-offset-3 {
    margin-left: 12.5%; }
  .col-sm-offset-4 {
    margin-left: 16.66667%; }
  .col-sm-offset-5 {
    margin-left: 20.83333%; }
  .col-sm-offset-6 {
    margin-left: 25%; }
  .col-sm-offset-7 {
    margin-left: 29.16667%; }
  .col-sm-offset-8 {
    margin-left: 33.33333%; }
  .col-sm-offset-9 {
    margin-left: 37.5%; }
  .col-sm-offset-10 {
    margin-left: 41.66667%; }
  .col-sm-offset-11 {
    margin-left: 45.83333%; }
  .col-sm-offset-12 {
    margin-left: 50%; }
  .col-sm-offset-13 {
    margin-left: 54.16667%; }
  .col-sm-offset-14 {
    margin-left: 58.33333%; }
  .col-sm-offset-15 {
    margin-left: 62.5%; }
  .col-sm-offset-16 {
    margin-left: 66.66667%; }
  .col-sm-offset-17 {
    margin-left: 70.83333%; }
  .col-sm-offset-18 {
    margin-left: 75%; }
  .col-sm-offset-19 {
    margin-left: 79.16667%; }
  .col-sm-offset-20 {
    margin-left: 83.33333%; }
  .col-sm-offset-21 {
    margin-left: 87.5%; }
  .col-sm-offset-22 {
    margin-left: 91.66667%; }
  .col-sm-offset-23 {
    margin-left: 95.83333%; }
  .col-sm-offset-24 {
    margin-left: 100%; } }

@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md-13, .col-md-14, .col-md-15, .col-md-16, .col-md-17, .col-md-18, .col-md-19, .col-md-20, .col-md-21, .col-md-22, .col-md-23, .col-md-24 {
    float: left; }
  .col-md-1 {
    width: 4.16667%; }
  .col-md-2 {
    width: 8.33333%; }
  .col-md-3 {
    width: 12.5%; }
  .col-md-4 {
    width: 16.66667%; }
  .col-md-5 {
    width: 20.83333%; }
  .col-md-6 {
    width: 25%; }
  .col-md-7 {
    width: 29.16667%; }
  .col-md-8 {
    width: 33.33333%; }
  .col-md-9 {
    width: 37.5%; }
  .col-md-10 {
    width: 41.66667%; }
  .col-md-11 {
    width: 45.83333%; }
  .col-md-12 {
    width: 50%; }
  .col-md-13 {
    width: 54.16667%; }
  .col-md-14 {
    width: 58.33333%; }
  .col-md-15 {
    width: 62.5%; }
  .col-md-16 {
    width: 66.66667%; }
  .col-md-17 {
    width: 70.83333%; }
  .col-md-18 {
    width: 75%; }
  .col-md-19 {
    width: 79.16667%; }
  .col-md-20 {
    width: 83.33333%; }
  .col-md-21 {
    width: 87.5%; }
  .col-md-22 {
    width: 91.66667%; }
  .col-md-23 {
    width: 95.83333%; }
  .col-md-24 {
    width: 100%; }
  .col-md-pull-0 {
    right: auto; }
  .col-md-pull-1 {
    right: 4.16667%; }
  .col-md-pull-2 {
    right: 8.33333%; }
  .col-md-pull-3 {
    right: 12.5%; }
  .col-md-pull-4 {
    right: 16.66667%; }
  .col-md-pull-5 {
    right: 20.83333%; }
  .col-md-pull-6 {
    right: 25%; }
  .col-md-pull-7 {
    right: 29.16667%; }
  .col-md-pull-8 {
    right: 33.33333%; }
  .col-md-pull-9 {
    right: 37.5%; }
  .col-md-pull-10 {
    right: 41.66667%; }
  .col-md-pull-11 {
    right: 45.83333%; }
  .col-md-pull-12 {
    right: 50%; }
  .col-md-pull-13 {
    right: 54.16667%; }
  .col-md-pull-14 {
    right: 58.33333%; }
  .col-md-pull-15 {
    right: 62.5%; }
  .col-md-pull-16 {
    right: 66.66667%; }
  .col-md-pull-17 {
    right: 70.83333%; }
  .col-md-pull-18 {
    right: 75%; }
  .col-md-pull-19 {
    right: 79.16667%; }
  .col-md-pull-20 {
    right: 83.33333%; }
  .col-md-pull-21 {
    right: 87.5%; }
  .col-md-pull-22 {
    right: 91.66667%; }
  .col-md-pull-23 {
    right: 95.83333%; }
  .col-md-pull-24 {
    right: 100%; }
  .col-md-push-0 {
    left: auto; }
  .col-md-push-1 {
    left: 4.16667%; }
  .col-md-push-2 {
    left: 8.33333%; }
  .col-md-push-3 {
    left: 12.5%; }
  .col-md-push-4 {
    left: 16.66667%; }
  .col-md-push-5 {
    left: 20.83333%; }
  .col-md-push-6 {
    left: 25%; }
  .col-md-push-7 {
    left: 29.16667%; }
  .col-md-push-8 {
    left: 33.33333%; }
  .col-md-push-9 {
    left: 37.5%; }
  .col-md-push-10 {
    left: 41.66667%; }
  .col-md-push-11 {
    left: 45.83333%; }
  .col-md-push-12 {
    left: 50%; }
  .col-md-push-13 {
    left: 54.16667%; }
  .col-md-push-14 {
    left: 58.33333%; }
  .col-md-push-15 {
    left: 62.5%; }
  .col-md-push-16 {
    left: 66.66667%; }
  .col-md-push-17 {
    left: 70.83333%; }
  .col-md-push-18 {
    left: 75%; }
  .col-md-push-19 {
    left: 79.16667%; }
  .col-md-push-20 {
    left: 83.33333%; }
  .col-md-push-21 {
    left: 87.5%; }
  .col-md-push-22 {
    left: 91.66667%; }
  .col-md-push-23 {
    left: 95.83333%; }
  .col-md-push-24 {
    left: 100%; }
  .col-md-offset-0 {
    margin-left: 0%; }
  .col-md-offset-1 {
    margin-left: 4.16667%; }
  .col-md-offset-2 {
    margin-left: 8.33333%; }
  .col-md-offset-3 {
    margin-left: 12.5%; }
  .col-md-offset-4 {
    margin-left: 16.66667%; }
  .col-md-offset-5 {
    margin-left: 20.83333%; }
  .col-md-offset-6 {
    margin-left: 25%; }
  .col-md-offset-7 {
    margin-left: 29.16667%; }
  .col-md-offset-8 {
    margin-left: 33.33333%; }
  .col-md-offset-9 {
    margin-left: 37.5%; }
  .col-md-offset-10 {
    margin-left: 41.66667%; }
  .col-md-offset-11 {
    margin-left: 45.83333%; }
  .col-md-offset-12 {
    margin-left: 50%; }
  .col-md-offset-13 {
    margin-left: 54.16667%; }
  .col-md-offset-14 {
    margin-left: 58.33333%; }
  .col-md-offset-15 {
    margin-left: 62.5%; }
  .col-md-offset-16 {
    margin-left: 66.66667%; }
  .col-md-offset-17 {
    margin-left: 70.83333%; }
  .col-md-offset-18 {
    margin-left: 75%; }
  .col-md-offset-19 {
    margin-left: 79.16667%; }
  .col-md-offset-20 {
    margin-left: 83.33333%; }
  .col-md-offset-21 {
    margin-left: 87.5%; }
  .col-md-offset-22 {
    margin-left: 91.66667%; }
  .col-md-offset-23 {
    margin-left: 95.83333%; }
  .col-md-offset-24 {
    margin-left: 100%; } }

@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-13, .col-lg-14, .col-lg-15, .col-lg-16, .col-lg-17, .col-lg-18, .col-lg-19, .col-lg-20, .col-lg-21, .col-lg-22, .col-lg-23, .col-lg-24 {
    float: left; }
  .col-lg-1 {
    width: 4.16667%; }
  .col-lg-2 {
    width: 8.33333%; }
  .col-lg-3 {
    width: 12.5%; }
  .col-lg-4 {
    width: 16.66667%; }
  .col-lg-5 {
    width: 20.83333%; }
  .col-lg-6 {
    width: 25%; }
  .col-lg-7 {
    width: 29.16667%; }
  .col-lg-8 {
    width: 33.33333%; }
  .col-lg-9 {
    width: 37.5%; }
  .col-lg-10 {
    width: 41.66667%; }
  .col-lg-11 {
    width: 45.83333%; }
  .col-lg-12 {
    width: 50%; }
  .col-lg-13 {
    width: 54.16667%; }
  .col-lg-14 {
    width: 58.33333%; }
  .col-lg-15 {
    width: 62.5%; }
  .col-lg-16 {
    width: 66.66667%; }
  .col-lg-17 {
    width: 70.83333%; }
  .col-lg-18 {
    width: 75%; }
  .col-lg-19 {
    width: 79.16667%; }
  .col-lg-20 {
    width: 83.33333%; }
  .col-lg-21 {
    width: 87.5%; }
  .col-lg-22 {
    width: 91.66667%; }
  .col-lg-23 {
    width: 95.83333%; }
  .col-lg-24 {
    width: 100%; }
  .col-lg-pull-0 {
    right: auto; }
  .col-lg-pull-1 {
    right: 4.16667%; }
  .col-lg-pull-2 {
    right: 8.33333%; }
  .col-lg-pull-3 {
    right: 12.5%; }
  .col-lg-pull-4 {
    right: 16.66667%; }
  .col-lg-pull-5 {
    right: 20.83333%; }
  .col-lg-pull-6 {
    right: 25%; }
  .col-lg-pull-7 {
    right: 29.16667%; }
  .col-lg-pull-8 {
    right: 33.33333%; }
  .col-lg-pull-9 {
    right: 37.5%; }
  .col-lg-pull-10 {
    right: 41.66667%; }
  .col-lg-pull-11 {
    right: 45.83333%; }
  .col-lg-pull-12 {
    right: 50%; }
  .col-lg-pull-13 {
    right: 54.16667%; }
  .col-lg-pull-14 {
    right: 58.33333%; }
  .col-lg-pull-15 {
    right: 62.5%; }
  .col-lg-pull-16 {
    right: 66.66667%; }
  .col-lg-pull-17 {
    right: 70.83333%; }
  .col-lg-pull-18 {
    right: 75%; }
  .col-lg-pull-19 {
    right: 79.16667%; }
  .col-lg-pull-20 {
    right: 83.33333%; }
  .col-lg-pull-21 {
    right: 87.5%; }
  .col-lg-pull-22 {
    right: 91.66667%; }
  .col-lg-pull-23 {
    right: 95.83333%; }
  .col-lg-pull-24 {
    right: 100%; }
  .col-lg-push-0 {
    left: auto; }
  .col-lg-push-1 {
    left: 4.16667%; }
  .col-lg-push-2 {
    left: 8.33333%; }
  .col-lg-push-3 {
    left: 12.5%; }
  .col-lg-push-4 {
    left: 16.66667%; }
  .col-lg-push-5 {
    left: 20.83333%; }
  .col-lg-push-6 {
    left: 25%; }
  .col-lg-push-7 {
    left: 29.16667%; }
  .col-lg-push-8 {
    left: 33.33333%; }
  .col-lg-push-9 {
    left: 37.5%; }
  .col-lg-push-10 {
    left: 41.66667%; }
  .col-lg-push-11 {
    left: 45.83333%; }
  .col-lg-push-12 {
    left: 50%; }
  .col-lg-push-13 {
    left: 54.16667%; }
  .col-lg-push-14 {
    left: 58.33333%; }
  .col-lg-push-15 {
    left: 62.5%; }
  .col-lg-push-16 {
    left: 66.66667%; }
  .col-lg-push-17 {
    left: 70.83333%; }
  .col-lg-push-18 {
    left: 75%; }
  .col-lg-push-19 {
    left: 79.16667%; }
  .col-lg-push-20 {
    left: 83.33333%; }
  .col-lg-push-21 {
    left: 87.5%; }
  .col-lg-push-22 {
    left: 91.66667%; }
  .col-lg-push-23 {
    left: 95.83333%; }
  .col-lg-push-24 {
    left: 100%; }
  .col-lg-offset-0 {
    margin-left: 0%; }
  .col-lg-offset-1 {
    margin-left: 4.16667%; }
  .col-lg-offset-2 {
    margin-left: 8.33333%; }
  .col-lg-offset-3 {
    margin-left: 12.5%; }
  .col-lg-offset-4 {
    margin-left: 16.66667%; }
  .col-lg-offset-5 {
    margin-left: 20.83333%; }
  .col-lg-offset-6 {
    margin-left: 25%; }
  .col-lg-offset-7 {
    margin-left: 29.16667%; }
  .col-lg-offset-8 {
    margin-left: 33.33333%; }
  .col-lg-offset-9 {
    margin-left: 37.5%; }
  .col-lg-offset-10 {
    margin-left: 41.66667%; }
  .col-lg-offset-11 {
    margin-left: 45.83333%; }
  .col-lg-offset-12 {
    margin-left: 50%; }
  .col-lg-offset-13 {
    margin-left: 54.16667%; }
  .col-lg-offset-14 {
    margin-left: 58.33333%; }
  .col-lg-offset-15 {
    margin-left: 62.5%; }
  .col-lg-offset-16 {
    margin-left: 66.66667%; }
  .col-lg-offset-17 {
    margin-left: 70.83333%; }
  .col-lg-offset-18 {
    margin-left: 75%; }
  .col-lg-offset-19 {
    margin-left: 79.16667%; }
  .col-lg-offset-20 {
    margin-left: 83.33333%; }
  .col-lg-offset-21 {
    margin-left: 87.5%; }
  .col-lg-offset-22 {
    margin-left: 91.66667%; }
  .col-lg-offset-23 {
    margin-left: 95.83333%; }
  .col-lg-offset-24 {
    margin-left: 100%; } }

/* Material Overrides */
md-autocomplete {
  background-color: transparent;
  height: auto; }
  md-autocomplete md-autocomplete-wrap,
  md-autocomplete .md-whiteframe-z1 {
    position: relative;
    box-shadow: none;
    height: auto; }
    md-autocomplete md-autocomplete-wrap.md-show-clear-button input[type="search"],
    md-autocomplete .md-whiteframe-z1.md-show-clear-button input[type="search"] {
      padding-right: 2em; }
  md-autocomplete input[type="search"] {
    background-color: white;
    font-size: 1em;
    height: auto; }
  md-autocomplete .md-show-clear-button button, md-autocomplete .md-show-clear-button label.label-btn, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-cancel-button, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-cancel-button, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-confirm-button {
    font-size: 1em;
    position: absolute;
    right: 4px;
    height: 36px; }
    md-autocomplete .md-show-clear-button button:before, md-autocomplete .md-show-clear-button label.label-btn:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-cancel-button:before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-cancel-button:before, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button:before, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-confirm-button:before {
      margin: 0; }
    md-autocomplete .md-show-clear-button button md-icon, md-autocomplete .md-show-clear-button label.label-btn md-icon, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-cancel-button md-icon, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-cancel-button md-icon, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button md-icon, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-confirm-button md-icon {
      display: none; }

md-select {
  margin: 0 1.4em 0 0; }
  md-select + label,
  md-select + input,
  md-select + textarea,
  .fr-inline-editor md-select + .fr-view,
  md-select + .input-w-inlay,
  md-select + .input-w-clear,
  md-select + .input-w-button,
  md-select + .checkable,
  md-select + .inline-checkables,
  md-select + p,
  p + md-select,
  md-select + ul,
  ul + md-select md-select + ol,
  ol + md-select md-select + table,
  table + md-select,
  md-select + .responsive-table,
  .responsive-table + md-select,
  .error-msg + md-select,
  h1 + md-select,
  h2 + md-select,
  h3 + md-select,
  h4 + md-select,
  h5 + md-select,
  h6 + md-select {
    margin-top: 12px; }
  md-select + h1,
  md-select + h2,
  md-select + h3,
  md-select + h4,
  md-select + h5,
  md-select + h6 {
    margin-top: 16px; }
  md-select.flush {
    margin-top: 0; }
  md-select + p.error-msg {
    margin-top: 4px; }
  md-select .md-select-value {
    background-color: white;
    border: 1px solid transparent;
    border-radius: 4px;
    line-height: 22px;
    text-align: left;
    padding: 6px 12px 6px 16px;
    width: 100%;
    max-width: 100%;
    min-height: 22px;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1); }
    .theme-cmix md-select .md-select-value {
      color: #22232D;
      border-color: #DDE1E7; }
    .theme-marketview md-select .md-select-value {
      color: #414042;
      border-color: #DDE1E7; }
    md-select .md-select-value .md-select-icon {
      margin: 0;
      width: 16px; }
    md-select .md-select-value.md-select-placeholder {
      padding-left: 16px; }
  md-select:not([disabled]):focus .md-select-value {
    border-bottom-width: 1px;
    padding-bottom: 6px; }
    .theme-cmix md-select:not([disabled]):focus .md-select-value {
      color: #22232D;
      border-color: #2E91C9; }
    .theme-marketview md-select:not([disabled]):focus .md-select-value {
      color: #414042;
      border-color: #5B9CB7; }
  .theme-cmix md-select.ng-invalid.ng-touched .md-select-value {
    color: #DF4E71;
    border-color: #DF4E71; }
  .theme-marketview md-select.ng-invalid.ng-touched .md-select-value {
    color: #DF4E71;
    border-color: #DF4E71; }
  md-select.inline {
    display: inline-block;
    vertical-align: middle; }

md-select-menu md-content md-option[selected], md-select-menu md-content md-option[selected]:hover, md-select-menu md-content md-option[selected]:focus {
  font-weight: bold;
  color: white; }
  .theme-cmix md-select-menu md-content md-option[selected], .theme-cmix md-select-menu md-content md-option[selected]:hover, .theme-cmix md-select-menu md-content md-option[selected]:focus {
    background-color: #2E91C9; }
  .theme-marketview md-select-menu md-content md-option[selected], .theme-marketview md-select-menu md-content md-option[selected]:hover, .theme-marketview md-select-menu md-content md-option[selected]:focus {
    background-color: #5B9CB7; }

md-select-menu md-content button, md-select-menu md-content label.label-btn, md-select-menu md-content md-dialog md-dialog-actions .md-cancel-button, md-dialog md-dialog-actions md-select-menu md-content .md-cancel-button, md-select-menu md-content md-dialog md-dialog-actions .md-confirm-button, md-dialog md-dialog-actions md-select-menu md-content .md-confirm-button {
  display: block;
  width: calc(100% - 16px);
  margin-left: 8px;
  margin-top: 8px; }

md-switch {
  display: inline-block;
  vertical-align: middle;
  height: 24px;
  margin: 0; }
  .theme-cmix md-switch .md-bar {
    background-color: rgba(88, 88, 99, 0.5); }
  .theme-cmix md-switch .md-ink-ripple {
    color: #FAFAFA; }
  .theme-cmix md-switch.md-checked .md-bar {
    background-color: rgba(82, 193, 163, 0.5); }
  .theme-cmix md-switch.md-checked .md-thumb {
    background-color: #52C1A3; }
  .theme-cmix md-switch.md-checked .md-ink-ripple {
    color: #52C1A3; }
  .theme-marketview md-switch .md-bar {
    background-color: rgba(102, 102, 102, 0.5); }
  .theme-marketview md-switch .md-ink-ripple {
    color: #FAFAFA; }
  .theme-marketview md-switch.md-checked .md-bar {
    background-color: rgba(91, 183, 138, 0.5); }
  .theme-marketview md-switch.md-checked .md-thumb {
    background-color: #5BB78A; }
  .theme-marketview md-switch.md-checked .md-ink-ripple {
    color: #5BB78A; }

md-dialog {
  max-width: calc(100vw - 32px);
  max-height: calc(100vh - 32px);
  width: 768px; }
  md-dialog.small {
    font-size: 1em;
    width: 448px; }
  md-dialog.full-screen {
    width: 100%;
    height: 100%; }
    md-dialog.full-screen md-dialog-content {
      max-height: initial; }

md-dialog md-toolbar:not(.md-menu-toolbar) {
  background-color: white;
  border-bottom: 1px solid transparent;
  font-size: 1rem;
  padding: 16px;
  min-height: initial;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center; }
  .theme-cmix md-dialog md-toolbar:not(.md-menu-toolbar) {
    border-bottom-color: #DDE1E7; }
  .theme-marketview md-dialog md-toolbar:not(.md-menu-toolbar) {
    border-bottom-color: #DDE1E7; }

md-dialog .dialog-title {
  flex: 1;
  font-size: 16px;
  display: inline-block; }
  .theme-cmix md-dialog .dialog-title {
    color: #22232D; }
  .theme-marketview md-dialog .dialog-title {
    color: #414042; }

md-dialog .close-dialog:before {
  margin-right: 0 !important; }

md-dialog md-dialog-content {
  display: block;
  flex-grow: 1;
  max-height: calc(100vh - 160px);
  padding: 16px; }
  md-dialog md-dialog-content.flush {
    padding: 0; }

md-dialog md-dialog-actions {
  border-top: 1px solid transparent;
  text-align: right;
  display: block;
  min-height: initial;
  padding: 16px; }
  .theme-cmix md-dialog md-dialog-actions {
    border-top-color: #DDE1E7; }
  .theme-marketview md-dialog md-dialog-actions {
    border-top-color: #DDE1E7; }
  md-dialog md-dialog-actions.split {
    display: flex;
    justify-content: space-between;
    align-items: center; }
  md-dialog md-dialog-actions .md-cancel-button {
    transition: none; }
    .theme-cmix md-dialog md-dialog-actions .md-cancel-button {
      color: #585863 !important; }
    .theme-marketview md-dialog md-dialog-actions .md-cancel-button {
      color: #666666 !important; }
  md-dialog md-dialog-actions .md-confirm-button {
    color: white !important;
    transition: none; }
    .theme-cmix md-dialog md-dialog-actions .md-confirm-button:hover, .theme-cmix md-dialog md-dialog-actions .md-confirm-button:focus {
      background-color: #289ed9 !important; }
    .theme-marketview md-dialog md-dialog-actions .md-confirm-button:hover, .theme-marketview md-dialog md-dialog-actions .md-confirm-button:focus {
      background-color: #0f528f !important; }

md-tooltip.multi-line {
  height: auto;
  padding-top: 4px;
  padding-bottom: 4px; }

.theme-cmix md-progress-linear .md-container {
  background-color: rgba(82, 193, 163, 0.2); }

.theme-cmix md-progress-linear .md-bar {
  background-color: #52C1A3; }

.theme-marketview md-progress-linear .md-container {
  background-color: rgba(91, 183, 138, 0.2); }

.theme-marketview md-progress-linear .md-bar {
  background-color: #5BB78A; }

.theme-cmix md-progress-circular.md-green-theme path {
  stroke: #1B365D; }

.theme-marketview md-progress-circular.md-green-theme path {
  stroke: #122D59; }

md-datepicker.custom-trigger .md-datepicker-button {
  display: none; }

md-datepicker.custom-trigger .md-datepicker-input-container > input,
md-datepicker.custom-trigger .md-datepicker-input-container > button,
md-datepicker.custom-trigger .md-datepicker-input-container > label.label-btn,
md-datepicker.custom-trigger md-dialog md-dialog-actions .md-datepicker-input-container > .md-cancel-button,
md-dialog md-dialog-actions md-datepicker.custom-trigger .md-datepicker-input-container > .md-cancel-button,
md-datepicker.custom-trigger md-dialog md-dialog-actions .md-datepicker-input-container > .md-confirm-button,
md-dialog md-dialog-actions md-datepicker.custom-trigger .md-datepicker-input-container > .md-confirm-button {
  display: none; }

md-calendar .md-datepicker-input-mask {
  display: none; }

md-calendar table:not(.disable-default-patterns) {
  width: auto;
  max-width: initial; }
  md-calendar table:not(.disable-default-patterns) th {
    text-align: center;
    border-top-width: 0;
    border-left-width: 0;
    border-right-width: 0;
    padding: 0; }
  md-calendar table:not(.disable-default-patterns) td {
    padding: 0;
    border: none; }
    md-calendar table:not(.disable-default-patterns) td.md-calendar-month-label {
      padding-left: 16px; }

.theme-cmix .md-calendar-date.md-focus .md-default-theme .md-calendar-date-selection-indicator, .theme-cmix
.md-calendar-date.md-focus .md-calendar-date-selection-indicator, .theme-cmix
.md-default-theme .md-calendar-date-selection-indicator:hover, .theme-cmix
.md-calendar-date-selection-indicator:hover {
  background-color: #ededed; }

.theme-marketview .md-calendar-date.md-focus .md-default-theme .md-calendar-date-selection-indicator, .theme-marketview
.md-calendar-date.md-focus .md-calendar-date-selection-indicator, .theme-marketview
.md-default-theme .md-calendar-date-selection-indicator:hover, .theme-marketview
.md-calendar-date-selection-indicator:hover {
  background-color: #ededed; }

.md-default-theme .md-calendar-date.md-calendar-date-today .md-calendar-date-selection-indicator,
.md-calendar-date.md-calendar-date-today .md-calendar-date-selection-indicator {
  border: 1px solid transparent; }
  .theme-cmix .md-default-theme .md-calendar-date.md-calendar-date-today .md-calendar-date-selection-indicator, .theme-cmix
  .md-calendar-date.md-calendar-date-today .md-calendar-date-selection-indicator {
    border-color: #2E91C9; }
  .theme-marketview .md-default-theme .md-calendar-date.md-calendar-date-today .md-calendar-date-selection-indicator, .theme-marketview
  .md-calendar-date.md-calendar-date-today .md-calendar-date-selection-indicator {
    border-color: #5B9CB7; }

.md-default-theme .md-calendar-date.md-calendar-selected-date .md-calendar-date-selection-indicator,
.md-calendar-date.md-calendar-selected-date .md-calendar-date-selection-indicator,
.md-default-theme .md-calendar-date.md-focus.md-calendar-selected-date .md-calendar-date-selection-indicator,
.md-calendar-date.md-focus.md-calendar-selected-date .md-calendar-date-selection-indicator {
  color: white;
  border-color: transparent; }
  .theme-cmix .md-default-theme .md-calendar-date.md-calendar-selected-date .md-calendar-date-selection-indicator, .theme-cmix
  .md-calendar-date.md-calendar-selected-date .md-calendar-date-selection-indicator, .theme-cmix
  .md-default-theme .md-calendar-date.md-focus.md-calendar-selected-date .md-calendar-date-selection-indicator, .theme-cmix
  .md-calendar-date.md-focus.md-calendar-selected-date .md-calendar-date-selection-indicator {
    background: #2E91C9; }
  .theme-marketview .md-default-theme .md-calendar-date.md-calendar-selected-date .md-calendar-date-selection-indicator, .theme-marketview
  .md-calendar-date.md-calendar-selected-date .md-calendar-date-selection-indicator, .theme-marketview
  .md-default-theme .md-calendar-date.md-focus.md-calendar-selected-date .md-calendar-date-selection-indicator, .theme-marketview
  .md-calendar-date.md-focus.md-calendar-selected-date .md-calendar-date-selection-indicator {
    background: #5B9CB7; }

/* App Styles */
:focus {
  outline: none; }

[contenteditable="true"] {
  cursor: text; }

.icon-drag-handle {
  cursor: move; }

.inline {
  display: inline-block;
  vertical-align: middle; }

[maskable] {
  position: relative; }

#hs-beacon iframe {
  z-index: 75 !important; }

.tippy-popper {
  z-index: 100; }

.cmix-platform-header {
  position: fixed; }

#loading-screen {
  background-color: white;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999;
  transition: 0.1s linear opacity; }
  #loading-screen.ng-hide-add {
    opacity: 1; }
  #loading-screen.ng-hide {
    opacity: 0; }

#loading-screen__logo {
  width: auto;
  height: 40px;
  margin-bottom: 8px; }

#loading-screen__title {
  font-size: 16px; }

#loading-screen__loading-container {
  width: 100%; }
  #loading-screen__loading-container span {
    display: block;
    margin-top: 8px; }

#loading-screen__loading-container,
#loading-screen__error-message {
  margin-top: 8px;
  text-align: center; }

.theme-cmix #loading-screen__spinner .md-container {
  background-color: rgba(82, 193, 163, 0.28); }

.theme-marketview #loading-screen__spinner .md-container {
  background-color: rgba(91, 183, 138, 0.28); }

.overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 10; }

.mask-element {
  background-color: rgba(255, 255, 255, 0.5); }

.success-overlay {
  background: url("/img/transparent.gif");
  pointer-events: none; }

.success-overlay-content {
  color: white;
  font-size: 0.75em;
  border-radius: 4px;
  margin: 5px;
  padding: 4px 8px;
  width: auto;
  pointer-events: all; }
  .theme-cmix .success-overlay-content {
    background-color: rgba(34, 35, 45, 0.6); }
  .theme-marketview .success-overlay-content {
    background-color: rgba(65, 64, 66, 0.6); }
  .success-overlay-content.ng-hide-remove {
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.15s linear, transform 0.15s linear; }
    .success-overlay-content.ng-hide-remove.ng-hide-remove-active {
      opacity: 1;
      transform: scale(1); }
  .success-overlay-content.ng-hide-add {
    opacity: 1;
    transition: opacity 0.5s linear; }
    .success-overlay-content.ng-hide-add.ng-hide-add-active {
      opacity: 0; }

.sso-header-nav {
  position: fixed;
  width: 100%;
  z-index: 52;
  top: 0; }

.sso-header {
  width: 100%;
  padding: 0;
  margin: 0;
  display: flex;
  background-color: #fff;
  height: 50px;
  border-bottom: 1px solid #F1F2F3; }
  .sso-header::after {
    content: "";
    display: table;
    clear: both; }
  .sso-header a {
    box-sizing: border-box;
    text-decoration: none;
    color: #85858B; }
  .sso-header em {
    font-style: normal;
    color: #85858B; }

.md-ripple-container {
  background-color: transparent !important;
  -webkit-mask-image: none !important; }

.sso-header li {
  display: inline-block;
  float: left;
  padding: 0 15px 0 15px;
  vertical-align: middle; }
  .sso-header li.divider {
    padding: 0; }
  .sso-header li button, .sso-header li label.label-btn, .sso-header li md-dialog md-dialog-actions .md-cancel-button, md-dialog md-dialog-actions .sso-header li .md-cancel-button, .sso-header li md-dialog md-dialog-actions .md-confirm-button, md-dialog md-dialog-actions .sso-header li .md-confirm-button {
    margin-top: 6px;
    font-size: 15px;
    cursor: pointer; }
    .sso-header li button.sso-menu-btn-item, .sso-header li label.sso-menu-btn-item.label-btn, .sso-header li md-dialog md-dialog-actions .sso-menu-btn-item.md-cancel-button, md-dialog md-dialog-actions .sso-header li .sso-menu-btn-item.md-cancel-button, .sso-header li md-dialog md-dialog-actions .sso-menu-btn-item.md-confirm-button, md-dialog md-dialog-actions .sso-header li .sso-menu-btn-item.md-confirm-button {
      padding: 0 !important;
      margin: 0 !important;
      text-transform: none !important;
      color: #85858B !important; }
  .sso-header li button:focus, .sso-header li label.label-btn:focus, .sso-header li md-dialog md-dialog-actions .md-cancel-button:focus, md-dialog md-dialog-actions .sso-header li .md-cancel-button:focus, .sso-header li md-dialog md-dialog-actions .md-confirm-button:focus, md-dialog md-dialog-actions .sso-header li .md-confirm-button:focus {
    outline: 0; }
  .sso-header li a {
    font-size: 15px; }
  .sso-header li a, .sso-header li em {
    display: table-cell;
    vertical-align: middle; }
  .sso-header li a img {
    vertical-align: middle; }
  .sso-header li.first-element-right {
    text-align: right;
    margin-left: auto; }
  .sso-header li.element-right {
    text-align: right; }
  .sso-header li em {
    font-size: 15px; }
    .sso-header li em.title {
      overflow: hidden;
      text-overflow: ellipsis;
      display: block;
      line-height: 50px; }

.sso-header li > * {
  display: inline-block;
  height: 50px; }

.sso-header li.current > * {
  color: #3EA8DD;
  height: 46px; }

.sso-header li.can-hover, .sso-header li.can-hover a {
  height: 46px; }

.sso-header .can-hover a:hover {
  height: 50px;
  color: #3EA8DD;
  border-bottom: 4px solid #3EA8DD; }

.sso-header img:hover {
  fill: #3EA8DD; }

.sso-header .right-separator {
  border-right: 1px solid #F1F2F3; }

.sso-header .btn-new-survey {
  color: #fff;
  background-color: #3EA8DD;
  border: 1px solid #3EA8DD;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  height: 36px;
  padding: 0 20px 0 20px; }

.sso-header .btn-new-survey:hover {
  color: #85858B;
  background-color: #fff;
  border: 1px solid #85858B; }

.sso-header .btn-user {
  margin-top: 10px;
  color: #fff;
  background-color: #85858B;
  border: 1px solid #85858B;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  height: 30px;
  line-height: 0; }

.sso-header .btn-icon {
  font-size: 26px;
  color: #85858B; }

.sso-header .item-arrow-left {
  margin-right: 10px; }

.sso-header .item-arrow-right {
  margin-left: 10px; }

.sso-header .help-title {
  margin-left: 5px;
  background-color: #F1F2F3;
  color: #000;
  padding: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px; }

.sso-header .am-item-user {
  font-weight: bold;
  text-transform: none;
  padding: 5px 8px;
  margin-top: 10px !important;
  min-height: 0;
  min-width: 0;
  color: #fff !important;
  background-color: #85858B !important;
  border: 1px solid #85858B !important;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  height: 30px;
  line-height: 0; }

.sso-header .am-btn-icon-item {
  min-width: 25px;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0; }

.sso-header-item-current {
  color: #3EA8DD !important;
  text-transform: none;
  padding: 0;
  margin: 0; }

.sso-header-item-current:not([disabled]):hover {
  background-color: white; }

.sso-header-item-current:active {
  background-color: white; }

.sso-header-item-icon:not([disabled]):hover {
  background-color: white; }

.sso-header-item-icon:active {
  background-color: white; }

#menu_container_0, #menu_container_1, #menu_container_2 {
  margin-top: 50px;
  transition: none !important; }

.sso-menu {
  padding: 0 !important; }
  .sso-menu .user-hello {
    color: #414149 !important;
    font-size: 17px;
    padding-top: 20px;
    font-weight: bold;
    background-color: #E7EAED;
    height: 60px;
    text-align: center;
    vertical-align: middle; }
  .sso-menu small {
    padding-top: 10px;
    padding-bottom: 5px;
    display: block; }
  .sso-menu md-menu-item {
    min-height: initial;
    height: auto; }
  .sso-menu md-menu-divider {
    margin: 0; }
  .sso-menu a {
    color: inherit; }

.sso-menu br.ng-scope, .sso-menu small.ng-scope, .sso-menu span.ng-scope {
  line-height: 10px !important; }

.sso-header-task-icon {
  padding-top: 2px !important; }
  .sso-header-task-icon md-icon.md-cmixTasksTheme-theme.md-primary {
    color: #85858B; }
  .sso-header-task-icon .cmix-task-icon {
    text-shadow: none; }
    .sso-header-task-icon .cmix-task-icon .cmix-task-notification__count {
      color: #85858B !important;
      float: right;
      font-weight: bold; }
  .sso-header-task-icon md-icon {
    height: 25px; }
  .sso-header-task-icon md-icon.fa {
    font-size: 25px; }
  .sso-header-task-icon cmix-task-notification {
    height: 25px;
    width: 40px; }

.header-bar_main-left {
  position: absolute;
  right: 500px;
  background-color: #85858B;
  padding: 2px 5px 5px 5px;
  border: 1px solid #F1F2F3;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px; }
  .header-bar_main-left .outdated-warning {
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    font-size: 15px; }
    .theme-cmix .header-bar_main-left .outdated-warning {
      color: white; }
    .theme-marketview .header-bar_main-left .outdated-warning {
      color: white; }
  .header-bar_main-left .outdated-warning:before {
    margin-right: 0; }
  .header-bar_main-left .tooltip {
    border-radius: 4px;
    opacity: 1;
    color: white;
    padding: 10px;
    width: 250px;
    white-space: normal;
    height: auto;
    z-index: 9000; }
    .header-bar_main-left .tooltip .outdated-warning-tooltip {
      display: flex; }
    .header-bar_main-left .tooltip .owt-icon-container {
      padding-right: 8px; }
    .header-bar_main-left .tooltip .owt-content {
      flex: 1; }
    .theme-cmix .header-bar_main-left .tooltip {
      background-color: rgba(34, 35, 45, 0.8); }
      .theme-cmix .header-bar_main-left .tooltip .owt-icon-container span {
        color: white; }
      .theme-cmix .header-bar_main-left .tooltip a {
        color: #7fc5e8; }
    .theme-marketview .header-bar_main-left .tooltip {
      background-color: rgba(65, 64, 66, 0.8); }
      .theme-marketview .header-bar_main-left .tooltip .owt-icon-container span {
        color: white; }
      .theme-marketview .header-bar_main-left .tooltip a {
        color: #1c87e8; }

.header-bar_layout-options {
  display: inline-block;
  vertical-align: top;
  margin-left: 0;
  position: absolute;
  right: 0;
  top: 50px;
  z-index: 1;
  text-align: right; }
  .header-bar_layout-options .layout-options_options {
    background-color: white;
    border: 1px solid transparent;
    border-top-width: 0;
    border-bottom-right-radius: 4px;
    padding: 8px;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1); }
    .header-bar_layout-options .layout-options_options label {
      padding-left: 0;
      margin-bottom: 0;
      margin-right: 4px; }
    .header-bar_layout-options .layout-options_options .btn-group {
      margin-right: 4px; }
    .theme-cmix .header-bar_layout-options .layout-options_options {
      border-color: #DDE1E7; }
    .theme-marketview .header-bar_layout-options .layout-options_options {
      border-color: #DDE1E7; }
  .header-bar_layout-options .layout-options_toggle-btn {
    border-top-width: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0; }
    .header-bar_layout-options .layout-options_toggle-btn:before {
      transform: rotate(0deg);
      transition: transform 200ms ease; }
    .header-bar_layout-options .layout-options_toggle-btn.open:before {
      transform: rotate(180deg); }

.survey-menu_md-menu-content {
  width: auto;
  max-width: initial;
  height: auto;
  max-height: initial;
  padding: 0; }
  .survey-menu_md-menu-content .survey-menu-loading {
    text-align: center;
    padding: 1em; }
    .theme-cmix .survey-menu_md-menu-content .survey-menu-loading .icon-spinner, .theme-cmix .survey-menu_md-menu-content .survey-menu-loading .promise-indicator.pending {
      color: #1B365D; }
    .theme-marketview .survey-menu_md-menu-content .survey-menu-loading .icon-spinner, .theme-marketview .survey-menu_md-menu-content .survey-menu-loading .promise-indicator.pending {
      color: #122D59; }
  .survey-menu_md-menu-content .survey-menu-manage-link {
    color: #414149;
    font-size: 17px;
    height: 60px;
    vertical-align: middle;
    padding: 10px 0 0 12px;
    border-bottom: 1px solid #F1F2F3; }
  .survey-menu_md-menu-content .survey-menu-manage-link md-menu-item {
    display: block; }
  .survey-menu_md-menu-content .survey-menu-manage-link small {
    display: block;
    color: #85858B; }
  .survey-menu_md-menu-content .survey-menu-manage-link small:before {
    content: "";
    display: block; }
  .survey-menu_md-menu-content .survey-menu-link-list {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap; }
  .survey-menu_md-menu-content .survey-menu-links-column {
    width: 16em;
    padding: 15px 15px;
    border-right: 1px solid #F1F2F3; }
  .survey-menu_md-menu-content .survey-menu-link-header {
    color: #85858B;
    font-weight: normal;
    padding: 10px 0 10px 16px; }
  .survey-menu_md-menu-content md-menu-item {
    min-height: initial;
    height: auto; }
  .survey-menu_md-menu-content .survey-menu-link {
    white-space: nowrap;
    line-height: 2em;
    height: 2em; }
    .survey-menu_md-menu-content .survey-menu-link .link-title {
      width: calc(100% - 3em); }
    .survey-menu_md-menu-content .survey-menu-link .new {
      font-size: 0.7em;
      font-weight: bold;
      padding-left: 0.75em; }
    .survey-menu_md-menu-content .survey-menu-link .icon-external-link {
      line-height: 1;
      opacity: 0.422;
      padding-left: 0.75em; }
    .theme-cmix .survey-menu_md-menu-content .survey-menu-link {
      color: black; }
      .theme-cmix .survey-menu_md-menu-content .survey-menu-link:active {
        color: #2982b4; }
      .theme-cmix .survey-menu_md-menu-content .survey-menu-link.active {
        background-color: #EDF8FC;
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px; }
      .theme-cmix .survey-menu_md-menu-content .survey-menu-link .new {
        color: #52C1A3; }
      .theme-cmix .survey-menu_md-menu-content .survey-menu-link .icon-external-link {
        color: #22232D; }
    .theme-marketview .survey-menu_md-menu-content .survey-menu-link {
      color: black; }
      .theme-marketview .survey-menu_md-menu-content .survey-menu-link:active {
        color: #4c90ad; }
      .theme-marketview .survey-menu_md-menu-content .survey-menu-link.active {
        background-color: #EDF8FC;
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px; }
      .theme-marketview .survey-menu_md-menu-content .survey-menu-link .new {
        color: #5BB78A; }
      .theme-marketview .survey-menu_md-menu-content .survey-menu-link .icon-external-link {
        color: #414042; }
  .survey-menu_md-menu-content .survey-menu-error {
    padding: 2em; }

.sso-menu-list md-sidenav {
  width: 600px;
  min-width: 600px;
  background-color: #F7F8F8;
  transition: none !important; }

.sso-menu-list md-sidenav md-content {
  background-color: #F7F8F8;
  padding-top: 100px;
  padding-right: 20px;
  padding-left: 20px; }

.sso-menu-list .item {
  background-color: white;
  width: 558px;
  border: 1px solid #F1F2F3;
  height: 150px;
  position: relative;
  margin-bottom: 10px; }
  .sso-menu-list .item .sub-item {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center; }
  .sso-menu-list .item .icon {
    width: 120px; }
  .sso-menu-list .item .content {
    text-align: left;
    width: 370px;
    left: 120px; }
  .sso-menu-list .item .link {
    width: 60px;
    right: 0; }
    .sso-menu-list .item .link a {
      color: #85858B; }
    .sso-menu-list .item .link i {
      font-size: 20px; }

.BeaconFabButtonFrame {
  display: none; }

.BeaconContainer {
  top: 58px; }

aside#settings-bar {
  margin-top: 45px !important; }

md-backdrop#am-main-backdrop {
  background-color: white;
  opacity: 0; }

button.btn-left-nav-toggle, label.btn-left-nav-toggle.label-btn, md-dialog md-dialog-actions .btn-left-nav-toggle.md-cancel-button, md-dialog md-dialog-actions .btn-left-nav-toggle.md-confirm-button {
  position: absolute;
  right: -30px;
  top: 10px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  padding-left: 4px;
  padding-right: 4px;
  margin-right: 8px;
  font-size: 12px;
  line-height: 28px;
  width: 22px; }
  button.btn-left-nav-toggle:before, label.btn-left-nav-toggle.label-btn:before, md-dialog md-dialog-actions .btn-left-nav-toggle.md-cancel-button:before, md-dialog md-dialog-actions .btn-left-nav-toggle.md-confirm-button:before {
    margin: 0;
    transform: rotate(90deg);
    transition: transform 0.317s ease; }
  button.btn-left-nav-toggle.cln-collapsed:before, label.btn-left-nav-toggle.cln-collapsed.label-btn:before, md-dialog md-dialog-actions .btn-left-nav-toggle.cln-collapsed.md-cancel-button:before, md-dialog md-dialog-actions .btn-left-nav-toggle.cln-collapsed.md-confirm-button:before {
    transform: rotate(-90deg); }
  .theme-cmix button.btn-left-nav-toggle, .theme-cmix label.btn-left-nav-toggle.label-btn, .theme-cmix md-dialog md-dialog-actions .btn-left-nav-toggle.md-cancel-button, md-dialog md-dialog-actions .theme-cmix .btn-left-nav-toggle.md-cancel-button, .theme-cmix md-dialog md-dialog-actions .btn-left-nav-toggle.md-confirm-button, md-dialog md-dialog-actions .theme-cmix .btn-left-nav-toggle.md-confirm-button {
    background-color: #585863;
    border-color: #4c4c56; }
    .theme-cmix button.btn-left-nav-toggle:before, .theme-cmix label.btn-left-nav-toggle.label-btn:before, .theme-cmix md-dialog md-dialog-actions .btn-left-nav-toggle.md-cancel-button:before, md-dialog md-dialog-actions .theme-cmix .btn-left-nav-toggle.md-cancel-button:before, .theme-cmix md-dialog md-dialog-actions .btn-left-nav-toggle.md-confirm-button:before, md-dialog md-dialog-actions .theme-cmix .btn-left-nav-toggle.md-confirm-button:before {
      color: #FAFAFA; }
    .theme-cmix button.btn-left-nav-toggle:hover, .theme-cmix label.btn-left-nav-toggle.label-btn:hover, .theme-cmix md-dialog md-dialog-actions .btn-left-nav-toggle.md-cancel-button:hover, md-dialog md-dialog-actions .theme-cmix .btn-left-nav-toggle.md-cancel-button:hover, .theme-cmix md-dialog md-dialog-actions .btn-left-nav-toggle.md-confirm-button:hover, md-dialog md-dialog-actions .theme-cmix .btn-left-nav-toggle.md-confirm-button:hover, .theme-cmix button.btn-left-nav-toggle:focus, .theme-cmix label.btn-left-nav-toggle.label-btn:focus, .theme-cmix md-dialog md-dialog-actions .btn-left-nav-toggle.md-cancel-button:focus, md-dialog md-dialog-actions .theme-cmix .btn-left-nav-toggle.md-cancel-button:focus, .theme-cmix md-dialog md-dialog-actions .btn-left-nav-toggle.md-confirm-button:focus, md-dialog md-dialog-actions .theme-cmix .btn-left-nav-toggle.md-confirm-button:focus {
      background-color: #646471; }
  .theme-marketview button.btn-left-nav-toggle, .theme-marketview label.btn-left-nav-toggle.label-btn, .theme-marketview md-dialog md-dialog-actions .btn-left-nav-toggle.md-cancel-button, md-dialog md-dialog-actions .theme-marketview .btn-left-nav-toggle.md-cancel-button, .theme-marketview md-dialog md-dialog-actions .btn-left-nav-toggle.md-confirm-button, md-dialog md-dialog-actions .theme-marketview .btn-left-nav-toggle.md-confirm-button {
    background-color: #666666;
    border-color: #595959; }
    .theme-marketview button.btn-left-nav-toggle:before, .theme-marketview label.btn-left-nav-toggle.label-btn:before, .theme-marketview md-dialog md-dialog-actions .btn-left-nav-toggle.md-cancel-button:before, md-dialog md-dialog-actions .theme-marketview .btn-left-nav-toggle.md-cancel-button:before, .theme-marketview md-dialog md-dialog-actions .btn-left-nav-toggle.md-confirm-button:before, md-dialog md-dialog-actions .theme-marketview .btn-left-nav-toggle.md-confirm-button:before {
      color: #FAFAFA; }
    .theme-marketview button.btn-left-nav-toggle:hover, .theme-marketview label.btn-left-nav-toggle.label-btn:hover, .theme-marketview md-dialog md-dialog-actions .btn-left-nav-toggle.md-cancel-button:hover, md-dialog md-dialog-actions .theme-marketview .btn-left-nav-toggle.md-cancel-button:hover, .theme-marketview md-dialog md-dialog-actions .btn-left-nav-toggle.md-confirm-button:hover, md-dialog md-dialog-actions .theme-marketview .btn-left-nav-toggle.md-confirm-button:hover, .theme-marketview button.btn-left-nav-toggle:focus, .theme-marketview label.btn-left-nav-toggle.label-btn:focus, .theme-marketview md-dialog md-dialog-actions .btn-left-nav-toggle.md-cancel-button:focus, md-dialog md-dialog-actions .theme-marketview .btn-left-nav-toggle.md-cancel-button:focus, .theme-marketview md-dialog md-dialog-actions .btn-left-nav-toggle.md-confirm-button:focus, md-dialog md-dialog-actions .theme-marketview .btn-left-nav-toggle.md-confirm-button:focus {
      background-color: #737373; }

/*! Hint.css - v2.6.0 - 2019-04-27
* http://kushagragour.in/lab/hint/
* Copyright (c) 2019 Kushagra Gour */
/*-------------------------------------*\
	HINT.css - A CSS tooltip library
\*-------------------------------------*/
/**
 * HINT.css is a tooltip library made in pure CSS.
 *
 * Source: https://github.com/chinchang/hint.css
 * Demo: http://kushagragour.in/lab/hint/
 *
 */
/**
 * source: hint-core.scss
 *
 * Defines the basic styling for the tooltip.
 * Each tooltip is made of 2 parts:
 * 	1) body (:after)
 * 	2) arrow (:before)
 *
 * Classes added:
 * 	1) hint
 */
[class*="hint--"] {
  position: relative;
  display: inline-block;
  /**
	 * tooltip arrow
	 */
  /**
	 * tooltip body
	 */ }

[class*="hint--"]:before, [class*="hint--"]:after {
  position: absolute;
  transform: translate3d(0, 0, 0);
  visibility: hidden;
  opacity: 0;
  z-index: 1000000;
  pointer-events: none;
  transition: 0.3s ease;
  transition-delay: 0ms; }

[class*="hint--"]:hover:before, [class*="hint--"]:hover:after {
  visibility: visible;
  opacity: 1; }

[class*="hint--"]:hover:before, [class*="hint--"]:hover:after {
  transition-delay: 100ms; }

[class*="hint--"]:before {
  content: '';
  position: absolute;
  background: transparent;
  border: 6px solid transparent;
  z-index: 1000001; }

[class*="hint--"]:after {
  background: #383838;
  color: white;
  padding: 8px 10px;
  font-size: 12px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 12px;
  white-space: nowrap; }

[class*="hint--"][aria-label]:after {
  content: attr(aria-label); }

[class*="hint--"][data-hint]:after {
  content: attr(data-hint); }

[aria-label='']:before, [aria-label='']:after,
[data-hint='']:before,
[data-hint='']:after {
  display: none !important; }

/**
 * source: hint-position.scss
 *
 * Defines the positoning logic for the tooltips.
 *
 * Classes added:
 * 	1) hint--top
 * 	2) hint--bottom
 * 	3) hint--left
 * 	4) hint--right
 */
/**
 * set default color for tooltip arrows
 */
.hint--top-left:before {
  border-top-color: #383838; }

.hint--top-right:before {
  border-top-color: #383838; }

.hint--top:before {
  border-top-color: #383838; }

.hint--bottom-left:before {
  border-bottom-color: #383838; }

.hint--bottom-right:before {
  border-bottom-color: #383838; }

.hint--bottom:before {
  border-bottom-color: #383838; }

.hint--left:before {
  border-left-color: #383838; }

.hint--right:before {
  border-right-color: #383838; }

/**
 * top tooltip
 */
.hint--top:before {
  margin-bottom: -11px; }

.hint--top:before, .hint--top:after {
  bottom: 100%;
  left: 50%; }

.hint--top:before {
  left: calc(50% - 6px); }

.hint--top:after {
  transform: translateX(-50%); }

.hint--top:hover:before {
  transform: translateY(-8px); }

.hint--top:hover:after {
  transform: translateX(-50%) translateY(-8px); }

/**
 * bottom tooltip
 */
.hint--bottom:before {
  margin-top: -11px; }

.hint--bottom:before, .hint--bottom:after {
  top: 100%;
  left: 50%; }

.hint--bottom:before {
  left: calc(50% - 6px); }

.hint--bottom:after {
  transform: translateX(-50%); }

.hint--bottom:hover:before {
  transform: translateY(8px); }

.hint--bottom:hover:after {
  transform: translateX(-50%) translateY(8px); }

/**
 * right tooltip
 */
.hint--right:before {
  margin-left: -11px;
  margin-bottom: -6px; }

.hint--right:after {
  margin-bottom: -14px; }

.hint--right:before, .hint--right:after {
  left: 100%;
  bottom: 50%; }

.hint--right:hover:before {
  transform: translateX(8px); }

.hint--right:hover:after {
  transform: translateX(8px); }

/**
 * left tooltip
 */
.hint--left:before {
  margin-right: -11px;
  margin-bottom: -6px; }

.hint--left:after {
  margin-bottom: -14px; }

.hint--left:before, .hint--left:after {
  right: 100%;
  bottom: 50%; }

.hint--left:hover:before {
  transform: translateX(-8px); }

.hint--left:hover:after {
  transform: translateX(-8px); }

/**
 * top-left tooltip
 */
.hint--top-left:before {
  margin-bottom: -11px; }

.hint--top-left:before, .hint--top-left:after {
  bottom: 100%;
  left: 50%; }

.hint--top-left:before {
  left: calc(50% - 6px); }

.hint--top-left:after {
  transform: translateX(-100%); }

.hint--top-left:after {
  margin-left: 12px; }

.hint--top-left:hover:before {
  transform: translateY(-8px); }

.hint--top-left:hover:after {
  transform: translateX(-100%) translateY(-8px); }

/**
 * top-right tooltip
 */
.hint--top-right:before {
  margin-bottom: -11px; }

.hint--top-right:before, .hint--top-right:after {
  bottom: 100%;
  left: 50%; }

.hint--top-right:before {
  left: calc(50% - 6px); }

.hint--top-right:after {
  transform: translateX(0); }

.hint--top-right:after {
  margin-left: -12px; }

.hint--top-right:hover:before {
  transform: translateY(-8px); }

.hint--top-right:hover:after {
  transform: translateY(-8px); }

/**
 * bottom-left tooltip
 */
.hint--bottom-left:before {
  margin-top: -11px; }

.hint--bottom-left:before, .hint--bottom-left:after {
  top: 100%;
  left: 50%; }

.hint--bottom-left:before {
  left: calc(50% - 6px); }

.hint--bottom-left:after {
  transform: translateX(-100%); }

.hint--bottom-left:after {
  margin-left: 12px; }

.hint--bottom-left:hover:before {
  transform: translateY(8px); }

.hint--bottom-left:hover:after {
  transform: translateX(-100%) translateY(8px); }

/**
 * bottom-right tooltip
 */
.hint--bottom-right:before {
  margin-top: -11px; }

.hint--bottom-right:before, .hint--bottom-right:after {
  top: 100%;
  left: 50%; }

.hint--bottom-right:before {
  left: calc(50% - 6px); }

.hint--bottom-right:after {
  transform: translateX(0); }

.hint--bottom-right:after {
  margin-left: -12px; }

.hint--bottom-right:hover:before {
  transform: translateY(8px); }

.hint--bottom-right:hover:after {
  transform: translateY(8px); }

/**
 * source: hint-sizes.scss
 *
 * Defines width restricted tooltips that can span
 * across multiple lines.
 *
 * Classes added:
 * 	1) hint--small
 * 	2) hint--medium
 * 	3) hint--large
 *
 */
.hint--small:after,
.hint--medium:after,
.hint--large:after {
  white-space: normal;
  line-height: 1.4em;
  word-wrap: break-word; }

.hint--small:after {
  width: 80px; }

.hint--medium:after {
  width: 150px; }

.hint--large:after {
  width: 300px; }

/**
 * source: hint-theme.scss
 *
 * Defines basic theme for tooltips.
 *
 */
[class*="hint--"] {
  /**
	 * tooltip body
	 */ }

[class*="hint--"]:after {
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px; }

/**
 * source: hint-color-types.scss
 *
 * Contains tooltips of various types based on color differences.
 *
 * Classes added:
 * 	1) hint--error
 * 	2) hint--warning
 * 	3) hint--info
 * 	4) hint--success
 *
 */
/**
 * Error
 */
.hint--error:after {
  background-color: #b34e4d;
  text-shadow: 0 -1px 0px #592726; }

.hint--error.hint--top-left:before {
  border-top-color: #b34e4d; }

.hint--error.hint--top-right:before {
  border-top-color: #b34e4d; }

.hint--error.hint--top:before {
  border-top-color: #b34e4d; }

.hint--error.hint--bottom-left:before {
  border-bottom-color: #b34e4d; }

.hint--error.hint--bottom-right:before {
  border-bottom-color: #b34e4d; }

.hint--error.hint--bottom:before {
  border-bottom-color: #b34e4d; }

.hint--error.hint--left:before {
  border-left-color: #b34e4d; }

.hint--error.hint--right:before {
  border-right-color: #b34e4d; }

/**
 * Warning
 */
.hint--warning:after {
  background-color: #c09854;
  text-shadow: 0 -1px 0px #6c5328; }

.hint--warning.hint--top-left:before {
  border-top-color: #c09854; }

.hint--warning.hint--top-right:before {
  border-top-color: #c09854; }

.hint--warning.hint--top:before {
  border-top-color: #c09854; }

.hint--warning.hint--bottom-left:before {
  border-bottom-color: #c09854; }

.hint--warning.hint--bottom-right:before {
  border-bottom-color: #c09854; }

.hint--warning.hint--bottom:before {
  border-bottom-color: #c09854; }

.hint--warning.hint--left:before {
  border-left-color: #c09854; }

.hint--warning.hint--right:before {
  border-right-color: #c09854; }

/**
 * Info
 */
.hint--info:after {
  background-color: #3986ac;
  text-shadow: 0 -1px 0px #1a3c4d; }

.hint--info.hint--top-left:before {
  border-top-color: #3986ac; }

.hint--info.hint--top-right:before {
  border-top-color: #3986ac; }

.hint--info.hint--top:before {
  border-top-color: #3986ac; }

.hint--info.hint--bottom-left:before {
  border-bottom-color: #3986ac; }

.hint--info.hint--bottom-right:before {
  border-bottom-color: #3986ac; }

.hint--info.hint--bottom:before {
  border-bottom-color: #3986ac; }

.hint--info.hint--left:before {
  border-left-color: #3986ac; }

.hint--info.hint--right:before {
  border-right-color: #3986ac; }

/**
 * Success
 */
.hint--success:after {
  background-color: #458746;
  text-shadow: 0 -1px 0px #1a321a; }

.hint--success.hint--top-left:before {
  border-top-color: #458746; }

.hint--success.hint--top-right:before {
  border-top-color: #458746; }

.hint--success.hint--top:before {
  border-top-color: #458746; }

.hint--success.hint--bottom-left:before {
  border-bottom-color: #458746; }

.hint--success.hint--bottom-right:before {
  border-bottom-color: #458746; }

.hint--success.hint--bottom:before {
  border-bottom-color: #458746; }

.hint--success.hint--left:before {
  border-left-color: #458746; }

.hint--success.hint--right:before {
  border-right-color: #458746; }

/**
 * source: hint-always.scss
 *
 * Defines a persisted tooltip which shows always.
 *
 * Classes added:
 * 	1) hint--always
 *
 */
.hint--always:after, .hint--always:before {
  opacity: 1;
  visibility: visible; }

.hint--always.hint--top:before {
  transform: translateY(-8px); }

.hint--always.hint--top:after {
  transform: translateX(-50%) translateY(-8px); }

.hint--always.hint--top-left:before {
  transform: translateY(-8px); }

.hint--always.hint--top-left:after {
  transform: translateX(-100%) translateY(-8px); }

.hint--always.hint--top-right:before {
  transform: translateY(-8px); }

.hint--always.hint--top-right:after {
  transform: translateY(-8px); }

.hint--always.hint--bottom:before {
  transform: translateY(8px); }

.hint--always.hint--bottom:after {
  transform: translateX(-50%) translateY(8px); }

.hint--always.hint--bottom-left:before {
  transform: translateY(8px); }

.hint--always.hint--bottom-left:after {
  transform: translateX(-100%) translateY(8px); }

.hint--always.hint--bottom-right:before {
  transform: translateY(8px); }

.hint--always.hint--bottom-right:after {
  transform: translateY(8px); }

.hint--always.hint--left:before {
  transform: translateX(-8px); }

.hint--always.hint--left:after {
  transform: translateX(-8px); }

.hint--always.hint--right:before {
  transform: translateX(8px); }

.hint--always.hint--right:after {
  transform: translateX(8px); }

/**
 * source: hint-rounded.scss
 *
 * Defines rounded corner tooltips.
 *
 * Classes added:
 * 	1) hint--rounded
 *
 */
.hint--rounded:after {
  border-radius: 4px; }

/**
 * source: hint-effects.scss
 *
 * Defines various transition effects for the tooltips.
 *
 * Classes added:
 * 	1) hint--no-animate
 * 	2) hint--bounce
 *
 */
.hint--no-animate:before, .hint--no-animate:after {
  transition-duration: 0ms; }

.hint--bounce:before, .hint--bounce:after {
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24); }

.hint--no-shadow:before, .hint--no-shadow:after {
  text-shadow: initial;
  box-shadow: initial; }

.sso-header-nav {
  position: fixed;
  width: 100%;
  z-index: 52;
  top: 0; }

.sso-header {
  width: 100%;
  padding: 0;
  margin: 0;
  display: flex;
  background-color: #fff;
  height: 50px;
  border-bottom: 1px solid #F1F2F3; }
  .sso-header::after {
    content: "";
    display: table;
    clear: both; }
  .sso-header a {
    box-sizing: border-box;
    text-decoration: none;
    color: #85858B; }
  .sso-header em {
    font-style: normal;
    color: #85858B; }

.md-ripple-container {
  background-color: transparent !important;
  -webkit-mask-image: none !important; }

.sso-header li {
  display: inline-block;
  float: left;
  padding: 0 15px 0 15px;
  vertical-align: middle; }
  .sso-header li.divider {
    padding: 0; }
  .sso-header li button, .sso-header li label.label-btn, .sso-header li md-dialog md-dialog-actions .md-cancel-button, md-dialog md-dialog-actions .sso-header li .md-cancel-button, .sso-header li md-dialog md-dialog-actions .md-confirm-button, md-dialog md-dialog-actions .sso-header li .md-confirm-button {
    margin-top: 6px;
    font-size: 15px;
    cursor: pointer; }
    .sso-header li button.sso-menu-btn-item, .sso-header li label.sso-menu-btn-item.label-btn, .sso-header li md-dialog md-dialog-actions .sso-menu-btn-item.md-cancel-button, md-dialog md-dialog-actions .sso-header li .sso-menu-btn-item.md-cancel-button, .sso-header li md-dialog md-dialog-actions .sso-menu-btn-item.md-confirm-button, md-dialog md-dialog-actions .sso-header li .sso-menu-btn-item.md-confirm-button {
      padding: 0 !important;
      margin: 0 !important;
      text-transform: none !important;
      color: #85858B !important; }
  .sso-header li button:focus, .sso-header li label.label-btn:focus, .sso-header li md-dialog md-dialog-actions .md-cancel-button:focus, md-dialog md-dialog-actions .sso-header li .md-cancel-button:focus, .sso-header li md-dialog md-dialog-actions .md-confirm-button:focus, md-dialog md-dialog-actions .sso-header li .md-confirm-button:focus {
    outline: 0; }
  .sso-header li a {
    font-size: 15px; }
  .sso-header li a, .sso-header li em {
    display: table-cell;
    vertical-align: middle; }
  .sso-header li a img {
    vertical-align: middle; }
  .sso-header li.first-element-right {
    text-align: right;
    margin-left: auto; }
  .sso-header li.element-right {
    text-align: right; }
  .sso-header li em {
    font-size: 15px; }
    .sso-header li em.title {
      overflow: hidden;
      text-overflow: ellipsis;
      display: block;
      line-height: 50px; }

.sso-header li > * {
  display: inline-block;
  height: 50px; }

.sso-header li.current > * {
  color: #3EA8DD;
  height: 46px; }

.sso-header li.can-hover, .sso-header li.can-hover a {
  height: 46px; }

.sso-header .can-hover a:hover {
  height: 50px;
  color: #3EA8DD;
  border-bottom: 4px solid #3EA8DD; }

.sso-header img:hover {
  fill: #3EA8DD; }

.sso-header .right-separator {
  border-right: 1px solid #F1F2F3; }

.sso-header .btn-new-survey {
  color: #fff;
  background-color: #3EA8DD;
  border: 1px solid #3EA8DD;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  height: 36px;
  padding: 0 20px 0 20px; }

.sso-header .btn-new-survey:hover {
  color: #85858B;
  background-color: #fff;
  border: 1px solid #85858B; }

.sso-header .btn-user {
  margin-top: 10px;
  color: #fff;
  background-color: #85858B;
  border: 1px solid #85858B;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  height: 30px;
  line-height: 0; }

.sso-header .btn-icon {
  font-size: 26px;
  color: #85858B; }

.sso-header .item-arrow-left {
  margin-right: 10px; }

.sso-header .item-arrow-right {
  margin-left: 10px; }

.sso-header .help-title {
  margin-left: 5px;
  background-color: #F1F2F3;
  color: #000;
  padding: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px; }

.sso-header .am-item-user {
  font-weight: bold;
  text-transform: none;
  padding: 5px 8px;
  margin-top: 10px !important;
  min-height: 0;
  min-width: 0;
  color: #fff !important;
  background-color: #85858B !important;
  border: 1px solid #85858B !important;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  height: 30px;
  line-height: 0; }

.sso-header .am-btn-icon-item {
  min-width: 25px;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0; }

.sso-header-item-current {
  color: #3EA8DD !important;
  text-transform: none;
  padding: 0;
  margin: 0; }

.sso-header-item-current:not([disabled]):hover {
  background-color: white; }

.sso-header-item-current:active {
  background-color: white; }

.sso-header-item-icon:not([disabled]):hover {
  background-color: white; }

.sso-header-item-icon:active {
  background-color: white; }

#menu_container_0, #menu_container_1, #menu_container_2 {
  margin-top: 50px;
  transition: none !important; }

.sso-menu {
  padding: 0 !important; }
  .sso-menu .user-hello {
    color: #414149 !important;
    font-size: 17px;
    padding-top: 20px;
    font-weight: bold;
    background-color: #E7EAED;
    height: 60px;
    text-align: center;
    vertical-align: middle; }
  .sso-menu small {
    padding-top: 10px;
    padding-bottom: 5px;
    display: block; }
  .sso-menu md-menu-item {
    min-height: initial;
    height: auto; }
  .sso-menu md-menu-divider {
    margin: 0; }
  .sso-menu a {
    color: inherit; }

.sso-menu br.ng-scope, .sso-menu small.ng-scope, .sso-menu span.ng-scope {
  line-height: 10px !important; }

.sso-header-task-icon {
  padding-top: 2px !important; }
  .sso-header-task-icon md-icon.md-cmixTasksTheme-theme.md-primary {
    color: #85858B; }
  .sso-header-task-icon .cmix-task-icon {
    text-shadow: none; }
    .sso-header-task-icon .cmix-task-icon .cmix-task-notification__count {
      color: #85858B !important;
      float: right;
      font-weight: bold; }
  .sso-header-task-icon md-icon {
    height: 25px; }
  .sso-header-task-icon md-icon.fa {
    font-size: 25px; }
  .sso-header-task-icon cmix-task-notification {
    height: 25px;
    width: 40px; }

.header-bar_main-left {
  position: absolute;
  right: 500px;
  background-color: #85858B;
  padding: 2px 5px 5px 5px;
  border: 1px solid #F1F2F3;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px; }
  .header-bar_main-left .outdated-warning {
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    font-size: 15px; }
    .theme-cmix .header-bar_main-left .outdated-warning {
      color: white; }
    .theme-marketview .header-bar_main-left .outdated-warning {
      color: white; }
  .header-bar_main-left .outdated-warning:before {
    margin-right: 0; }
  .header-bar_main-left .tooltip {
    border-radius: 4px;
    opacity: 1;
    color: white;
    padding: 10px;
    width: 250px;
    white-space: normal;
    height: auto;
    z-index: 9000; }
    .header-bar_main-left .tooltip .outdated-warning-tooltip {
      display: flex; }
    .header-bar_main-left .tooltip .owt-icon-container {
      padding-right: 8px; }
    .header-bar_main-left .tooltip .owt-content {
      flex: 1; }
    .theme-cmix .header-bar_main-left .tooltip {
      background-color: rgba(34, 35, 45, 0.8); }
      .theme-cmix .header-bar_main-left .tooltip .owt-icon-container span {
        color: white; }
      .theme-cmix .header-bar_main-left .tooltip a {
        color: #7fc5e8; }
    .theme-marketview .header-bar_main-left .tooltip {
      background-color: rgba(65, 64, 66, 0.8); }
      .theme-marketview .header-bar_main-left .tooltip .owt-icon-container span {
        color: white; }
      .theme-marketview .header-bar_main-left .tooltip a {
        color: #1c87e8; }

.header-bar_layout-options {
  display: inline-block;
  vertical-align: top;
  margin-left: 0;
  position: absolute;
  right: 0;
  top: 50px;
  z-index: 1;
  text-align: right; }
  .header-bar_layout-options .layout-options_options {
    background-color: white;
    border: 1px solid transparent;
    border-top-width: 0;
    border-bottom-right-radius: 4px;
    padding: 8px;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1); }
    .header-bar_layout-options .layout-options_options label {
      padding-left: 0;
      margin-bottom: 0;
      margin-right: 4px; }
    .header-bar_layout-options .layout-options_options .btn-group {
      margin-right: 4px; }
    .theme-cmix .header-bar_layout-options .layout-options_options {
      border-color: #DDE1E7; }
    .theme-marketview .header-bar_layout-options .layout-options_options {
      border-color: #DDE1E7; }
  .header-bar_layout-options .layout-options_toggle-btn {
    border-top-width: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0; }
    .header-bar_layout-options .layout-options_toggle-btn:before {
      transform: rotate(0deg);
      transition: transform 200ms ease; }
    .header-bar_layout-options .layout-options_toggle-btn.open:before {
      transform: rotate(180deg); }

.survey-menu_md-menu-content {
  width: auto;
  max-width: initial;
  height: auto;
  max-height: initial;
  padding: 0; }
  .survey-menu_md-menu-content .survey-menu-loading {
    text-align: center;
    padding: 1em; }
    .theme-cmix .survey-menu_md-menu-content .survey-menu-loading .icon-spinner, .theme-cmix .survey-menu_md-menu-content .survey-menu-loading .promise-indicator.pending {
      color: #1B365D; }
    .theme-marketview .survey-menu_md-menu-content .survey-menu-loading .icon-spinner, .theme-marketview .survey-menu_md-menu-content .survey-menu-loading .promise-indicator.pending {
      color: #122D59; }
  .survey-menu_md-menu-content .survey-menu-manage-link {
    color: #414149;
    font-size: 17px;
    height: 60px;
    vertical-align: middle;
    padding: 10px 0 0 12px;
    border-bottom: 1px solid #F1F2F3; }
  .survey-menu_md-menu-content .survey-menu-manage-link md-menu-item {
    display: block; }
  .survey-menu_md-menu-content .survey-menu-manage-link small {
    display: block;
    color: #85858B; }
  .survey-menu_md-menu-content .survey-menu-manage-link small:before {
    content: "";
    display: block; }
  .survey-menu_md-menu-content .survey-menu-link-list {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap; }
  .survey-menu_md-menu-content .survey-menu-links-column {
    width: 16em;
    padding: 15px 15px;
    border-right: 1px solid #F1F2F3; }
  .survey-menu_md-menu-content .survey-menu-link-header {
    color: #85858B;
    font-weight: normal;
    padding: 10px 0 10px 16px; }
  .survey-menu_md-menu-content md-menu-item {
    min-height: initial;
    height: auto; }
  .survey-menu_md-menu-content .survey-menu-link {
    white-space: nowrap;
    line-height: 2em;
    height: 2em; }
    .survey-menu_md-menu-content .survey-menu-link .link-title {
      width: calc(100% - 3em); }
    .survey-menu_md-menu-content .survey-menu-link .new {
      font-size: 0.7em;
      font-weight: bold;
      padding-left: 0.75em; }
    .survey-menu_md-menu-content .survey-menu-link .icon-external-link {
      line-height: 1;
      opacity: 0.422;
      padding-left: 0.75em; }
    .theme-cmix .survey-menu_md-menu-content .survey-menu-link {
      color: black; }
      .theme-cmix .survey-menu_md-menu-content .survey-menu-link:active {
        color: #2982b4; }
      .theme-cmix .survey-menu_md-menu-content .survey-menu-link.active {
        background-color: #EDF8FC;
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px; }
      .theme-cmix .survey-menu_md-menu-content .survey-menu-link .new {
        color: #52C1A3; }
      .theme-cmix .survey-menu_md-menu-content .survey-menu-link .icon-external-link {
        color: #22232D; }
    .theme-marketview .survey-menu_md-menu-content .survey-menu-link {
      color: black; }
      .theme-marketview .survey-menu_md-menu-content .survey-menu-link:active {
        color: #4c90ad; }
      .theme-marketview .survey-menu_md-menu-content .survey-menu-link.active {
        background-color: #EDF8FC;
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px; }
      .theme-marketview .survey-menu_md-menu-content .survey-menu-link .new {
        color: #5BB78A; }
      .theme-marketview .survey-menu_md-menu-content .survey-menu-link .icon-external-link {
        color: #414042; }
  .survey-menu_md-menu-content .survey-menu-error {
    padding: 2em; }

.sso-menu-list md-sidenav {
  width: 600px;
  min-width: 600px;
  background-color: #F7F8F8;
  transition: none !important; }

.sso-menu-list md-sidenav md-content {
  background-color: #F7F8F8;
  padding-top: 100px;
  padding-right: 20px;
  padding-left: 20px; }

.sso-menu-list .item {
  background-color: white;
  width: 558px;
  border: 1px solid #F1F2F3;
  height: 150px;
  position: relative;
  margin-bottom: 10px; }
  .sso-menu-list .item .sub-item {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center; }
  .sso-menu-list .item .icon {
    width: 120px; }
  .sso-menu-list .item .content {
    text-align: left;
    width: 370px;
    left: 120px; }
  .sso-menu-list .item .link {
    width: 60px;
    right: 0; }
    .sso-menu-list .item .link a {
      color: #85858B; }
    .sso-menu-list .item .link i {
      font-size: 20px; }

.BeaconFabButtonFrame {
  display: none; }

.BeaconContainer {
  top: 58px; }

aside#settings-bar {
  margin-top: 45px !important; }

md-backdrop#am-main-backdrop {
  background-color: white;
  opacity: 0; }

button.btn-left-nav-toggle, label.btn-left-nav-toggle.label-btn, md-dialog md-dialog-actions .btn-left-nav-toggle.md-cancel-button, md-dialog md-dialog-actions .btn-left-nav-toggle.md-confirm-button {
  position: absolute;
  right: -30px;
  top: 10px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  padding-left: 4px;
  padding-right: 4px;
  margin-right: 8px;
  font-size: 12px;
  line-height: 28px;
  width: 22px; }
  button.btn-left-nav-toggle:before, label.btn-left-nav-toggle.label-btn:before, md-dialog md-dialog-actions .btn-left-nav-toggle.md-cancel-button:before, md-dialog md-dialog-actions .btn-left-nav-toggle.md-confirm-button:before {
    margin: 0;
    transform: rotate(90deg);
    transition: transform 0.317s ease; }
  button.btn-left-nav-toggle.cln-collapsed:before, label.btn-left-nav-toggle.cln-collapsed.label-btn:before, md-dialog md-dialog-actions .btn-left-nav-toggle.cln-collapsed.md-cancel-button:before, md-dialog md-dialog-actions .btn-left-nav-toggle.cln-collapsed.md-confirm-button:before {
    transform: rotate(-90deg); }
  .theme-cmix button.btn-left-nav-toggle, .theme-cmix label.btn-left-nav-toggle.label-btn, .theme-cmix md-dialog md-dialog-actions .btn-left-nav-toggle.md-cancel-button, md-dialog md-dialog-actions .theme-cmix .btn-left-nav-toggle.md-cancel-button, .theme-cmix md-dialog md-dialog-actions .btn-left-nav-toggle.md-confirm-button, md-dialog md-dialog-actions .theme-cmix .btn-left-nav-toggle.md-confirm-button {
    background-color: #585863;
    border-color: #4c4c56; }
    .theme-cmix button.btn-left-nav-toggle:before, .theme-cmix label.btn-left-nav-toggle.label-btn:before, .theme-cmix md-dialog md-dialog-actions .btn-left-nav-toggle.md-cancel-button:before, md-dialog md-dialog-actions .theme-cmix .btn-left-nav-toggle.md-cancel-button:before, .theme-cmix md-dialog md-dialog-actions .btn-left-nav-toggle.md-confirm-button:before, md-dialog md-dialog-actions .theme-cmix .btn-left-nav-toggle.md-confirm-button:before {
      color: #FAFAFA; }
    .theme-cmix button.btn-left-nav-toggle:hover, .theme-cmix label.btn-left-nav-toggle.label-btn:hover, .theme-cmix md-dialog md-dialog-actions .btn-left-nav-toggle.md-cancel-button:hover, md-dialog md-dialog-actions .theme-cmix .btn-left-nav-toggle.md-cancel-button:hover, .theme-cmix md-dialog md-dialog-actions .btn-left-nav-toggle.md-confirm-button:hover, md-dialog md-dialog-actions .theme-cmix .btn-left-nav-toggle.md-confirm-button:hover, .theme-cmix button.btn-left-nav-toggle:focus, .theme-cmix label.btn-left-nav-toggle.label-btn:focus, .theme-cmix md-dialog md-dialog-actions .btn-left-nav-toggle.md-cancel-button:focus, md-dialog md-dialog-actions .theme-cmix .btn-left-nav-toggle.md-cancel-button:focus, .theme-cmix md-dialog md-dialog-actions .btn-left-nav-toggle.md-confirm-button:focus, md-dialog md-dialog-actions .theme-cmix .btn-left-nav-toggle.md-confirm-button:focus {
      background-color: #646471; }
  .theme-marketview button.btn-left-nav-toggle, .theme-marketview label.btn-left-nav-toggle.label-btn, .theme-marketview md-dialog md-dialog-actions .btn-left-nav-toggle.md-cancel-button, md-dialog md-dialog-actions .theme-marketview .btn-left-nav-toggle.md-cancel-button, .theme-marketview md-dialog md-dialog-actions .btn-left-nav-toggle.md-confirm-button, md-dialog md-dialog-actions .theme-marketview .btn-left-nav-toggle.md-confirm-button {
    background-color: #666666;
    border-color: #595959; }
    .theme-marketview button.btn-left-nav-toggle:before, .theme-marketview label.btn-left-nav-toggle.label-btn:before, .theme-marketview md-dialog md-dialog-actions .btn-left-nav-toggle.md-cancel-button:before, md-dialog md-dialog-actions .theme-marketview .btn-left-nav-toggle.md-cancel-button:before, .theme-marketview md-dialog md-dialog-actions .btn-left-nav-toggle.md-confirm-button:before, md-dialog md-dialog-actions .theme-marketview .btn-left-nav-toggle.md-confirm-button:before {
      color: #FAFAFA; }
    .theme-marketview button.btn-left-nav-toggle:hover, .theme-marketview label.btn-left-nav-toggle.label-btn:hover, .theme-marketview md-dialog md-dialog-actions .btn-left-nav-toggle.md-cancel-button:hover, md-dialog md-dialog-actions .theme-marketview .btn-left-nav-toggle.md-cancel-button:hover, .theme-marketview md-dialog md-dialog-actions .btn-left-nav-toggle.md-confirm-button:hover, md-dialog md-dialog-actions .theme-marketview .btn-left-nav-toggle.md-confirm-button:hover, .theme-marketview button.btn-left-nav-toggle:focus, .theme-marketview label.btn-left-nav-toggle.label-btn:focus, .theme-marketview md-dialog md-dialog-actions .btn-left-nav-toggle.md-cancel-button:focus, md-dialog md-dialog-actions .theme-marketview .btn-left-nav-toggle.md-cancel-button:focus, .theme-marketview md-dialog md-dialog-actions .btn-left-nav-toggle.md-confirm-button:focus, md-dialog md-dialog-actions .theme-marketview .btn-left-nav-toggle.md-confirm-button:focus {
      background-color: #737373; }

.left-nav {
  position: fixed;
  color: white;
  top: 50px;
  bottom: 0;
  transform: translateX(-320px);
  z-index: 51;
  transition: transform 0.317s ease, z-index 0.317s step-end; }
  .theme-cmix .left-nav {
    background-color: #585863; }
  .theme-marketview .left-nav {
    background-color: #666666; }
  .left-nav.visible {
    transform: translateX(0);
    transition: transform 0.317s ease, z-index 0.317s step-start; }
  .left-nav.disabled-state .left-nav_content {
    height: 100%; }
  .left-nav.disabled-state .survey-tree .surveyTreeSectionDraggableHanle,
  .left-nav.disabled-state .survey-tree .surveyTreePageDraggableHandle,
  .left-nav.disabled-state .survey-tree .surveyTreeQuestionDraggableHandle,
  .left-nav.disabled-state .survey-tree .icon-more-options,
  .left-nav.disabled-state .survey-tree button.icon-add,
  .left-nav.disabled-state .survey-tree label.icon-add.label-btn,
  .left-nav.disabled-state .survey-tree md-dialog md-dialog-actions .icon-add.md-cancel-button,
  md-dialog md-dialog-actions .left-nav.disabled-state .survey-tree .icon-add.md-cancel-button,
  .left-nav.disabled-state .survey-tree md-dialog md-dialog-actions .icon-add.md-confirm-button,
  md-dialog md-dialog-actions .left-nav.disabled-state .survey-tree .icon-add.md-confirm-button {
    display: none !important; }
  .left-nav.disabled-state .survey-tree .header_actions {
    margin-right: 0.2em; }
  .left-nav.disabled-state .survey-tree .survey-tree_question {
    margin-bottom: 0.15em; }
  .left-nav.disabled-state .left-nav_actions {
    display: none !important; }

.left-nav_content {
  width: 320px;
  height: calc(100% - 48px);
  overflow: auto; }

.left-nav__options-list > button, .left-nav__options-list > label.label-btn, md-dialog md-dialog-actions .left-nav__options-list > .md-cancel-button, md-dialog md-dialog-actions .left-nav__options-list > .md-confirm-button,
.left-nav__options-list .option_with-delete_main-btn {
  width: 100%;
  text-align: left;
  border-bottom-width: 0;
  white-space: normal;
  position: relative; }
  .left-nav__options-list > button span, .left-nav__options-list > label.label-btn span, md-dialog md-dialog-actions .left-nav__options-list > .md-cancel-button span, md-dialog md-dialog-actions .left-nav__options-list > .md-confirm-button span,
  .left-nav__options-list > button strong,
  .left-nav__options-list > label.label-btn strong,
  md-dialog md-dialog-actions .left-nav__options-list > .md-cancel-button strong,
  md-dialog md-dialog-actions .left-nav__options-list > .md-confirm-button strong,
  .left-nav__options-list .option_with-delete_main-btn span,
  .left-nav__options-list .option_with-delete_main-btn strong {
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis; }
  .left-nav__options-list > button + button, .left-nav__options-list > label.label-btn + button, md-dialog md-dialog-actions .left-nav__options-list > .md-cancel-button + button, md-dialog md-dialog-actions .left-nav__options-list > .md-confirm-button + button, .left-nav__options-list > button + label.label-btn, .left-nav__options-list > label.label-btn + label.label-btn, md-dialog md-dialog-actions .left-nav__options-list > .md-cancel-button + label.label-btn, md-dialog md-dialog-actions .left-nav__options-list > .md-confirm-button + label.label-btn, md-dialog md-dialog-actions .left-nav__options-list > button + .md-cancel-button, md-dialog md-dialog-actions .left-nav__options-list > label.label-btn + .md-cancel-button, md-dialog md-dialog-actions .left-nav__options-list > .md-cancel-button + .md-cancel-button, md-dialog md-dialog-actions .left-nav__options-list > .md-confirm-button + .md-cancel-button, md-dialog md-dialog-actions .left-nav__options-list > button + .md-confirm-button, md-dialog md-dialog-actions .left-nav__options-list > label.label-btn + .md-confirm-button, md-dialog md-dialog-actions .left-nav__options-list > .md-cancel-button + .md-confirm-button, md-dialog md-dialog-actions .left-nav__options-list > .md-confirm-button + .md-confirm-button,
  .left-nav__options-list .option_with-delete_main-btn + button,
  .left-nav__options-list .option_with-delete_main-btn + label.label-btn,
  .left-nav__options-list md-dialog md-dialog-actions .option_with-delete_main-btn + .md-cancel-button,
  md-dialog md-dialog-actions .left-nav__options-list .option_with-delete_main-btn + .md-cancel-button,
  .left-nav__options-list md-dialog md-dialog-actions .option_with-delete_main-btn + .md-confirm-button,
  md-dialog md-dialog-actions .left-nav__options-list .option_with-delete_main-btn + .md-confirm-button {
    border-radius: 0;
    margin-left: 0 !important; }
  .left-nav__options-list > button:first-child, .left-nav__options-list > label.label-btn:first-child, md-dialog md-dialog-actions .left-nav__options-list > .md-cancel-button:first-child, md-dialog md-dialog-actions .left-nav__options-list > .md-confirm-button:first-child,
  .left-nav__options-list .option_with-delete_main-btn:first-child {
    border-radius: 4px 4px 0 0; }
  .left-nav__options-list > button:last-child, .left-nav__options-list > label.label-btn:last-child, md-dialog md-dialog-actions .left-nav__options-list > .md-cancel-button:last-child, md-dialog md-dialog-actions .left-nav__options-list > .md-confirm-button:last-child,
  .left-nav__options-list .option_with-delete_main-btn:last-child {
    border-bottom-width: 1px;
    border-radius: 0 0 4px 4px; }
  .left-nav__options-list > button:only-child, .left-nav__options-list > label.label-btn:only-child, md-dialog md-dialog-actions .left-nav__options-list > .md-cancel-button:only-child, md-dialog md-dialog-actions .left-nav__options-list > .md-confirm-button:only-child,
  .left-nav__options-list .option_with-delete_main-btn:only-child {
    border-radius: 4px; }

.left-nav__options-list .option_with-delete {
  position: relative; }
  .left-nav__options-list .option_with-delete button.option_with-delete_main-btn, .left-nav__options-list .option_with-delete label.option_with-delete_main-btn.label-btn, .left-nav__options-list .option_with-delete md-dialog md-dialog-actions .option_with-delete_main-btn.md-cancel-button, md-dialog md-dialog-actions .left-nav__options-list .option_with-delete .option_with-delete_main-btn.md-cancel-button, .left-nav__options-list .option_with-delete md-dialog md-dialog-actions .option_with-delete_main-btn.md-confirm-button, md-dialog md-dialog-actions .left-nav__options-list .option_with-delete .option_with-delete_main-btn.md-confirm-button {
    border-bottom-width: 0;
    padding-right: 30px; }
    .left-nav__options-list .option_with-delete button.option_with-delete_main-btn:before, .left-nav__options-list .option_with-delete label.option_with-delete_main-btn.label-btn:before, .left-nav__options-list .option_with-delete md-dialog md-dialog-actions .option_with-delete_main-btn.md-cancel-button:before, md-dialog md-dialog-actions .left-nav__options-list .option_with-delete .option_with-delete_main-btn.md-cancel-button:before, .left-nav__options-list .option_with-delete md-dialog md-dialog-actions .option_with-delete_main-btn.md-confirm-button:before, md-dialog md-dialog-actions .left-nav__options-list .option_with-delete .option_with-delete_main-btn.md-confirm-button:before {
      right: 16px; }
  .left-nav__options-list .option_with-delete button.clear, .left-nav__options-list .option_with-delete label.clear.label-btn, .left-nav__options-list .option_with-delete md-autocomplete .md-show-clear-button button, md-autocomplete .md-show-clear-button .left-nav__options-list .option_with-delete button, .left-nav__options-list .option_with-delete md-autocomplete .md-show-clear-button label.label-btn, md-autocomplete .md-show-clear-button .left-nav__options-list .option_with-delete label.label-btn, .left-nav__options-list .option_with-delete md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .left-nav__options-list .option_with-delete .md-confirm-button, .left-nav__options-list .option_with-delete md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-confirm-button, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .left-nav__options-list .option_with-delete .md-confirm-button, .left-nav__options-list .option_with-delete md-dialog .close-dialog, md-dialog .left-nav__options-list .option_with-delete .close-dialog, .left-nav__options-list .option_with-delete md-dialog md-dialog-actions .md-cancel-button, md-dialog md-dialog-actions .left-nav__options-list .option_with-delete .md-cancel-button, .left-nav__options-list .option_with-delete md-dialog md-dialog-actions .clear.md-confirm-button, md-dialog md-dialog-actions .left-nav__options-list .option_with-delete .clear.md-confirm-button, .left-nav__options-list .option_with-delete .colorpicker .close-colorpicker, .colorpicker .left-nav__options-list .option_with-delete .close-colorpicker {
    padding-right: 4px;
    position: absolute;
    top: 0;
    right: 0; }
  .left-nav__options-list .option_with-delete + .option_with-delete .option_with-delete_main-btn {
    border-radius: 0; }
  .left-nav__options-list .option_with-delete:first-child .option_with-delete_main-btn {
    border-radius: 4px 4px 0 0; }
  .left-nav__options-list .option_with-delete:last-child .option_with-delete_main-btn {
    border-bottom-width: 1px;
    border-radius: 0 0 4px 4px; }
  .left-nav__options-list .option_with-delete:only-child button.option_with-delete_main-btn, .left-nav__options-list .option_with-delete:only-child label.option_with-delete_main-btn.label-btn, .left-nav__options-list .option_with-delete:only-child md-dialog md-dialog-actions .option_with-delete_main-btn.md-cancel-button, md-dialog md-dialog-actions .left-nav__options-list .option_with-delete:only-child .option_with-delete_main-btn.md-cancel-button, .left-nav__options-list .option_with-delete:only-child md-dialog md-dialog-actions .option_with-delete_main-btn.md-confirm-button, md-dialog md-dialog-actions .left-nav__options-list .option_with-delete:only-child .option_with-delete_main-btn.md-confirm-button {
    border-radius: 4px; }
  .left-nav__options-list .option_with-delete button.disabled, .left-nav__options-list .option_with-delete label.disabled.label-btn, .left-nav__options-list .option_with-delete .input-w-inlay input.disabled + button, .input-w-inlay .left-nav__options-list .option_with-delete input.disabled + button, .left-nav__options-list .option_with-delete .input-w-inlay input.disabled + label.label-btn, .input-w-inlay .left-nav__options-list .option_with-delete input.disabled + label.label-btn, .left-nav__options-list .option_with-delete .input-w-inlay md-dialog md-dialog-actions input.disabled + .md-cancel-button, .input-w-inlay md-dialog md-dialog-actions .left-nav__options-list .option_with-delete input.disabled + .md-cancel-button, .left-nav__options-list .option_with-delete md-dialog md-dialog-actions .input-w-inlay input.disabled + .md-cancel-button, md-dialog md-dialog-actions .input-w-inlay .left-nav__options-list .option_with-delete input.disabled + .md-cancel-button, .left-nav__options-list .option_with-delete .input-w-inlay md-dialog md-dialog-actions input.disabled + .md-confirm-button, .input-w-inlay md-dialog md-dialog-actions .left-nav__options-list .option_with-delete input.disabled + .md-confirm-button, .left-nav__options-list .option_with-delete md-dialog md-dialog-actions .input-w-inlay input.disabled + .md-confirm-button, md-dialog md-dialog-actions .input-w-inlay .left-nav__options-list .option_with-delete input.disabled + .md-confirm-button, .left-nav__options-list .option_with-delete .input-w-inlay input[disabled] + button, .input-w-inlay .left-nav__options-list .option_with-delete input[disabled] + button, .left-nav__options-list .option_with-delete .input-w-inlay input[disabled] + label.label-btn, .input-w-inlay .left-nav__options-list .option_with-delete input[disabled] + label.label-btn, .left-nav__options-list .option_with-delete .input-w-inlay md-dialog md-dialog-actions input[disabled] + .md-cancel-button, .input-w-inlay md-dialog md-dialog-actions .left-nav__options-list .option_with-delete input[disabled] + .md-cancel-button, .left-nav__options-list .option_with-delete md-dialog md-dialog-actions .input-w-inlay input[disabled] + .md-cancel-button, md-dialog md-dialog-actions .input-w-inlay .left-nav__options-list .option_with-delete input[disabled] + .md-cancel-button, .left-nav__options-list .option_with-delete .input-w-inlay md-dialog md-dialog-actions input[disabled] + .md-confirm-button, .input-w-inlay md-dialog md-dialog-actions .left-nav__options-list .option_with-delete input[disabled] + .md-confirm-button, .left-nav__options-list .option_with-delete md-dialog md-dialog-actions .input-w-inlay input[disabled] + .md-confirm-button, md-dialog md-dialog-actions .input-w-inlay .left-nav__options-list .option_with-delete input[disabled] + .md-confirm-button,
  .left-nav__options-list .option_with-delete fieldset[disabled] .input-w-inlay input + button, fieldset[disabled] .input-w-inlay .left-nav__options-list .option_with-delete input + button, .left-nav__options-list .option_with-delete fieldset[disabled] .input-w-inlay input + label.label-btn, fieldset[disabled] .input-w-inlay .left-nav__options-list .option_with-delete input + label.label-btn, .left-nav__options-list .option_with-delete fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .md-cancel-button, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions .left-nav__options-list .option_with-delete input + .md-cancel-button, .left-nav__options-list .option_with-delete md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .md-cancel-button, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay .left-nav__options-list .option_with-delete input + .md-cancel-button, .left-nav__options-list .option_with-delete fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions input + .md-confirm-button, fieldset[disabled] .input-w-inlay md-dialog md-dialog-actions .left-nav__options-list .option_with-delete input + .md-confirm-button, .left-nav__options-list .option_with-delete md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay input + .md-confirm-button, md-dialog md-dialog-actions fieldset[disabled] .input-w-inlay .left-nav__options-list .option_with-delete input + .md-confirm-button, .left-nav__options-list .option_with-delete .input-w-clear input.disabled + button, .input-w-clear .left-nav__options-list .option_with-delete input.disabled + button, .left-nav__options-list .option_with-delete .input-w-clear input.disabled + label.label-btn, .input-w-clear .left-nav__options-list .option_with-delete input.disabled + label.label-btn, .left-nav__options-list .option_with-delete .input-w-clear md-dialog md-dialog-actions input.disabled + .md-cancel-button, .input-w-clear md-dialog md-dialog-actions .left-nav__options-list .option_with-delete input.disabled + .md-cancel-button, .left-nav__options-list .option_with-delete md-dialog md-dialog-actions .input-w-clear input.disabled + .md-cancel-button, md-dialog md-dialog-actions .input-w-clear .left-nav__options-list .option_with-delete input.disabled + .md-cancel-button, .left-nav__options-list .option_with-delete .input-w-clear md-dialog md-dialog-actions input.disabled + .md-confirm-button, .input-w-clear md-dialog md-dialog-actions .left-nav__options-list .option_with-delete input.disabled + .md-confirm-button, .left-nav__options-list .option_with-delete md-dialog md-dialog-actions .input-w-clear input.disabled + .md-confirm-button, md-dialog md-dialog-actions .input-w-clear .left-nav__options-list .option_with-delete input.disabled + .md-confirm-button, .left-nav__options-list .option_with-delete .input-w-clear input[disabled] + button, .input-w-clear .left-nav__options-list .option_with-delete input[disabled] + button, .left-nav__options-list .option_with-delete .input-w-clear input[disabled] + label.label-btn, .input-w-clear .left-nav__options-list .option_with-delete input[disabled] + label.label-btn, .left-nav__options-list .option_with-delete .input-w-clear md-dialog md-dialog-actions input[disabled] + .md-cancel-button, .input-w-clear md-dialog md-dialog-actions .left-nav__options-list .option_with-delete input[disabled] + .md-cancel-button, .left-nav__options-list .option_with-delete md-dialog md-dialog-actions .input-w-clear input[disabled] + .md-cancel-button, md-dialog md-dialog-actions .input-w-clear .left-nav__options-list .option_with-delete input[disabled] + .md-cancel-button, .left-nav__options-list .option_with-delete .input-w-clear md-dialog md-dialog-actions input[disabled] + .md-confirm-button, .input-w-clear md-dialog md-dialog-actions .left-nav__options-list .option_with-delete input[disabled] + .md-confirm-button, .left-nav__options-list .option_with-delete md-dialog md-dialog-actions .input-w-clear input[disabled] + .md-confirm-button, md-dialog md-dialog-actions .input-w-clear .left-nav__options-list .option_with-delete input[disabled] + .md-confirm-button,
  .left-nav__options-list .option_with-delete fieldset[disabled] .input-w-clear input + button, fieldset[disabled] .input-w-clear .left-nav__options-list .option_with-delete input + button, .left-nav__options-list .option_with-delete fieldset[disabled] .input-w-clear input + label.label-btn, fieldset[disabled] .input-w-clear .left-nav__options-list .option_with-delete input + label.label-btn, .left-nav__options-list .option_with-delete fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .md-cancel-button, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions .left-nav__options-list .option_with-delete input + .md-cancel-button, .left-nav__options-list .option_with-delete md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .md-cancel-button, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear .left-nav__options-list .option_with-delete input + .md-cancel-button, .left-nav__options-list .option_with-delete fieldset[disabled] .input-w-clear md-dialog md-dialog-actions input + .md-confirm-button, fieldset[disabled] .input-w-clear md-dialog md-dialog-actions .left-nav__options-list .option_with-delete input + .md-confirm-button, .left-nav__options-list .option_with-delete md-dialog md-dialog-actions fieldset[disabled] .input-w-clear input + .md-confirm-button, md-dialog md-dialog-actions fieldset[disabled] .input-w-clear .left-nav__options-list .option_with-delete input + .md-confirm-button, .left-nav__options-list .option_with-delete .input-w-button input.disabled + button, .input-w-button .left-nav__options-list .option_with-delete input.disabled + button, .left-nav__options-list .option_with-delete .input-w-button input.disabled + label.label-btn, .input-w-button .left-nav__options-list .option_with-delete input.disabled + label.label-btn, .left-nav__options-list .option_with-delete .input-w-button md-dialog md-dialog-actions input.disabled + .md-cancel-button, .input-w-button md-dialog md-dialog-actions .left-nav__options-list .option_with-delete input.disabled + .md-cancel-button, .left-nav__options-list .option_with-delete md-dialog md-dialog-actions .input-w-button input.disabled + .md-cancel-button, md-dialog md-dialog-actions .input-w-button .left-nav__options-list .option_with-delete input.disabled + .md-cancel-button, .left-nav__options-list .option_with-delete .input-w-button md-dialog md-dialog-actions input.disabled + .md-confirm-button, .input-w-button md-dialog md-dialog-actions .left-nav__options-list .option_with-delete input.disabled + .md-confirm-button, .left-nav__options-list .option_with-delete md-dialog md-dialog-actions .input-w-button input.disabled + .md-confirm-button, md-dialog md-dialog-actions .input-w-button .left-nav__options-list .option_with-delete input.disabled + .md-confirm-button, .left-nav__options-list .option_with-delete .input-w-button input[disabled] + button, .input-w-button .left-nav__options-list .option_with-delete input[disabled] + button, .left-nav__options-list .option_with-delete .input-w-button input[disabled] + label.label-btn, .input-w-button .left-nav__options-list .option_with-delete input[disabled] + label.label-btn, .left-nav__options-list .option_with-delete .input-w-button md-dialog md-dialog-actions input[disabled] + .md-cancel-button, .input-w-button md-dialog md-dialog-actions .left-nav__options-list .option_with-delete input[disabled] + .md-cancel-button, .left-nav__options-list .option_with-delete md-dialog md-dialog-actions .input-w-button input[disabled] + .md-cancel-button, md-dialog md-dialog-actions .input-w-button .left-nav__options-list .option_with-delete input[disabled] + .md-cancel-button, .left-nav__options-list .option_with-delete .input-w-button md-dialog md-dialog-actions input[disabled] + .md-confirm-button, .input-w-button md-dialog md-dialog-actions .left-nav__options-list .option_with-delete input[disabled] + .md-confirm-button, .left-nav__options-list .option_with-delete md-dialog md-dialog-actions .input-w-button input[disabled] + .md-confirm-button, md-dialog md-dialog-actions .input-w-button .left-nav__options-list .option_with-delete input[disabled] + .md-confirm-button,
  .left-nav__options-list .option_with-delete fieldset[disabled] .input-w-button input + button, fieldset[disabled] .input-w-button .left-nav__options-list .option_with-delete input + button, .left-nav__options-list .option_with-delete fieldset[disabled] .input-w-button input + label.label-btn, fieldset[disabled] .input-w-button .left-nav__options-list .option_with-delete input + label.label-btn, .left-nav__options-list .option_with-delete fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .md-cancel-button, fieldset[disabled] .input-w-button md-dialog md-dialog-actions .left-nav__options-list .option_with-delete input + .md-cancel-button, .left-nav__options-list .option_with-delete md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .md-cancel-button, md-dialog md-dialog-actions fieldset[disabled] .input-w-button .left-nav__options-list .option_with-delete input + .md-cancel-button, .left-nav__options-list .option_with-delete fieldset[disabled] .input-w-button md-dialog md-dialog-actions input + .md-confirm-button, fieldset[disabled] .input-w-button md-dialog md-dialog-actions .left-nav__options-list .option_with-delete input + .md-confirm-button, .left-nav__options-list .option_with-delete md-dialog md-dialog-actions fieldset[disabled] .input-w-button input + .md-confirm-button, md-dialog md-dialog-actions fieldset[disabled] .input-w-button .left-nav__options-list .option_with-delete input + .md-confirm-button, .left-nav__options-list .option_with-delete md-dialog md-dialog-actions .disabled.md-cancel-button, md-dialog md-dialog-actions .left-nav__options-list .option_with-delete .disabled.md-cancel-button, .left-nav__options-list .option_with-delete md-dialog md-dialog-actions .disabled.md-confirm-button, md-dialog md-dialog-actions .left-nav__options-list .option_with-delete .disabled.md-confirm-button,
  .left-nav__options-list .option_with-delete button[disabled],
  .left-nav__options-list .option_with-delete label.label-btn[disabled],
  .left-nav__options-list .option_with-delete md-dialog md-dialog-actions .md-cancel-button[disabled],
  md-dialog md-dialog-actions .left-nav__options-list .option_with-delete .md-cancel-button[disabled],
  .left-nav__options-list .option_with-delete md-dialog md-dialog-actions .md-confirm-button[disabled],
  md-dialog md-dialog-actions .left-nav__options-list .option_with-delete .md-confirm-button[disabled],
  .left-nav__options-list .option_with-delete fieldset[disabled] button,
  .left-nav__options-list .option_with-delete fieldset[disabled] label.label-btn,
  .left-nav__options-list .option_with-delete fieldset[disabled] md-dialog md-dialog-actions .md-cancel-button,
  md-dialog md-dialog-actions .left-nav__options-list .option_with-delete fieldset[disabled] .md-cancel-button,
  .left-nav__options-list .option_with-delete fieldset[disabled] md-dialog md-dialog-actions .md-confirm-button,
  md-dialog md-dialog-actions .left-nav__options-list .option_with-delete fieldset[disabled] .md-confirm-button {
    pointer-events: initial; }

.theme-cmix .left-nav__options-list button.active, .theme-cmix .left-nav__options-list label.active.label-btn, .theme-cmix .left-nav__options-list md-dialog md-dialog-actions .active.md-cancel-button, md-dialog md-dialog-actions .theme-cmix .left-nav__options-list .active.md-cancel-button, .theme-cmix .left-nav__options-list md-dialog md-dialog-actions .active.md-confirm-button, md-dialog md-dialog-actions .theme-cmix .left-nav__options-list .active.md-confirm-button, .theme-cmix .left-nav__options-list button.active:hover, .theme-cmix .left-nav__options-list label.active.label-btn:hover, .theme-cmix .left-nav__options-list md-dialog md-dialog-actions .active.md-cancel-button:hover, md-dialog md-dialog-actions .theme-cmix .left-nav__options-list .active.md-cancel-button:hover, .theme-cmix .left-nav__options-list md-dialog md-dialog-actions .active.md-confirm-button:hover, md-dialog md-dialog-actions .theme-cmix .left-nav__options-list .active.md-confirm-button:hover, .theme-cmix .left-nav__options-list button.active:focus, .theme-cmix .left-nav__options-list label.active.label-btn:focus, .theme-cmix .left-nav__options-list md-dialog md-dialog-actions .active.md-cancel-button:focus, md-dialog md-dialog-actions .theme-cmix .left-nav__options-list .active.md-cancel-button:focus, .theme-cmix .left-nav__options-list md-dialog md-dialog-actions .active.md-confirm-button:focus, md-dialog md-dialog-actions .theme-cmix .left-nav__options-list .active.md-confirm-button:focus {
  color: white;
  background-color: #2E91C9;
  border-color: #277cac; }
  .theme-cmix .left-nav__options-list button.active + .clear:before, .theme-cmix .left-nav__options-list label.active.label-btn + .clear:before, .theme-cmix .left-nav__options-list md-dialog md-dialog-actions .active.md-cancel-button + .clear:before, md-dialog md-dialog-actions .theme-cmix .left-nav__options-list .active.md-cancel-button + .clear:before, .theme-cmix .left-nav__options-list md-dialog md-dialog-actions .active.md-confirm-button + .clear:before, md-dialog md-dialog-actions .theme-cmix .left-nav__options-list .active.md-confirm-button + .clear:before, .theme-cmix .left-nav__options-list button.active:hover + .clear:before, .theme-cmix .left-nav__options-list label.active.label-btn:hover + .clear:before, .theme-cmix .left-nav__options-list md-dialog md-dialog-actions .active.md-cancel-button:hover + .clear:before, md-dialog md-dialog-actions .theme-cmix .left-nav__options-list .active.md-cancel-button:hover + .clear:before, .theme-cmix .left-nav__options-list md-dialog md-dialog-actions .active.md-confirm-button:hover + .clear:before, md-dialog md-dialog-actions .theme-cmix .left-nav__options-list .active.md-confirm-button:hover + .clear:before, .theme-cmix .left-nav__options-list button.active:focus + .clear:before, .theme-cmix .left-nav__options-list label.active.label-btn:focus + .clear:before, .theme-cmix .left-nav__options-list md-dialog md-dialog-actions .active.md-cancel-button:focus + .clear:before, md-dialog md-dialog-actions .theme-cmix .left-nav__options-list .active.md-cancel-button:focus + .clear:before, .theme-cmix .left-nav__options-list md-dialog md-dialog-actions .active.md-confirm-button:focus + .clear:before, md-dialog md-dialog-actions .theme-cmix .left-nav__options-list .active.md-confirm-button:focus + .clear:before {
    color: white; }
  .theme-cmix .left-nav__options-list button.active + .clear:hover:before, .theme-cmix .left-nav__options-list label.active.label-btn + .clear:hover:before, .theme-cmix .left-nav__options-list md-dialog md-dialog-actions .active.md-cancel-button + .clear:hover:before, md-dialog md-dialog-actions .theme-cmix .left-nav__options-list .active.md-cancel-button + .clear:hover:before, .theme-cmix .left-nav__options-list md-dialog md-dialog-actions .active.md-confirm-button + .clear:hover:before, md-dialog md-dialog-actions .theme-cmix .left-nav__options-list .active.md-confirm-button + .clear:hover:before, .theme-cmix .left-nav__options-list button.active:hover + .clear:hover:before, .theme-cmix .left-nav__options-list label.active.label-btn:hover + .clear:hover:before, .theme-cmix .left-nav__options-list md-dialog md-dialog-actions .active.md-cancel-button:hover + .clear:hover:before, md-dialog md-dialog-actions .theme-cmix .left-nav__options-list .active.md-cancel-button:hover + .clear:hover:before, .theme-cmix .left-nav__options-list md-dialog md-dialog-actions .active.md-confirm-button:hover + .clear:hover:before, md-dialog md-dialog-actions .theme-cmix .left-nav__options-list .active.md-confirm-button:hover + .clear:hover:before, .theme-cmix .left-nav__options-list button.active:focus + .clear:hover:before, .theme-cmix .left-nav__options-list label.active.label-btn:focus + .clear:hover:before, .theme-cmix .left-nav__options-list md-dialog md-dialog-actions .active.md-cancel-button:focus + .clear:hover:before, md-dialog md-dialog-actions .theme-cmix .left-nav__options-list .active.md-cancel-button:focus + .clear:hover:before, .theme-cmix .left-nav__options-list md-dialog md-dialog-actions .active.md-confirm-button:focus + .clear:hover:before, md-dialog md-dialog-actions .theme-cmix .left-nav__options-list .active.md-confirm-button:focus + .clear:hover:before {
    color: #DF4E71; }

.theme-cmix .left-nav__options-list button:active + .clear:before, .theme-cmix .left-nav__options-list label.label-btn:active + .clear:before, .theme-cmix .left-nav__options-list md-dialog md-dialog-actions .md-cancel-button:active + .clear:before, md-dialog md-dialog-actions .theme-cmix .left-nav__options-list .md-cancel-button:active + .clear:before, .theme-cmix .left-nav__options-list md-dialog md-dialog-actions .md-confirm-button:active + .clear:before, md-dialog md-dialog-actions .theme-cmix .left-nav__options-list .md-confirm-button:active + .clear:before {
  color: white; }

.theme-cmix .left-nav__options-list button:active + .clear:hover:before, .theme-cmix .left-nav__options-list label.label-btn:active + .clear:hover:before, .theme-cmix .left-nav__options-list md-dialog md-dialog-actions .md-cancel-button:active + .clear:hover:before, md-dialog md-dialog-actions .theme-cmix .left-nav__options-list .md-cancel-button:active + .clear:hover:before, .theme-cmix .left-nav__options-list md-dialog md-dialog-actions .md-confirm-button:active + .clear:hover:before, md-dialog md-dialog-actions .theme-cmix .left-nav__options-list .md-confirm-button:active + .clear:hover:before {
  color: #DF4E71; }

.theme-marketview .left-nav__options-list button.active, .theme-marketview .left-nav__options-list label.active.label-btn, .theme-marketview .left-nav__options-list md-dialog md-dialog-actions .active.md-cancel-button, md-dialog md-dialog-actions .theme-marketview .left-nav__options-list .active.md-cancel-button, .theme-marketview .left-nav__options-list md-dialog md-dialog-actions .active.md-confirm-button, md-dialog md-dialog-actions .theme-marketview .left-nav__options-list .active.md-confirm-button, .theme-marketview .left-nav__options-list button.active:hover, .theme-marketview .left-nav__options-list label.active.label-btn:hover, .theme-marketview .left-nav__options-list md-dialog md-dialog-actions .active.md-cancel-button:hover, md-dialog md-dialog-actions .theme-marketview .left-nav__options-list .active.md-cancel-button:hover, .theme-marketview .left-nav__options-list md-dialog md-dialog-actions .active.md-confirm-button:hover, md-dialog md-dialog-actions .theme-marketview .left-nav__options-list .active.md-confirm-button:hover, .theme-marketview .left-nav__options-list button.active:focus, .theme-marketview .left-nav__options-list label.active.label-btn:focus, .theme-marketview .left-nav__options-list md-dialog md-dialog-actions .active.md-cancel-button:focus, md-dialog md-dialog-actions .theme-marketview .left-nav__options-list .active.md-cancel-button:focus, .theme-marketview .left-nav__options-list md-dialog md-dialog-actions .active.md-confirm-button:focus, md-dialog md-dialog-actions .theme-marketview .left-nav__options-list .active.md-confirm-button:focus {
  color: white;
  background-color: #5B9CB7;
  border-color: #498aa6; }
  .theme-marketview .left-nav__options-list button.active + .clear:before, .theme-marketview .left-nav__options-list label.active.label-btn + .clear:before, .theme-marketview .left-nav__options-list md-dialog md-dialog-actions .active.md-cancel-button + .clear:before, md-dialog md-dialog-actions .theme-marketview .left-nav__options-list .active.md-cancel-button + .clear:before, .theme-marketview .left-nav__options-list md-dialog md-dialog-actions .active.md-confirm-button + .clear:before, md-dialog md-dialog-actions .theme-marketview .left-nav__options-list .active.md-confirm-button + .clear:before, .theme-marketview .left-nav__options-list button.active:hover + .clear:before, .theme-marketview .left-nav__options-list label.active.label-btn:hover + .clear:before, .theme-marketview .left-nav__options-list md-dialog md-dialog-actions .active.md-cancel-button:hover + .clear:before, md-dialog md-dialog-actions .theme-marketview .left-nav__options-list .active.md-cancel-button:hover + .clear:before, .theme-marketview .left-nav__options-list md-dialog md-dialog-actions .active.md-confirm-button:hover + .clear:before, md-dialog md-dialog-actions .theme-marketview .left-nav__options-list .active.md-confirm-button:hover + .clear:before, .theme-marketview .left-nav__options-list button.active:focus + .clear:before, .theme-marketview .left-nav__options-list label.active.label-btn:focus + .clear:before, .theme-marketview .left-nav__options-list md-dialog md-dialog-actions .active.md-cancel-button:focus + .clear:before, md-dialog md-dialog-actions .theme-marketview .left-nav__options-list .active.md-cancel-button:focus + .clear:before, .theme-marketview .left-nav__options-list md-dialog md-dialog-actions .active.md-confirm-button:focus + .clear:before, md-dialog md-dialog-actions .theme-marketview .left-nav__options-list .active.md-confirm-button:focus + .clear:before {
    color: white; }
  .theme-marketview .left-nav__options-list button.active + .clear:hover:before, .theme-marketview .left-nav__options-list label.active.label-btn + .clear:hover:before, .theme-marketview .left-nav__options-list md-dialog md-dialog-actions .active.md-cancel-button + .clear:hover:before, md-dialog md-dialog-actions .theme-marketview .left-nav__options-list .active.md-cancel-button + .clear:hover:before, .theme-marketview .left-nav__options-list md-dialog md-dialog-actions .active.md-confirm-button + .clear:hover:before, md-dialog md-dialog-actions .theme-marketview .left-nav__options-list .active.md-confirm-button + .clear:hover:before, .theme-marketview .left-nav__options-list button.active:hover + .clear:hover:before, .theme-marketview .left-nav__options-list label.active.label-btn:hover + .clear:hover:before, .theme-marketview .left-nav__options-list md-dialog md-dialog-actions .active.md-cancel-button:hover + .clear:hover:before, md-dialog md-dialog-actions .theme-marketview .left-nav__options-list .active.md-cancel-button:hover + .clear:hover:before, .theme-marketview .left-nav__options-list md-dialog md-dialog-actions .active.md-confirm-button:hover + .clear:hover:before, md-dialog md-dialog-actions .theme-marketview .left-nav__options-list .active.md-confirm-button:hover + .clear:hover:before, .theme-marketview .left-nav__options-list button.active:focus + .clear:hover:before, .theme-marketview .left-nav__options-list label.active.label-btn:focus + .clear:hover:before, .theme-marketview .left-nav__options-list md-dialog md-dialog-actions .active.md-cancel-button:focus + .clear:hover:before, md-dialog md-dialog-actions .theme-marketview .left-nav__options-list .active.md-cancel-button:focus + .clear:hover:before, .theme-marketview .left-nav__options-list md-dialog md-dialog-actions .active.md-confirm-button:focus + .clear:hover:before, md-dialog md-dialog-actions .theme-marketview .left-nav__options-list .active.md-confirm-button:focus + .clear:hover:before {
    color: #DF4E71; }

.theme-marketview .left-nav__options-list button:active + .clear:before, .theme-marketview .left-nav__options-list label.label-btn:active + .clear:before, .theme-marketview .left-nav__options-list md-dialog md-dialog-actions .md-cancel-button:active + .clear:before, md-dialog md-dialog-actions .theme-marketview .left-nav__options-list .md-cancel-button:active + .clear:before, .theme-marketview .left-nav__options-list md-dialog md-dialog-actions .md-confirm-button:active + .clear:before, md-dialog md-dialog-actions .theme-marketview .left-nav__options-list .md-confirm-button:active + .clear:before {
  color: white; }

.theme-marketview .left-nav__options-list button:active + .clear:hover:before, .theme-marketview .left-nav__options-list label.label-btn:active + .clear:hover:before, .theme-marketview .left-nav__options-list md-dialog md-dialog-actions .md-cancel-button:active + .clear:hover:before, md-dialog md-dialog-actions .theme-marketview .left-nav__options-list .md-cancel-button:active + .clear:hover:before, .theme-marketview .left-nav__options-list md-dialog md-dialog-actions .md-confirm-button:active + .clear:hover:before, md-dialog md-dialog-actions .theme-marketview .left-nav__options-list .md-confirm-button:active + .clear:hover:before {
  color: #DF4E71; }

.left-nav_section {
  padding-top: 4px; }
  .left-nav_section .left-nav_section-header {
    padding: 4px 0 4px 8px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
    cursor: pointer; }
    .left-nav_section .left-nav_section-header h2 {
      font-size: 1em;
      line-height: 22px;
      display: inline-block;
      vertical-align: middle;
      width: calc(100% - 1.75em);
      overflow-x: hidden;
      text-overflow: ellipsis; }
    .theme-cmix .left-nav_section .left-nav_section-header {
      background-color: #646471;
      color: #FAFAFA; }
      .theme-cmix .left-nav_section .left-nav_section-header:hover, .theme-cmix .left-nav_section .left-nav_section-header:focus {
        background-color: #70707e;
        color: white; }
    .theme-marketview .left-nav_section .left-nav_section-header {
      background-color: #737373;
      color: #FAFAFA; }
      .theme-marketview .left-nav_section .left-nav_section-header:hover, .theme-marketview .left-nav_section .left-nav_section-header:focus {
        background-color: gray;
        color: white; }
  .left-nav_section .left-nav_section-content {
    padding: 8px; }

.left-nav_section.variables-section .left-nav__options-list {
  margin-top: 8px;
  margin-bottom: 8px; }

.left-nav_section.concepts-section .left-nav__options-list {
  margin-bottom: 8px; }

.left-nav_section.questionnaire-section {
  padding-bottom: 64px; }
  .left-nav_section.questionnaire-section .questionnaire-search-container {
    margin-top: 0; }
    .left-nav_section.questionnaire-section .questionnaire-search-container input {
      margin-top: 0;
      margin-bottom: 8px;
      background-color: rgba(255, 255, 255, 0.6);
      transition: background-color 200ms ease; }
      .left-nav_section.questionnaire-section .questionnaire-search-container input:hover, .left-nav_section.questionnaire-section .questionnaire-search-container input:focus, .left-nav_section.questionnaire-section .questionnaire-search-container input:active {
        background-color: white; }
  .left-nav_section.questionnaire-section .search-empty-state {
    text-align: center;
    margin-top: 64px; }
  .left-nav_section.questionnaire-section .left-nav_section-content {
    padding-top: 0; }
  .left-nav_section.questionnaire-section h2 {
    font-size: 16px;
    margin-bottom: 8px; }

.left-nav_actions {
  text-align: center;
  padding: 0 0 4px;
  display: flex;
  justify-content: space-evenly;
  width: 320px;
  height: 48px;
  position: fixed;
  bottom: 0; }
  .theme-cmix .left-nav_actions {
    background-color: #404048; }
  .theme-marketview .left-nav_actions {
    background-color: #4d4d4d; }
  .left-nav_actions button, .left-nav_actions label.label-btn, .left-nav_actions md-dialog md-dialog-actions .md-cancel-button, md-dialog md-dialog-actions .left-nav_actions .md-cancel-button, .left-nav_actions md-dialog md-dialog-actions .md-confirm-button, md-dialog md-dialog-actions .left-nav_actions .md-confirm-button {
    font-size: 24px;
    padding-top: 0;
    padding-bottom: 0; }
    .left-nav_actions button + button, .left-nav_actions label.label-btn + button, .left-nav_actions md-dialog md-dialog-actions .md-cancel-button + button, md-dialog md-dialog-actions .left-nav_actions .md-cancel-button + button, .left-nav_actions md-dialog md-dialog-actions .md-confirm-button + button, md-dialog md-dialog-actions .left-nav_actions .md-confirm-button + button, .left-nav_actions button + label.label-btn, .left-nav_actions label.label-btn + label.label-btn, .left-nav_actions md-dialog md-dialog-actions .md-cancel-button + label.label-btn, md-dialog md-dialog-actions .left-nav_actions .md-cancel-button + label.label-btn, .left-nav_actions md-dialog md-dialog-actions .md-confirm-button + label.label-btn, md-dialog md-dialog-actions .left-nav_actions .md-confirm-button + label.label-btn, .left-nav_actions md-dialog md-dialog-actions button + .md-cancel-button, md-dialog md-dialog-actions .left-nav_actions button + .md-cancel-button, .left-nav_actions md-dialog md-dialog-actions label.label-btn + .md-cancel-button, md-dialog md-dialog-actions .left-nav_actions label.label-btn + .md-cancel-button, .left-nav_actions md-dialog md-dialog-actions .md-cancel-button + .md-cancel-button, md-dialog md-dialog-actions .left-nav_actions .md-cancel-button + .md-cancel-button, .left-nav_actions md-dialog md-dialog-actions .md-confirm-button + .md-cancel-button, md-dialog md-dialog-actions .left-nav_actions .md-confirm-button + .md-cancel-button, .left-nav_actions md-dialog md-dialog-actions button + .md-confirm-button, md-dialog md-dialog-actions .left-nav_actions button + .md-confirm-button, .left-nav_actions md-dialog md-dialog-actions label.label-btn + .md-confirm-button, md-dialog md-dialog-actions .left-nav_actions label.label-btn + .md-confirm-button, .left-nav_actions md-dialog md-dialog-actions .md-cancel-button + .md-confirm-button, md-dialog md-dialog-actions .left-nav_actions .md-cancel-button + .md-confirm-button, .left-nav_actions md-dialog md-dialog-actions .md-confirm-button + .md-confirm-button, md-dialog md-dialog-actions .left-nav_actions .md-confirm-button + .md-confirm-button {
      margin-left: 0; }

.survey-version-flex {
  display: inline-flex;
  width: 100%;
  justify-content: space-between; }

.survey-tree_section {
  margin-bottom: 16px; }
  .survey-tree_section .section_header {
    border-radius: 2px;
    margin-bottom: 4px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    padding-top: 4px;
    padding-bottom: 4px; }
    .survey-tree_section .section_header .icon-drag-handle {
      opacity: 0.5; }
    .survey-tree_section .section_header h3 {
      font-size: 1em;
      padding-left: 4px;
      display: inline-block;
      vertical-align: middle;
      white-space: normal;
      flex-grow: 1;
      cursor: pointer; }
    .survey-tree_section .section_header .header_actions {
      display: inline-block;
      display: flex;
      align-items: center; }
      .survey-tree_section .section_header .header_actions button, .survey-tree_section .section_header .header_actions label.label-btn, .survey-tree_section .section_header .header_actions md-dialog md-dialog-actions .md-cancel-button, md-dialog md-dialog-actions .survey-tree_section .section_header .header_actions .md-cancel-button, .survey-tree_section .section_header .header_actions md-dialog md-dialog-actions .md-confirm-button, md-dialog md-dialog-actions .survey-tree_section .section_header .header_actions .md-confirm-button {
        font-size: 16px; }
      .survey-tree_section .section_header .header_actions .icon-loop {
        color: #eddcff;
        margin-right: 8px; }
    .survey-tree_section .section_header:hover .icon-drag-handle, .survey-tree_section .section_header:focus .icon-drag-handle {
      opacity: 1; }
    .theme-cmix .survey-tree_section .section_header:hover, .theme-cmix .survey-tree_section .section_header:focus {
      background-color: #646471; }
    .theme-cmix .survey-tree_section .section_header.active, .theme-cmix .survey-tree_section .section_header.active:hover, .theme-cmix .survey-tree_section .section_header.active:focus {
      background-color: #2E91C9; }
    .theme-marketview .survey-tree_section .section_header:hover, .theme-marketview .survey-tree_section .section_header:focus {
      background-color: #737373; }
    .theme-marketview .survey-tree_section .section_header.active, .theme-marketview .survey-tree_section .section_header.active:hover, .theme-marketview .survey-tree_section .section_header.active:focus {
      background-color: #5B9CB7; }
  .survey-tree_section .section_page-list {
    min-height: 1em; }

.survey-tree_page {
  background-color: white;
  border-radius: 2px;
  overflow: hidden; }
  .theme-cmix .survey-tree_page {
    color: #22232D; }
  .theme-marketview .survey-tree_page {
    color: #414042; }
  .survey-tree_page + .survey-tree_page {
    margin-top: 8px; }
  .survey-tree_page .page_header {
    white-space: nowrap;
    display: flex;
    align-items: center;
    padding-top: 4px;
    padding-bottom: 4px; }
    .survey-tree_page .page_header .icon-drag-handle {
      opacity: 0.5; }
      .theme-cmix .survey-tree_page .page_header .icon-drag-handle {
        color: #585863; }
      .theme-marketview .survey-tree_page .page_header .icon-drag-handle {
        color: #666666; }
    .survey-tree_page .page_header h4 {
      font-weight: normal;
      padding-left: 4px;
      display: inline-block;
      vertical-align: middle;
      overflow: hidden;
      text-overflow: ellipsis;
      flex-grow: 1;
      cursor: pointer; }
    .survey-tree_page .page_header .header_actions {
      display: inline-block; }
      .survey-tree_page .page_header .header_actions button, .survey-tree_page .page_header .header_actions label.label-btn, .survey-tree_page .page_header .header_actions md-dialog md-dialog-actions .md-cancel-button, md-dialog md-dialog-actions .survey-tree_page .page_header .header_actions .md-cancel-button, .survey-tree_page .page_header .header_actions md-dialog md-dialog-actions .md-confirm-button, md-dialog md-dialog-actions .survey-tree_page .page_header .header_actions .md-confirm-button {
        font-size: 16px; }
      .survey-tree_page .page_header .header_actions span.icon-logic {
        color: #c690ff; }
    .theme-cmix .survey-tree_page .page_header:hover, .theme-cmix .survey-tree_page .page_header:focus {
      background-color: #FAFAFA; }
    .theme-marketview .survey-tree_page .page_header:hover, .theme-marketview .survey-tree_page .page_header:focus {
      background-color: #FAFAFA; }
    .survey-tree_page .page_header:hover .icon-drag-handle, .survey-tree_page .page_header:focus .icon-drag-handle {
      opacity: 1; }
    .survey-tree_page .page_header span.icon-logic {
      line-height: 1.4em;
      display: inline-block;
      vertical-align: middle; }
    .survey-tree_page .page_header.header_custom-logic h4, .survey-tree_page .page_header.header_quota-check h4, .survey-tree_page .page_header.header_logic-block h4 {
      padding-left: 0; }
    .survey-tree_page .page_header.header_custom-logic, .survey-tree_page .page_header.header_logic-block {
      background-color: #eddcff; }
      .survey-tree_page .page_header.header_custom-logic:hover, .survey-tree_page .page_header.header_custom-logic:focus, .survey-tree_page .page_header.header_logic-block:hover, .survey-tree_page .page_header.header_logic-block:focus {
        background-color: #e0c3ff; }
    .survey-tree_page .page_header.header_quota-check {
      background-color: #ffeed6; }
      .survey-tree_page .page_header.header_quota-check:hover, .survey-tree_page .page_header.header_quota-check:focus {
        background-color: #ffe3bd; }
    .survey-tree_page .page_header.active, .survey-tree_page .page_header.active:hover, .survey-tree_page .page_header.active:focus {
      color: white; }
      .theme-cmix .survey-tree_page .page_header.active, .theme-cmix .survey-tree_page .page_header.active:hover, .theme-cmix .survey-tree_page .page_header.active:focus {
        background-color: #2E91C9; }
      .theme-marketview .survey-tree_page .page_header.active, .theme-marketview .survey-tree_page .page_header.active:hover, .theme-marketview .survey-tree_page .page_header.active:focus {
        background-color: #5B9CB7; }
      .survey-tree_page .page_header.active button, .survey-tree_page .page_header.active label.label-btn, .survey-tree_page .page_header.active md-dialog md-dialog-actions .md-cancel-button, md-dialog md-dialog-actions .survey-tree_page .page_header.active .md-cancel-button, .survey-tree_page .page_header.active md-dialog md-dialog-actions .md-confirm-button, md-dialog md-dialog-actions .survey-tree_page .page_header.active .md-confirm-button,
      .survey-tree_page .page_header.active button:before,
      .survey-tree_page .page_header.active label.label-btn:before,
      .survey-tree_page .page_header.active md-dialog md-dialog-actions .md-cancel-button:before,
      md-dialog md-dialog-actions .survey-tree_page .page_header.active .md-cancel-button:before,
      .survey-tree_page .page_header.active md-dialog md-dialog-actions .md-confirm-button:before,
      md-dialog md-dialog-actions .survey-tree_page .page_header.active .md-confirm-button:before, .survey-tree_page .page_header.active:hover button, .survey-tree_page .page_header.active:hover label.label-btn, .survey-tree_page .page_header.active:hover md-dialog md-dialog-actions .md-cancel-button, md-dialog md-dialog-actions .survey-tree_page .page_header.active:hover .md-cancel-button, .survey-tree_page .page_header.active:hover md-dialog md-dialog-actions .md-confirm-button, md-dialog md-dialog-actions .survey-tree_page .page_header.active:hover .md-confirm-button,
      .survey-tree_page .page_header.active:hover button:before,
      .survey-tree_page .page_header.active:hover label.label-btn:before,
      .survey-tree_page .page_header.active:hover md-dialog md-dialog-actions .md-cancel-button:before,
      md-dialog md-dialog-actions .survey-tree_page .page_header.active:hover .md-cancel-button:before,
      .survey-tree_page .page_header.active:hover md-dialog md-dialog-actions .md-confirm-button:before,
      md-dialog md-dialog-actions .survey-tree_page .page_header.active:hover .md-confirm-button:before, .survey-tree_page .page_header.active:focus button, .survey-tree_page .page_header.active:focus label.label-btn, .survey-tree_page .page_header.active:focus md-dialog md-dialog-actions .md-cancel-button, md-dialog md-dialog-actions .survey-tree_page .page_header.active:focus .md-cancel-button, .survey-tree_page .page_header.active:focus md-dialog md-dialog-actions .md-confirm-button, md-dialog md-dialog-actions .survey-tree_page .page_header.active:focus .md-confirm-button,
      .survey-tree_page .page_header.active:focus button:before,
      .survey-tree_page .page_header.active:focus label.label-btn:before,
      .survey-tree_page .page_header.active:focus md-dialog md-dialog-actions .md-cancel-button:before,
      md-dialog md-dialog-actions .survey-tree_page .page_header.active:focus .md-cancel-button:before,
      .survey-tree_page .page_header.active:focus md-dialog md-dialog-actions .md-confirm-button:before,
      md-dialog md-dialog-actions .survey-tree_page .page_header.active:focus .md-confirm-button:before {
        color: white; }
  .survey-tree_page .page_content {
    min-height: 1em; }
  .survey-tree_page .page_actions {
    padding: 4px; }

.survey-tree_question {
  display: flex;
  align-items: center;
  padding-top: 2px;
  padding-bottom: 2px;
  cursor: pointer; }
  .survey-tree_question .icon-drag-handle {
    opacity: 0.5; }
    .theme-cmix .survey-tree_question .icon-drag-handle {
      color: #585863; }
      .theme-cmix .survey-tree_question .icon-drag-handle:hover, .theme-cmix .survey-tree_question .icon-drag-handle:focus, .theme-cmix .survey-tree_question .icon-drag-handle:active {
        color: #585863; }
    .theme-marketview .survey-tree_question .icon-drag-handle {
      color: #666666; }
      .theme-marketview .survey-tree_question .icon-drag-handle:hover, .theme-marketview .survey-tree_question .icon-drag-handle:focus, .theme-marketview .survey-tree_question .icon-drag-handle:active {
        color: #666666; }
  .survey-tree_question .question_text {
    padding-left: 4px;
    padding-right: 4px;
    display: inline-block;
    vertical-align: middle;
    flex-grow: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
    .survey-tree_question .question_text span {
      line-height: 24px;
      vertical-align: middle; }
    .survey-tree_question .question_text .marker, .survey-tree_question .question_text .grid-cell .grid-question .grid-question__name, .grid-cell .grid-question .survey-tree_question .question_text .grid-question__name,
    .survey-tree_question .question_text .grid-cell .grid-question .grid-question__response, .grid-cell .grid-question .survey-tree_question .question_text .grid-question__response {
      min-width: 2.369em; }
  .survey-tree_question .question_actions {
    display: inline-block; }
  .theme-cmix .survey-tree_question:hover, .theme-cmix .survey-tree_question:focus {
    background-color: #FAFAFA; }
  .theme-marketview .survey-tree_question:hover, .theme-marketview .survey-tree_question:focus {
    background-color: #FAFAFA; }
  .survey-tree_question:hover .icon-drag-handle, .survey-tree_question:focus .icon-drag-handle {
    opacity: 1; }
  .survey-tree_question.active, .survey-tree_question.active:hover, .survey-tree_question.active:focus {
    color: white; }
    .theme-cmix .survey-tree_question.active, .theme-cmix .survey-tree_question.active:hover, .theme-cmix .survey-tree_question.active:focus {
      background-color: #2E91C9; }
    .theme-marketview .survey-tree_question.active, .theme-marketview .survey-tree_question.active:hover, .theme-marketview .survey-tree_question.active:focus {
      background-color: #5B9CB7; }
    .survey-tree_question.active button, .survey-tree_question.active label.label-btn, .survey-tree_question.active md-dialog md-dialog-actions .md-cancel-button, md-dialog md-dialog-actions .survey-tree_question.active .md-cancel-button, .survey-tree_question.active md-dialog md-dialog-actions .md-confirm-button, md-dialog md-dialog-actions .survey-tree_question.active .md-confirm-button,
    .survey-tree_question.active button:before,
    .survey-tree_question.active label.label-btn:before,
    .survey-tree_question.active md-dialog md-dialog-actions .md-cancel-button:before,
    md-dialog md-dialog-actions .survey-tree_question.active .md-cancel-button:before,
    .survey-tree_question.active md-dialog md-dialog-actions .md-confirm-button:before,
    md-dialog md-dialog-actions .survey-tree_question.active .md-confirm-button:before, .survey-tree_question.active:hover button, .survey-tree_question.active:hover label.label-btn, .survey-tree_question.active:hover md-dialog md-dialog-actions .md-cancel-button, md-dialog md-dialog-actions .survey-tree_question.active:hover .md-cancel-button, .survey-tree_question.active:hover md-dialog md-dialog-actions .md-confirm-button, md-dialog md-dialog-actions .survey-tree_question.active:hover .md-confirm-button,
    .survey-tree_question.active:hover button:before,
    .survey-tree_question.active:hover label.label-btn:before,
    .survey-tree_question.active:hover md-dialog md-dialog-actions .md-cancel-button:before,
    md-dialog md-dialog-actions .survey-tree_question.active:hover .md-cancel-button:before,
    .survey-tree_question.active:hover md-dialog md-dialog-actions .md-confirm-button:before,
    md-dialog md-dialog-actions .survey-tree_question.active:hover .md-confirm-button:before, .survey-tree_question.active:focus button, .survey-tree_question.active:focus label.label-btn, .survey-tree_question.active:focus md-dialog md-dialog-actions .md-cancel-button, md-dialog md-dialog-actions .survey-tree_question.active:focus .md-cancel-button, .survey-tree_question.active:focus md-dialog md-dialog-actions .md-confirm-button, md-dialog md-dialog-actions .survey-tree_question.active:focus .md-confirm-button,
    .survey-tree_question.active:focus button:before,
    .survey-tree_question.active:focus label.label-btn:before,
    .survey-tree_question.active:focus md-dialog md-dialog-actions .md-cancel-button:before,
    md-dialog md-dialog-actions .survey-tree_question.active:focus .md-cancel-button:before,
    .survey-tree_question.active:focus md-dialog md-dialog-actions .md-confirm-button:before,
    md-dialog md-dialog-actions .survey-tree_question.active:focus .md-confirm-button:before {
      color: white; }

.main-stage {
  padding-top: 50px;
  width: 100%;
  height: 100%;
  position: relative;
  left: 0px;
  overflow-y: auto;
  transition: left 0.317s ease, width 0.317s ease; }
  .theme-cmix .main-stage {
    background-color: #F1F2F3; }
  .theme-marketview .main-stage {
    background-color: #F1F2F3; }
  .main-stage.left-nav-visible {
    left: 320px;
    width: calc(100% - 320px); }

.main-stage_edit-area {
  padding-top: 32px;
  overflow: auto; }
  .main-stage_edit-area.single-mode .gridster-loaded {
    max-height: calc(100vh - (82px)); }
    .main-stage_edit-area.single-mode .gridster-loaded .gridster-item {
      max-height: calc(100% - 32px); }

.settings-bar-container {
  width: 0;
  overflow: hidden;
  position: relative;
  transition: width 0.2s ease-out; }
  .settings-bar-container.visible {
    width: 256px;
    box-shadow: -2px 0 2px 0 rgba(0, 0, 0, 0.125); }

.settings-bar-container_inner {
  background-color: white;
  width: 256px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0; }

/* Question Settings */
.question-settings {
  width: 100%;
  height: 100%; }

.question-settings .inclusion {
  width: calc(100% - 11em);
  display: inline-block;
  vertical-align: middle; }

.question-settings_header {
  background-color: #585863;
  color: white;
  padding: 8px;
  height: 35px; }
  .question-settings_header p {
    font-weight: bold;
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 1.5em);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }

.question-settings_content {
  width: 100%;
  height: calc(100% - 35px);
  overflow: auto; }
  .question-settings_content[slider] {
    overflow: hidden;
    padding-bottom: 0; }
    .question-settings_content[slider] > div {
      padding-bottom: 6em;
      bottom: 0;
      overflow: auto; }
  .question-settings_content h3 {
    font-size: 1rem;
    font-weight: bold;
    background: #70707e;
    color: white;
    border-top: 1px solid transparent;
    margin: 0;
    padding: 8px; }
    .theme-cmix .question-settings_content h3 {
      border-top-color: #DDE1E7; }
    .theme-marketview .question-settings_content h3 {
      border-top-color: #DDE1E7; }
  .question-settings_content > div:after {
    content: ' ';
    display: block;
    width: 100%;
    height: 64px; }

/* Question Setting */
.question-setting {
  padding: 8px;
  border-top: 1px solid transparent;
  position: relative; }
  .theme-cmix .question-setting {
    border-top-color: #DDE1E7; }
    .theme-cmix .question-setting:not(.no-highlight):hover {
      background-color: #FAFAFA; }
  .theme-marketview .question-setting {
    border-top-color: #DDE1E7; }
    .theme-marketview .question-setting:not(.no-highlight):hover {
      background-color: #FAFAFA; }
  .question-setting .inline-label-switch {
    border-top: 0;
    padding: 0; }
  .question-setting .qs_inline-min-max label,
  .question-setting .qs_inline-min-max span,
  .question-setting .qs_inline-min-max input {
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 0; }
  .question-setting .qs_inline-min-max input {
    width: 5em;
    padding-right: 4px; }
  .question-setting .qs_custom-validation {
    border-top: 1px solid transparent;
    margin-top: 8px;
    padding-top: 8px;
    display: flex;
    align-content: center; }
    .theme-cmix .question-setting .qs_custom-validation {
      border-top-color: #DDE1E7; }
      .theme-cmix .question-setting .qs_custom-validation:hover {
        background-color: #FAFAFA; }
    .theme-marketview .question-setting .qs_custom-validation {
      border-top-color: #DDE1E7; }
      .theme-marketview .question-setting .qs_custom-validation:hover {
        background-color: #FAFAFA; }
    .question-setting .qs_custom-validation .custom-validation_content {
      flex-grow: 1; }
      .question-setting .qs_custom-validation .custom-validation_content label {
        padding-left: 0;
        margin-bottom: 0; }
    .question-setting .qs_custom-validation .custom-validation_actions {
      white-space: nowrap; }
      .question-setting .qs_custom-validation .custom-validation_actions button, .question-setting .qs_custom-validation .custom-validation_actions label.label-btn, .question-setting .qs_custom-validation .custom-validation_actions md-dialog md-dialog-actions .md-cancel-button, md-dialog md-dialog-actions .question-setting .qs_custom-validation .custom-validation_actions .md-cancel-button, .question-setting .qs_custom-validation .custom-validation_actions md-dialog md-dialog-actions .md-confirm-button, md-dialog md-dialog-actions .question-setting .qs_custom-validation .custom-validation_actions .md-confirm-button {
        padding: 0; }

response-group {
  display: block; }

.response-group {
  background-color: white;
  border-left: 2px solid transparent;
  padding: 8px 0 8px 8px;
  margin-bottom: 8px; }
  .theme-cmix .response-group {
    border-color: #DDE1E7; }
  .theme-marketview .response-group {
    border-color: #DDE1E7; }
  .response-group .response-group_list {
    min-height: 16px; }

.input-btn-group,
.input-multi-btn-group {
  margin-bottom: 8px;
  display: flex;
  align-items: center; }
  .theme-cmix .input-btn-group button.icon-drag-handle, .theme-cmix .input-btn-group label.icon-drag-handle.label-btn, .theme-cmix .input-btn-group md-dialog md-dialog-actions .icon-drag-handle.md-cancel-button, md-dialog md-dialog-actions .theme-cmix .input-btn-group .icon-drag-handle.md-cancel-button, .theme-cmix .input-btn-group md-dialog md-dialog-actions .icon-drag-handle.md-confirm-button, md-dialog md-dialog-actions .theme-cmix .input-btn-group .icon-drag-handle.md-confirm-button, .theme-cmix .input-multi-btn-group button.icon-drag-handle, .theme-cmix .input-multi-btn-group label.icon-drag-handle.label-btn, .theme-cmix .input-multi-btn-group md-dialog md-dialog-actions .icon-drag-handle.md-cancel-button, md-dialog md-dialog-actions .theme-cmix .input-multi-btn-group .icon-drag-handle.md-cancel-button, .theme-cmix .input-multi-btn-group md-dialog md-dialog-actions .icon-drag-handle.md-confirm-button, md-dialog md-dialog-actions .theme-cmix .input-multi-btn-group .icon-drag-handle.md-confirm-button {
    color: rgba(88, 88, 99, 0.5); }
  .theme-cmix .input-btn-group:hover button.icon-drag-handle, .theme-cmix .input-btn-group:hover label.icon-drag-handle.label-btn, .theme-cmix .input-btn-group:hover md-dialog md-dialog-actions .icon-drag-handle.md-cancel-button, md-dialog md-dialog-actions .theme-cmix .input-btn-group:hover .icon-drag-handle.md-cancel-button, .theme-cmix .input-btn-group:hover md-dialog md-dialog-actions .icon-drag-handle.md-confirm-button, md-dialog md-dialog-actions .theme-cmix .input-btn-group:hover .icon-drag-handle.md-confirm-button, .theme-cmix .input-multi-btn-group:hover button.icon-drag-handle, .theme-cmix .input-multi-btn-group:hover label.icon-drag-handle.label-btn, .theme-cmix .input-multi-btn-group:hover md-dialog md-dialog-actions .icon-drag-handle.md-cancel-button, md-dialog md-dialog-actions .theme-cmix .input-multi-btn-group:hover .icon-drag-handle.md-cancel-button, .theme-cmix .input-multi-btn-group:hover md-dialog md-dialog-actions .icon-drag-handle.md-confirm-button, md-dialog md-dialog-actions .theme-cmix .input-multi-btn-group:hover .icon-drag-handle.md-confirm-button {
    color: #585863; }
  .theme-marketview .input-btn-group button.icon-drag-handle, .theme-marketview .input-btn-group label.icon-drag-handle.label-btn, .theme-marketview .input-btn-group md-dialog md-dialog-actions .icon-drag-handle.md-cancel-button, md-dialog md-dialog-actions .theme-marketview .input-btn-group .icon-drag-handle.md-cancel-button, .theme-marketview .input-btn-group md-dialog md-dialog-actions .icon-drag-handle.md-confirm-button, md-dialog md-dialog-actions .theme-marketview .input-btn-group .icon-drag-handle.md-confirm-button, .theme-marketview .input-multi-btn-group button.icon-drag-handle, .theme-marketview .input-multi-btn-group label.icon-drag-handle.label-btn, .theme-marketview .input-multi-btn-group md-dialog md-dialog-actions .icon-drag-handle.md-cancel-button, md-dialog md-dialog-actions .theme-marketview .input-multi-btn-group .icon-drag-handle.md-cancel-button, .theme-marketview .input-multi-btn-group md-dialog md-dialog-actions .icon-drag-handle.md-confirm-button, md-dialog md-dialog-actions .theme-marketview .input-multi-btn-group .icon-drag-handle.md-confirm-button {
    color: rgba(102, 102, 102, 0.5); }
  .theme-marketview .input-btn-group:hover button.icon-drag-handle, .theme-marketview .input-btn-group:hover label.icon-drag-handle.label-btn, .theme-marketview .input-btn-group:hover md-dialog md-dialog-actions .icon-drag-handle.md-cancel-button, md-dialog md-dialog-actions .theme-marketview .input-btn-group:hover .icon-drag-handle.md-cancel-button, .theme-marketview .input-btn-group:hover md-dialog md-dialog-actions .icon-drag-handle.md-confirm-button, md-dialog md-dialog-actions .theme-marketview .input-btn-group:hover .icon-drag-handle.md-confirm-button, .theme-marketview .input-multi-btn-group:hover button.icon-drag-handle, .theme-marketview .input-multi-btn-group:hover label.icon-drag-handle.label-btn, .theme-marketview .input-multi-btn-group:hover md-dialog md-dialog-actions .icon-drag-handle.md-cancel-button, md-dialog md-dialog-actions .theme-marketview .input-multi-btn-group:hover .icon-drag-handle.md-cancel-button, .theme-marketview .input-multi-btn-group:hover md-dialog md-dialog-actions .icon-drag-handle.md-confirm-button, md-dialog md-dialog-actions .theme-marketview .input-multi-btn-group:hover .icon-drag-handle.md-confirm-button {
    color: #666666; }

.input-btn-group inline-editor,
.input-btn-group md-autocomplete,
.input-btn-group dropdown {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  max-width: calc(100% - 4.5em);
  flex-grow: 1; }

.input-btn-group input + input {
  margin-top: 0;
  margin-left: 8px; }

.input-btn-group input + button, .input-btn-group input + label.label-btn, .input-btn-group md-dialog md-dialog-actions input + .md-cancel-button, md-dialog md-dialog-actions .input-btn-group input + .md-cancel-button, .input-btn-group md-dialog md-dialog-actions input + .md-confirm-button, md-dialog md-dialog-actions .input-btn-group input + .md-confirm-button {
  margin-left: 8px; }

.input-btn-group full-editor-dialog-icon {
  margin-left: 4px;
  margin-right: 4px; }

.input-multi-btn-group .input-multi-btn-group_input-container {
  display: inline-block;
  vertical-align: middle;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }
  .input-multi-btn-group .input-multi-btn-group_input-container .input-container_marker,
  .input-multi-btn-group .input-multi-btn-group_input-container .input-container_text {
    display: inline-block;
    vertical-align: middle; }
  .input-multi-btn-group .input-multi-btn-group_input-container .input-container_marker, .input-multi-btn-group .input-multi-btn-group_input-container span.marker, .input-multi-btn-group .input-multi-btn-group_input-container .grid-cell .grid-question span.grid-question__name, .grid-cell .grid-question .input-multi-btn-group .input-multi-btn-group_input-container span.grid-question__name,
  .input-multi-btn-group .input-multi-btn-group_input-container .grid-cell .grid-question span.grid-question__response, .grid-cell .grid-question .input-multi-btn-group .input-multi-btn-group_input-container span.grid-question__response {
    min-width: 3.5em;
    text-align: center; }
  .input-multi-btn-group .input-multi-btn-group_input-container span.marker, .input-multi-btn-group .input-multi-btn-group_input-container .grid-cell .grid-question span.grid-question__name, .grid-cell .grid-question .input-multi-btn-group .input-multi-btn-group_input-container span.grid-question__name,
  .input-multi-btn-group .input-multi-btn-group_input-container .grid-cell .grid-question span.grid-question__response, .grid-cell .grid-question .input-multi-btn-group .input-multi-btn-group_input-container span.grid-question__response {
    width: 5rem; }
  .input-multi-btn-group .input-multi-btn-group_input-container .input-container_text {
    width: 100%;
    max-width: calc(100% - 3.25em); }
  .input-multi-btn-group .input-multi-btn-group_input-container.-text {
    flex: 1; }

.input-multi-btn-group i {
  display: inline-block;
  vertical-align: middle; }
  .input-multi-btn-group i.empty {
    width: 1.2em;
    pointer-events: none; }

.input-multi-btn-group md-select {
  display: inline-block;
  vertical-align: middle; }

.inline-label-switch {
  display: flex;
  align-items: center;
  padding: 8px 0;
  border-top: 1px solid transparent; }
  .inline-label-switch label {
    display: inline-block;
    vertical-align: middle;
    flex-grow: 1;
    margin-bottom: 0; }
  .inline-label-switch i {
    max-width: 1.337em; }
  .inline-label-switch md-switch {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    height: auto; }
  .inline-label-switch .error {
    font-weight: bold;
    text-align: right;
    width: 100%; }
  .theme-cmix .inline-label-switch {
    border-color: #DDE1E7; }
    .theme-cmix .inline-label-switch:hover {
      background-color: #FAFAFA; }
    .theme-cmix .inline-label-switch .error {
      color: #DF4E71; }
  .theme-marketview .inline-label-switch {
    border-color: #DDE1E7; }
    .theme-marketview .inline-label-switch:hover {
      background-color: #FAFAFA; }
    .theme-marketview .inline-label-switch .error {
      color: #DF4E71; }

.dropdown {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: auto; }

.dropdown-button.no-border,
.dropdown.open .dropdown-button.no-border {
  background-color: transparent;
  border: none;
  border-radius: 0; }

.dropdown-button-arrow {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px; }

.dropdown-menu {
  display: none;
  width: auto;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 999999;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  text-align: left;
  margin-top: 3px; }

.dropdown-menu-right-align {
  left: auto;
  right: 0; }

.dropdown-menu-top-align {
  top: auto;
  bottom: 100%; }

.dropdown-menu-content {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 200px;
  position: relative; }

.dropdown-button.dropdown-button-no-border {
  border: none;
  border-radius: 0; }

.dropdown-menu-content.ps-active-y .dropdown-item-outer {
  padding-right: 10px; }

.dropdown-item-outer:first-child {
  margin-top: 8px; }

.dropdown-item-outer:last-child {
  margin-bottom: 8px; }

.dropdown-item {
  background-color: white;
  white-space: nowrap;
  cursor: pointer;
  padding: 8px 16px; }
  .theme-cmix .dropdown-item:hover, .theme-cmix .dropdown-item:focus {
    background-color: #FAFAFA; }
  .theme-marketview .dropdown-item:hover, .theme-marketview .dropdown-item:focus {
    background-color: #FAFAFA; }

.dropdown-item:not(:last-child) {
  border-bottom: 1px solid transparent; }
  .theme-cmix .dropdown-item:not(:last-child) {
    border-bottom-color: #DDE1E7; }
  .theme-marketview .dropdown-item:not(:last-child) {
    border-bottom-color: #DDE1E7; }

/* depricated, use <md-select> */
.radio-container {
  display: inline-flex;
  flex-direction: column;
  margin-right: 24px; }

.on-show {
  display: inline-flex;
  align-items: center; }

.question-side-content {
  margin-bottom: 8px; }

.input-q-container {
  min-width: 40px; }

.context-menu-container {
  background-color: white;
  border: 1px solid transparent;
  border-radius: 0;
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.2);
  width: auto;
  display: block;
  position: absolute;
  z-index: 9999; }
  .context-menu-container button, .context-menu-container label.label-btn, .context-menu-container md-dialog md-dialog-actions .md-cancel-button, md-dialog md-dialog-actions .context-menu-container .md-cancel-button, .context-menu-container md-dialog md-dialog-actions .md-confirm-button, md-dialog md-dialog-actions .context-menu-container .md-confirm-button {
    font-size: 0.8em;
    background-color: white;
    border: none;
    border-radius: 0;
    text-align: left;
    display: block;
    width: 100%;
    box-shadow: none;
    white-space: normal;
    cursor: pointer; }
    .context-menu-container button + button, .context-menu-container label.label-btn + button, .context-menu-container md-dialog md-dialog-actions .md-cancel-button + button, md-dialog md-dialog-actions .context-menu-container .md-cancel-button + button, .context-menu-container md-dialog md-dialog-actions .md-confirm-button + button, md-dialog md-dialog-actions .context-menu-container .md-confirm-button + button, .context-menu-container button + label.label-btn, .context-menu-container label.label-btn + label.label-btn, .context-menu-container md-dialog md-dialog-actions .md-cancel-button + label.label-btn, md-dialog md-dialog-actions .context-menu-container .md-cancel-button + label.label-btn, .context-menu-container md-dialog md-dialog-actions .md-confirm-button + label.label-btn, md-dialog md-dialog-actions .context-menu-container .md-confirm-button + label.label-btn, .context-menu-container md-dialog md-dialog-actions button + .md-cancel-button, md-dialog md-dialog-actions .context-menu-container button + .md-cancel-button, .context-menu-container md-dialog md-dialog-actions label.label-btn + .md-cancel-button, md-dialog md-dialog-actions .context-menu-container label.label-btn + .md-cancel-button, .context-menu-container md-dialog md-dialog-actions .md-cancel-button + .md-cancel-button, md-dialog md-dialog-actions .context-menu-container .md-cancel-button + .md-cancel-button, .context-menu-container md-dialog md-dialog-actions .md-confirm-button + .md-cancel-button, md-dialog md-dialog-actions .context-menu-container .md-confirm-button + .md-cancel-button, .context-menu-container md-dialog md-dialog-actions button + .md-confirm-button, md-dialog md-dialog-actions .context-menu-container button + .md-confirm-button, .context-menu-container md-dialog md-dialog-actions label.label-btn + .md-confirm-button, md-dialog md-dialog-actions .context-menu-container label.label-btn + .md-confirm-button, .context-menu-container md-dialog md-dialog-actions .md-cancel-button + .md-confirm-button, md-dialog md-dialog-actions .context-menu-container .md-cancel-button + .md-confirm-button, .context-menu-container md-dialog md-dialog-actions .md-confirm-button + .md-confirm-button, md-dialog md-dialog-actions .context-menu-container .md-confirm-button + .md-confirm-button {
      margin-left: 0 !important; }
    .context-menu-container button.primary, .context-menu-container label.primary.label-btn, .context-menu-container md-dialog md-dialog-actions .primary.md-cancel-button, md-dialog md-dialog-actions .context-menu-container .primary.md-cancel-button, .context-menu-container md-dialog md-dialog-actions .md-confirm-button, md-dialog md-dialog-actions .context-menu-container .md-confirm-button {
      font-weight: bold; }
    .theme-cmix .context-menu-container button, .theme-cmix .context-menu-container label.label-btn, .theme-cmix .context-menu-container md-dialog md-dialog-actions .md-cancel-button, md-dialog md-dialog-actions .theme-cmix .context-menu-container .md-cancel-button, .theme-cmix .context-menu-container md-dialog md-dialog-actions .md-confirm-button, md-dialog md-dialog-actions .theme-cmix .context-menu-container .md-confirm-button {
      border-color: #DDE1E7;
      color: #3EA8DD; }
      .theme-cmix .context-menu-container button.danger, .theme-cmix .context-menu-container label.danger.label-btn, .theme-cmix .context-menu-container md-dialog md-dialog-actions .danger.md-cancel-button, md-dialog md-dialog-actions .theme-cmix .context-menu-container .danger.md-cancel-button, .theme-cmix .context-menu-container md-dialog md-dialog-actions .danger.md-confirm-button, md-dialog md-dialog-actions .theme-cmix .context-menu-container .danger.md-confirm-button {
        color: #DF4E71; }
      .theme-cmix .context-menu-container button:hover, .theme-cmix .context-menu-container label.label-btn:hover, .theme-cmix .context-menu-container md-dialog md-dialog-actions .md-cancel-button:hover, md-dialog md-dialog-actions .theme-cmix .context-menu-container .md-cancel-button:hover, .theme-cmix .context-menu-container md-dialog md-dialog-actions .md-confirm-button:hover, md-dialog md-dialog-actions .theme-cmix .context-menu-container .md-confirm-button:hover, .theme-cmix .context-menu-container button:focus, .theme-cmix .context-menu-container label.label-btn:focus, .theme-cmix .context-menu-container md-dialog md-dialog-actions .md-cancel-button:focus, md-dialog md-dialog-actions .theme-cmix .context-menu-container .md-cancel-button:focus, .theme-cmix .context-menu-container md-dialog md-dialog-actions .md-confirm-button:focus, md-dialog md-dialog-actions .theme-cmix .context-menu-container .md-confirm-button:focus, .theme-cmix .context-menu-container button:active, .theme-cmix .context-menu-container label.label-btn:active, .theme-cmix .context-menu-container md-dialog md-dialog-actions .md-cancel-button:active, md-dialog md-dialog-actions .theme-cmix .context-menu-container .md-cancel-button:active, .theme-cmix .context-menu-container md-dialog md-dialog-actions .md-confirm-button:active, md-dialog md-dialog-actions .theme-cmix .context-menu-container .md-confirm-button:active {
        background-color: #fafafa;
        color: #3EA8DD; }
        .theme-cmix .context-menu-container button:hover.danger, .theme-cmix .context-menu-container label.label-btn:hover.danger, .theme-cmix .context-menu-container md-dialog md-dialog-actions .md-cancel-button:hover.danger, md-dialog md-dialog-actions .theme-cmix .context-menu-container .md-cancel-button:hover.danger, .theme-cmix .context-menu-container md-dialog md-dialog-actions .md-confirm-button:hover.danger, md-dialog md-dialog-actions .theme-cmix .context-menu-container .md-confirm-button:hover.danger, .theme-cmix .context-menu-container button:focus.danger, .theme-cmix .context-menu-container label.label-btn:focus.danger, .theme-cmix .context-menu-container md-dialog md-dialog-actions .md-cancel-button:focus.danger, md-dialog md-dialog-actions .theme-cmix .context-menu-container .md-cancel-button:focus.danger, .theme-cmix .context-menu-container md-dialog md-dialog-actions .md-confirm-button:focus.danger, md-dialog md-dialog-actions .theme-cmix .context-menu-container .md-confirm-button:focus.danger, .theme-cmix .context-menu-container button:active.danger, .theme-cmix .context-menu-container label.label-btn:active.danger, .theme-cmix .context-menu-container md-dialog md-dialog-actions .md-cancel-button:active.danger, md-dialog md-dialog-actions .theme-cmix .context-menu-container .md-cancel-button:active.danger, .theme-cmix .context-menu-container md-dialog md-dialog-actions .md-confirm-button:active.danger, md-dialog md-dialog-actions .theme-cmix .context-menu-container .md-confirm-button:active.danger {
          color: #DF4E71; }
    .theme-marketview .context-menu-container button, .theme-marketview .context-menu-container label.label-btn, .theme-marketview .context-menu-container md-dialog md-dialog-actions .md-cancel-button, md-dialog md-dialog-actions .theme-marketview .context-menu-container .md-cancel-button, .theme-marketview .context-menu-container md-dialog md-dialog-actions .md-confirm-button, md-dialog md-dialog-actions .theme-marketview .context-menu-container .md-confirm-button {
      border-color: #DDE1E7;
      color: #115FA6; }
      .theme-marketview .context-menu-container button.danger, .theme-marketview .context-menu-container label.danger.label-btn, .theme-marketview .context-menu-container md-dialog md-dialog-actions .danger.md-cancel-button, md-dialog md-dialog-actions .theme-marketview .context-menu-container .danger.md-cancel-button, .theme-marketview .context-menu-container md-dialog md-dialog-actions .danger.md-confirm-button, md-dialog md-dialog-actions .theme-marketview .context-menu-container .danger.md-confirm-button {
        color: #DF4E71; }
      .theme-marketview .context-menu-container button:hover, .theme-marketview .context-menu-container label.label-btn:hover, .theme-marketview .context-menu-container md-dialog md-dialog-actions .md-cancel-button:hover, md-dialog md-dialog-actions .theme-marketview .context-menu-container .md-cancel-button:hover, .theme-marketview .context-menu-container md-dialog md-dialog-actions .md-confirm-button:hover, md-dialog md-dialog-actions .theme-marketview .context-menu-container .md-confirm-button:hover, .theme-marketview .context-menu-container button:focus, .theme-marketview .context-menu-container label.label-btn:focus, .theme-marketview .context-menu-container md-dialog md-dialog-actions .md-cancel-button:focus, md-dialog md-dialog-actions .theme-marketview .context-menu-container .md-cancel-button:focus, .theme-marketview .context-menu-container md-dialog md-dialog-actions .md-confirm-button:focus, md-dialog md-dialog-actions .theme-marketview .context-menu-container .md-confirm-button:focus, .theme-marketview .context-menu-container button:active, .theme-marketview .context-menu-container label.label-btn:active, .theme-marketview .context-menu-container md-dialog md-dialog-actions .md-cancel-button:active, md-dialog md-dialog-actions .theme-marketview .context-menu-container .md-cancel-button:active, .theme-marketview .context-menu-container md-dialog md-dialog-actions .md-confirm-button:active, md-dialog md-dialog-actions .theme-marketview .context-menu-container .md-confirm-button:active {
        background-color: #fafafa;
        color: #115FA6; }
        .theme-marketview .context-menu-container button:hover.danger, .theme-marketview .context-menu-container label.label-btn:hover.danger, .theme-marketview .context-menu-container md-dialog md-dialog-actions .md-cancel-button:hover.danger, md-dialog md-dialog-actions .theme-marketview .context-menu-container .md-cancel-button:hover.danger, .theme-marketview .context-menu-container md-dialog md-dialog-actions .md-confirm-button:hover.danger, md-dialog md-dialog-actions .theme-marketview .context-menu-container .md-confirm-button:hover.danger, .theme-marketview .context-menu-container button:focus.danger, .theme-marketview .context-menu-container label.label-btn:focus.danger, .theme-marketview .context-menu-container md-dialog md-dialog-actions .md-cancel-button:focus.danger, md-dialog md-dialog-actions .theme-marketview .context-menu-container .md-cancel-button:focus.danger, .theme-marketview .context-menu-container md-dialog md-dialog-actions .md-confirm-button:focus.danger, md-dialog md-dialog-actions .theme-marketview .context-menu-container .md-confirm-button:focus.danger, .theme-marketview .context-menu-container button:active.danger, .theme-marketview .context-menu-container label.label-btn:active.danger, .theme-marketview .context-menu-container md-dialog md-dialog-actions .md-cancel-button:active.danger, md-dialog md-dialog-actions .theme-marketview .context-menu-container .md-cancel-button:active.danger, .theme-marketview .context-menu-container md-dialog md-dialog-actions .md-confirm-button:active.danger, md-dialog md-dialog-actions .theme-marketview .context-menu-container .md-confirm-button:active.danger {
          color: #DF4E71; }
  .context-menu-container p {
    font-size: 0.8em;
    padding: 0.25em 0.5em; }
  .context-menu-container ul {
    font-size: 0.8em;
    padding-left: 1.5em; }

.scroll-content {
  height: 100%;
  width: 100%;
  position: relative;
  padding-right: 15px;
  padding-left: 5px;
  box-sizing: border-box; }

.fr-toolbar.fr-inline {
  z-index: 55; }

button.fr-command, label.fr-command.label-btn, md-dialog md-dialog-actions .fr-command.md-cancel-button, md-dialog md-dialog-actions .fr-command.md-confirm-button {
  box-shadow: none; }

.fr-image-locator {
  max-height: 320px;
  overflow: auto; }

.fr-image-locator_image-container {
  padding: 8px 4px;
  cursor: pointer; }
  .fr-image-locator_image-container img {
    border: 1px solid transparent;
    max-width: 64px; }
  .fr-image-locator_image-container p {
    word-wrap: break-word; }
  .fr-image-locator_image-container + .fr-image-locator_image-container {
    border-top: 1px solid transparent; }
  .theme-cmix .fr-image-locator_image-container img {
    border-color: #DDE1E7; }
  .theme-cmix .fr-image-locator_image-container:hover {
    background-color: #FAFAFA; }
  .theme-cmix .fr-image-locator_image-container + .theme-cmix .fr-image-locator_image-container {
    border-top-color: #DDE1E7; }
  .theme-marketview .fr-image-locator_image-container img {
    border-color: #DDE1E7; }
  .theme-marketview .fr-image-locator_image-container:hover {
    background-color: #FAFAFA; }
  .theme-marketview .fr-image-locator_image-container + .theme-marketview .fr-image-locator_image-container {
    border-top-color: #DDE1E7; }

.fr-video-locator {
  max-height: 320px;
  overflow: auto; }

.fr-video-locator_video-container {
  padding: 8px 4px;
  cursor: pointer; }
  .fr-video-locator_video-container video {
    border: 1px solid transparent;
    max-width: 64px; }
  .fr-video-locator_video-container p {
    word-wrap: break-word; }
  .fr-video-locator_video-container + .fr-video-locator_video-container {
    border-top: 1px solid transparent; }
  .theme-cmix .fr-video-locator_video-container video {
    border-color: #DDE1E7; }
  .theme-cmix .fr-video-locator_video-container:hover {
    background-color: #FAFAFA; }
  .theme-cmix .fr-video-locator_video-container + .theme-cmix .fr-video-locator_video-container {
    border-top-color: #DDE1E7; }
  .theme-marketview .fr-video-locator_video-container video {
    border-color: #DDE1E7; }
  .theme-marketview .fr-video-locator_video-container:hover {
    background-color: #FAFAFA; }
  .theme-marketview .fr-video-locator_video-container + .theme-marketview .fr-video-locator_video-container {
    border-top-color: #DDE1E7; }

.fr-validation-popup {
  max-height: 320px;
  overflow: auto; }

.fr-popup .fr-input-line {
  padding-top: 16px; }
  .fr-popup .fr-input-line input[type="text"] {
    border: 1px solid transparent;
    padding: 4px; }
    .fr-popup .fr-input-line input[type="text"]:focus {
      border: 1px solid transparent; }
  .fr-popup .fr-input-line input + label {
    top: -16px;
    background-color: transparent; }
  .theme-cmix .fr-popup .fr-input-line input[type="text"] {
    border-color: #DDE1E7; }
    .theme-cmix .fr-popup .fr-input-line input[type="text"]:focus {
      border-color: #2E91C9; }
  .theme-cmix .fr-popup .fr-input-line input + label {
    color: #22232D; }
  .theme-marketview .fr-popup .fr-input-line input[type="text"] {
    border-color: #DDE1E7; }
    .theme-marketview .fr-popup .fr-input-line input[type="text"]:focus {
      border-color: #5B9CB7; }
  .theme-marketview .fr-popup .fr-input-line input + label {
    color: #414042; }

#card-quotas .quota-grid {
  margin-bottom: 16px; }

#card-quotas .quota-grid-header-buttons {
  display: flex;
  flex-direction: row;
  justify-content: space-between; }
  #card-quotas .quota-grid-header-buttons .main-buttons .edit-definitions-btn,
  #card-quotas .quota-grid-header-buttons .main-buttons .download-btn {
    margin-top: 8px;
    margin-bottom: 8px; }
  #card-quotas .quota-grid-header-buttons .live-edit-buttons {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    justify-content: center; }
    #card-quotas .quota-grid-header-buttons .live-edit-buttons .aggregated-counts-switch {
      border-right: 1px solid transparent; }
      .theme-cmix #card-quotas .quota-grid-header-buttons .live-edit-buttons .aggregated-counts-switch {
        border-right-color: #DDE1E7; }
      .theme-marketview #card-quotas .quota-grid-header-buttons .live-edit-buttons .aggregated-counts-switch {
        border-right-color: #DDE1E7; }
    #card-quotas .quota-grid-header-buttons .live-edit-buttons .aggregated-counts-switch,
    #card-quotas .quota-grid-header-buttons .live-edit-buttons .test-live-counts-switch {
      display: flex;
      flex-direction: row;
      gap: 8px;
      align-items: center;
      justify-content: center; }
      #card-quotas .quota-grid-header-buttons .live-edit-buttons .aggregated-counts-switch label,
      #card-quotas .quota-grid-header-buttons .live-edit-buttons .test-live-counts-switch label {
        margin-bottom: 0; }
    #card-quotas .quota-grid-header-buttons .live-edit-buttons .aggregated-counts-switch label {
      width: 8ch; }
    #card-quotas .quota-grid-header-buttons .live-edit-buttons .test-live-counts-switch label {
      width: 5ch; }

#card-quotas .quo-t {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%; }

#card-quotas .quo-main-header {
  border: 1px solid transparent; }
  .theme-cmix #card-quotas .quo-main-header {
    border-color: #DDE1E7; }
  .theme-marketview #card-quotas .quo-main-header {
    border-color: #DDE1E7; }

#card-quotas .quo-main-header .quo-title {
  font-weight: bold; }

#card-quotas .quo-main-header.quo-overall {
  vertical-align: bottom; }

#card-quotas .quo-h .quo-que,
#card-quotas .quo-h .quo-var {
  border: 1px solid transparent; }
  .theme-cmix #card-quotas .quo-h .quo-que, .theme-cmix
  #card-quotas .quo-h .quo-var {
    border-color: #DDE1E7; }
  .theme-marketview #card-quotas .quo-h .quo-que, .theme-marketview
  #card-quotas .quo-h .quo-var {
    border-color: #DDE1E7; }

#card-quotas .quo-r-h .quo-que,
#card-quotas .quo-r-h .quo-var {
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent; }
  .theme-cmix #card-quotas .quo-r-h .quo-que, .theme-cmix
  #card-quotas .quo-r-h .quo-var {
    border-top-color: #DDE1E7;
    border-bottom-color: #DDE1E7; }
  .theme-marketview #card-quotas .quo-r-h .quo-que, .theme-marketview
  #card-quotas .quo-r-h .quo-var {
    border-top-color: #DDE1E7;
    border-bottom-color: #DDE1E7; }

#card-quotas .quo-title-container {
  border-left: 1px solid transparent; }
  .theme-cmix #card-quotas .quo-title-container {
    border-left-color: #DDE1E7; }
  .theme-marketview #card-quotas .quo-title-container {
    border-left-color: #DDE1E7; }

#card-quotas .quo-h .quo-que-rps,
#card-quotas .quo-h .quo-var-rps,
#card-quotas .quo-r-h .quo-que-rps,
#card-quotas .quo-r-h .quo-var-rps {
  border-style: solid; }
  .theme-cmix #card-quotas .quo-h .quo-que-rps, .theme-cmix
  #card-quotas .quo-h .quo-var-rps, .theme-cmix
  #card-quotas .quo-r-h .quo-que-rps, .theme-cmix
  #card-quotas .quo-r-h .quo-var-rps {
    background-color: #FAFAFA;
    border-color: #DDE1E7; }
  .theme-marketview #card-quotas .quo-h .quo-que-rps, .theme-marketview
  #card-quotas .quo-h .quo-var-rps, .theme-marketview
  #card-quotas .quo-r-h .quo-que-rps, .theme-marketview
  #card-quotas .quo-r-h .quo-var-rps {
    background-color: #FAFAFA;
    border-color: #DDE1E7; }

#card-quotas .quo-que-rps + .quo-qty,
#card-quotas .quo-var-rps + .quo-qty {
  border-right: 1px solid transparent;
  white-space: nowrap; }
  .theme-cmix #card-quotas .quo-que-rps + .quo-qty, .theme-cmix
  #card-quotas .quo-var-rps + .quo-qty {
    border-right-color: #DDE1E7; }
  .theme-marketview #card-quotas .quo-que-rps + .quo-qty, .theme-marketview
  #card-quotas .quo-var-rps + .quo-qty {
    border-right-color: #DDE1E7; }

#card-quotas .quo-h .quo-que-rps,
#card-quotas .quo-h .quo-var-rps {
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-right-width: 1px;
  border-left: 0px none; }

#card-quotas .quo-r-h .quo-que-rps,
#card-quotas .quo-r-h .quo-var-rps {
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-top: 0px none; }

#card-quotas .quo-r-h .quo-que,
#card-quotas .quo-r-h .quo-var {
  max-width: 300px; }

#card-quotas .quo-h .quo-que-rps.quo-last,
#card-quotas .quo-h .quo-var-rps.quo-last {
  border-right: 0px none;
  text-align: center;
  font-weight: bold; }

#card-quotas .quo-r-h .quo-que-rps.quo-last,
#card-quotas .quo-r-h .quo-var-rps.quo-last {
  border-bottom: 0px none; }

#card-quotas .quo-h .quo-que-sp-r,
#card-quotas .quo-h .quo-que-sp-l,
#card-quotas .quo-h .quo-var-sp-r,
#card-quotas .quo-h .quo-var-sp-l,
#card-quotas .quo-r-h .quo-que-sp-b,
#card-quotas .quo-r-h .quo-que-sp-t,
#card-quotas .quo-r-h .quo-var-sp-b,
#card-quotas .quo-r-h .quo-var-sp-t {
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  padding: 0 !important; }
  .theme-cmix #card-quotas .quo-h .quo-que-sp-r, .theme-cmix
  #card-quotas .quo-h .quo-que-sp-l, .theme-cmix
  #card-quotas .quo-h .quo-var-sp-r, .theme-cmix
  #card-quotas .quo-h .quo-var-sp-l, .theme-cmix
  #card-quotas .quo-r-h .quo-que-sp-b, .theme-cmix
  #card-quotas .quo-r-h .quo-que-sp-t, .theme-cmix
  #card-quotas .quo-r-h .quo-var-sp-b, .theme-cmix
  #card-quotas .quo-r-h .quo-var-sp-t {
    background-color: #FAFAFA;
    border-top-color: #DDE1E7;
    border-bottom-color: #DDE1E7; }
  .theme-marketview #card-quotas .quo-h .quo-que-sp-r, .theme-marketview
  #card-quotas .quo-h .quo-que-sp-l, .theme-marketview
  #card-quotas .quo-h .quo-var-sp-r, .theme-marketview
  #card-quotas .quo-h .quo-var-sp-l, .theme-marketview
  #card-quotas .quo-r-h .quo-que-sp-b, .theme-marketview
  #card-quotas .quo-r-h .quo-que-sp-t, .theme-marketview
  #card-quotas .quo-r-h .quo-var-sp-b, .theme-marketview
  #card-quotas .quo-r-h .quo-var-sp-t {
    background-color: #FAFAFA;
    border-top-color: #DDE1E7;
    border-bottom-color: #DDE1E7; }

#card-quotas .quo-que-sp-l,
#card-quotas .quo-var-sp-l {
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  border-left: 1px solid transparent; }
  .theme-cmix #card-quotas .quo-que-sp-l, .theme-cmix
  #card-quotas .quo-var-sp-l {
    border-top-color: #DDE1E7;
    border-bottom-color: #DDE1E7;
    border-left-color: #DDE1E7; }
  .theme-marketview #card-quotas .quo-que-sp-l, .theme-marketview
  #card-quotas .quo-var-sp-l {
    border-top-color: #DDE1E7;
    border-bottom-color: #DDE1E7;
    border-left-color: #DDE1E7; }

#card-quotas .quo-que-sp-r,
#card-quotas .quo-var-sp-r {
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  border-right: 1px solid transparent; }
  .theme-cmix #card-quotas .quo-que-sp-r, .theme-cmix
  #card-quotas .quo-var-sp-r {
    border-top-color: #DDE1E7;
    border-bottom-color: #DDE1E7;
    border-right-color: #DDE1E7; }
  .theme-marketview #card-quotas .quo-que-sp-r, .theme-marketview
  #card-quotas .quo-var-sp-r {
    border-top-color: #DDE1E7;
    border-bottom-color: #DDE1E7;
    border-right-color: #DDE1E7; }

#card-quotas .quo-title {
  font-size: 10pt;
  font-weight: normal;
  padding: 3px 10px; }

#card-quotas .quo-label {
  width: 128px;
  min-width: 128px;
  max-width: 128px;
  font-size: 8pt;
  text-transform: uppercase;
  text-align: left;
  vertical-align: bottom; }

#card-quotas .quo-req,
#card-quotas .quo-act {
  display: inline-block;
  font-weight: normal; }

#card-quotas .quo-act {
  text-align: left; }

#card-quotas .quo-req {
  text-align: right; }

#card-quotas .quo-main-qty .quo-req,
#card-quotas .quo-main-qty .quo-act,
#card-quotas .quo-qty .quo-req,
#card-quotas .quo-qty .quo-act {
  width: 4.209em;
  display: inline;
  margin: 0 5px; }

#card-quotas .quo-qty {
  border-bottom: 1px solid transparent;
  width: 20%; }
  .theme-cmix #card-quotas .quo-qty {
    border-bottom-color: #DDE1E7; }
  .theme-marketview #card-quotas .quo-qty {
    border-bottom-color: #DDE1E7; }

#card-quotas .quo-qty + .quo-qty {
  border-left: 1px solid transparent; }
  .theme-cmix #card-quotas .quo-qty + .quo-qty {
    border-left-color: #DDE1E7; }
  .theme-marketview #card-quotas .quo-qty + .quo-qty {
    border-left-color: #DDE1E7; }

#card-quotas .quo-main-qty {
  border: 1px solid transparent;
  width: 124px;
  min-width: 124px;
  max-width: 124px; }
  .theme-cmix #card-quotas .quo-main-qty {
    border-color: #DDE1E7; }
  .theme-marketview #card-quotas .quo-main-qty {
    border-color: #DDE1E7; }

.quota-group-width {
  width: 20em; }

.response-list_search {
  margin: 8px 0; }
  .response-list_search label {
    margin-top: 8px; }
  .response-list_search .search_input {
    margin-bottom: 8px; }
  .response-list_search inline-editor {
    background-color: white; }
  .response-list_search .input-multi-btn-group_input-container.-text {
    max-width: calc(100% - 100px); }
  .response-list_search .no-results {
    font-style: italic;
    margin: 0 4px; }
    .theme-cmix .response-list_search .no-results {
      color: #585863; }
    .theme-marketview .response-list_search .no-results {
      color: #666666; }

.response-list_responses {
  margin-top: 16px; }
  .response-list_responses .input-multi-btn-group_input-container.-text {
    max-width: calc(100% - 130px); }
    .response-list_responses .input-multi-btn-group_input-container.-text inline-editor {
      white-space: normal; }

.shared-list-menu {
  width: 192px; }
  .shared-list-menu .shared-list-menu_list-item {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }

.color-preview {
  border: 1px solid transparent;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  width: 18px;
  height: 18px;
  margin-right: 2px; }
  .theme-cmix .color-preview {
    border-color: #585863; }
  .theme-marketview .color-preview {
    border-color: #666666; }

.colorpicker .dropdown-menu {
  background-color: white; }

.colorpicker .close-colorpicker {
  font-size: 0;
  color: transparent; }
  .colorpicker .close-colorpicker:before {
    font-size: 1rem; }
  .colorpicker .close-colorpicker:after {
    content: 'Close';
    font-size: 1rem; }
  .theme-cmix .colorpicker .close-colorpicker:before {
    color: #585863; }
  .theme-cmix .colorpicker .close-colorpicker:after {
    color: #585863; }
  .theme-cmix .colorpicker .close-colorpicker:hover:before, .theme-cmix .colorpicker .close-colorpicker:hover:after {
    color: #DF4E71; }
  .theme-marketview .colorpicker .close-colorpicker:before {
    color: #666666; }
  .theme-marketview .colorpicker .close-colorpicker:after {
    color: #666666; }
  .theme-marketview .colorpicker .close-colorpicker:hover:before, .theme-marketview .colorpicker .close-colorpicker:hover:after {
    color: #DF4E71; }

.page-action-block-list {
  margin-bottom: 16px; }
  .page-action-block-list .input-btn-group {
    margin-bottom: 0; }
  .page-action-block-list md-select.layout-fill {
    margin: 0 1.4em 0 0; }

.action-block-container {
  background-color: white;
  border: 1px solid transparent;
  position: relative;
  margin-bottom: 8px;
  display: flex; }
  .action-block-container .icon-drag-handle {
    border-right: 1px solid transparent;
    border-radius: 0; }
    .theme-cmix .action-block-container .icon-drag-handle {
      background-color: #FAFAFA;
      border-right-color: #DDE1E7;
      color: #585863; }
      .theme-cmix .action-block-container .icon-drag-handle:hover, .theme-cmix .action-block-container .icon-drag-handle:focus, .theme-cmix .action-block-container .icon-drag-handle:active {
        color: #585863; }
    .theme-marketview .action-block-container .icon-drag-handle {
      background-color: #FAFAFA;
      border-right-color: #DDE1E7;
      color: #666666; }
      .theme-marketview .action-block-container .icon-drag-handle:hover, .theme-marketview .action-block-container .icon-drag-handle:focus, .theme-marketview .action-block-container .icon-drag-handle:active {
        color: #666666; }
  .action-block-container .drag {
    display: flex; }
  .action-block-container .action-block {
    flex: 1; }
  .action-block-container .collapse-block-btn {
    border-top: 1px solid transparent;
    border-radius: 0; }
    .theme-cmix .action-block-container .collapse-block-btn {
      background-color: #FAFAFA;
      border-top-color: #DDE1E7; }
    .theme-marketview .action-block-container .collapse-block-btn {
      background-color: #FAFAFA;
      border-top-color: #DDE1E7; }
  .theme-cmix .action-block-container {
    border-color: #DDE1E7; }
  .theme-marketview .action-block-container {
    border-color: #DDE1E7; }
  .action-block-container label {
    margin-bottom: 0;
    white-space: nowrap; }
  .action-block-container .input-btn-group {
    margin-bottom: 0; }
  .action-block-container md-switch {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 8px; }
  .action-block-container .angular-ui-tree-nodes {
    padding: 0;
    width: 100%; }
  .action-block-container ng-pluralize {
    font-style: italic; }
    .theme-cmix .action-block-container ng-pluralize {
      color: #585863; }
    .theme-marketview .action-block-container ng-pluralize {
      color: #666666; }

.action-block_top-block {
  border-bottom: 1px solid transparent;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between; }
  .theme-cmix .action-block_top-block {
    background-color: #FAFAFA;
    border-bottom-color: #DDE1E7; }
  .theme-marketview .action-block_top-block {
    background-color: #FAFAFA;
    border-bottom-color: #DDE1E7; }
  .action-block_top-block .top-block_main-label {
    font-weight: bold;
    margin-right: 12px; }
  .action-block_top-block .top-block_condition {
    flex: 1;
    display: flex;
    align-items: center; }
    .action-block_top-block .top-block_condition label {
      margin-right: 4px; }
    .action-block_top-block .top-block_condition .condition-formula {
      flex: 1; }
    .action-block_top-block .top-block_condition > * + * {
      margin-left: 4px; }
  .action-block_top-block .delete-block-btn {
    margin-left: 8px; }

.button-width-90 {
  width: 90%; }

.button-width-10 {
  width: 10%; }

.button-width-30 {
  width: 30%; }

.button-width-70 {
  width: 70%; }

.button-width-60 {
  width: 60%; }

.button-width-40 {
  width: 40%; }

.action-rows-container {
  background-color: white;
  padding: 4px;
  display: flex;
  align-items: center; }
  .action-rows-container .action-row {
    padding: 0; }
  .action-rows-container > .clear {
    margin-left: 4px; }
  .action-rows-container.ar-logic-block {
    border: 1px solid transparent; }
    .action-rows-container.ar-logic-block .ar-lb-drag-handle {
      background-color: transparent;
      border-right-width: 0;
      margin-right: 4px; }
    .action-rows-container.ar-logic-block + .ar-logic-block {
      margin-top: 4px; }
    .theme-cmix .action-rows-container.ar-logic-block {
      border-color: #DDE1E7; }
    .theme-marketview .action-rows-container.ar-logic-block {
      border-color: #DDE1E7; }
  .theme-cmix .action-rows-container:hover {
    background-color: rgba(254, 247, 220, 0.5); }
  .theme-marketview .action-rows-container:hover {
    background-color: rgba(249, 244, 236, 0.5); }

.action-row {
  flex-grow: 1;
  padding: 4px;
  display: flex;
  align-items: center; }
  .action-row.ar-shrink {
    flex-grow: 0;
    flex-shrink: 1; }
  .action-row.ar-wrappable {
    flex-wrap: wrap; }
    .action-row.ar-wrappable .ar-wrappable-full-width {
      width: 100%; }
  .action-row .ar-grow-label {
    flex: 1; }
  .action-row .ar-block-label {
    display: block;
    margin-bottom: 4px; }
  .action-row > * + * {
    margin-left: 4px; }

.action-row_radio-list {
  width: 100%; }
  .action-row_radio-list .radio-list-item {
    margin-top: 4px; }

.logic-blocks-list-container {
  padding: 4px; }
  .logic-blocks-list-container .lblc-add-block-select {
    max-width: 140px;
    margin-top: 8px; }

.theme-cmix .non-icon-button {
  color: #FFFFFF; }

.theme-marketview .non-icon-button {
  color: #FFFFFF; }

.grid-question_cell-controls .icon-grid-row.inherit-width,
.grid-question_cell-controls .icon-grid-column.inherit-width {
  width: auto; }

.template-library .header-wrapper {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: space-between; }
  .template-library .header-wrapper .toggle-wrapper .toggle input {
    display: none; }

.template-library .header-wrapper:hover {
  filter: brightness(85%); }

.template-library .template-section-wrapper {
  margin-bottom: 1em; }

.template-library .section-header-wrapper {
  padding: 1em;
  border: 1px solid;
  border-radius: 5px; }
  .theme-cmix .template-library .section-header-wrapper {
    border-color: #DDE1E7; }
  .theme-marketview .template-library .section-header-wrapper {
    border-color: #DDE1E7; }

.template-library .page-header-wrapper {
  padding: 1em;
  border: 1px solid;
  border-radius: 5px;
  margin-left: 1em; }
  .theme-cmix .template-library .page-header-wrapper {
    border-color: #DDE1E7; }
  .theme-marketview .template-library .page-header-wrapper {
    border-color: #DDE1E7; }

.template-library .template-page-wrapper {
  margin-top: .5em; }

.template-library .template-question-wrapper {
  padding: 1em;
  margin-left: 2em;
  margin-top: .5em; }

/* Dialogs */
.js-editor-dialog .CodeMirror {
  height: calc(100vh - 153px); }

md-dialog.error-dialog {
  width: max-content; }
  md-dialog.error-dialog md-dialog-content p {
    white-space: pre; }
  .theme-cmix md-dialog.error-dialog md-toolbar {
    color: #DF4E71; }
  .theme-marketview md-dialog.error-dialog md-toolbar {
    color: #DF4E71; }

.file-upload-dialog_drop-msg {
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center; }

table.file-upload-dialog_files thead .file-upload-preview {
  width: 20%; }

table.file-upload-dialog_files thead .file-upload-name {
  width: 40%; }

table.file-upload-dialog_files thead .file-upload-options {
  width: 30%; }

table.file-upload-dialog_files thead .file-upload-actions {
  width: 10%; }

table.file-upload-dialog_files .files-preview img,
table.file-upload-dialog_files .files-preview video {
  max-width: 40px;
  max-height: 64px;
  display: inline-block;
  vertical-align: middle; }

.theme-cmix table.file-upload-dialog_files .icon-success, .theme-cmix table.file-upload-dialog_files .promise-indicator {
  color: #1B365D; }

.theme-cmix table.file-upload-dialog_files .icon-attention, .theme-cmix table.file-upload-dialog_files .promise-indicator.rejected {
  color: #DF4E71; }

.theme-marketview table.file-upload-dialog_files .icon-success, .theme-marketview table.file-upload-dialog_files .promise-indicator {
  color: #122D59; }

.theme-marketview table.file-upload-dialog_files .icon-attention, .theme-marketview table.file-upload-dialog_files .promise-indicator.rejected {
  color: #DF4E71; }

.library-dialog_content {
  height: 330px; }
  .library-dialog_content .row {
    display: flex;
    max-height: 100%; }
    .library-dialog_content .row > .content_left,
    .library-dialog_content .row > .content_right {
      max-height: 100%;
      overflow: auto; }
    .library-dialog_content .row > .content_right {
      padding: 8px; }
      .library-dialog_content .row > .content_right .right_search {
        border-bottom: 1px solid transparent;
        margin-bottom: 8px;
        padding-bottom: 8px; }
        .theme-cmix .library-dialog_content .row > .content_right .right_search {
          border-bottom-color: #DDE1E7; }
        .theme-marketview .library-dialog_content .row > .content_right .right_search {
          border-bottom-color: #DDE1E7; }
      .library-dialog_content .row > .content_right .right_template-list {
        margin-bottom: 8px;
        padding-left: 8px; }

.lookup-dialog_drop-msg {
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center; }

table.lookup-dialog_files-table td {
  white-space: nowrap; }

table.lookup-dialog_files-table .files-table_name-column {
  width: 100%; }

.theme-cmix table.lookup-dialog_files-table .files-table_status-column .icon-spinner, .theme-cmix table.lookup-dialog_files-table .files-table_status-column .promise-indicator.pending {
  color: #0a1422; }

.theme-cmix table.lookup-dialog_files-table .files-table_status-column .icon-success, .theme-cmix table.lookup-dialog_files-table .files-table_status-column .promise-indicator {
  color: #1B365D; }

.theme-marketview table.lookup-dialog_files-table .files-table_status-column .icon-spinner, .theme-marketview table.lookup-dialog_files-table .files-table_status-column .promise-indicator.pending {
  color: #050d19; }

.theme-marketview table.lookup-dialog_files-table .files-table_status-column .icon-success, .theme-marketview table.lookup-dialog_files-table .files-table_status-column .promise-indicator {
  color: #122D59; }

.custom-logic-dialog_drop-msg {
  height: 4.209em;
  display: flex;
  justify-content: center;
  align-items: center; }

table.custom-logic-dialog_files-table td {
  white-space: nowrap; }

table.custom-logic-dialog_files-table .custom-logic-dialog_name-column {
  width: 100%; }

.theme-cmix table.custom-logic-dialog_files-table .custom-logic-dialog_status-column .icon-spinner, .theme-cmix table.custom-logic-dialog_files-table .custom-logic-dialog_status-column .promise-indicator.pending {
  color: #0a1422; }

.theme-cmix table.custom-logic-dialog_files-table .custom-logic-dialog_status-column .icon-success, .theme-cmix table.custom-logic-dialog_files-table .custom-logic-dialog_status-column .promise-indicator {
  color: #52C1A3; }

.theme-cmix table.custom-logic-dialog_files-table .custom-logic-dialog_status-column .icon-attention, .theme-cmix table.custom-logic-dialog_files-table .custom-logic-dialog_status-column .promise-indicator.rejected {
  color: #DF4E71; }

.theme-marketview table.custom-logic-dialog_files-table .custom-logic-dialog_status-column .icon-spinner, .theme-marketview table.custom-logic-dialog_files-table .custom-logic-dialog_status-column .promise-indicator.pending {
  color: #050d19; }

.theme-marketview table.custom-logic-dialog_files-table .custom-logic-dialog_status-column .icon-success, .theme-marketview table.custom-logic-dialog_files-table .custom-logic-dialog_status-column .promise-indicator {
  color: #5BB78A; }

.theme-marketview table.custom-logic-dialog_files-table .custom-logic-dialog_status-column .icon-attention, .theme-marketview table.custom-logic-dialog_files-table .custom-logic-dialog_status-column .promise-indicator.rejected {
  color: #DF4E71; }

.bulk-edit-dialog {
  transform: none; }
  .bulk-edit-dialog current-locale-dropdown {
    display: block;
    max-width: 256px;
    margin-bottom: 16px; }
  .bulk-edit-dialog .tab-list {
    margin-bottom: 8px; }
  .bulk-edit-dialog .manualColumnResizer,
  .bulk-edit-dialog .manualColumnResizerGuide {
    position: absolute; }
  .bulk-edit-dialog .ht_master .wtHolder {
    min-height: 120px;
    max-height: calc(100vh - 329px);
    max-width: calc(100% - 16px); }

.passcode-upload-dialog_drop-msg {
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center; }

table.passcode-upload-dialog_files-table td {
  white-space: nowrap; }

table.passcode-upload-dialog_files-table .files-table_name-column {
  width: 100%; }

.theme-cmix table.passcode-upload-dialog_files-table .files-table_status-column .icon-spinner, .theme-cmix table.passcode-upload-dialog_files-table .files-table_status-column .promise-indicator.pending {
  color: #0a1422; }

.theme-cmix table.passcode-upload-dialog_files-table .files-table_status-column .icon-success, .theme-cmix table.passcode-upload-dialog_files-table .files-table_status-column .promise-indicator {
  color: #1B365D; }

.theme-marketview table.passcode-upload-dialog_files-table .files-table_status-column .icon-spinner, .theme-marketview table.passcode-upload-dialog_files-table .files-table_status-column .promise-indicator.pending {
  color: #050d19; }

.theme-marketview table.passcode-upload-dialog_files-table .files-table_status-column .icon-success, .theme-marketview table.passcode-upload-dialog_files-table .files-table_status-column .promise-indicator {
  color: #122D59; }

.new-question-dialog.blur {
  filter: blur(1px); }

.new-question-dialog_tab-content {
  border: 1px solid transparent;
  border-top-width: 0;
  margin-bottom: 8px;
  padding: 8px;
  max-height: 384px;
  overflow: auto; }
  .theme-cmix .new-question-dialog_tab-content {
    border-color: #DDE1E7; }
  .theme-marketview .new-question-dialog_tab-content {
    border-color: #DDE1E7; }
  .new-question-dialog_tab-content .tab-content_sub-radio-list {
    padding-left: 16px;
    padding-bottom: 8px; }
  .new-question-dialog_tab-content .standard-checkable-container + .standard-checkable-container {
    margin-top: 8px; }
  .new-question-dialog_tab-content.library-tab {
    padding: 0;
    height: 384px; }
    .new-question-dialog_tab-content.library-tab > .row {
      display: flex;
      height: 100%; }
      .new-question-dialog_tab-content.library-tab > .row > .library-tab_left,
      .new-question-dialog_tab-content.library-tab > .row > .library-tab_right {
        height: 100%;
        overflow: auto; }
      .new-question-dialog_tab-content.library-tab > .row > .library-tab_left .library-list {
        border-right: 1px solid transparent;
        min-height: 100%; }
        .theme-cmix .new-question-dialog_tab-content.library-tab > .row > .library-tab_left .library-list {
          border-color: #DDE1E7; }
        .theme-marketview .new-question-dialog_tab-content.library-tab > .row > .library-tab_left .library-list {
          border-color: #DDE1E7; }
      .new-question-dialog_tab-content.library-tab > .row > .library-tab_right {
        padding: 8px; }
        .new-question-dialog_tab-content.library-tab > .row > .library-tab_right .right_search {
          border-bottom: 1px solid transparent;
          margin-bottom: 8px;
          padding-bottom: 8px; }
          .theme-cmix .new-question-dialog_tab-content.library-tab > .row > .library-tab_right .right_search {
            border-bottom-color: #DDE1E7; }
          .theme-marketview .new-question-dialog_tab-content.library-tab > .row > .library-tab_right .right_search {
            border-bottom-color: #DDE1E7; }
        .new-question-dialog_tab-content.library-tab > .row > .library-tab_right .right_template-list {
          padding-left: 8px;
          margin-bottom: 4px; }
          .new-question-dialog_tab-content.library-tab > .row > .library-tab_right .right_template-list md-checkbox {
            margin: 4px 0; }

question-browser-dialog .question-subquestions {
  margin-left: 24px; }

md-dialog.quotas-bulk-edit-dialog {
  transform: none !important; }
  md-dialog.quotas-bulk-edit-dialog md-tabs {
    height: 100%; }
  md-dialog.quotas-bulk-edit-dialog md-tab-content {
    top: 16px; }

.quotas-bulk-edit-dialog_table-container .manualColumnResizer,
.quotas-bulk-edit-dialog_table-container .manualColumnResizerGuide {
  top: 0 !important;
  transform: translateX(-24px); }

.quotas-bulk-edit-dialog_table-container .ht_master .wtHolder {
  min-height: 9em;
  max-height: calc(100vh - 244px); }

.upload-survey-content-dialog .table--alignment-top {
  vertical-align: top; }

.upload-survey-content-dialog .upload-survey-content-dialog_drop-msg {
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center; }

.upload-survey-content-dialog .upload-survey-content-dialog_status-column {
  width: 36px; }
  .theme-cmix .upload-survey-content-dialog .upload-survey-content-dialog_status-column .icon-spinner, .theme-cmix .upload-survey-content-dialog .upload-survey-content-dialog_status-column .promise-indicator.pending {
    color: #0a1422; }
  .theme-cmix .upload-survey-content-dialog .upload-survey-content-dialog_status-column .icon-success, .theme-cmix .upload-survey-content-dialog .upload-survey-content-dialog_status-column .promise-indicator {
    color: #52C1A3; }
  .theme-cmix .upload-survey-content-dialog .upload-survey-content-dialog_status-column .icon-attention, .theme-cmix .upload-survey-content-dialog .upload-survey-content-dialog_status-column .promise-indicator.rejected {
    color: #DF4E71; }
  .theme-marketview .upload-survey-content-dialog .upload-survey-content-dialog_status-column .icon-spinner, .theme-marketview .upload-survey-content-dialog .upload-survey-content-dialog_status-column .promise-indicator.pending {
    color: #050d19; }
  .theme-marketview .upload-survey-content-dialog .upload-survey-content-dialog_status-column .icon-success, .theme-marketview .upload-survey-content-dialog .upload-survey-content-dialog_status-column .promise-indicator {
    color: #5BB78A; }
  .theme-marketview .upload-survey-content-dialog .upload-survey-content-dialog_status-column .icon-attention, .theme-marketview .upload-survey-content-dialog .upload-survey-content-dialog_status-column .promise-indicator.rejected {
    color: #DF4E71; }

.upload-survey-content-dialog .upload-survey-content-dialog_delete-column {
  width: 30px; }

.logic-ui-dialog {
  width: 1250px; }

.logic-ui-dialog-body {
  width: 90%;
  margin: 0 auto; }

.logic-margin-left {
  margin-left: 70%; }

.remove-margin {
  margin-left: 0;
  margin-right: 0; }

.margin-top {
  margin-top: .7em; }

.strikethrough {
  border-top: 1px solid #dde1e7; }

.margin-right {
  margin-right: .3em; }

.position-relative {
  position: relative; }

.flex-row {
  display: inline-flex;
  width: 100%; }

.and-divider {
  color: #585863;
  background: #fff;
  text-align: center;
  padding: 0 8px;
  position: absolute;
  right: 50%;
  transform: translate(50%, -50%); }

.logic-ui-dialog_tab-content {
  border: 1px solid transparent;
  border-top: 0;
  padding: 8px; }
  .theme-cmix .logic-ui-dialog_tab-content {
    border-color: #DDE1E7; }
  .theme-marketview .logic-ui-dialog_tab-content {
    border-color: #DDE1E7; }
  .logic-ui-dialog_tab-content label {
    margin-top: 8px; }
  .logic-ui-dialog_tab-content md-input-container {
    display: block;
    padding: 0;
    margin: 0; }
  .logic-ui-dialog_tab-content textarea, .logic-ui-dialog_tab-content .fr-inline-editor .fr-view, .fr-inline-editor .logic-ui-dialog_tab-content .fr-view {
    margin-bottom: 8px; }

.logic-section {
  border: 1px solid transparent;
  padding: 8px;
  margin: 16px; }
  .theme-cmix .logic-section {
    border-color: #DDE1E7; }
  .theme-marketview .logic-section {
    border-color: #DDE1E7; }

.edit-quotas-dialog h3 {
  margin-bottom: 8px; }

.edit-quotas-dialog_questions .checkable {
  display: block;
  line-height: 1.4; }
  .edit-quotas-dialog_questions .checkable input[type="checkbox"] {
    vertical-align: top;
    margin-top: 6px; }
  .theme-cmix .edit-quotas-dialog_questions .checkable:hover {
    background-color: #FAFAFA; }
  .theme-marketview .edit-quotas-dialog_questions .checkable:hover {
    background-color: #FAFAFA; }

.edit-quotas-dialog_questions .questions_question {
  display: flex;
  align-items: start; }
  .edit-quotas-dialog_questions .questions_question > button, .edit-quotas-dialog_questions .questions_question > label.label-btn, .edit-quotas-dialog_questions md-dialog md-dialog-actions .questions_question > .md-cancel-button, md-dialog md-dialog-actions .edit-quotas-dialog_questions .questions_question > .md-cancel-button, .edit-quotas-dialog_questions md-dialog md-dialog-actions .questions_question > .md-confirm-button, md-dialog md-dialog-actions .edit-quotas-dialog_questions .questions_question > .md-confirm-button {
    margin-right: 4px; }

.edit-quotas-dialog_questions .questions_sub-items {
  padding-left: 24px; }

md-dialog.dialog_theme-css .theme-css_codemirror-container {
  height: calc(100vh - 153px); }
  md-dialog.dialog_theme-css .theme-css_codemirror-container .CodeMirror {
    height: 100%; }

md-dialog.dialog_theme-css .confirm-update-container {
  background-color: rgba(0, 0, 0, 0.333);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  z-index: -10;
  transition: z-index 150ms step-end, opacity 150ms ease; }
  md-dialog.dialog_theme-css .confirm-update-container.show {
    opacity: 1;
    z-index: 10;
    transition: z-index 0ms step-start, opacity 150ms ease; }
  md-dialog.dialog_theme-css .confirm-update-container .confirm-update-content {
    background-color: white;
    border-radius: 3px;
    padding: 0.75em 1em;
    width: 448px;
    max-width: 96%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2); }
    md-dialog.dialog_theme-css .confirm-update-container .confirm-update-content .confirm-update-content_actions {
      text-align: right;
      margin-top: 8px; }

.theme-css_name-container {
  text-align: left;
  flex-grow: 1; }
  .theme-css_name-container label {
    display: inline-block;
    vertical-align: middle; }
  .theme-css_name-container .name-container_name-input {
    display: inline-block;
    vertical-align: middle;
    max-width: 320px; }
  .theme-css_name-container .checkable {
    display: inline-block;
    vertical-align: middle;
    margin-top: 0 !important;
    margin-left: 16px; }

.edit-dedupe-sources-dialog h3 {
  margin-bottom: 8px; }

.image-upload-dialog .container {
  width: 100%; }
  .image-upload-dialog .container .image_preview {
    border: 1px solid transparent;
    float: left;
    width: 128px;
    height: 128px;
    margin: 16px;
    display: flex;
    align-items: center; }
    .theme-cmix .image-upload-dialog .container .image_preview {
      border-color: #DDE1E7;
      background-color: #FAFAFA; }
    .theme-marketview .image-upload-dialog .container .image_preview {
      border-color: #DDE1E7;
      background-color: #FAFAFA; }
    .image-upload-dialog .container .image_preview img {
      max-width: 100%;
      max-height: 100%;
      text-align: center;
      vertical-align: center; }
  .image-upload-dialog .container .image_preview.selected {
    border: 3px solid transparent; }
    .theme-cmix .image-upload-dialog .container .image_preview.selected {
      border-color: #2E91C9; }
    .theme-marketview .image-upload-dialog .container .image_preview.selected {
      border-color: #5B9CB7; }

.image-upload-dialog .container.bottom {
  border-top: 1px solid transparent;
  padding: 16px 0; }
  .theme-cmix .image-upload-dialog .container.bottom {
    border-color: #DDE1E7; }
  .theme-marketview .image-upload-dialog .container.bottom {
    border-color: #DDE1E7; }

.image-upload-dialog .container.flex {
  display: flex;
  justify-content: start; }
  .image-upload-dialog .container.flex .input {
    margin: 0 40px; }
    .image-upload-dialog .container.flex .input input {
      display: inline-block;
      width: 128px; }

.new-logic-page-dialog .nlp-btn-checkable {
  margin-bottom: 8px; }
  .new-logic-page-dialog .nlp-btn-checkable:last-child {
    margin-bottom: 16px; }
  .new-logic-page-dialog .nlp-btn-checkable input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0; }
    .new-logic-page-dialog .nlp-btn-checkable input:checked + label {
      transform: translateY(0px); }
      .theme-cmix .new-logic-page-dialog .nlp-btn-checkable input:checked + label {
        background-color: #2E91C9;
        border-color: #25739f;
        color: white; }
      .theme-marketview .new-logic-page-dialog .nlp-btn-checkable input:checked + label {
        background-color: #5B9CB7;
        border-color: #44819b;
        color: white; }
  .new-logic-page-dialog .nlp-btn-checkable label {
    line-height: 1.4em;
    border: 1px solid transparent;
    border-radius: 4px;
    margin-bottom: 0;
    padding: 8px 16px;
    cursor: pointer; }
    .theme-cmix .new-logic-page-dialog .nlp-btn-checkable label {
      background-color: #FFFFFF;
      color: #22232D;
      border-color: #DDE1E7; }
    .theme-marketview .new-logic-page-dialog .nlp-btn-checkable label {
      background-color: #FFFFFF;
      color: #414042;
      border-color: #DDE1E7; }
    .new-logic-page-dialog .nlp-btn-checkable label span {
      display: block;
      font-weight: normal; }
    .new-logic-page-dialog .nlp-btn-checkable label:hover, .new-logic-page-dialog .nlp-btn-checkable label:focus {
      text-decoration: none;
      outline: none; }
      .theme-cmix .new-logic-page-dialog .nlp-btn-checkable label:hover, .theme-cmix .new-logic-page-dialog .nlp-btn-checkable label:focus {
        background-color: #fafafa;
        color: #22232D; }
      .theme-marketview .new-logic-page-dialog .nlp-btn-checkable label:hover, .theme-marketview .new-logic-page-dialog .nlp-btn-checkable label:focus {
        background-color: #fafafa;
        color: #414042; }
    .new-logic-page-dialog .nlp-btn-checkable label:active {
      box-shadow: none;
      background-image: none; }
      .theme-cmix .new-logic-page-dialog .nlp-btn-checkable label:active {
        background-color: whitesmoke; }
      .theme-marketview .new-logic-page-dialog .nlp-btn-checkable label:active {
        background-color: whitesmoke; }

.quick-term-dialog p {
  margin-bottom: 8px; }

.quick-term-dialog md-select {
  margin: 0; }

.quick-term-dialog .response-select-container {
  margin-top: 8px; }

.quick-term-dialog .numeric-response-container {
  margin-top: 8px;
  padding-left: 16px; }

.element-clone-content {
  padding: 16px;
  background-color: #FFFFFF; }

.element-clone-form-group {
  border: 1px solid #DDE1E7;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 12px;
  padding: 12px;
  width: 100%; }
  .element-clone-form-group label {
    margin-bottom: 0; }
  .element-clone-form-group md-autocomplete {
    width: 100%; }
  .element-clone-form-group md-select {
    margin-right: 0;
    width: 100%; }

.element-clone-select .header-searchbox {
  border: none;
  outline: none;
  height: 100%;
  width: 100%;
  padding: 0; }

.element-clone-select .element-clone-select-header {
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.1), 0 0 0 0 rgba(0, 0, 0, 0.14), 0 0 0 0 rgba(0, 0, 0, 0.12);
  padding-left: 16px;
  height: 48px;
  cursor: pointer;
  position: relative;
  display: flex;
  width: auto; }
  .element-clone-select .element-clone-select-header md-content._md {
    max-height: 240px; }
  .element-clone-select .element-clone-select-header md-input-container {
    min-width: 112px; }

.element-clone-actions {
  border-top: none; }

.dialogdemoBasicUsage #popupContainer {
  position: relative; }

.dialogdemoBasicUsage .footer {
  width: 100%;
  text-align: center;
  margin-left: 20px; }

.dialogdemoBasicUsage .footer,
.dialogdemoBasicUsage .footer > code {
  font-size: 0.8em;
  margin-top: 50px; }

.dialogdemoBasicUsage button, .dialogdemoBasicUsage label.label-btn, .dialogdemoBasicUsage md-dialog md-dialog-actions .md-cancel-button, md-dialog md-dialog-actions .dialogdemoBasicUsage .md-cancel-button, .dialogdemoBasicUsage md-dialog md-dialog-actions .md-confirm-button, md-dialog md-dialog-actions .dialogdemoBasicUsage .md-confirm-button {
  width: 200px; }

.dialogdemoBasicUsage div#status {
  color: #c60008; }

.dialogdemoBasicUsage .dialog-demo-prerendered md-checkbox {
  margin-bottom: 0; }

/* Cards */
.card-container {
  height: 100%; }
  .card-container .cm-card-title {
    display: flex;
    align-items: center; }
    .card-container .cm-card-title button, .card-container .cm-card-title label.label-btn, .card-container .cm-card-title md-dialog md-dialog-actions .md-cancel-button, md-dialog md-dialog-actions .card-container .cm-card-title .md-cancel-button, .card-container .cm-card-title md-dialog md-dialog-actions .md-confirm-button, md-dialog md-dialog-actions .card-container .cm-card-title .md-confirm-button {
      margin-right: 4px; }
    .card-container .cm-card-title .marker, .card-container .cm-card-title .grid-cell .grid-question .grid-question__name, .grid-cell .grid-question .card-container .cm-card-title .grid-question__name,
    .card-container .cm-card-title .grid-cell .grid-question .grid-question__response, .grid-cell .grid-question .card-container .cm-card-title .grid-question__response,
    .card-container .cm-card-title span {
      display: inline-block;
      vertical-align: middle;
      margin-left: 0;
      margin-right: 8px; }
  .card-container .header_locale {
    display: inline-block;
    vertical-align: middle; }
    .card-container .header_locale current-locale-dropdown {
      display: inline-block; }

.main-stage_edit-area .cm-card {
  display: flex;
  flex-direction: column;
  height: 100%; }
  .main-stage_edit-area .cm-card .cm-card-body {
    flex: 1;
    overflow: auto;
    position: relative; }
    .main-stage_edit-area .cm-card .cm-card-body:after {
      display: block;
      content: ' ';
      width: 100%;
      height: 16px; }

.full {
  height: 100%; }

.gridster-item-resizable-handler {
  z-index: 7001; }

.gridster-item-resizable-handler.handle-e {
  margin-right: 12px; }

.gridster-overlay-fix {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100000;
  opacity: 0;
  display: none;
  width: 100%;
  height: 100%; }

.gridster-mobile .gridster-item {
  margin-bottom: 0 !important;
  height: 100%;
  position: relative; }

.gridster-item {
  position: absolute; }

.gridster-content {
  min-width: 320px; }

.card-content .ps-scrollbar-x-rail {
  display: none !important; }

.general-settings-card .question-setting {
  padding-left: 0;
  padding-right: 0; }

.setting-row {
  display: flex;
  align-items: flex-end; }

.padding {
  padding-top: 5px; }

.general-settings-card_name-status-row {
  padding-bottom: 16px; }

.name-status-row_survey-status.LIVE,
.name-status-row_status-options.LIVE {
  color: white; }

.name-status-row_survey-status.CLOSED,
.name-status-row_status-options.CLOSED {
  color: white; }

.theme-cmix .name-status-row_survey-status.DESIGN, .theme-cmix
.name-status-row_status-options.DESIGN {
  background-color: #DDE1E7; }

.theme-cmix .name-status-row_survey-status.TEST, .theme-cmix
.name-status-row_status-options.TEST {
  background-color: #F9CF71; }

.theme-cmix .name-status-row_survey-status.LIVE, .theme-cmix
.name-status-row_status-options.LIVE {
  background-color: #52C1A3; }
  .theme-cmix .name-status-row_survey-status.LIVE:hover, .theme-cmix
  .name-status-row_status-options.LIVE:hover {
    color: #22232D; }

.theme-cmix .name-status-row_survey-status.CLOSED, .theme-cmix
.name-status-row_status-options.CLOSED {
  background-color: #585863; }
  .theme-cmix .name-status-row_survey-status.CLOSED:hover, .theme-cmix
  .name-status-row_status-options.CLOSED:hover {
    color: #22232D; }

.theme-marketview .name-status-row_survey-status.DESIGN, .theme-marketview
.name-status-row_status-options.DESIGN {
  background-color: #DDE1E7; }

.theme-marketview .name-status-row_survey-status.TEST, .theme-marketview
.name-status-row_status-options.TEST {
  background-color: #EDB73E; }

.theme-marketview .name-status-row_survey-status.LIVE, .theme-marketview
.name-status-row_status-options.LIVE {
  background-color: #5BB78A; }
  .theme-marketview .name-status-row_survey-status.LIVE:hover, .theme-marketview
  .name-status-row_status-options.LIVE:hover {
    color: #414042; }

.theme-marketview .name-status-row_survey-status.CLOSED, .theme-marketview
.name-status-row_status-options.CLOSED {
  background-color: #666666; }
  .theme-marketview .name-status-row_survey-status.CLOSED:hover, .theme-marketview
  .name-status-row_status-options.CLOSED:hover {
    color: #414042; }

.name-status-row_status-options .dropdown-item {
  background-color: transparent; }

.general-settings-card_setting {
  border-top: 1px solid transparent;
  padding: 8px 0; }
  .theme-cmix .general-settings-card_setting {
    border-color: #DDE1E7; }
  .theme-marketview .general-settings-card_setting {
    border-color: #DDE1E7; }
  .general-settings-card_setting table .input-btn-group {
    margin-bottom: 0; }
  .general-settings-card_setting table .settings_sample-source-link {
    max-width: 192px; }
    .general-settings-card_setting table .settings_sample-source-link a {
      word-wrap: break-word; }

.general-settings-card_switches-w-extra .input-btn-group,
.general-settings-card_switches-w-extra md-select {
  margin-bottom: 8px; }

.general-settings-card_switches-w-extra md-select {
  margin-right: 16px; }

.general-settings-card_dedupe-sources .no-sources {
  margin-bottom: 8px;
  font-style: italic; }
  .theme-cmix .general-settings-card_dedupe-sources .no-sources {
    color: #585863; }
  .theme-marketview .general-settings-card_dedupe-sources .no-sources {
    color: #666666; }

.general-settings-card_dedupe-sources .dedupe-sources_source-selection {
  margin-bottom: 8px; }
  .general-settings-card_dedupe-sources .dedupe-sources_source-selection md-select {
    width: 320px;
    max-width: 100%;
    display: inline-block;
    vertical-align: middle; }

.general-settings-card_dedupe-sources .dedupe-sources_assigned-table {
  border-bottom: 1px solid transparent; }
  .theme-cmix .general-settings-card_dedupe-sources .dedupe-sources_assigned-table {
    border-color: #DDE1E7; }
  .theme-marketview .general-settings-card_dedupe-sources .dedupe-sources_assigned-table {
    border-color: #DDE1E7; }
  .general-settings-card_dedupe-sources .dedupe-sources_assigned-table h4 {
    margin-top: 16px;
    margin-bottom: 8px; }
  .general-settings-card_dedupe-sources .dedupe-sources_assigned-table .row {
    display: flex;
    min-width: 680px; }
    .general-settings-card_dedupe-sources .dedupe-sources_assigned-table .row > div {
      border: 1px solid transparent;
      border-left-width: 0px;
      padding: 4px 8px; }
      .theme-cmix .general-settings-card_dedupe-sources .dedupe-sources_assigned-table .row > div {
        border-color: #DDE1E7; }
      .theme-marketview .general-settings-card_dedupe-sources .dedupe-sources_assigned-table .row > div {
        border-color: #DDE1E7; }
      .general-settings-card_dedupe-sources .dedupe-sources_assigned-table .row > div:first-child {
        border-left-width: 1px; }
  .general-settings-card_dedupe-sources .dedupe-sources_assigned-table .assigned-table_header {
    border-bottom: 1px solid transparent;
    font-weight: bold; }
    .theme-cmix .general-settings-card_dedupe-sources .dedupe-sources_assigned-table .assigned-table_header {
      background-color: #FAFAFA;
      border-color: #DDE1E7; }
    .theme-marketview .general-settings-card_dedupe-sources .dedupe-sources_assigned-table .assigned-table_header {
      background-color: #FAFAFA;
      border-color: #DDE1E7; }
  .general-settings-card_dedupe-sources .dedupe-sources_assigned-table .assigned-table_row > div {
    border-bottom-width: 0;
    display: flex;
    align-items: center; }
    .general-settings-card_dedupe-sources .dedupe-sources_assigned-table .assigned-table_row > div.right {
      justify-content: flex-end; }

@media (min-width: 992px) {
  .theme-settings-card p.logo-info {
    text-align: right; } }

.theme-settings-card .theme-card {
  border: 2px solid transparent;
  width: 100%;
  max-width: 340px;
  margin-bottom: 8px; }
  .theme-cmix .theme-settings-card .theme-card {
    border-color: #DDE1E7; }
  .theme-marketview .theme-settings-card .theme-card {
    border-color: #DDE1E7; }
  .theme-settings-card .theme-card .theme-card_image {
    padding: 4px 4px 0;
    overflow: hidden;
    position: relative; }
    .theme-cmix .theme-settings-card .theme-card .theme-card_image {
      background-color: #FAFAFA; }
    .theme-marketview .theme-settings-card .theme-card .theme-card_image {
      background-color: #FAFAFA; }
    .theme-settings-card .theme-card .theme-card_image img {
      border-radius: 4px 4px 0 0;
      box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.2);
      width: 100%;
      display: inline-block;
      vertical-align: bottom; }
      .theme-settings-card .theme-card .theme-card_image img.image_overalay {
        position: absolute;
        max-width: calc(100% - 0.666em);
        min-height: 100%; }
        .theme-settings-card .theme-card .theme-card_image img.image_overalay + img {
          position: relative;
          z-index: 5; }
  .theme-settings-card .theme-card .theme-card_image + .theme-card_details {
    border-top: 2px solid transparent; }
    .theme-cmix .theme-settings-card .theme-card .theme-card_image + .theme-card_details {
      border-top-color: #DDE1E7; }
    .theme-marketview .theme-settings-card .theme-card .theme-card_image + .theme-card_details {
      border-top-color: #DDE1E7; }
  .theme-settings-card .theme-card .theme-card_details {
    padding: 4px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    height: 40px; }
    .theme-cmix .theme-settings-card .theme-card .theme-card_details {
      background-color: #FAFAFA; }
    .theme-marketview .theme-settings-card .theme-card .theme-card_details {
      background-color: #FAFAFA; }
    .theme-settings-card .theme-card .theme-card_details .details_name {
      overflow: hidden;
      text-overflow: ellipsis;
      padding-right: 4px;
      flex-grow: 1; }
    .theme-settings-card .theme-card .theme-card_details .details_version {
      opacity: 0.7;
      font-size: 12px;
      padding-right: 4px;
      flex-grow: 0;
      cursor: help; }
    .theme-settings-card .theme-card .theme-card_details .details_actions {
      display: inline-block; }
      .theme-settings-card .theme-card .theme-card_details .details_actions span {
        display: inline-block;
        vertical-align: middle; }
      .theme-settings-card .theme-card .theme-card_details .details_actions .actions_active-pill {
        color: white; }
        .theme-cmix .theme-settings-card .theme-card .theme-card_details .details_actions .actions_active-pill {
          background-color: #2E91C9; }
        .theme-marketview .theme-settings-card .theme-card .theme-card_details .details_actions .actions_active-pill {
          background-color: #5B9CB7; }
  .theme-cmix .theme-settings-card .theme-card.active {
    border-color: #2E91C9; }
  .theme-marketview .theme-settings-card .theme-card.active {
    border-color: #5B9CB7; }
  .theme-cmix .theme-settings-card .theme-card.active .theme-card_details {
    background-color: #2E91C9;
    border-color: #2E91C9; }
  .theme-marketview .theme-settings-card .theme-card.active .theme-card_details {
    background-color: #5B9CB7;
    border-color: #5B9CB7; }
  .theme-settings-card .theme-card.active .theme-card_details .details_name {
    color: white; }
  .theme-settings-card .theme-card.active .theme-card_details .details_version {
    color: white; }

.theme-settings-card_wrapped-tooltip {
  font-size: 1rem;
  max-width: 448px;
  white-space: normal;
  height: auto; }

.theme-settings-card_active {
  margin-bottom: 16px; }
  .theme-settings-card_active p {
    margin-bottom: 4px; }
  .theme-settings-card_active .row {
    margin-bottom: 8px; }
  .theme-settings-card_active md-progress-linear,
  .theme-settings-card_active .input-w-button {
    width: 320px;
    min-width: 192px;
    margin-bottom: 8px; }
  .theme-settings-card_active .input-w-button {
    margin-top: 8px; }

.modified-shared-theme-msg {
  margin-top: 4px; }
  .theme-cmix .modified-shared-theme-msg {
    color: #f5ae0f; }
  .theme-marketview .modified-shared-theme-msg {
    color: #b48211; }
  .modified-shared-theme-msg p {
    font-weight: bold;
    margin-bottom: 2px; }

.theme-settings-card_version {
  margin-bottom: 16px; }
  .theme-settings-card_version p {
    margin-bottom: 4px; }

.theme-settings-card_selection {
  min-height: 192px; }
  .theme-settings-card_selection > p {
    margin-bottom: 8px; }
  .theme-settings-card_selection p.no-themes-msg {
    text-align: center;
    padding: 32px 16px; }
    .theme-cmix .theme-settings-card_selection p.no-themes-msg {
      color: #585863; }
    .theme-marketview .theme-settings-card_selection p.no-themes-msg {
      color: #666666; }
  .theme-cmix .theme-settings-card_selection p.onsite-themes-msg .icon-info {
    color: #22232D; }
  .theme-marketview .theme-settings-card_selection p.onsite-themes-msg .icon-info {
    color: #414042; }
  .theme-settings-card_selection .tab-list {
    margin-bottom: 8px; }
    .theme-settings-card_selection .tab-list .onsite-tab-item {
      float: right; }
    .theme-settings-card_selection .tab-list + md-progress-linear {
      margin-top: -8px;
      padding-bottom: 8px; }
  .theme-settings-card_selection .theme-card {
    float: left;
    margin-left: 0.5%;
    margin-right: 0.5%;
    margin-bottom: 8px; }
    @media (min-width: 768px) {
      .theme-settings-card_selection .theme-card {
        max-width: 49%; } }
    @media (min-width: 1015px) {
      .theme-settings-card_selection .theme-card {
        max-width: 24%; } }

.locales-card table {
  margin-top: 16px;
  margin-bottom: 16px; }
  .locales-card table tr,
  .locales-card table td {
    white-space: nowrap; }
  .locales-card table md-radio-button,
  .locales-card table input,
  .locales-card table md-switch {
    display: inline-block;
    vertical-align: middle;
    margin: 0; }

.locales-card_export-options {
  border: 1px solid transparent;
  margin-bottom: 8px;
  padding: 16px;
  max-width: 300px; }
  .theme-cmix .locales-card_export-options {
    background-color: #FAFAFA;
    border-color: #DDE1E7; }
  .theme-marketview .locales-card_export-options {
    background-color: #FAFAFA;
    border-color: #DDE1E7; }
  .locales-card_export-options .checkable {
    display: inline-block;
    vertical-align: middle;
    margin-left: 16px; }

.locales-card_add-new {
  border: 1px solid transparent;
  margin-top: 8px;
  padding: 8px;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between; }
  .theme-cmix .locales-card_add-new {
    border-color: #DDE1E7; }
  .theme-marketview .locales-card_add-new {
    border-color: #DDE1E7; }
  .locales-card_add-new md-switch {
    margin: 0; }

.file-uploads-card h3 {
  line-height: 24px;
  margin-top: 12px;
  margin-bottom: 4px; }

.file-uploads-card_na-message {
  font-style: italic; }
  .theme-cmix .file-uploads-card_na-message {
    color: #585863; }
  .theme-marketview .file-uploads-card_na-message {
    color: #666666; }

.file-uploads-card_err-message {
  font-weight: bold; }
  .theme-cmix .file-uploads-card_err-message {
    color: #DF4E71; }
  .theme-marketview .file-uploads-card_err-message {
    color: #DF4E71; }

.file-uploads-card_file-list-headers {
  margin-top: 24px;
  border-bottom: 1px solid transparent;
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
  align-items: center; }
  .theme-cmix .file-uploads-card_file-list-headers {
    border-color: #DDE1E7; }
  .theme-marketview .file-uploads-card_file-list-headers {
    border-color: #DDE1E7; }
  .file-uploads-card_file-list-headers > div {
    color: rgba(34, 35, 45, 0.7);
    font-size: 12px; }
  .file-uploads-card_file-list-headers .copy {
    flex: 0 1 5%;
    text-align: center; }
  .file-uploads-card_file-list-headers .file-info {
    flex: 0 1 50%; }
    .file-uploads-card_file-list-headers .file-info a {
      display: inline-block;
      vertical-align: middle;
      margin-right: 4px; }
    .file-uploads-card_file-list-headers .file-info img,
    .file-uploads-card_file-list-headers .file-info video {
      border: 1px solid transparent;
      max-width: 3.157em;
      max-height: 5.61em;
      vertical-align: middle; }
      .theme-cmix .file-uploads-card_file-list-headers .file-info img, .theme-cmix
      .file-uploads-card_file-list-headers .file-info video {
        border-color: #DDE1E7; }
      .theme-marketview .file-uploads-card_file-list-headers .file-info img, .theme-marketview
      .file-uploads-card_file-list-headers .file-info video {
        border-color: #DDE1E7; }
  .file-uploads-card_file-list-headers .file-size {
    flex: 0 1 12%; }
  .file-uploads-card_file-list-headers .file-date-modified {
    flex: 0 1 10%; }
  .file-uploads-card_file-list-headers .file-scope {
    flex: 0 1 5%; }
  .file-uploads-card_file-list-headers .watermarked {
    flex: 0 1 8%; }
  .file-uploads-card_file-list-headers .actions {
    flex: 0 1 10%; }
  .file-uploads-card_file-list-headers .sortable-column {
    cursor: pointer;
    display: flex;
    align-items: center; }
    .file-uploads-card_file-list-headers .sortable-column :first-child {
      flex-grow: 1; }
    .file-uploads-card_file-list-headers .sortable-column :last-child {
      flex-grow: 0; }
    .file-uploads-card_file-list-headers .sortable-column > .sortable-placeholder {
      visibility: hidden; }
    .file-uploads-card_file-list-headers .sortable-column:hover > .sortable-placeholder {
      visibility: visible; }

.file-uploads-card_file-list-item {
  border-top: 1px solid transparent;
  padding-top: 4px;
  padding-bottom: 4px;
  display: flex;
  align-items: center;
  height: 5.61em; }
  .theme-cmix .file-uploads-card_file-list-item {
    border-color: #DDE1E7; }
  .theme-marketview .file-uploads-card_file-list-item {
    border-color: #DDE1E7; }
  .file-uploads-card_file-list-item .copy {
    flex: 0 1 5%;
    text-align: center; }
  .file-uploads-card_file-list-item .file-info {
    flex: 0 1 50%; }
    .file-uploads-card_file-list-item .file-info a {
      display: inline-block;
      vertical-align: middle;
      margin-right: 4px; }
    .file-uploads-card_file-list-item .file-info img,
    .file-uploads-card_file-list-item .file-info video {
      border: 1px solid transparent;
      max-width: 3.157em;
      max-height: 5.61em;
      vertical-align: middle; }
      .theme-cmix .file-uploads-card_file-list-item .file-info img, .theme-cmix
      .file-uploads-card_file-list-item .file-info video {
        border-color: #DDE1E7; }
      .theme-marketview .file-uploads-card_file-list-item .file-info img, .theme-marketview
      .file-uploads-card_file-list-item .file-info video {
        border-color: #DDE1E7; }
  .file-uploads-card_file-list-item .file-size {
    flex: 0 1 12%; }
  .file-uploads-card_file-list-item .file-date-modified {
    flex: 0 1 10%; }
  .file-uploads-card_file-list-item .file-scope {
    flex: 0 1 5%; }
  .file-uploads-card_file-list-item .watermarked {
    flex: 0 1 8%; }
  .file-uploads-card_file-list-item .actions {
    flex: 0 1 10%; }

.file-uploads-card_file-virtual-container {
  height: 100%;
  min-height: 110px; }

@media (min-width: 768px) {
  .file-uploads-card_file-virtual-container {
    min-height: 360px; } }

.file-uploads-card_file-list-container {
  height: calc(100% - 110px); }

.sample-sources_fingerprint-th span {
  display: inline-block;
  width: calc(100% - 1.5em); }

.theme-cmix tr.sample-sources-card_source-tr.disabled {
  color: rgba(34, 35, 45, 0.25); }

.theme-marketview tr.sample-sources-card_source-tr.disabled {
  color: rgba(65, 64, 66, 0.25); }

tr.sample-sources-card_source-tr td.source-tr_token input {
  display: inline-block;
  vertical-align: middle;
  max-width: calc(100% - 2em); }

tr.sample-sources-card_details-tr td {
  padding: 0 !important; }
  .theme-cmix tr.sample-sources-card_details-tr td {
    background-color: #FAFAFA; }
  .theme-marketview tr.sample-sources-card_details-tr td {
    background-color: #FAFAFA; }
  tr.sample-sources-card_details-tr td > div {
    padding: 16px; }

.end-pages h3 {
  margin-bottom: 8px; }

.end-pages .details-item {
  margin-bottom: 16px; }
  .end-pages .details-item .label-row {
    display: flex;
    align-items: center;
    margin-bottom: 4px; }
    .end-pages .details-item .label-row .label-row_left-content {
      flex: 1; }
      .end-pages .details-item .label-row .label-row_left-content h4 {
        display: inline-block;
        vertical-align: middle; }
      .end-pages .details-item .label-row .label-row_left-content .promise-indicator {
        padding-top: 0;
        padding-bottom: 0; }
  .end-pages .details-item label {
    font-weight: normal; }
  .end-pages .details-item .endpage-content-container + div {
    margin-top: 8px; }

.end-pages .details-notes h3 {
  display: inline-block;
  vertical-align: middle;
  margin-top: 16px; }

tr.default-end-page-content td {
  padding: 0 !important; }
  .theme-cmix tr.default-end-page-content td {
    background-color: #FAFAFA; }
  .theme-marketview tr.default-end-page-content td {
    background-color: #FAFAFA; }
  tr.default-end-page-content td > div {
    padding: 16px; }

tr.default-end-page-content label {
  margin-bottom: 4px; }
  tr.default-end-page-content label span {
    display: inline-block;
    vertical-align: middle; }
  tr.default-end-page-content label .promise-indicator {
    padding: 0;
    margin-left: 4px; }

tr.default-end-page-content .default-end-page-item {
  margin-top: 16px; }

.sample-sources-card_sample-sources .sample-sources_end-pages-btn.active {
  color: white;
  box-shadow: none;
  transform: translateY(1px); }
  .sample-sources-card_sample-sources .sample-sources_end-pages-btn.active:before {
    color: white; }
  .theme-cmix .sample-sources-card_sample-sources .sample-sources_end-pages-btn.active {
    background-color: #2E91C9; }
  .theme-marketview .sample-sources-card_sample-sources .sample-sources_end-pages-btn.active {
    background-color: #5B9CB7; }

.sample-sources-card_add-new {
  padding-top: 16px; }
  .sample-sources-card_add-new h3 {
    margin-bottom: 8px; }

.sample-source-autocomplete {
  width: 35%;
  padding-bottom: 8px; }

.default-text-card h3 {
  margin-top: 16px;
  margin-bottom: 8px; }
  .default-text-card h3:first-child {
    margin-top: 0; }

.default-text-card h4 {
  margin-top: 16px;
  margin-bottom: 8px; }

table.term-codes-card_codes-table .input-btn-group {
  margin-bottom: 0; }

table.term-codes-card_codes-table .codes-table_details {
  border-bottom-width: 2px; }
  table.term-codes-card_codes-table .codes-table_details .details_item + .details_item {
    border-top: 1px solid transparent; }
    .theme-cmix table.term-codes-card_codes-table .codes-table_details .details_item + .details_item {
      border-top-color: #DDE1E7; }
    .theme-marketview table.term-codes-card_codes-table .codes-table_details .details_item + .details_item {
      border-top-color: #DDE1E7; }
  table.term-codes-card_codes-table .codes-table_details .details_item h4 {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 1.6em); }

.term-codes-card_add-code {
  margin-top: 8px;
  margin-bottom: 24px; }
  .term-codes-card_add-code .input-btn-group {
    max-width: 320px; }

.lookups-card md-switch {
  margin: 0;
  display: inline-block;
  vertical-align: middle;
  height: auto; }

.lookups-card table {
  margin-bottom: 16px; }

.lookups-card h3 {
  margin-bottom: 8px; }

.lookups-card_add-new {
  display: flex;
  align-items: flex-end; }
  .lookups-card_add-new div {
    margin-right: 16px; }
  .lookups-card_add-new .name-input {
    min-width: 300px; }
  .lookups-card_add-new md-select {
    margin: 4px 0; }

.file-column-width {
  width: 52%; }

.system-variables-card h3 {
  margin-bottom: 8px; }

.system-variables-card_item p {
  border-top: 1px solid transparent;
  padding-top: 8px;
  padding-left: 4px; }
  .system-variables-card_item p .marker, .system-variables-card_item p .grid-cell .grid-question .grid-question__name, .grid-cell .grid-question .system-variables-card_item p .grid-question__name,
  .system-variables-card_item p .grid-cell .grid-question .grid-question__response, .grid-cell .grid-question .system-variables-card_item p .grid-question__response {
    text-align: center;
    margin-right: 4px;
    min-width: 2em; }
  .system-variables-card_item p span {
    vertical-align: middle; }

.theme-cmix .system-variables-card_item p {
  border-top-color: #DDE1E7; }

.theme-cmix .system-variables-card_item.group-border {
  border-left: 2px solid #DDE1E7; }

.theme-marketview .system-variables-card_item p {
  border-top-color: #DDE1E7; }

.theme-marketview .system-variables-card_item.group-border {
  border-left: 2px solid #DDE1E7; }

.concept-card .concept-pairs .input-btn-group {
  margin-top: 8px; }

.concept-card concept-qualification-block {
  display: block;
  flex: 1; }

.concept-card concept-qualification-block-list {
  display: block;
  padding-top: 16px;
  border-top: 1px solid transparent; }
  .theme-cmix .concept-card concept-qualification-block-list {
    border-color: #DDE1E7; }
  .theme-marketview .concept-card concept-qualification-block-list {
    border-color: #DDE1E7; }

.concept-card_response-list {
  padding-bottom: 16px; }

.concept-formula-margin {
  margin-left: 12px; }

.dpc-concept-card .dpc-card_eval-list {
  border-top: 1px solid transparent;
  margin-top: 16px;
  padding-top: 16px; }
  .theme-cmix .dpc-concept-card .dpc-card_eval-list {
    border-color: #DDE1E7; }
  .theme-marketview .dpc-concept-card .dpc-card_eval-list {
    border-color: #DDE1E7; }

.page-card_custom-logic h3 {
  margin-top: 16px;
  margin-bottom: 8px; }

.page-card_custom-logic .custom-logic_list-item p {
  display: inline-block;
  vertical-align: middle;
  width: calc(100% - 4em); }

.section-card_concept-select {
  margin-bottom: 8px; }
  .section-card_concept-select md-autocomplete {
    display: inline-block;
    vertical-align: middle; }

.question-card .question-card_preview-iframe {
  border: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.question-card-menu {
  width: 8em; }

.reorder-button {
  margin-bottom: 8px; }

.content-list .content-list_add-btn {
  margin-bottom: 8px; }

.content-list .content-list_code-btns {
  margin-top: 8px;
  margin-bottom: 8px; }

.grid-question {
  position: relative;
  height: 100%; }

.grid-question-layout {
  position: relative;
  height: calc(100% - 100px); }

.grid-container {
  margin-top: 16px;
  margin-bottom: 16px;
  background-color: white;
  position: relative;
  display: inline-block; }

/* Grid Cell Controls */
.grid-question_cell-controls {
  position: absolute;
  padding: 0 8px;
  width: auto;
  height: 36px;
  white-space: nowrap;
  z-index: 2; }
  .theme-cmix .grid-question_cell-controls {
    background-color: #1B365D; }
  .theme-marketview .grid-question_cell-controls {
    background-color: #122D59; }
  .grid-question_cell-controls > button, .grid-question_cell-controls > label.label-btn, md-dialog md-dialog-actions .grid-question_cell-controls > .md-cancel-button, md-dialog md-dialog-actions .grid-question_cell-controls > .md-confirm-button {
    height: 100%; }
  .grid-question_cell-controls .cell-controls_input-dropdown {
    text-align: left;
    padding: 0 0 0 0.5em; }
    .grid-question_cell-controls .cell-controls_input-dropdown span {
      vertical-align: middle; }
  .grid-question_cell-controls .material-icons {
    vertical-align: middle; }
  .grid-question_cell-controls .icon-grid {
    width: 14px;
    height: 14px;
    display: inline-block;
    background-position: center center;
    background-size: 12px 12px;
    background-repeat: no-repeat;
    vertical-align: middle;
    margin-bottom: 2px;
    background-color: white;
    border-radius: .2em; }
  .grid-question_cell-controls .icon-grid-merge {
    background-image: url("/img/grid__cell-controls--merge.png"); }
  .grid-question_cell-controls .icon-grid-split {
    background-image: url("/img/grid__cell-controls--split.png"); }
  .grid-question_cell-controls .icon-grid-column,
  .grid-question_cell-controls .icon-grid-row {
    width: 18px; }
  .grid-question_cell-controls .field-text-alignment {
    width: 24px;
    height: 18px;
    display: inline-block;
    background-position: center center;
    background-size: 24px 12px;
    background-repeat: no-repeat;
    vertical-align: middle; }

.text-alignment {
  width: 18px;
  height: 18px;
  display: inline-block;
  background-position: center center;
  background-size: 12px 12px;
  background-repeat: no-repeat;
  vertical-align: middle; }

.text-alignment-icon {
  width: 24px;
  display: inherit;
  background-size: 24px 24px;
  background-repeat: no-repeat;
  height: 24px; }

.text-alignment__left-top {
  background-image: url("/img/grid__text-alignment--top-left--black.png"); }

.text-alignment__left-middle {
  background-image: url("/img/grid__text-alignment--middle-left--black.png"); }

.text-alignment__left-bottom {
  background-image: url("/img/grid__text-alignment--bottom-left--black.png"); }

.text-alignment__center-top {
  background-image: url("/img/grid__text-alignment--top-center--black.png"); }

.text-alignment__center-middle {
  background-image: url("/img/grid__text-alignment--middle-center--black.png"); }

.text-alignment__center-bottom {
  background-image: url("/img/grid__text-alignment--bottom-center--black.png"); }

.text-alignment__right-top {
  background-image: url("/img/grid__text-alignment--top-right--black.png"); }

.text-alignment__right-middle {
  background-image: url("/img/grid__text-alignment--middle-right--black.png"); }

.text-alignment__right-bottom {
  background-image: url("/img/grid__text-alignment--bottom-right--black.png"); }

.text-alignment__selected-left-top {
  background-image: url("/img/grid__text-alignment--top-left--black.png"); }

.text-alignment__selected-left-middle {
  background-image: url("/img/grid__text-alignment--middle-left--black.png"); }

.text-alignment__selected-left-bottom {
  background-image: url("/img/grid__text-alignment--bottom-left--black.png"); }

.text-alignment__selected-center-top {
  background-image: url("/img/grid__text-alignment--top-center--black.png"); }

.text-alignment__selected-center-middle {
  background-image: url("/img/grid__text-alignment--middle-center--black.png"); }

.text-alignment__selected-center-bottom {
  background-image: url("/img/grid__text-alignment--bottom-center--black.png"); }

.text-alignment__selected-right-top {
  background-image: url("/img/grid__text-alignment--top-right--black.png"); }

.text-alignment__selected-right-middle {
  background-image: url("/img/grid__text-alignment--middle-right--black.png"); }

.text-alignment__selected-right-bottom {
  background-image: url("/img/grid__text-alignment--bottom-right--black.png"); }

.text-alignment__dropdown-menu {
  width: 60px; }

.field-text-alignment-icon {
  width: 24px;
  display: inherit;
  background-size: 24px 12px;
  background-repeat: no-repeat;
  height: 12px; }

.field-text-alignment__dropdown-menu {
  width: 60px; }

.field-text-alignment__field {
  background-image: url("/img/grid__text-field-alignment--field.png"); }

.field-text-alignment__text-field {
  background-image: url("/img/grid__text-field-alignment--text-field.png"); }

.field-text-alignment__field-text {
  background-image: url("/img/grid__text-field-alignment--field-text.png"); }

.field-text-alignment__text-field-text {
  background-image: url("/img/grid__text-field-alignment--text-field-text.png"); }

.field-text-alignment__selected-field {
  background-image: url("/img/grid__text-field-alignment--field.png"); }

.field-text-alignment__selected-text-field {
  background-image: url("/img/grid__text-field-alignment--text-field.png"); }

.field-text-alignment__selected-field-text {
  background-image: url("/img/grid__text-field-alignment--field-text.png"); }

.field-text-alignment__selected-text-field-text {
  background-image: url("/img/grid__text-field-alignment--text-field-text.png"); }

/* Grid Table Styles */
.grid-table {
  border-collapse: collapse;
  position: static !important; }

.grid-selection {
  position: static !important;
  z-index: 2;
  pointer-events: none; }
  .grid-selection.border .grid-selection-outline {
    outline: 2px solid #61a93d; }
  .grid-selection .border.border-small .grid-selection-outline {
    outline-width: 1px; }

.grid-selection-outline {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  z-index: 2;
  pointer-events: none;
  border: 1px solid white; }

.grid-selection-fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.2);
  pointer-events: none; }
  .grid-selection-fill.all {
    border: 1px solid white; }
  .grid-selection-fill.top {
    border-top: 1px solid white;
    border-left: 1px solid white;
    border-right: 1px solid white; }
  .grid-selection-fill.left {
    border-left: 1px solid white; }
  .grid-selection-fill .right {
    border-right: 1px solid white; }
  .grid-selection-fill .bottom {
    border-bottom: 1px solid white;
    border-left: 1px solid white;
    border-right: 1px solid white; }

th.grid-corner,
th.grid-row,
th.grid-column,
td.grid-cell {
  border: 1px solid #e6e6e6;
  cursor: cell;
  position: relative; }

th.grid-row,
th.grid-column {
  text-align: center;
  background-color: #F0F0F0; }

th.grid-row.grid-header,
th.grid-column.grid-header {
  background-color: #D0D0D0; }

.grid-cell {
  padding: 5px;
  font-size: 12pt;
  position: relative; }

td.grid-cell.grid-header {
  background-color: #F0F0F0; }

div.cell-content.has-input {
  white-space: nowrap; }

.grid-row,
.grid-column {
  font-size: 12pt;
  font-weight: normal;
  padding: 4px 30px; }

td.grid-cell.editing {
  cursor: text; }

.grid-row.grid-selected,
.grid-column.grid-selected,
.grid-cell.grid-selected {
  border: 1px solid white; }

.grid-cell.grid-selected {
  background-color: #e6e6e6; }

.grid-row.grid-selected,
.grid-column.grid-selected {
  background-color: rgba(96, 168, 69, 0.3); }

.cell-input {
  margin: 0 10px; }

input[type=text].cell-input,
input[type=number].cell-input {
  border-left: none;
  border-right: none;
  border-top: none;
  border-bottom: 1px solid lightgrey;
  background-color: transparent;
  cursor: inherit; }

input[type=text].cell-input:focus,
input[type=number].cell-input:focus {
  border-bottom: 1px solid #22a7f0; }

input[type=text].cell-input {
  width: 100px; }

input[type=number].cell-input {
  width: 75px; }

.grid-cell.grid-cell--alignment-left-top {
  text-align: left;
  vertical-align: top; }

.grid-cell.grid-cell--alignment-left-middle {
  text-align: left;
  vertical-align: middle; }

.grid-cell.grid-cell--alignment-left-bottom {
  text-align: left;
  vertical-align: bottom; }

.grid-cell.grid-cell--alignment-center-top {
  text-align: center;
  vertical-align: top; }

.grid-cell.grid-cell--alignment-center-middle {
  text-align: center;
  vertical-align: middle; }

.grid-cell.grid-cell--alignment-center-bottom {
  text-align: center;
  vertical-align: bottom; }

.grid-cell.grid-cell--alignment-right-top {
  text-align: right;
  vertical-align: top; }

.grid-cell.grid-cell--alignment-right-middle {
  text-align: right;
  vertical-align: middle; }

.grid-cell.grid-cell--alignment-right-bottom {
  text-align: right;
  vertical-align: bottom; }

.grid-cell .grid-question {
  white-space: nowrap; }
  .grid-cell .grid-question .grid-question__name,
  .grid-cell .grid-question .grid-question__response {
    margin-right: 0.5em; }
  .grid-cell .grid-question .grid-cell-text-container .grid-cell-text {
    width: 3em; }
  .grid-cell .grid-question .grid-cell-numeric-container .grid-cell-numeric {
    width: 3em; }
  .grid-cell .grid-question .grid-cell-numeric-container .grid-cell-numeric-sufix,
  .grid-cell .grid-question .grid-cell-text-container .grid-cell-text-sufix,
  .grid-cell .grid-question .grid-cell-radio-container .grid-cell-radio-sufix,
  .grid-cell .grid-question .grid-cell-checkbox-container .grid-cell-checkbox-sufix {
    width: 3em;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid white; }
  .grid-cell .grid-question .grid-cell-numeric-container .grid-cell-numeric-prefix,
  .grid-cell .grid-question .grid-cell-text-container .grid-cell-text-prefix,
  .grid-cell .grid-question .grid-cell-radio-container .grid-cell-radio-prefix,
  .grid-cell .grid-question .grid-cell-checkbox-container .grid-cell-checkbox-prefix {
    width: 3em;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid white; }
  .grid-cell .grid-question .grid-cell-radio-container .grid-cell-radio-text,
  .grid-cell .grid-question .grid-cell-checkbox-container .grid-cell-checkbox-text,
  .grid-cell .grid-question .grid-cell-checkbox-container .grid-cell-radio-text,
  .grid-cell .grid-question .grid-cell-text-container .grid-cell-text-text,
  .grid-cell .grid-question .grid-cell-numeric-container .grid-cell-numeric-text {
    width: 5em;
    margin-left: .5em; }

.grid-cell.grid-cell-selected .grid-question .grid-cell-numeric-container .grid-cell-numeric-sufix,
.grid-cell.grid-cell-selected .grid-question .grid-cell-text-container .grid-cell-text-sufix,
.grid-cell.grid-cell-selected .grid-question .grid-cell-radio-container .grid-cell-radio-sufix,
.grid-cell.grid-cell-selected .grid-question .grid-cell-checkbox-container .grid-cell-checkbox-sufix,
.grid-cell .grid-question .grid-cell-numeric-container .grid-cell-numeric-sufix:hover,
.grid-cell .grid-question .grid-cell-text-container .grid-cell-text-sufix:hover,
.grid-cell .grid-question .grid-cell-radio-container .grid-cell-radio-sufix:hover,
.grid-cell .grid-question .grid-cell-checkbox-container .grid-cell-checkbox-sufix:hover {
  border-bottom: 1px solid lightgray; }

.grid-cell.grid-cell-selected .grid-question .grid-cell-numeric-container .grid-cell-numeric-prefix,
.grid-cell.grid-cell-selected .grid-question .grid-cell-text-container .grid-cell-text-prefix,
.grid-cell.grid-cell-selected .grid-question .grid-cell-radio-container .grid-cell-radio-prefix,
.grid-cell.grid-cell-selected .grid-question .grid-cell-checkbox-container .grid-cell-checkbox-prefix,
.grid-cell .grid-question .grid-cell-numeric-container .grid-cell-numeric-prefix:hover,
.grid-cell .grid-question .grid-cell-text-container .grid-cell-text-prefix:hover,
.grid-cell .grid-question .grid-cell-radio-container .grid-cell-radio-prefix:hover,
.grid-cell .grid-question .grid-cell-checkbox-container .grid-cell-checkbox-prefix:hover {
  border-bottom: 1px solid lightgray; }

.grid-cell .icon-material {
  cursor: pointer; }

.decorative-control {
  margin: 0 5px;
  pointer-events: none;
  cursor: inherit; }

.grid-cell.cell-editable {
  position: absolute;
  z-index: 2;
  background-color: white;
  outline: #61a93d solid 2px;
  box-shadow: 3px 3px 2px 1px rgba(0, 0, 0, 0.2); }
  .grid-cell.cell-editable .grid-question .content {
    min-width: 40px;
    display: block; }

.question-name.grid-response-name-error,
.question-name.grid-question-name-error {
  background-color: #d91e18; }

.question-name.question-name-error {
  background-color: #d91e18; }

.custom-randomization__range-display-name {
  color: #575757;
  opacity: .5;
  font-style: normal; }

.custom-randomization-root-list {
  padding-left: 2em;
  list-style-type: square; }

/* "Don't Know" response stuff */
.dont-know-list_add-response-btn {
  margin-top: 8px; }

.dd-bucket-card .content-list {
  margin-bottom: 16px; }

.dd-bucket-card_drag-items {
  padding-bottom: 16px; }
  .dd-bucket-card_drag-items .drag-items_list {
    margin-top: 16px;
    margin-bottom: 8px; }

.dd-bucket-card_drop-buckets {
  padding-bottom: 16px; }
  .dd-bucket-card_drop-buckets .drop-buckets_list {
    margin-top: 16px;
    margin-bottom: 8px; }

.dd-scale-question .drag-items-wrapper + div {
  margin-top: 16px; }

.highlight-question_states {
  padding-bottom: 16px; }
  .highlight-question_states h3 {
    margin-top: 16px; }
  .highlight-question_states .states_preset-select {
    max-width: 240px;
    margin-bottom: 8px; }

.highlight-question_highlight-text .highlight-text_instructions {
  font-style: italic;
  margin-top: 8px;
  margin-bottom: 16px; }

.highlight-question_highlight-text .highlight-text_content,
.highlight-question_highlight-text .highlight-text_highlight {
  position: relative;
  min-height: 192px; }

.highlight-question_highlight-text .highlight-text_highlight {
  display: flex; }
  .highlight-question_highlight-text .highlight-text_highlight .highlight_highlightable-content {
    border: 2px solid transparent;
    line-height: 1.4;
    padding: 2px 8px; }
    .theme-cmix .highlight-question_highlight-text .highlight-text_highlight .highlight_highlightable-content {
      border-color: #DDE1E7; }
    .theme-marketview .highlight-question_highlight-text .highlight-text_highlight .highlight_highlightable-content {
      border-color: #DDE1E7; }
  .highlight-question_highlight-text .highlight-text_highlight .highlight-text-range {
    border: 1px solid transparent;
    border-left-width: 0;
    border-right-width: 0; }
    .theme-cmix .highlight-question_highlight-text .highlight-text_highlight .highlight-text-range {
      background-color: rgba(46, 145, 201, 0.3);
      border-color: rgba(46, 145, 201, 0.6); }
      .theme-cmix .highlight-question_highlight-text .highlight-text_highlight .highlight-text-range.highlight-text-range_hovered {
        background-color: rgba(46, 145, 201, 0.6); }
    .theme-marketview .highlight-question_highlight-text .highlight-text_highlight .highlight-text-range {
      background-color: rgba(91, 156, 183, 0.3);
      border-color: rgba(91, 156, 183, 0.6); }
      .theme-marketview .highlight-question_highlight-text .highlight-text_highlight .highlight-text-range.highlight-text-range_hovered {
        background-color: rgba(91, 156, 183, 0.6); }
    .highlight-question_highlight-text .highlight-text_highlight .highlight-text-range.highlight-text-range_first-child {
      border-left-width: 1px;
      border-top-left-radius: 4px;
      border-bottom-left-radius: 4px; }
    .highlight-question_highlight-text .highlight-text_highlight .highlight-text-range.highlight-text-range_last-child {
      border-right-width: 1px;
      border-top-right-radius: 4px;
      border-bottom-right-radius: 4px; }
  .highlight-question_highlight-text .highlight-text_highlight .highlight_highlight-responses {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: auto; }
    .highlight-question_highlight-text .highlight-text_highlight .highlight_highlight-responses .highlight-responses_response {
      font-size: 0.8em;
      padding: 2px; }
      .theme-cmix .highlight-question_highlight-text .highlight-text_highlight .highlight_highlight-responses .highlight-responses_response.hovered {
        background-color: rgba(46, 145, 201, 0.6); }
      .theme-marketview .highlight-question_highlight-text .highlight-text_highlight .highlight_highlight-responses .highlight-responses_response.hovered {
        background-color: rgba(91, 156, 183, 0.6); }
      .highlight-question_highlight-text .highlight-text_highlight .highlight_highlight-responses .highlight-responses_response.no-highlight {
        opacity: 0.2; }
      .highlight-question_highlight-text .highlight-text_highlight .highlight_highlight-responses .highlight-responses_response .input-container_marker {
        min-width: 3.5em;
        padding-right: 0; }
      .highlight-question_highlight-text .highlight-text_highlight .highlight_highlight-responses .highlight-responses_response i {
        display: inline-block;
        vertical-align: middle; }
      .highlight-question_highlight-text .highlight-text_highlight .highlight_highlight-responses .highlight-responses_response .icon-remove, .highlight-question_highlight-text .highlight-text_highlight .highlight_highlight-responses .highlight-responses_response md-autocomplete .md-show-clear-button button, md-autocomplete .md-show-clear-button .highlight-question_highlight-text .highlight-text_highlight .highlight_highlight-responses .highlight-responses_response button, .highlight-question_highlight-text .highlight-text_highlight .highlight_highlight-responses .highlight-responses_response md-autocomplete .md-show-clear-button label.label-btn, md-autocomplete .md-show-clear-button .highlight-question_highlight-text .highlight-text_highlight .highlight_highlight-responses .highlight-responses_response label.label-btn, .highlight-question_highlight-text .highlight-text_highlight .highlight_highlight-responses .highlight-responses_response md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-cancel-button, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .highlight-question_highlight-text .highlight-text_highlight .highlight_highlight-responses .highlight-responses_response .md-cancel-button, .highlight-question_highlight-text .highlight-text_highlight .highlight_highlight-responses .highlight-responses_response md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-cancel-button, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .highlight-question_highlight-text .highlight-text_highlight .highlight_highlight-responses .highlight-responses_response .md-cancel-button, .highlight-question_highlight-text .highlight-text_highlight .highlight_highlight-responses .highlight-responses_response md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .md-confirm-button, md-autocomplete .md-show-clear-button md-dialog md-dialog-actions .highlight-question_highlight-text .highlight-text_highlight .highlight_highlight-responses .highlight-responses_response .md-confirm-button, .highlight-question_highlight-text .highlight-text_highlight .highlight_highlight-responses .highlight-responses_response md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .md-confirm-button, md-dialog md-dialog-actions md-autocomplete .md-show-clear-button .highlight-question_highlight-text .highlight-text_highlight .highlight_highlight-responses .highlight-responses_response .md-confirm-button {
        margin-right: 8px; }

.highlight-question_highlight-image {
  padding-bottom: 16px; }
  .highlight-question_highlight-image .highlight-image_url-input {
    margin-bottom: 16px; }
  .highlight-question_highlight-image .highlight-image_canvas-container .canvas-container {
    border: 2px solid transparent;
    margin: 16px auto;
    display: block;
    max-width: 100%; }
    .theme-cmix .highlight-question_highlight-image .highlight-image_canvas-container .canvas-container {
      border-color: #DDE1E7; }
    .theme-marketview .highlight-question_highlight-image .highlight-image_canvas-container .canvas-container {
      border-color: #DDE1E7; }
    .highlight-question_highlight-image .highlight-image_canvas-container .canvas-container canvas {
      vertical-align: top; }
  .highlight-question_highlight-image .highlight-image_highlight-response {
    font-size: 0.8em;
    padding: 2px; }
    .theme-cmix .highlight-question_highlight-image .highlight-image_highlight-response.selected {
      background-color: rgba(46, 145, 201, 0.6); }
    .theme-marketview .highlight-question_highlight-image .highlight-image_highlight-response.selected {
      background-color: rgba(91, 156, 183, 0.6); }
    .highlight-question_highlight-image .highlight-image_highlight-response.no-highlight {
      opacity: 0.2; }
    .highlight-question_highlight-image .highlight-image_highlight-response .input-container_marker {
      min-width: 3.5em;
      padding-right: 0; }

.coordinate-tracker_states h4 {
  margin-top: 24px;
  margin-bottom: 8px; }

.coordinate-tracker_states .states_size-input input {
  display: inline-block;
  max-width: 80px; }

.coordinate-tracker_image-setter .image-setter_image-container {
  border: 2px solid transparent;
  margin: 16px auto;
  position: relative;
  min-width: 100px;
  min-height: 100px;
  overflow: hidden; }
  .theme-cmix .coordinate-tracker_image-setter .image-setter_image-container {
    border-color: #DDE1E7; }
  .theme-marketview .coordinate-tracker_image-setter .image-setter_image-container {
    border-color: #DDE1E7; }
  .coordinate-tracker_image-setter .image-setter_image-container img {
    max-width: 100%;
    display: inline-block;
    vertical-align: top; }
  .coordinate-tracker_image-setter .image-setter_image-container .image-container_coordinate-preview {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0; }
    .coordinate-tracker_image-setter .image-setter_image-container .image-container_coordinate-preview .coordinate-preview {
      background-color: white;
      background-repeat: no-repeat;
      background-position: center;
      border-radius: 50%;
      margin: 0 auto;
      display: block;
      position: relative;
      top: 50%;
      transform: translateY(-50%);
      box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25); }

.coordinate-tracker_dont-know-responses h4 {
  margin-top: 24px;
  margin-bottom: 8px; }

.simple-grid h3 {
  margin-top: 16px;
  margin-bottom: 8px; }

.choise-question_type-select {
  max-width: 128px;
  margin-bottom: 16px; }

.passcode-question_lookup {
  margin-bottom: 8px; }
  .passcode-question_lookup md-select {
    margin-right: 16px;
    max-width: 192px;
    display: inline-block;
    vertical-align: middle; }

.passcode-question_lookup_empty {
  text-align: center;
  font-style: italic; }
  .theme-cmix .passcode-question_lookup_empty {
    color: #585863; }
  .theme-marketview .passcode-question_lookup_empty {
    color: #666666; }

survey-version-select md-select {
  width: 100%; }

/* Settings */
.custom-randomization-setting {
  padding-top: 8px; }
  .custom-randomization-setting ul.list-style-none {
    margin: 0; }
  .custom-randomization-setting .add-randomization-group-btn {
    margin-top: 4px; }
  .custom-randomization-setting .dropdown {
    display: block; }
    .custom-randomization-setting .dropdown .dropdown-button {
      text-align: left;
      width: 100%;
      display: flex; }
      .custom-randomization-setting .dropdown .dropdown-button span:not(.dropdown-button-arrow) {
        flex: 1;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis; }
  .custom-randomization-setting h4 {
    padding-bottom: 4px; }
  .custom-randomization-setting h5 {
    padding-top: 8px;
    padding-bottom: 4px; }

.custom-randomization-setting_assigned-settings ul li > ul {
  padding-left: 16px;
  list-style: none; }

.custom-randomization-setting_assigned-settings .assigned-settings_setting {
  border: 1px solid transparent;
  margin-bottom: 4px; }
  .custom-randomization-setting_assigned-settings .assigned-settings_setting p {
    padding: 2px 4px; }
  .custom-randomization-setting_assigned-settings .assigned-settings_setting .setting_actions {
    text-align: right;
    padding: 2px 4px; }
  .theme-cmix .custom-randomization-setting_assigned-settings .assigned-settings_setting {
    background-color: #FAFAFA;
    border-color: #DDE1E7; }
    .theme-cmix .custom-randomization-setting_assigned-settings .assigned-settings_setting .setting_actions {
      background-color: #DDE1E7; }
  .theme-marketview .custom-randomization-setting_assigned-settings .assigned-settings_setting {
    background-color: #FAFAFA;
    border-color: #DDE1E7; }
    .theme-marketview .custom-randomization-setting_assigned-settings .assigned-settings_setting .setting_actions {
      background-color: #DDE1E7; }

/* Styles copied from the library list component
*   This is needed because the library list imports
*   an old version of the pattern library.
*/
.library-list {
  background-color: #F8F8F8;
  padding: 0.5em; }

.library-list .angular-ui-tree-nodes .angular-ui-tree-nodes {
  padding-left: 1em; }

.library-list md-progress-linear.md-default-theme .md-container,
.library-list md-progress-linear .md-container {
  background-color: #DDDDDD; }

.library-list md-progress-linear.md-default-theme .md-bar,
.library-list md-progress-linear .md-bar {
  background-color: #7CA1D5; }

.library-list_search-input {
  margin-bottom: 0.5em; }

.library-list_list-item {
  display: flex;
  align-items: center;
  cursor: default;
  margin-bottom: 0.25em; }

.library-list_list-item p {
  margin: 0;
  padding: 0 0.25em;
  display: inline-block;
  vertical-align: middle;
  flex-grow: 1;
  outline: none; }

.library-list_list-item.list-item_selectable {
  cursor: pointer; }

.library-list_list-item.list-item_selectable:hover {
  background-color: rgba(124, 161, 213, 0.2); }

cmix-slider.show-library-dialog {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }

.library-admin-modal {
  opacity: 1;
  top: 1.5em;
  left: 50%;
  transform: translateX(-50%); }

.library-admin-modal .success-msg {
  color: #60A845;
  font-weight: bold; }

.library-admin-modal_share-settings {
  border: 1px solid #DDDDDD;
  padding: 0.5em; }

.library-admin-modal_share-settings h3 {
  margin-bottom: 0.333em; }

.library-admin-modal_share-settings md-autocomplete,
.library-admin-modal_share-settings md-select {
  margin-bottom: 0.5em; }
.theme-controls {
    padding: 1em;
}

.theme-controls-error {
    width: 100%;
    color: red;
    padding: 2em;
    text-align: center;
}

.theme-controls-content {
    display: flex;
    flex: 1;
    column-gap: 2em;
}

.left-menu {
    height: 100%;
}

.control-group h3 {
    margin-bottom: 1em;
    border-bottom: 1px solid black;
    padding-bottom: .3em;
}

.background-color,
.foreground-color,
.text-color {
    display: inline-flex;
}

.background-color span,
.foreground-color span,
.text-color span {
    align-self: center;
    width: 70%;
}

.theme-editor-tab .cm-card {
    float: right;
    width: 70%;
    margin: 2rem;
}

.theme-editor-tab .theme-editor-content {
    display: inline-flex;
    width: 100%;
}

.theme-editor-tab .theme-editor-menu {
    height: 100vh;
}

.theme-editor-tab .theme-editor-content .left-menu {
    width: 25%;
    border-right: 1px solid #DDE1E7;
    display: inline-flex;
    flex-direction: column;
    background-color: #F1F2F3;
}

.theme-editor-tab .theme-editor-content .left-menu .color-pickers {
    border-bottom: 1px solid #DDE1E7;
    width: 80%;
    margin: 0 2rem;
    display: inline-flex;
    flex-direction: column;
}

.theme-editor-tab .theme-editor-content .left-menu .font-settings {
    width: 100%;
    display: inline-flex;
    flex-direction: column;
}

.font-settings .background-color md-select {
    height: 1rem;
    margin-right: 1rem;
}

.font-settings .background-color span {
    margin-bottom: 0;
}

.theme-preview {
    width: 100%;
}

.background-color {
    display: inline-flex;
    width: 100%;
    margin-bottom:.5em;
}

color-picker {
    width: 100%;
}

.left-menu .font-settings .dropdown-input {
    margin: 0 1rem 1rem 1rem;
}

.theme-controls {
    padding: 0;
}

.theme-controls .theme-controls-content {
    align-items: center;
    background-color: #F1F2F3;
    border-top: 1px solid #DDE1E7;
}

.theme-controls .theme-controls-content input:first-child {
    margin-left: 1rem;
}

.theme-controls .theme-controls-content button:last-child {
    margin-right: 1rem;
}

.theme-controls .theme-controls-content label {
    font-size: 12px;
}

.theme-controls .theme-controls-content label,
.theme-controls .theme-controls-content input,
.theme-controls .theme-controls-content button {
    height: 3rem;
}

.theme-editor {
    margin-top: 1rem;
}

.theme-editor .theme-editor-tab {
    border-top: 1px solid #DDE1E7;
}

.btn-group {
    margin-left:10px;
    margin-top:5px;
    margin-bottom:10px;
}

.left-menu {
    overflow: scroll;
    height: 100vh;
}

.text-input-wrapper {
    display:flex;
    align-items: center;
}

.text-input-wrapper label {
    max-width: 200px;
}
.text-input-wrapper input {
    max-width: 150px;
}

.control-group {
    padding:1em;
}

.ddb label {
    margin-bottom: .5em;
}
#theme-preview {
    padding: 15px;
    min-width:100%;
    height:100%;
}

.cm-card-footer {
    border-top: 1px solid #DDE1E7;
    display: inline-flex;
    justify-content: space-between;
    padding-top: 2rem;
    width: 100%;
}

.cm-card-footer .cm-progress-bar {
    width: 16rem;
}

.cm-card-footer .cm-progress-bar .progress {
    display: inline-flex;
    width: 100%;
    height: .25rem;
}

.cm-card-footer .cm-progress-bar .progress .done {
    border-radius: .5rem;
    height: 100%;
    width: 75%;
}

.cm-card-footer .cm-progress-bar .progress .untouched {
    border-radius: .5rem;
    height: 100%;
    width: 25%;
    background-color: #F1F2F3;
}

.cm-card-footer .cm-progress-bar .cm-progress-bar-text {
    margin-top: 1.5rem;
    text-align: center;
}

.theme-preview .cm-card-body .checkables {
    margin-top: 2rem;
}

.cm-button.cm-button-primary {
    height: 2.5rem;
}
.code {
    max-height: 500px;
    width: 95%;
    border: grey 1px solid;
    margin-left:auto;
    margin-right:auto;
    margin-bottom: 10px;
    overflow: scroll;
}

.css-loading {
    font-size:2.5em;
    text-align: center;
    width:100%;
    margin-top:1.5em;
}
.theme-logo {
    padding: 10px;
    line-height: 3;
}

img {
    max-width: 300px;
    max-height: 300px;
}

.text-input-wrapper, .logo-input-wrapper{
    display: flex;
    align-items: center;
}

.text-input-wrapper input {
    max-width: 150px;
}

.logo-input-wrapper label {
    max-width: 100px;
    min-width: 50px;
}

.logo-input-wrapper {
   max-width: 300px;
}

/*# sourceMappingURL=sat.bundle.75164affd2ece412f001bb03b7762203.css.map*/