@charset "UTF-8";
/**
 * React Select
 * ============
 * Created by Jed Watson and Joss Mackison for KeystoneJS, http://www.keystonejs.com/
 * https://twitter.com/jedwatson https://twitter.com/jossmackison https://twitter.com/keystonejs
 * MIT License: https://github.com/keystonejs/react-select
*/
.Select {
  position: relative; }

.Select-control {
  position: relative;
  overflow: hidden;
  background-color: white;
  border: 1px solid #cccccc;
  border-color: #d9d9d9 #cccccc #b3b3b3;
  border-radius: 4px;
  box-sizing: border-box;
  color: #333333;
  cursor: default;
  outline: none;
  padding: 8px 52px 8px 10px;
  transition: all 200ms ease; }

.Select-control:hover {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06); }

.is-searchable.is-open > .Select-control {
  cursor: text; }

.is-open > .Select-control {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background: white;
  border-color: #b3b3b3 #cccccc #d9d9d9; }

.is-open > .Select-control > .Select-arrow {
  border-color: transparent transparent #999999;
  border-width: 0 5px 5px; }

.is-searchable.is-focused:not(.is-open) > .Select-control {
  cursor: text; }

.is-focused:not(.is-open) > .Select-control {
  border-color: #0088cc #0099e6 #0099e6;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 0 5px -1px rgba(0, 136, 204, 0.5); }

.Select-placeholder {
  color: #aaaaaa;
  padding: 8px 52px 8px 10px;
  position: absolute;
  top: 0;
  left: 0;
  right: -15px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

.has-value > .Select-control > .Select-placeholder {
  color: #333333; }

.Select-input > input {
  cursor: default;
  background: none transparent;
  border: 0 none;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  padding: 0;
  outline: none;
  display: inline-block;
  -webkit-appearance: none; }

.is-focused .Select-input > input {
  cursor: text; }

.Select-control:not(.is-searchable) > .Select-input {
  outline: none; }

.Select-loading {
  -webkit-animation: Select-animation-spin 400ms infinite linear;
  -o-animation: Select-animation-spin 400ms infinite linear;
  animation: Select-animation-spin 400ms infinite linear;
  width: 16px;
  height: 16px;
  box-sizing: border-box;
  border-radius: 50%;
  border: 2px solid #cccccc;
  border-right-color: #333333;
  display: inline-block;
  position: relative;
  margin-top: -8px;
  position: absolute;
  right: 30px;
  top: 50%; }

.has-value > .Select-control > .Select-loading {
  right: 46px; }

.Select-clear {
  color: #999999;
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  padding: 6px 10px;
  position: absolute;
  right: 17px;
  top: 0; }

.Select-clear:hover {
  color: #c0392b; }

.Select-clear > span {
  font-size: 1.1em; }

.Select-arrow {
  border-color: #999999 transparent transparent;
  border-style: solid;
  border-width: 5px 5px 0;
  content: " ";
  display: block;
  height: 0;
  margin-top: -ceil(2.5px);
  position: absolute;
  right: 10px;
  top: 14px;
  width: 0; }

.Select-menu-outer {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  background-color: white;
  border: 1px solid #cccccc;
  border-top-color: #e6e6e6;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
  margin-top: -1px;
  max-height: 200px;
  position: absolute;
  top: 100%;
  width: 100%;
  z-index: 1000;
  -webkit-overflow-scrolling: touch; }

.Select-menu {
  max-height: 198px;
  overflow-y: auto; }

.Select-option {
  box-sizing: border-box;
  color: #666666;
  cursor: pointer;
  display: block;
  padding: 8px 10px; }

.Select-option:last-child {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px; }

.Select-option.is-focused {
  background-color: #f2f9fc;
  color: #333333; }

.Select-option.is-disabled {
  color: #cccccc;
  cursor: not-allowed; }

.Select-noresults {
  box-sizing: border-box;
  color: #999999;
  cursor: default;
  display: block;
  padding: 8px 10px; }

.Select.is-multi .Select-control {
  padding: 2px 52px 2px 3px; }

.Select.is-multi .Select-input {
  vertical-align: middle;
  border: 1px solid transparent;
  margin: 2px;
  padding: 3px 0; }

.Select-item {
  background-color: #f2f9fc;
  border-radius: 2px;
  border: 1px solid #c9e6f2;
  color: #0088cc;
  display: inline-block;
  font-size: 1em;
  margin: 2px; }

.Select-item-icon,
.Select-item-label {
  display: inline-block;
  vertical-align: middle; }

.Select-item-label {
  cursor: default;
  border-bottom-right-radius: 2px;
  border-top-right-radius: 2px;
  padding: 3px 5px; }

.Select-item-label .Select-item-label__a {
  color: #0088cc;
  cursor: pointer; }

.Select-item-icon {
  cursor: pointer;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  border-right: 1px solid #c9e6f2;
  padding: 2px 5px 4px; }

.Select-item-icon:hover,
.Select-item-icon:focus {
  background-color: #ddeff7;
  color: #0077b3; }

.Select-item-icon:active {
  background-color: #c9e6f2; }

@keyframes Select-animation-spin {
  to {
    transform: rotate(1turn); } }

@-webkit-keyframes Select-animation-spin {
  to {
    -webkit-transform: rotate(1turn); } }

/* Noramlize.css */
.rw-btn,
.rw-input {
  color: inherit;
  font: inherit;
  margin: 0; }

button.rw-input {
  overflow: visible; }

button.rw-input,
select.rw-input {
  text-transform: none; }

button.rw-input,
html input[type="button"].rw-input,
input[type="reset"].rw-input,
input[type="submit"].rw-input {
  -webkit-appearance: button;
  cursor: pointer; }

button[disabled].rw-input,
html input[disabled].rw-input {
  cursor: not-allowed; }

button.rw-input::-moz-focus-inner,
input.rw-input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/* -------------- */
.rw-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

.rw-widget,
.rw-widget * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.rw-widget:before,
.rw-widget *:before,
.rw-widget:after,
.rw-widget *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

@font-face {
  font-family: 'RwWidgets';
  src: url(/font/rw-widgets.eot);
  src: url(/font/rw-widgets.eot?#iefix&v=4.1.0) format("embedded-opentype"), url(/font/rw-widgets.woff) format("woff"), url(/font/rw-widgets.ttf) format("truetype"), url(/font/rw-widgets.svg#fontawesomeregular) format("svg");
  font-weight: normal;
  font-style: normal; }

.rw-i {
  display: inline-block;
  font-family: RwWidgets;
  font-style: normal;
  font-weight: normal;
  line-height: 1em;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.rw-i-caret-down:before {
  content: '\E803'; }

.rw-i-caret-up:before {
  content: '\E800'; }

.rw-i-caret-left:before {
  content: '\E801'; }

.rw-i-caret-right:before {
  content: '\E802'; }

.rw-i-clock-o:before {
  content: '\E805'; }

.rw-i-calendar:before {
  content: '\E804'; }

.rw-i-search:before {
  content: '\E806'; }

/* for debugging */
.rw-widget {
  outline: 0;
  -moz-background-clip: border-box;
  -webkit-background-clip: border-box;
  background-clip: border-box; }

.rw-btn {
  color: #333333;
  line-height: 2.286em;
  display: inline-block;
  margin: 0;
  text-align: center;
  vertical-align: middle;
  background: none;
  background-image: none;
  border: 1px solid transparent;
  padding: 0;
  white-space: nowrap; }

.rw-rtl {
  direction: rtl; }

.rw-input {
  color: #555555;
  height: 2.286em;
  padding: 0.429em 0.857em;
  background-color: #ffffff; }

.rw-input[disabled] {
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: not-allowed;
  opacity: 1;
  background-color: #eeeeee;
  border-color: #cccccc; }

.rw-input[readonly] {
  cursor: not-allowed; }

.rw-filter-input {
  position: relative;
  width: 100%;
  padding-right: 1.9em;
  border: #cccccc 1px solid;
  margin-bottom: 2px; }

.rw-rtl .rw-filter-input {
  padding-left: 1.9em;
  padding-right: 0; }

.rw-filter-input > .rw-input {
  width: 100%;
  border: none;
  outline: none; }

.rw-filter-input > span {
  margin-top: -2px; }

.rw-i.rw-loading {
  background: url(/img/loading.gif) no-repeat center;
  width: 16px;
  height: 100%; }

.rw-i.rw-loading:before {
  content: ""; }

.rw-loading-mask {
  position: relative; }

.rw-loading-mask:after {
  content: '';
  background: url(/img/loader-big.gif) no-repeat center;
  position: absolute;
  background-color: #fff;
  opacity: 0.7;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%; }

.rw-now {
  font-weight: 600; }

.rw-state-focus {
  background-color: #ffffff;
  border: #66afe9 1px solid;
  color: #333333; }

.rw-state-selected {
  background-color: #adadad;
  border: #adadad 1px solid;
  color: #333333; }

.rw-state-disabled {
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: not-allowed;
  opacity: 1; }

.rw-btn,
.rw-dropdownlist {
  cursor: pointer; }

.rw-btn[disabled],
.rw-state-disabled .rw-btn,
.rw-state-readonly .rw-btn {
  -webkit-box-shadow: none;
  box-shadow: none;
  pointer-events: none;
  cursor: not-allowed;
  filter: alpha(opacity=65);
  opacity: .65; }

ul.rw-list,
.rw-selectlist {
  margin: 0;
  padding-left: 0;
  list-style: none;
  padding: 5px 0;
  overflow: auto;
  outline: 0;
  height: 100%; }

ul.rw-list > li,
.rw-selectlist > li {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

ul.rw-list > li.rw-list-optgroup,
.rw-selectlist > li.rw-list-optgroup {
  font-weight: bold; }

ul.rw-list > li.rw-list-option,
ul.rw-list > li.rw-list-empty,
.rw-selectlist > li.rw-list-option,
.rw-selectlist > li.rw-list-empty {
  padding-left: 10px;
  padding-right: 10px; }

ul.rw-list > li.rw-list-option,
.rw-selectlist > li.rw-list-option {
  cursor: pointer;
  border: 1px solid transparent; }

ul.rw-list > li.rw-list-option:hover,
.rw-selectlist > li.rw-list-option:hover {
  background-color: #e6e6e6;
  border-color: #adadad; }

ul.rw-list > li.rw-list-option.rw-state-focus,
.rw-selectlist > li.rw-list-option.rw-state-focus {
  background-color: #ffffff;
  border: #66afe9 1px solid;
  color: #333333; }

ul.rw-list > li.rw-list-option.rw-state-selected,
.rw-selectlist > li.rw-list-option.rw-state-selected {
  background-color: #adadad;
  border: #adadad 1px solid;
  color: #333333; }

ul.rw-list.rw-list-grouped > li.rw-list-optgroup,
.rw-selectlist.rw-list-grouped > li.rw-list-optgroup {
  padding-left: 10px; }

ul.rw-list.rw-list-grouped > li.rw-list-option,
.rw-selectlist.rw-list-grouped > li.rw-list-option {
  padding-left: 20px; }

.rw-widget {
  position: relative; }

.rw-open.rw-widget,
.rw-open > .rw-multiselect-wrapper {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.rw-open-up.rw-widget,
.rw-open-up > .rw-multiselect-wrapper {
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

.rw-combobox .rw-list,
.rw-datetimepicker .rw-list,
.rw-numberpicker .rw-list,
.rw-dropdownlist .rw-list,
.rw-multiselect .rw-list {
  max-height: 200px;
  height: auto; }

.rw-widget {
  background-color: #ffffff;
  border: #cccccc 1px solid; }

.rw-rtl.rw-widget .rw-input {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0; }

.rw-widget > .rw-select {
  border-left: #cccccc 1px solid; }

.rw-rtl.rw-widget > .rw-select {
  border-right: #cccccc 1px solid;
  border-left: none; }

.rw-widget.rw-state-focus,
.rw-widget.rw-state-focus:hover {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  border-color: #66afe9;
  outline: 0; }

.rw-widget.rw-state-readonly,
.rw-widget.rw-state-readonly > .rw-multiselect-wrapper {
  cursor: not-allowed; }

.rw-widget.rw-state-disabled,
.rw-widget.rw-state-disabled:hover,
.rw-widget.rw-state-disabled:active {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #eeeeee;
  border-color: #cccccc; }

.rw-combobox,
.rw-datetimepicker,
.rw-numberpicker,
.rw-dropdownlist {
  padding-right: 1.9em; }

.rw-combobox.rw-rtl,
.rw-datetimepicker.rw-rtl,
.rw-numberpicker.rw-rtl,
.rw-dropdownlist.rw-rtl {
  padding-right: 0;
  padding-left: 1.9em; }

.rw-combobox > .rw-input,
.rw-datetimepicker > .rw-input,
.rw-numberpicker > .rw-input,
.rw-dropdownlist > .rw-input {
  width: 100%;
  border: none;
  outline: 0; }

.rw-combobox > .rw-input::-moz-placeholder,
.rw-datetimepicker > .rw-input::-moz-placeholder,
.rw-numberpicker > .rw-input::-moz-placeholder,
.rw-dropdownlist > .rw-input::-moz-placeholder {
  color: #999999;
  opacity: 1; }

.rw-combobox > .rw-input:-ms-input-placeholder,
.rw-datetimepicker > .rw-input:-ms-input-placeholder,
.rw-numberpicker > .rw-input:-ms-input-placeholder,
.rw-dropdownlist > .rw-input:-ms-input-placeholder {
  color: #999999; }

.rw-combobox > .rw-input::-webkit-input-placeholder,
.rw-datetimepicker > .rw-input::-webkit-input-placeholder,
.rw-numberpicker > .rw-input::-webkit-input-placeholder,
.rw-dropdownlist > .rw-input::-webkit-input-placeholder {
  color: #999999; }

.rw-placeholder {
  color: #999999; }

.rw-select {
  position: absolute;
  width: 1.9em;
  height: 100%;
  right: 0; }

.rw-select.rw-btn,
.rw-select > .rw-btn {
  height: 100%;
  vertical-align: middle;
  outline: 0; }

.rw-rtl .rw-select {
  left: 0;
  right: auto; }

.rw-multiselect,
.rw-combobox input.rw-input,
.rw-datetimepicker input.rw-input,
.rw-numberpicker input.rw-input {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }

.rw-combobox:active,
.rw-datetimepicker:active,
.rw-dropdownlist:active,
.rw-header > .rw-btn:active,
.rw-numberpicker .rw-btn.rw-state-active,
.rw-combobox:active.rw-state-focus,
.rw-datetimepicker:active.rw-state-focus,
.rw-dropdownlist:active.rw-state-focus,
.rw-header > .rw-btn:active.rw-state-focus,
.rw-numberpicker .rw-btn.rw-state-active.rw-state-focus {
  background-image: none;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }

.rw-combobox:hover,
.rw-datetimepicker:hover,
.rw-numberpicker:hover,
.rw-dropdownlist:hover {
  background-color: #e6e6e6;
  border-color: #adadad; }

.rw-dropdownlist.rw-state-disabled,
.rw-dropdownlist.rw-state-readonly {
  cursor: not-allowed; }

.rw-dropdownlist > .rw-input {
  line-height: 2.286em;
  background-color: transparent;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

.rw-dropdownlist.rw-rtl > .rw-input {
  padding: 0.429em 0.857em;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0; }

.rw-dropdownlist > .rw-select,
.rw-dropdownlist.rw-rtl > .rw-select {
  border-width: 0; }

.rw-numberpicker .rw-btn {
  display: block;
  height: 1.143em;
  line-height: 1.143em;
  width: 100%;
  border-width: 0; }

.rw-popup {
  position: absolute;
  -webkit-box-shadow: 0 5px 6px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 6px rgba(0, 0, 0, 0.2);
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border: #cccccc 1px solid;
  background: #ffffff;
  padding: 2px;
  overflow: auto;
  margin-bottom: 10px;
  left: 10px;
  right: 10px; }

.rw-dropup > .rw-popup {
  margin-bottom: 0;
  margin-top: 10px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2); }

.rw-popup-container {
  position: absolute;
  top: 100%;
  margin-top: 1px;
  z-index: 1005;
  left: -11px;
  right: -11px; }

.rw-popup-container.rw-dropup {
  top: auto;
  bottom: 100%; }

.rw-popup-container.rw-calendar-popup {
  right: auto;
  width: 18em; }

.rw-datetimepicker .rw-btn {
  width: 1.8em; }

.rw-datetimepicker.rw-has-neither {
  padding-left: 0;
  padding-right: 0; }

.rw-datetimepicker.rw-has-both {
  padding-right: 3.8em; }

.rw-datetimepicker.rw-has-both.rw-rtl {
  padding-right: 0;
  padding-left: 3.8em; }

.rw-datetimepicker.rw-has-both > .rw-select {
  width: 3.8em;
  height: 100%; }

.rw-calendar {
  background-color: #ffffff; }

.rw-calendar thead > tr {
  border-bottom: 2px solid #cccccc; }

.rw-calendar .rw-header {
  padding-bottom: 5px; }

.rw-calendar .rw-header .rw-btn-left,
.rw-calendar .rw-header .rw-btn-right {
  width: 12.5%; }

.rw-calendar .rw-header .rw-btn-view {
  width: 75%;
  background-color: #eeeeee; }

.rw-calendar .rw-header .rw-btn-view[disabled] {
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: not-allowed; }

.rw-calendar .rw-footer {
  border-top: 1px solid #cccccc; }

.rw-calendar .rw-footer .rw-btn {
  width: 100%;
  white-space: normal; }

.rw-calendar .rw-footer .rw-btn:hover {
  background-color: #e6e6e6; }

.rw-calendar .rw-footer .rw-btn[disabled] {
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: not-allowed; }

.rw-calendar-grid {
  height: 14.28571429em;
  table-layout: fixed;
  width: 100%; }

.rw-calendar-grid th {
  text-align: right;
  padding: 0 .4em 0 .1em; }

.rw-calendar-grid .rw-btn {
  width: 100%;
  text-align: right; }

.rw-calendar-grid td .rw-btn {
  padding: 0 .4em 0 .1em;
  outline: 0; }

.rw-calendar-grid td .rw-btn:hover {
  background-color: #e6e6e6; }

.rw-calendar-grid td .rw-btn.rw-off-range {
  color: #b3b3b3; }

.rw-calendar-grid.rw-nav-view .rw-btn {
  padding: .25em 0 .3em;
  display: block;
  overflow: hidden;
  text-align: center;
  white-space: normal; }

.rw-selectlist {
  padding: 2px; }

.rw-selectlist > ul {
  height: 100%;
  overflow: auto; }

.rw-selectlist > ul > li.rw-list-option {
  position: relative;
  min-height: 27px;
  cursor: auto;
  padding-left: 5px; }

.rw-selectlist > ul > li.rw-list-option > label > input {
  position: absolute;
  margin: 4px 0 0 -20px; }

.rw-selectlist > ul > li.rw-list-option > label {
  padding-left: 20px;
  line-height: 1.423em;
  display: inline-block; }

.rw-selectlist.rw-rtl > ul > li.rw-list-option {
  padding-left: 0;
  padding-right: 5px; }

.rw-selectlist.rw-rtl > ul > li.rw-list-option > label > input {
  margin: 4px -20px 0 0px; }

.rw-selectlist.rw-rtl > ul > li.rw-list-option > label {
  padding-left: 0;
  padding-right: 20px; }

.rw-selectlist.rw-rtl > ul > li.rw-list-option {
  padding-left: 0;
  padding-right: 5px; }

.rw-selectlist.rw-rtl > ul > li.rw-list-option > label > input {
  margin: 4px -20px 0 0px; }

.rw-selectlist.rw-rtl > ul > li.rw-list-option > label {
  padding-left: 0;
  padding-right: 20px; }

.rw-selectlist.rw-state-disabled > ul > li:hover,
.rw-selectlist.rw-state-readonly > ul > li:hover {
  background: none;
  border-color: transparent; }

.rw-multiselect {
  background-color: #ffffff; }

.rw-multiselect:hover {
  border-color: #adadad; }

.rw-multiselect-wrapper {
  position: relative;
  cursor: text; }

.rw-multiselect-wrapper:before,
.rw-multiselect-wrapper:after {
  content: " ";
  display: table; }

.rw-multiselect-wrapper:after {
  clear: both; }

.rw-multiselect-wrapper i.rw-loading {
  position: absolute;
  right: 3px; }

.rw-multiselect-wrapper > .rw-input {
  float: left;
  outline: 0;
  border-width: 0;
  line-height: normal;
  width: auto;
  max-width: 100%; }

.rw-multiselect-wrapper > .rw-input::-moz-placeholder {
  color: #999999;
  opacity: 1; }

.rw-multiselect-wrapper > .rw-input:-ms-input-placeholder {
  color: #999999; }

.rw-multiselect-wrapper > .rw-input::-webkit-input-placeholder {
  color: #999999; }

.rw-state-readonly > .rw-multiselect-wrapper,
.rw-state-disabled > .rw-multiselect-wrapper {
  cursor: not-allowed; }

.rw-rtl .rw-multiselect-wrapper > .rw-input {
  float: right; }

.rw-multiselect-create-tag {
  border-top: 1px #cccccc solid;
  padding-top: 5px;
  margin-top: 5px; }

.rw-multiselect-taglist {
  margin: 0;
  padding-left: 0;
  list-style: none;
  padding-right: 0; }

.rw-multiselect-taglist > li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px; }

.rw-multiselect-taglist > li {
  float: left;
  display: inline-block;
  margin: 1px;
  padding: 0.214em 0.15em 0.214em 0.4em;
  line-height: 1.4em;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  border: 1px solid #cccccc;
  background-color: #cccccc;
  cursor: pointer; }

.rw-multiselect-taglist > li.rw-state-focus {
  background-color: #ffffff;
  border: #66afe9 1px solid;
  color: #333333; }

.rw-multiselect-taglist > li.rw-state-readonly,
.rw-multiselect-taglist > li.rw-state-disabled,
.rw-multiselect.rw-state-readonly .rw-multiselect-taglist > li,
.rw-multiselect.rw-state-disabled .rw-multiselect-taglist > li {
  cursor: not-allowed;
  filter: alpha(opacity=65);
  opacity: .65; }

.rw-multiselect-taglist > li .rw-btn {
  outline: 0;
  font-size: 115%;
  line-height: normal; }

.rw-rtl .rw-multiselect-taglist > li {
  float: right; }

ul, ol {
  list-style: none; }

h1, h2, h3, h4, h5, h6, pre, code {
  font-size: 1em; }

ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, body, html, p, blockquote, fieldset, input, dl, dt, dd {
  margin: 0;
  padding: 0; }

a img, :link img, :visited img, fieldset {
  border: none; }

address {
  font-style: normal; }

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

mark {
  background: transparent; }

body {
  background: #f9fbfb;
  font: 14px "Lato", Helvetica, sans-serif;
  color: #3f3d3d; }
  body > header {
    background: #fff;
    border-bottom: 1px solid #d7dada;
    box-shadow: 0 0 10px #d7dada;
    font-weight: bold;
    position: relative;
    z-index: 100; }
    body > header h1 {
      float: left;
      font-size: 25px; }
      body > header h1 a {
        display: block;
        padding: 25px 0 15px 0; }
    body > header h1, body > header p, body > header li {
      margin-bottom: 0; }
    body > header .account {
      font-size: 11px;
      text-transform: uppercase;
      float: right;
      overflow: hidden;
      color: #5f6e70;
      line-height: 30px; }
      body > header .account a {
        display: inline-block;
        background: #939d9e;
        color: #fff;
        border-bottom-left-radius: 3px;
        border-bottom-right-radius: 3px;
        padding: 0 10px;
        margin: 0 0 0 10px; }
        body > header .account a:hover {
          background: #5f6e70; }
    body > header ul {
      position: relative; }
      body > header ul li {
        float: left; }
        body > header ul li ul {
          display: none;
          text-align: right;
          background: #fff;
          width: 80px;
          padding: 10px;
          position: absolute;
          right: 0;
          top: 40px;
          border: 1px solid #d7dada;
          border-top: 0; }
          body > header ul li ul li {
            float: none; }
            body > header ul li ul li a {
              padding: 0;
              display: block;
              font-weight: normal;
              text-transform: none; }
        body > header ul li a {
          color: #5f6e70;
          font-size: 12px;
          padding: 0; }
        body > header ul li.active a,
        body > header ul li a:hover {
          color: #46ba01; }
    body > header .dropdown ul {
      text-align: left;
      display: inline;
      margin: 0;
      padding: 15px 4px 17px 0;
      list-style: none; }
      body > header .dropdown ul li {
        font: bold 12px / 18px sans-serif;
        display: inline-block;
        position: relative;
        padding: 15px 20px;
        background: #fff;
        cursor: pointer; }
        body > header .dropdown ul li:hover {
          background: #F5F5F5;
          color: #555; }
        body > header .dropdown ul li:after {
          content: "\25BC";
          font-size: 8px; }
        body > header .dropdown ul li:last-child:after {
          content: ""; }
        body > header .dropdown ul li ul {
          padding: 0;
          position: absolute;
          top: 48px;
          left: 0;
          width: 150px;
          display: none;
          opacity: 0;
          visibility: hidden; }
          body > header .dropdown ul li ul li {
            background: #FFF;
            display: block;
            color: #555;
            padding: 0; }
            body > header .dropdown ul li ul li:hover {
              background: #F5F5F5; }
            body > header .dropdown ul li ul li:after {
              content: ""; }
            body > header .dropdown ul li ul li a {
              padding: 10px 15px; }
        body > header .dropdown ul li:hover ul {
          display: block;
          opacity: 1;
          visibility: visible; }
  body > footer {
    clear: both;
    background: #484545;
    padding: 30px 0 100px 0;
    margin-top: 40px; }
    body > footer nav ul {
      float: left; }
      body > footer nav ul li {
        float: left;
        margin: 0 15px 0 0; }
        body > footer nav ul li a {
          color: #fff;
          font-weight: bold;
          font-size: 13px; }
          body > footer nav ul li a:hover {
            color: #46ba01; }

.modal {
  display: none;
  position: absolute;
  z-index: 500;
  padding: 15px;
  border-radius: 5px;
  background: #fcfcfc; }
  .modal header {
    overflow: hidden;
    padding: 0 0 20px 0; }
    .modal header h1 {
      float: left;
      font-size: 21px; }
    .modal header a.close {
      float: right;
      width: 17px;
      height: 16px;
      text-indent: -8685px;
      overflow: hidden;
      background: transparent url(/img/btn_close.png) 0 0 no-repeat; }

#modal_layer,
.modal_layer {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  background: rgba(21, 21, 21, 0.7); }

.floatleft {
  float: left; }

.floatright {
  float: right; }

.clear {
  clear: both; }

.no_bottom_pad {
  padding-bottom: 0; }

.flash {
  max-width: 1200px;
  min-width: 600px;
  padding: 0 5px;
  margin: 0 auto;
  margin: 20px auto; }
  .flash p {
    background: url(/img/icon_flash_success.png) 20px center no-repeat #d3f8be;
    border: 1px solid #b3f28f;
    -webkit-box-shadow: 0 0 8px #d7dada;
    -moz-box-shadow: 0 0 8px #d7dada;
    box-shadow: 0 0 8px #d7dada;
    padding: 20px 40px 20px 70px;
    font-weight: bold;
    font-size: 17px;
    color: #484545; }
    .flash p + p {
      margin-top: 5px; }
    .flash p.error {
      background-image: url(/img/icon_flash_warning.png);
      background-color: #f2c8c8;
      border-color: #df9e9e; }

.notice {
  padding: 15px 20px 15px 55px;
  margin: 0 0 25px 0;
  border: 1px solid #c1cacb;
  border-radius: 3px;
  background: #d4dedf url(/img/icon_flash_warning.png) 10px 50% no-repeat;
  -webkit-box-shadow: 0 0 7px #e0e4e4;
  -moz-box-shadow: 0 0 7px #e0e4e4;
  box-shadow: 0 0 7px #e0e4e4; }
  .notice p {
    font-size: 15px; }
    .notice p a {
      font-weight: bold;
      color: #1a1d1d; }
  .notice.small {
    padding: 7px 20px 7px 32px;
    background-size: 19px 17px; }
    .notice.small p {
      font-size: 11px; }

#content {
  clear: both; }

a {
  color: #017fba;
  text-decoration: none; }
  a:hover {
    color: #46ba01; }
  a.button {
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    overflow: visible;
    line-height: 100%;
    text-align: center;
    font: 13px "Lato", Helvetica, sans-serif;
    border-radius: 3px;
    background: #46ba01;
    border: none;
    white-space: nowrap;
    background: #46ba01;
    color: white;
    font-size: 13px;
    padding: 8px 15px; }
    a.button:hover {
      background: #f3b53e; }
    a.button[disabled], a.button.disabled {
      opacity: 0.6;
      filter: alpha(opacity=60);
      cursor: default; }
  a.update {
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    overflow: visible;
    line-height: 100%;
    text-align: center;
    font: 13px "Lato", Helvetica, sans-serif;
    border-radius: 3px;
    background: #46ba01;
    border: none;
    white-space: nowrap;
    background: #46ba01;
    color: white;
    font-size: 13px;
    padding: 8px 15px;
    background: #f3b53e; }
    a.update:hover {
      background: #f3b53e; }
    a.update[disabled], a.update.disabled {
      opacity: 0.6;
      filter: alpha(opacity=60);
      cursor: default; }
    a.update:hover {
      background: #efa20f; }
  a.delete {
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    overflow: visible;
    line-height: 100%;
    text-align: center;
    font: 13px "Lato", Helvetica, sans-serif;
    border-radius: 3px;
    background: #46ba01;
    border: none;
    white-space: nowrap;
    background: #46ba01;
    color: white;
    font-size: 13px;
    padding: 8px 15px;
    background: #d05050;
    padding: 3px 5px; }
    a.delete:hover {
      background: #f3b53e; }
    a.delete[disabled], a.delete.disabled {
      opacity: 0.6;
      filter: alpha(opacity=60);
      cursor: default; }
  a.expire {
    color: #d05050;
    font-size: 12px;
    font-weight: bold;
    float: right;
    padding: 9px 20px 0 0; }
    a.expire:hover {
      color: #bb3232; }
  a.cancel {
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    overflow: visible;
    line-height: 100%;
    text-align: center;
    font: 13px "Lato", Helvetica, sans-serif;
    border-radius: 3px;
    background: #939d9e;
    border: none;
    white-space: nowrap;
    background: #939d9e;
    color: white;
    font-size: 13px;
    padding: 8px 15px; }
    a.cancel:hover {
      background: #5f6e70; }
    a.cancel[disabled], a.cancel.disabled {
      opacity: 0.6;
      filter: alpha(opacity=60);
      cursor: default; }
  a.add:before {
    padding: 0 10px 0 0;
    font-size: 18px;
    line-height: 12px;
    vertical-align: -1px;
    content: "+"; }
  a.action {
    position: relative;
    padding: 2px 5px;
    font-size: 13px;
    color: #292e2e;
    border: 1px solid #c7be82;
    border-radius: 3px;
    background: #e0dab0;
    white-space: nowrap; }
    a.action:hover {
      background: #d7cb6e; }
    a.action.edit, a.action.repost, a.action.add {
      padding-left: 17px;
      color: #ffffff; }
      a.action.edit:before, a.action.repost:before, a.action.add:before {
        position: absolute;
        left: 3px;
        top: 3px;
        z-index: 1;
        width: 11px;
        height: 12px;
        content: "";
        background: transparent url(/img/icons_actions.png) 0 0 no-repeat; }
    a.action.edit {
      border-color: #4c6466;
      background: #4c6466; }
      a.action.edit:hover {
        border-color: #344648;
        background: #344648; }
    a.action.repost, a.action.add {
      border-color: #77898b;
      background: #77898b; }
      a.action.repost:hover, a.action.add:hover {
        border-color: #4d5c5e;
        background: #4d5c5e; }
      a.action.repost:before, a.action.add:before {
        height: 11px;
        background-position: 0 -12px; }
    a.action.add:before {
      top: 4px;
      height: 9px;
      background-position: 0 -23px; }

dl {
  margin: 5px 0; }

.row:after {
  clear: both;
  content: "";
  display: table; }

.container {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
  max-width: 1200px; }
  .container:before, .container:after {
    content: "";
    display: table; }
  .container:after {
    clear: both; }

.row:before, .row:after {
  content: "";
  display: table; }

.row:after {
  clear: both; }

.row.tight > div:first-child {
  padding-left: 0; }

.row.tight > div:last-child {
  padding-right: 0; }

.grid-1 {
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }
  @media (min-width: 768px) {
    .grid-1 {
      float: left;
      width: 4.16667%; } }
  .grid-1.tight {
    padding: 0; }

.grid-2 {
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }
  @media (min-width: 768px) {
    .grid-2 {
      float: left;
      width: 8.33333%; } }
  .grid-2.tight {
    padding: 0; }

.grid-3 {
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }
  @media (min-width: 768px) {
    .grid-3 {
      float: left;
      width: 12.5%; } }
  .grid-3.tight {
    padding: 0; }

.grid-4 {
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }
  @media (min-width: 768px) {
    .grid-4 {
      float: left;
      width: 16.66667%; } }
  .grid-4.tight {
    padding: 0; }

.grid-5 {
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }
  @media (min-width: 768px) {
    .grid-5 {
      float: left;
      width: 20.83333%; } }
  .grid-5.tight {
    padding: 0; }

.grid-6 {
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }
  @media (min-width: 768px) {
    .grid-6 {
      float: left;
      width: 25%; } }
  .grid-6.tight {
    padding: 0; }

.grid-7 {
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }
  @media (min-width: 768px) {
    .grid-7 {
      float: left;
      width: 29.16667%; } }
  .grid-7.tight {
    padding: 0; }

.grid-8 {
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }
  @media (min-width: 768px) {
    .grid-8 {
      float: left;
      width: 33.33333%; } }
  .grid-8.tight {
    padding: 0; }

.grid-9 {
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }
  @media (min-width: 768px) {
    .grid-9 {
      float: left;
      width: 37.5%; } }
  .grid-9.tight {
    padding: 0; }

.grid-10 {
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }
  @media (min-width: 768px) {
    .grid-10 {
      float: left;
      width: 41.66667%; } }
  .grid-10.tight {
    padding: 0; }

.grid-11 {
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }
  @media (min-width: 768px) {
    .grid-11 {
      float: left;
      width: 45.83333%; } }
  .grid-11.tight {
    padding: 0; }

.grid-12 {
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }
  @media (min-width: 768px) {
    .grid-12 {
      float: left;
      width: 50%; } }
  .grid-12.tight {
    padding: 0; }

.grid-13 {
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }
  @media (min-width: 768px) {
    .grid-13 {
      float: left;
      width: 54.16667%; } }
  .grid-13.tight {
    padding: 0; }

.grid-14 {
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }
  @media (min-width: 768px) {
    .grid-14 {
      float: left;
      width: 58.33333%; } }
  .grid-14.tight {
    padding: 0; }

.grid-15 {
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }
  @media (min-width: 768px) {
    .grid-15 {
      float: left;
      width: 62.5%; } }
  .grid-15.tight {
    padding: 0; }

.grid-16 {
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }
  @media (min-width: 768px) {
    .grid-16 {
      float: left;
      width: 66.66667%; } }
  .grid-16.tight {
    padding: 0; }

.grid-17 {
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }
  @media (min-width: 768px) {
    .grid-17 {
      float: left;
      width: 70.83333%; } }
  .grid-17.tight {
    padding: 0; }

.grid-18 {
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }
  @media (min-width: 768px) {
    .grid-18 {
      float: left;
      width: 75%; } }
  .grid-18.tight {
    padding: 0; }

.grid-19 {
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }
  @media (min-width: 768px) {
    .grid-19 {
      float: left;
      width: 79.16667%; } }
  .grid-19.tight {
    padding: 0; }

.grid-20 {
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }
  @media (min-width: 768px) {
    .grid-20 {
      float: left;
      width: 83.33333%; } }
  .grid-20.tight {
    padding: 0; }

.grid-21 {
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }
  @media (min-width: 768px) {
    .grid-21 {
      float: left;
      width: 87.5%; } }
  .grid-21.tight {
    padding: 0; }

.grid-22 {
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }
  @media (min-width: 768px) {
    .grid-22 {
      float: left;
      width: 91.66667%; } }
  .grid-22.tight {
    padding: 0; }

.grid-23 {
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }
  @media (min-width: 768px) {
    .grid-23 {
      float: left;
      width: 95.83333%; } }
  .grid-23.tight {
    padding: 0; }

.grid-24 {
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }
  @media (min-width: 768px) {
    .grid-24 {
      float: left;
      width: 100%; } }
  .grid-24.tight {
    padding: 0; }

@media (min-width: 768px) {
  .offset-1 {
    margin-left: 4.16667%; } }

@media (min-width: 768px) {
  .offset-2 {
    margin-left: 8.33333%; } }

@media (min-width: 768px) {
  .offset-3 {
    margin-left: 12.5%; } }

@media (min-width: 768px) {
  .offset-4 {
    margin-left: 16.66667%; } }

@media (min-width: 768px) {
  .offset-5 {
    margin-left: 20.83333%; } }

@media (min-width: 768px) {
  .offset-6 {
    margin-left: 25%; } }

@media (min-width: 768px) {
  .offset-7 {
    margin-left: 29.16667%; } }

@media (min-width: 768px) {
  .offset-8 {
    margin-left: 33.33333%; } }

@media (min-width: 768px) {
  .offset-9 {
    margin-left: 37.5%; } }

@media (min-width: 768px) {
  .offset-10 {
    margin-left: 41.66667%; } }

@media (min-width: 768px) {
  .offset-11 {
    margin-left: 45.83333%; } }

@media (min-width: 768px) {
  .offset-12 {
    margin-left: 50%; } }

@media (min-width: 768px) {
  .offset-13 {
    margin-left: 54.16667%; } }

@media (min-width: 768px) {
  .offset-14 {
    margin-left: 58.33333%; } }

@media (min-width: 768px) {
  .offset-15 {
    margin-left: 62.5%; } }

@media (min-width: 768px) {
  .offset-16 {
    margin-left: 66.66667%; } }

@media (min-width: 768px) {
  .offset-17 {
    margin-left: 70.83333%; } }

@media (min-width: 768px) {
  .offset-18 {
    margin-left: 75%; } }

@media (min-width: 768px) {
  .offset-19 {
    margin-left: 79.16667%; } }

@media (min-width: 768px) {
  .offset-20 {
    margin-left: 83.33333%; } }

@media (min-width: 768px) {
  .offset-21 {
    margin-left: 87.5%; } }

@media (min-width: 768px) {
  .offset-22 {
    margin-left: 91.66667%; } }

@media (min-width: 768px) {
  .offset-23 {
    margin-left: 95.83333%; } }

@media (min-width: 768px) {
  .offset-24 {
    margin-left: 100%; } }

.centered {
  display: block;
  float: none;
  margin-left: auto;
  margin-right: auto;
  text-align: center; }

.right-align {
  text-align: right; }

aside {
  float: right;
  width: 230px;
  position: relative; }
  aside .fixed {
    position: fixed;
    z-index: 100;
    width: 230px; }
  aside .merchant_notes {
    float: none;
    background: #fffad4;
    border: 1px solid #d9d3a6;
    z-index: 1; }
    aside .merchant_notes h1 {
      color: #68623e;
      font-size: 15px;
      text-transform: uppercase;
      border-bottom: 1px solid #d9d3a6;
      padding: 15px; }
    aside .merchant_notes .copy {
      padding: 15px 15px 0 15px; }
      aside .merchant_notes .copy p {
        margin: 0 0 15px 0; }
    aside .merchant_notes p.edit {
      padding: 0 15px 15px 15px; }
      aside .merchant_notes p.edit a {
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        font-weight: bold;
        text-decoration: none;
        cursor: pointer;
        overflow: visible;
        line-height: 100%;
        text-align: center;
        font: 13px "Lato", Helvetica, sans-serif;
        border-radius: 3px;
        background: #46ba01;
        border: none;
        white-space: nowrap;
        background: #46ba01;
        color: white;
        font-size: 13px;
        padding: 8px 15px;
        text-transform: none; }
        aside .merchant_notes p.edit a:hover {
          background: #f3b53e; }
        aside .merchant_notes p.edit a[disabled], aside .merchant_notes p.edit a.disabled {
          opacity: 0.6;
          filter: alpha(opacity=60);
          cursor: default; }

.wrapper {
  max-width: 1200px;
  min-width: 600px;
  padding: 0 5px;
  margin: 0 auto; }

.page_header {
  margin-bottom: 20px; }
  .page_header .button {
    float: right; }
  .page_header h1 {
    margin-bottom: 0.5em;
    font-size: 24px; }

input[type='submit'],
button {
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  overflow: visible;
  line-height: 100%;
  text-align: center;
  font: 13px "Lato", Helvetica, sans-serif;
  border-radius: 3px;
  background: #46ba01;
  border: none;
  white-space: nowrap;
  background: #46ba01;
  color: white;
  font-size: 13px;
  padding: 8px 15px; }
  input[type='submit']:hover,
  button:hover {
    background: #f3b53e; }
  input[type='submit'][disabled], input[type='submit'].disabled,
  button[disabled],
  button.disabled {
    opacity: 0.6;
    filter: alpha(opacity=60);
    cursor: default; }

.box {
  -webkit-box-shadow: 0 0 6px #d7dada;
  -moz-box-shadow: 0 0 6px #d7dada;
  box-shadow: 0 0 6px #d7dada;
  background: white;
  border: 1px solid #d7dada;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 30px;
  padding: 20px; }
  .box header {
    margin: 0 -20px 20px;
    background: #e5ebeb; }
  .box.active .details h1, .box.active .details h1 a {
    color: #d49721; }
  .box.active .details .dates {
    background: #fef0de;
    border: 1px solid #f8d9b2; }
    .box.active .details .dates .indicator {
      background: #fedb98; }
    .box.active .details .dates p + p {
      border-left: 1px solid #f8d9b2;
      margin-left: -3px; }
  .box.ended {
    background: #f0f2f2;
    border: 1px solid #d7dada; }
    .box.ended .details h2, .box.ended .details h2 a {
      color: #8c8e8e; }
    .box.ended .details .dates {
      background: #e1e2e2;
      border: 1px solid #b9baba; }
      .box.ended .details .dates .indicator {
        background: #c7c9c9; }
      .box.ended .details .dates p + p {
        border-left: 1px solid #afb5b5;
        margin-left: -3px; }
  .box.pending .details h2, .box.pending .details h2 a {
    color: #d49721; }
  .box.pending .details .dates {
    background: #fef0de;
    border: 1px solid #f8d9b2; }
    .box.pending .details .dates .indicator {
      background: #fff5e4; }
    .box.pending .details .dates p + p {
      border-left: 1px solid #f8d9b2;
      margin-left: -3px; }

nav.split-button {
  display: inline-block; }
  nav.split-button ul {
    margin: 5px 0;
    -webkit-box-shadow: 0 0 6px #d7dada;
    -moz-box-shadow: 0 0 6px #d7dada;
    box-shadow: 0 0 6px #d7dada;
    background: white;
    border: 1px solid #d7dada;
    border-radius: 3px;
    display: inline-block; }
    nav.split-button ul li {
      float: left;
      margin: 0; }
      nav.split-button ul li + li a {
        border-left: 1px solid #d7dada; }
      nav.split-button ul li a {
        display: inline-block;
        margin: 0;
        padding: 6px 15px;
        background-color: #fff;
        background-image: -moz-linear-gradient(100% 100% 90deg, #f0f0f0, #fff);
        background-image: -webkit-gradient(linear, 0% 0%, 0 100%, from(#fff), to(#f0f0f0));
        filter: progid:DXImageTransform.Microsoft.gradient(GradientType=$type, startColorstr=#fffffe, endColorstr=#f0f0f0);
        -ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=$type, startColorstr=#fffffe, endColorstr=#f0f0f0);
        color: #838d8e;
        font-weight: bold;
        text-transform: uppercase;
        font-size: 13px; }
        nav.split-button ul li a:hover {
          cursor: pointer;
          background-color: #fff;
          background-image: -moz-linear-gradient(100% 100% 90deg, #f5f5f5, #fff);
          background-image: -webkit-gradient(linear, 0% 0%, 0 100%, from(#fff), to(#f5f5f5));
          filter: progid:DXImageTransform.Microsoft.gradient(GradientType=$type, startColorstr=#fffffe, endColorstr=#f5f5f5);
          -ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=$type, startColorstr=#fffffe, endColorstr=#f5f5f5); }
      nav.split-button ul li.active a, nav.split-button ul li.active a:hover {
        background: #f3a91b;
        -webkit-box-shadow: inset 0 0 5px #d28c06;
        -moz-box-shadow: inset 0 0 5px #d28c06;
        box-shadow: inset 0 0 5px #d28c06;
        color: #fff; }

nav.subnav {
  float: left;
  overflow: hidden;
  margin: 0 0 10px 0;
  -webkit-box-shadow: 0 0 6px #d7dada;
  -moz-box-shadow: 0 0 6px #d7dada;
  box-shadow: 0 0 6px #d7dada;
  background: white;
  border: 1px solid #d7dada;
  border-color: #b4b7b7;
  border-radius: 3px; }
  nav.subnav li {
    float: left; }
    nav.subnav li + li {
      border-left: 1px solid #ced0d0; }
    nav.subnav li a, nav.subnav li p {
      display: block;
      padding: 5px 8px;
      font-size: 14px;
      font-weight: bold;
      color: #484e4f; }
      nav.subnav li a:hover, nav.subnav li p:hover {
        background-image: -moz-linear-gradient(bottom, #d3edc2 0%, #edfce3 8px);
        background-image: -webkit-linear-gradient(bottom, #d3edc2 0%, #edfce3 8px);
        background-image: -o-linear-gradient(bottom, #d3edc2 0%, #edfce3 8px);
        background-image: -ms-linear-gradient(bottom, #d3edc2 0%, #edfce3 8px);
        background-image: -khtml-linear-gradient(bottom, #d3edc2 0%, #edfce3 8px);
        background-image: linear-gradient(bottom, #d3edc2 0%, #edfce3 8px); }

.public_content {
  margin: 15px 0; }
  .public_content .content {
    padding-right: 20px; }
    .public_content .content textarea {
      min-height: 200px;
      height: auto;
      width: 100%;
      margin-bottom: 5px;
      resize: none; }
    .public_content .content ul.glossary {
      float: right; }
      .public_content .content ul.glossary li {
        font-size: 11px;
        font-weight: bold;
        text-transform: uppercase;
        text-align: right;
        display: inline; }
        .public_content .content ul.glossary li a:hover {
          color: #016ea1; }
  .public_content .content_preview {
    background: #e7f0f4;
    border-radius: 5px;
    padding: 5px;
    margin-top: -5px; }
    .public_content .content_preview .preview_output {
      background: #fff;
      border: 1px solid #cfe0e8;
      border-radius: 3px;
      min-height: 177px;
      padding: 10px; }
      .public_content .content_preview .preview_output h1, .public_content .content_preview .preview_output h2, .public_content .content_preview .preview_output h3, .public_content .content_preview .preview_output h4, .public_content .content_preview .preview_output h5, .public_content .content_preview .preview_output h6 {
        color: #4e4d4d;
        font-weight: bold;
        margin-bottom: 5px;
        padding: 0; }
      .public_content .content_preview .preview_output h1 {
        font-size: 20px; }
      .public_content .content_preview .preview_output h2 {
        font-size: 18px;
        margin-left: 0; }
      .public_content .content_preview .preview_output h3 {
        font-size: 16px; }
      .public_content .content_preview .preview_output h4, .public_content .content_preview .preview_output h5, .public_content .content_preview .preview_output h6 {
        font-size: 14px; }
      .public_content .content_preview .preview_output p {
        margin-bottom: 5px; }
      .public_content .content_preview .preview_output ul, .public_content .content_preview .preview_output ol {
        margin: 0 0 5px 30px; }
      .public_content .content_preview .preview_output ul {
        list-style: disc; }
      .public_content .content_preview .preview_output ol {
        list-style: decimal; }

form.full_page .updated_by,
.form.full_page .updated_by {
  background: #dee2e2;
  border: 1px solid #c3caca;
  padding: 10px;
  margin: 0 0 15px 10px;
  width: 70%;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 10px #e0e4e4;
  -moz-box-shadow: 0 0 10px #e0e4e4;
  box-shadow: 0 0 10px #e0e4e4; }

form.full_page fieldset,
.form.full_page fieldset {
  margin: 0 0 0 10px; }

form.full_page h2, form.full_page fieldset.actions,
.form.full_page h2,
.form.full_page fieldset.actions {
  margin-left: -10px; }

form.full_page dl,
.form.full_page dl {
  clear: both; }
  form.full_page dl dd input[type="text"], form.full_page dl dd input[type="password"], form.full_page dl dd input[type="email"], form.full_page dl dd textarea, form.full_page dl dd select,
  .form.full_page dl dd input[type="text"],
  .form.full_page dl dd input[type="password"],
  .form.full_page dl dd input[type="email"],
  .form.full_page dl dd textarea,
  .form.full_page dl dd select {
    width: 60%; }
  form.full_page dl.half,
  .form.full_page dl.half {
    float: left;
    clear: none;
    width: 50%; }
    form.full_page dl.half dd input[type="text"], form.full_page dl.half dd input[type="password"], form.full_page dl.half dd input[type="email"], form.full_page dl.half dd textarea,
    .form.full_page dl.half dd input[type="text"],
    .form.full_page dl.half dd input[type="password"],
    .form.full_page dl.half dd input[type="email"],
    .form.full_page dl.half dd textarea {
      width: 100%; }

form fieldset,
.form fieldset {
  padding: 0 0 15px 10px; }

form .notice,
.form .notice {
  margin-right: 20px; }

form input[type="text"], form input[type="password"], form input[type="email"], form input[type="number"], form textarea,
.form input[type="text"],
.form input[type="password"],
.form input[type="email"],
.form input[type="number"],
.form textarea {
  -webkit-box-shadow: 0 0 6px #d7dada;
  -moz-box-shadow: 0 0 6px #d7dada;
  box-shadow: 0 0 6px #d7dada;
  background: white;
  border: 1px solid #d7dada;
  border-radius: 3px;
  color: #3f3d3d;
  display: block;
  font: 13px "Lato", Helvetica, sans-serif;
  line-height: 20px;
  padding: 5px 10px;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 0;
  font-size: 14px;
  margin-bottom: 5px;
  padding: 7px 10px;
  width: 100%; }
  form input[type="text"]:focus, form input[type="password"]:focus, form input[type="email"]:focus, form input[type="number"]:focus, form textarea:focus,
  .form input[type="text"]:focus,
  .form input[type="password"]:focus,
  .form input[type="email"]:focus,
  .form input[type="number"]:focus,
  .form textarea:focus {
    border-color: #79dcf5;
    -webkit-box-shadow: 0 0 6px #79dcf5;
    -moz-box-shadow: 0 0 6px #79dcf5;
    box-shadow: 0 0 6px #79dcf5;
    outline: none; }

form input[type="checkbox"],
form input[type="radio"],
.form input[type="checkbox"],
.form input[type="radio"] {
  margin-right: 5px; }

form textarea,
.form textarea {
  height: 100px; }

form button[type="button"],
.form button[type="button"] {
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  overflow: visible;
  line-height: 100%;
  text-align: center;
  font: 13px "Lato", Helvetica, sans-serif;
  border-radius: 3px;
  background: #46ba01;
  border: none;
  white-space: nowrap;
  background: #46ba01;
  color: white;
  font-size: 13px;
  padding: 8px 15px; }
  form button[type="button"]:hover,
  .form button[type="button"]:hover {
    background: #f3b53e; }
  form button[type="button"][disabled], form button[type="button"].disabled,
  .form button[type="button"][disabled],
  .form button[type="button"].disabled {
    opacity: 0.6;
    filter: alpha(opacity=60);
    cursor: default; }

form a.calendar_trigger,
.form a.calendar_trigger {
  display: block;
  font-size: 1px;
  text-indent: -8685px;
  overflow: hidden;
  background: transparent image-url("icon_calendar.png") 0 0 no-repeat;
  width: 19px;
  height: 17px; }

form h1,
.form h1 {
  padding: 0 0 15px 0;
  font-size: 19px;
  font-weight: normal; }

form h2,
.form h2 {
  clear: both;
  font-size: 17px;
  color: #46ba01;
  font-weight: normal;
  margin: 0 0 10px 0; }

form .success,
.form .success {
  color: #46ba01; }

form label,
.form label {
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  margin: 0 0 3px 0;
  color: #5f5e5e; }
  form label.required::after,
  .form label.required::after {
    content: " (Required)"; }

form mark.warning_limit,
.form mark.warning_limit {
  color: #b43232; }

form mark.exceeded_limit,
.form mark.exceeded_limit {
  color: #cc2323; }

form dl.half,
.form dl.half {
  float: left;
  width: 50%; }
  form dl.half input, form dl.half select, form dl.half textarea,
  .form dl.half input,
  .form dl.half select,
  .form dl.half textarea {
    width: 100%; }

form dl dd,
.form dl dd {
  padding: 0 20px 15px 0; }

form dl.date,
.form dl.date {
  float: left;
  clear: both;
  width: 50%;
  margin-bottom: 10px; }
  form dl.date dd,
  .form dl.date dd {
    padding-bottom: 10px; }
  form dl.date .date, form dl.date .time,
  .form dl.date .date,
  .form dl.date .time {
    display: inline-block;
    position: relative;
    padding: 0 27px 0 0;
    margin: 0 10px 0 0; }
    form dl.date .date input, form dl.date .time input,
    .form dl.date .date input,
    .form dl.date .time input {
      width: 85px;
      margin-bottom: 5px; }
    form dl.date .date:after, form dl.date .time:after,
    .form dl.date .date:after,
    .form dl.date .time:after {
      position: absolute;
      right: 0;
      top: 50%;
      z-index: 1;
      width: 23px;
      height: 20px;
      margin: -15px 0 0 0;
      content: "";
      background: transparent image-url("icons_datetime.png") 0 0 no-repeat; }
  form dl.date .time:after,
  .form dl.date .time:after {
    background-position: 0 100%; }
  form dl.date + dl.date,
  .form dl.date + dl.date {
    clear: none; }

form ul.checkbox_list,
form ul.radio_list,
.form ul.checkbox_list,
.form ul.radio_list {
  margin: 0 0 15px 0; }
  form ul.checkbox_list li + li,
  form ul.radio_list li + li,
  .form ul.checkbox_list li + li,
  .form ul.radio_list li + li {
    margin: 8px 0 0 0; }
  form ul.checkbox_list label,
  form ul.radio_list label,
  .form ul.checkbox_list label,
  .form ul.radio_list label {
    font-size: 13px;
    font-weight: normal; }

form fieldset.actions,
.form fieldset.actions {
  padding: 20px 0; }
  form fieldset.actions input[type="submit"],
  .form fieldset.actions input[type="submit"] {
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    overflow: visible;
    line-height: 100%;
    text-align: center;
    font: 13px "Lato", Helvetica, sans-serif;
    border-radius: 3px;
    background: #46ba01;
    border: none;
    white-space: nowrap;
    background: #46ba01;
    color: white;
    font-size: 15px;
    padding: 15px 20px;
    margin-left: 10px;
    text-transform: none;
    min-width: 150px; }
    form fieldset.actions input[type="submit"]:hover,
    .form fieldset.actions input[type="submit"]:hover {
      background: #f3b53e; }
    form fieldset.actions input[type="submit"][disabled], form fieldset.actions input[type="submit"].disabled,
    .form fieldset.actions input[type="submit"][disabled],
    .form fieldset.actions input[type="submit"].disabled {
      opacity: 0.6;
      filter: alpha(opacity=60);
      cursor: default; }
  form fieldset.actions a.cancel, form fieldset.actions a.delete, form fieldset.actions a.expire,
  .form fieldset.actions a.cancel,
  .form fieldset.actions a.delete,
  .form fieldset.actions a.expire {
    padding: 15px 20px;
    margin-left: 10px;
    font-size: 15px;
    min-width: 150px; }
  form fieldset.actions a.delete,
  .form fieldset.actions a.delete {
    float: right; }

form label.checkbox,
.form label.checkbox {
  clear: both;
  display: block;
  padding: 0 0 10px 0;
  font-size: 13px;
  font-weight: normal;
  color: #1d1d1d; }
  form label.checkbox fieldset,
  .form label.checkbox fieldset {
    margin: 0 0 0 10px; }
  form label.checkbox h2, form label.checkbox fieldset.actions,
  .form label.checkbox h2,
  .form label.checkbox fieldset.actions {
    margin-left: -10px; }
  form label.checkbox dl,
  .form label.checkbox dl {
    clear: both; }
    form label.checkbox dl dd input[type="text"], form label.checkbox dl dd input[type="password"], form label.checkbox dl dd input[type="email"], form label.checkbox dl dd textarea, form label.checkbox dl dd select,
    .form label.checkbox dl dd input[type="text"],
    .form label.checkbox dl dd input[type="password"],
    .form label.checkbox dl dd input[type="email"],
    .form label.checkbox dl dd textarea,
    .form label.checkbox dl dd select {
      width: 60%; }
    form label.checkbox dl.half,
    .form label.checkbox dl.half {
      float: left;
      clear: none;
      width: 50%; }
      form label.checkbox dl.half select,
      .form label.checkbox dl.half select {
        width: 100%; }
      form label.checkbox dl.half dd input[type="text"], form label.checkbox dl.half dd input[type="password"], form label.checkbox dl.half dd input[type="email"], form label.checkbox dl.half dd textarea,
      .form label.checkbox dl.half dd input[type="text"],
      .form label.checkbox dl.half dd input[type="password"],
      .form label.checkbox dl.half dd input[type="email"],
      .form label.checkbox dl.half dd textarea {
        width: 100%; }

form .checkbox_columns,
.form .checkbox_columns {
  -webkit-box-shadow: 0 0 6px #d7dada;
  -moz-box-shadow: 0 0 6px #d7dada;
  box-shadow: 0 0 6px #d7dada;
  background: white;
  border: 1px solid #d7dada;
  padding: 10px;
  overflow: hidden;
  margin: 0 2.5% 15px 0; }
  form .checkbox_columns ul,
  .form .checkbox_columns ul {
    float: left;
    width: 33%; }
    form .checkbox_columns ul label,
    .form .checkbox_columns ul label {
      color: #2f7f8d;
      font-size: 15px;
      margin: 0 10px 5px 0; }
    form .checkbox_columns ul > li ul,
    .form .checkbox_columns ul > li ul {
      float: none;
      width: auto;
      margin: 0 0 10px 20px; }
      form .checkbox_columns ul > li ul li label,
      .form .checkbox_columns ul > li ul li label {
        color: #2f2c2c;
        font-size: 13px;
        font-weight: normal;
        margin-bottom: 2px; }

.error {
  color: #d05050; }
  .error label {
    color: #d05050; }
    .error label + span.error_message {
      font-size: 12px;
      font-weight: bold; }
  .error + dd input {
    border-color: #d05050; }

nav.top-nav {
  position: absolute;
  right: 20px;
  bottom: 0;
  z-index: 1; }
  nav.top-nav ul {
    clear: right;
    float: right;
    overflow: hidden;
    position: relative; }
    nav.top-nav ul li {
      float: left; }
      nav.top-nav ul li ul {
        display: none;
        text-align: right;
        background: #fff;
        width: 80px;
        padding: 10px;
        position: absolute;
        right: 0;
        top: 40px;
        border: 1px solid #d7dada;
        border-top: 0; }
        nav.top-nav ul li ul li {
          float: none; }
          nav.top-nav ul li ul li a {
            padding: 0;
            margin-bottom: 10px;
            font-weight: normal;
            text-transform: none; }
      nav.top-nav ul li a {
        color: #5f6e70;
        font-size: 12px;
        line-height: 100%;
        display: block;
        text-transform: uppercase;
        padding: 10px 0 15px 20px; }
      nav.top-nav ul li.active a,
      nav.top-nav ul li a:hover {
        color: #46ba01; }

.color-selector {
  margin: 10px 0; }
  .color-selector:before, .color-selector:after {
    content: "";
    display: table; }
  .color-selector:after {
    clear: both; }
  .color-selector .color-preview {
    -webkit-box-shadow: 0 0 6px #d7dada;
    -moz-box-shadow: 0 0 6px #d7dada;
    box-shadow: 0 0 6px #d7dada;
    background: white;
    border: 1px solid #d7dada;
    width: 34px;
    height: 34px;
    display: inline-block;
    margin: 0 12px;
    float: left; }
  .color-selector label {
    display: block; }
  .color-selector input[type='text'] {
    width: 7em;
    float: left; }

.confirm {
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99999; }
  .confirm .mask {
    background: rgba(0, 0, 0, 0.6);
    height: 100%;
    position: absolute;
    width: 100%;
    z-index: 99998; }
  .confirm .close-btn {
    background: none;
    color: #333333;
    padding: 0;
    position: absolute;
    right: 8px;
    top: 12px; }
    .confirm .close-btn:hover i {
      color: #aaaaaa; }
    .confirm .close-btn i {
      font-size: 16px; }
  .confirm .confirm-actions {
    text-align: right; }
  .confirm .confirm-btn {
    margin-left: 10px; }
  .confirm .cancel-btn {
    background: #FF6161; }
    .confirm .cancel-btn:hover {
      background: #FF6700; }
  .confirm .close-link {
    display: inline-block;
    padding: 5px 15px; }
  .confirm .confirm-body, .confirm .confirm-header {
    padding: 11px 21px; }
  .confirm .confirm-footer {
    border-top: 2px solid #f1f1f1;
    padding: 11px 0px; }
  .confirm .confirm-header {
    border-bottom: 2px solid #f1f1f1; }
    .confirm .confirm-header h2 {
      font-size: 16px;
      margin: 0; }
  .confirm .confirm-wrapper {
    background: white;
    border-radius: 6px;
    width: 50%;
    height: auto;
    top: 66px;
    left: 50%;
    transform: translate(-50%);
    position: relative;
    z-index: 99999; }

.banner-callout {
  font-weight: bold;
  text-align: center;
  text-transform: uppercase; }
  .banner-callout .banner-title {
    position: relative;
    padding: 5px 0; }
    .banner-callout .banner-title span {
      overflow: hidden;
      white-space: nowrap; }
  .banner-callout .banner-action {
    padding: 5px 0; }

.error-pills {
  color: #c70000;
  position: relative; }
  .error-pills .warning {
    position: absolute;
    font-size: 24px;
    top: 50%;
    transform: translateY(-50%); }
  .error-pills ul {
    margin: 0 0 0 30px;
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap; }
    .error-pills ul > li:last-child {
      margin-right: 0; }
    .error-pills ul li {
      display: inline-flex;
      margin: 0 5px 0 0;
      background: #ffc7c7;
      border-radius: 7px;
      color: #c70000;
      padding: 8px; }
      .error-pills ul li span {
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 24px; }

.post img {
  object-fit: cover;
  max-height: 120px; }

.add-new {
  background-color: #F9FBFB; }

@-webkit-keyframes autosave {
  0% {
    opacity: 0; }
  5% {
    opacity: 1; }
  90% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@-moz-keyframes autosave {
  0% {
    opacity: 0; }
  5% {
    opacity: 1; }
  90% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@-o-keyframes autosave {
  0% {
    opacity: 0; }
  5% {
    opacity: 1; }
  90% {
    opacity: 1; }
  100% {
    opacity: 0; } }

.autosave {
  background-color: #F5D771;
  bottom: 0;
  color: black;
  display: none;
  left: 0;
  padding: 10px;
  position: fixed;
  width: 100%; }
  .autosave.active {
    display: block; }
    .autosave.active.error, .autosave.active.success {
      display: block;
      -webkit-animation: autosave 2s 1 forwards;
      -moz-animation: autosave 2s 1 forwards;
      -o-animation: autosave 2s 1 forwards; }
    .autosave.active.success {
      background: #46BA01;
      color: #f4ffee; }
    .autosave.active.error {
      background: #FF6161;
      color: #fff0f0; }
  .autosave .loading.loader {
    background: none;
    display: inline; }
    .autosave .loading.loader .container {
      left: auto;
      right: 10px; }
  .autosave p {
    font-size: 20px;
    margin: 0; }

.placement .flags {
  background: #FCF6EE;
  border-radius: 3px;
  border: 1px solid #E7D5BB;
  display: inline-block;
  font-size: 11px;
  font-weight: bold;
  margin: 0 0 7px 0; }
  .placement .flags p {
    padding: 4px 8px;
    display: inline-block;
    margin: 0; }
  .placement .flags p + p {
    border-left: 1px solid #E7D5BB; }
  .placement .flags.active {
    background: #FEDB98; }

.placement .dates .save {
  float: none;
  margin: 18px 0 0; }

.site {
  transition: box-shadow 0.1s;
  padding: 10px; }
  .site h3, .site p {
    margin: 25px 0; }
  .site:hover {
    box-shadow: 0 0 6px #D7DADA, 0px 6px 14px -2px #D7DADA; }

.group {
  border-radius: 2px;
  border: 1px solid #C9E6F2;
  margin-bottom: 5px;
  padding: 5px 5px 10px; }
  .group ul {
    margin-left: 10px; }
  .group li {
    display: block; }
  .group h4 {
    position: relative; }
    .group h4:hover .delete {
      display: inline-block; }
  .group .delete {
    cursor: pointer;
    font-size: 12px;
    position: absolute;
    right: 2px;
    display: none; }

.grouped-children input {
  border: none;
  color: #3F3D3D;
  font: 14px "Lato", Helvetica, sans-serif;
  font-weight: bold;
  margin-bottom: 0.5em; }

.hero-area img {
  object-fit: cover;
  max-height: 200px; }

.hero-area .logo img {
  object-fit: scale-down;
  max-height: 100px; }

.toggle-buttons {
  white-space: nowrap; }
  .toggle-buttons li {
    display: inline-flex;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; }
    .toggle-buttons li a i {
      background: #EAEAEA;
      color: #313131;
      padding: 5px 13px; }
    .toggle-buttons li a.disabled i, .toggle-buttons li a.active i {
      color: #ffffff; }
    .toggle-buttons li a.active i {
      background: #929292; }
  .toggle-buttons > li:first-child a i {
    border-radius: 6px 0 0 6px; }
  .toggle-buttons > li:last-child a i {
    border-radius: 0 6px 6px 0; }
  .toggle-buttons.disabled li a i {
    background: white;
    color: #979797; }
  .toggle-buttons.disabled li a.active i {
    background: #c5c5c5;
    color: #979797; }

.landing ul {
  margin-top: 30px; }

.feed-show {
  margin: 20px 0; }
  .feed-show h2 {
    margin-bottom: 20px; }
  .feed-show .flag-slug {
    margin: 20px 0; }

.mailings-form h2 {
  font-size: 22px; }

.mailings-form .actions button {
  font-size: 15px;
  margin: 10px;
  padding: 14px 21px; }
  .mailings-form .actions button.publish {
    float: right; }
    .mailings-form .actions button.publish.disabled {
      pointer-events: none; }
  .mailings-form .actions button.cancel {
    font-size: 15px;
    margin: 10px;
    padding: 14px 21px; }

.mailings-form .deal-item {
  margin-bottom: 5px;
  padding: 10px 10px;
  position: relative;
  transition: all 300ms; }
  .mailings-form .deal-item .alt {
    border-left: 2px #f3a91b solid; }
  .mailings-form .deal-item .position {
    margin-top: 22px; }
  .mailings-form .deal-item h4, .mailings-form .deal-item img, .mailings-form .deal-item .lock-reason {
    margin-top: 0.8em; }
  .mailings-form .deal-item .id {
    background: #eaeaea;
    border-radius: 3px;
    border: 1px solid #cdcfcf;
    font-weight: bold;
    padding: 0 7px; }
  .mailings-form .deal-item .pds-slot {
    left: 3px;
    position: absolute;
    top: 3px; }
  .mailings-form .deal-item .links {
    margin: 0.8em 0 0 0.8em; }
  .mailings-form .deal-item dl.date-range dd, .mailings-form .deal-item dl.date-range dt {
    display: inline;
    font-size: 10px;
    overflow: hidden;
    padding: 0 2px;
    text-overflow: ellipsis;
    white-space: nowrap; }
  .mailings-form .deal-item dl.date-range dd:first-of-type {
    border-right: solid 1px #D7DADA;
    margin-right: 4px;
    padding-right: 4px; }
  .mailings-form .deal-item dl.date-range dt {
    font-weight: bold; }
  .mailings-form .deal-item textarea {
    box-shadow: none;
    max-height: 75px; }
  .mailings-form .deal-item .Select-control {
    box-shadow: none; }
  .mailings-form .deal-item .close-button {
    display: inline-block;
    font-size: 24px;
    padding: 0 10px 10px;
    position: absolute;
    right: -4px;
    top: -6px;
    color: #d6d8d8; }
    .mailings-form .deal-item .close-button:hover {
      color: #5f6e70;
      cursor: pointer; }

.mailings-form label {
  display: block;
  font-size: 13px;
  font-weight: bold;
  margin: 0.8em 0 0.2em 0; }

.mailings-form .gender .rw-selectlist {
  background: inherit;
  border: none; }
  .mailings-form .gender .rw-selectlist.rw-state-focus, .mailings-form .gender .rw-selectlist.rw-state-focus:hover {
    box-shadow: none; }
  .mailings-form .gender .rw-selectlist label {
    margin: 0; }
  .mailings-form .gender .rw-selectlist li {
    background: none;
    border: none;
    float: left;
    margin: 0; }
    .mailings-form .gender .rw-selectlist li.rw-state-focus, .mailings-form .gender .rw-selectlist li:hover {
      background: none;
      border: none; }

.mailings-form .timezone-disclaimer {
  padding-left: 15px; }

.mailings-show button.disabled, .mailings-show .button.disabled {
  pointer-events: none; }

.mailings-show .deal-preview-list {
  max-width: 550px;
  margin: 0 10px; }
  .mailings-show .deal-preview-list .deal-preview {
    float: left;
    max-width: 260px;
    margin: 5px;
    padding: 0;
    position: relative; }
    .mailings-show .deal-preview-list .deal-preview a {
      display: block; }
      .mailings-show .deal-preview-list .deal-preview a.error:hover {
        color: #b80801; }
    .mailings-show .deal-preview-list .deal-preview .pds-slot {
      left: 3px;
      position: absolute;
      top: 3px; }
    .mailings-show .deal-preview-list .deal-preview .error-mask {
      background: rgba(255, 255, 255, 0.7);
      display: flex;
      flex-direction: column;
      height: 70%;
      justify-content: center;
      position: absolute;
      text-align: center;
      width: 100%; }
      .mailings-show .deal-preview-list .deal-preview .error-mask h3 {
        font-size: 20px;
        font-weight: 700; }
      .mailings-show .deal-preview-list .deal-preview .error-mask time {
        font-size: 20px; }
    .mailings-show .deal-preview-list .deal-preview h2 {
      color: #000;
      padding: 0.5em;
      position: relative;
      min-height: 81px; }
      .mailings-show .deal-preview-list .deal-preview h2.error {
        color: #d05050; }
    .mailings-show .deal-preview-list .deal-preview .deal-lock-reason {
      text-align: center;
      font-size: 20px;
      padding-bottom: 4px;
      padding-top: 2px; }
    .mailings-show .deal-preview-list .deal-preview .dd-color {
      background-color: #f07979; }

.mailings-show h2 {
  font-size: 22px; }

.mailings-show p {
  font-size: 16px; }

.mailings-show label {
  font-size: 16px;
  font-weight: 700;
  margin: .8em 0 .2em; }

.action {
  margin-left: 10px; }

.draft {
  color: #f3b53e;
  text-transform: capitalize; }

.published {
  color: #46ba01;
  text-transform: capitalize; }

.header-wrapper {
  min-height: 69px; }
  .header-wrapper .fixed-header {
    background: #F9FBFB;
    padding: 10px 0; }
    .header-wrapper .fixed-header .actionables {
      display: inline-flex;
      justify-content: flex-end; }
    .header-wrapper .fixed-header .mailing-actions, .header-wrapper .fixed-header .view-buttons {
      padding: 5px 18px; }
    .header-wrapper .fixed-header .mailing-actions {
      padding: 5px 0 5px 18px; }
    .header-wrapper .fixed-header .view-buttons {
      border-right: 1px solid #929292; }
    .header-wrapper .fixed-header .wrapper {
      padding: 0; }
    .header-wrapper .fixed-header.fixed {
      border-bottom: 1px solid #D7DADA;
      box-shadow: 0 0 10px #D7DADA;
      left: 0;
      padding: 10px 0;
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 99999; }

.__react_component_tooltip {
  display: none; }
  .__react_component_tooltip.show {
    display: inline-block; }

@-webkit-keyframes notice {
  0% {
    opacity: 0; }
  5% {
    opacity: 1; }
  90% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@-moz-keyframes notice {
  0% {
    opacity: 0; }
  5% {
    opacity: 1; }
  90% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@-o-keyframes notice {
  0% {
    opacity: 0; }
  5% {
    opacity: 1; }
  90% {
    opacity: 1; }
  100% {
    opacity: 0; } }

.notice {
  border-radius: 0;
  box-sizing: border-box;
  display: none;
  height: 40px;
  margin: 6px 0;
  opacity: 0;
  overflow: hidden;
  padding: 10px 20px 10px 55px;
  position: relative; }
  .notice.success, .notice.error {
    display: block;
    -webkit-animation: notice 8s 1 forwards;
    -moz-animation: notice 8s 1 forwards;
    -o-animation: notice 8s 1 forwards; }
    .notice.success::before, .notice.error::before {
      position: absolute;
      left: 20px;
      font-size: 20px;
      line-height: 18px; }
  .notice.success {
    background: #f4ffee;
    border: 1px solid #46BA01;
    color: #46BA01; }
    .notice.success::before {
      content: "\2713"; }
  .notice.error {
    background: #fff0f0;
    border: 1px solid #FF6161;
    color: #FF6161; }
    .notice.error::before {
      content: "\26A0\FE0E"; }

.note {
  -webkit-box-shadow: 0 0 6px #d7dada;
  -moz-box-shadow: 0 0 6px #d7dada;
  box-shadow: 0 0 6px #d7dada;
  background: white;
  border: 1px solid #d7dada;
  margin: 1em 0 2em;
  background-color: #F9FBFB;
  padding: 1em; }

.find-by:before, .find-by:after {
  content: "";
  display: table; }

.find-by:after {
  clear: both; }

.find-by input[type='submit'] {
  float: right;
  margin: 2px 0;
  width: 10%; }

.find-by input[type='text'] {
  float: left;
  width: 88%; }

.error .Select {
  box-shadow: 0px 0px 0px 1px rgba(255, 97, 97, 0.65); }

.Select-control {
  -webkit-box-shadow: 0 0 6px #d7dada;
  -moz-box-shadow: 0 0 6px #d7dada;
  box-shadow: 0 0 6px #d7dada;
  background: white;
  border: 1px solid #d7dada;
  border-radius: 0;
  margin-bottom: 5px; }
  .box .Select--multi .Select-control {
    border: none;
    box-shadow: none; }
    .box .Select--multi .Select-control .Select-arrow {
      display: inline-block;
      position: relative;
      top: initial;
      right: initial; }
    .box .Select--multi .Select-control .Select-placeholder {
      position: relative;
      float: left;
      padding: 0;
      line-height: 30px; }

.error .error-message {
  color: #FF6161;
  font-style: italic;
  margin: 5px 0px;
  font-size: 11px;
  display: inline-block; }

header {
  margin-bottom: 1em; }

section {
  margin-bottom: 1em; }

h1, h2, h3, h4, h5, h6, p, li {
  margin-bottom: 0.5em; }

h2 {
  font-size: 25px; }

a.active {
  font-weight: bold; }

#feedDetail {
  position: relative; }

.loader {
  display: none; }

.loader.loading {
  display: block;
  opacity: 0.9;
  background: #F9FBFB;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999; }
  .loader.loading .container {
    left: 50%;
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translate(-50%, -50%); }

svg path,
svg rect {
  fill: #FF6700; }

img {
  width: 100%; }

.create {
  float: right;
  background-color: #46BA01;
  color: #FFFFFF; }

button.save {
  margin: 10px; }

button.cancel {
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  overflow: visible;
  line-height: 100%;
  text-align: center;
  font: 13px "Lato", Helvetica, sans-serif;
  border-radius: 3px;
  background: #939d9e;
  border: none;
  white-space: nowrap;
  background: #939d9e;
  color: white;
  font-size: 13px;
  padding: 8px 15px;
  margin: 10px; }
  button.cancel:hover {
    background: #5f6e70; }
  button.cancel[disabled], button.cancel.disabled {
    opacity: 0.6;
    filter: alpha(opacity=60);
    cursor: default; }

button.warn {
  background-color: #FF6161; }

.controls button {
  margin: 0 10px 0 0;
  padding: 5px 10px; }

nav.horizontal li {
  display: inline-block;
  margin: 0; }

nav.horizontal a {
  font-weight: bold;
  color: #5F6E70;
  font-size: 12px;
  line-height: 100%;
  display: block;
  text-transform: uppercase;
  padding: 15px 18px 15px 15px; }
  nav.horizontal a.active {
    background: #FFFFFF;
    box-shadow: 0px 8px 0px -1px #FFFFFF, 0 0 6px #D7DADA;
    border: 1px solid #D7DADA;
    border-bottom: none;
    color: #46BA01; }
  nav.horizontal a.modified {
    color: #FF6700; }
    nav.horizontal a.modified::after {
      content: "*";
      font-size: 18px;
      font-weight: normal;
      padding: 0px 2px;
      position: absolute; }
  nav.horizontal a:hover {
    color: #46BA01;
    cursor: pointer; }

table {
  width: 100%; }

.action-cell {
  text-align: right;
  width: 10%; }

.table-header {
  background: #F0F3F3;
  border: 1px solid #D7DADA;
  font-size: 13px;
  font-weight: bold;
  padding-bottom: 4px;
  padding-top: 4px;
  text-transform: uppercase; }
  .table-header th:first-child {
    width: 50%; }
  .table-header a {
    display: block;
    position: relative; }
    .table-header a.active::after {
      margin-left: 10px;
      position: absolute; }
    .table-header a.active.asc::after {
      content: "\25B2";
      font-size: 10px; }
    .table-header a.active.desc::after {
      content: "\25BC";
      font-size: 9px;
      top: 2px; }

.table-content {
  text-align: center; }
  .table-content td {
    border-bottom: 1px solid #D7DADA;
    padding-bottom: 4px;
    padding-top: 4px; }

.pagination {
  text-align: center; }
  .pagination a {
    border-right: 1px solid;
    display: inline-block;
    height: 22px;
    line-height: 22px;
    padding: 0 5px;
    text-align: center; }
    .pagination a.active {
      color: #5F6E70; }
    .pagination a:last-child {
      border: none; }

.action {
  position: relative;
  padding: 2px 5px;
  font-size: 11px;
  font-weight: bold;
  color: #292e2e;
  border: 1px solid #c7be82;
  border-radius: 3px;
  background: #e0dab0;
  white-space: nowrap; }
  .action:hover {
    background: #d7cb6e; }
  .action.edit {
    border-color: #4c6466;
    background: #4c6466;
    padding-left: 17px;
    color: #ffffff; }
    .action.edit:before {
      position: absolute;
      left: 3px;
      top: 3px;
      z-index: 1;
      width: 11px;
      height: 12px;
      content: "";
      background: transparent image-url("icons_actions.png") 0 0 no-repeat; }
