/*!
 * # Semantic UI 2.3.1 - Dimmer
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 */

.transition,
.ui.dimmer {
  -webkit-animation-fill-mode: both;
}

.ui.dimmer,
.ui.multiple.dropdown>.label {
  -webkit-user-select: none;
  -moz-user-select: none;
}

.animating.dimmable:not(body),
.dimmed.dimmable:not(body),
.ui.simple.dimmer,
body.animating.in.dimmable,
body.dimmed.dimmable {
  overflow: hidden;
}

.dimmable:not(body) {
  position: relative;
}

.ui.dimmer {
  display: none;
  position: absolute;
  top: 0!important;
  left: 0!important;
  width: 100%;
  height: 100%;
  text-align: center;
  vertical-align: middle;
  padding: 1em;
  background-color: rgba(0,0,0,.85);
  opacity: 0;
  line-height: 1;
  animation-fill-mode: both;
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  transition: background-color .5s linear;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  -ms-user-select: none;
  user-select: none;
  will-change: opacity;
  z-index: 1000;
}

.ui.dimmer>.content,
.ui.modal {
  -webkit-user-select: text;
  -ms-user-select: text;
}

.ui.dimmer>.content {
  -moz-user-select: text;
  user-select: text;
  color: #FFF;
}

.ui.segment>.ui.dimmer {
  border-radius: inherit!important;
}

.ui.dropdown .menu,
.ui.selection.dropdown {
  border: 1px solid rgba(34,36,38,.15);
  background: #FFF;
}

.ui.dimmer:not(.inverted)::-webkit-scrollbar-track {
  background: rgba(255,255,255,.1);
}

.ui.dimmer:not(.inverted)::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,.25);
}

.ui.dimmer:not(.inverted)::-webkit-scrollbar-thumb:window-inactive {
  background: rgba(255,255,255,.15);
}

.ui.dimmer:not(.inverted)::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,.35);
}

.dimmed.dimmable>.ui.animating.dimmer,
.dimmed.dimmable>.ui.visible.dimmer,
.ui.active.dimmer {
  display: flex;
  opacity: 1;
}

.ui.disabled.dimmer {
  width: 0!important;
  height: 0!important;
}

.ui[class*="top aligned"].dimmer {
  justify-content: flex-start;
}

.ui[class*="bottom aligned"].dimmer {
  justify-content: flex-end;
}

.ui.page.dimmer {
  position: fixed;
  -webkit-transform-style: '';
  transform-style: '';
  -webkit-perspective: 2000px;
  perspective: 2000px;
  -webkit-transform-origin: center center;
  transform-origin: center center;
}

body.dimmable>.dimmer {
  position: fixed;
}

.blurring.dimmable>:not(.dimmer) {
  -webkit-filter: blur(0) grayscale(0);
  filter: blur(0) grayscale(0);
  transition: .8s -webkit-filter ease;
  transition: .8s filter ease;
  transition: .8s filter ease,.8s -webkit-filter ease;
}

.blurring.dimmed.dimmable>:not(.dimmer) {
  -webkit-filter: blur(5px) grayscale(.7);
  filter: blur(5px) grayscale(.7);
}

.blurring.dimmable>.dimmer {
  background-color: rgba(0,0,0,.6);
}

.blurring.dimmable>.inverted.dimmer {
  background-color: rgba(255,255,255,.6);
}

.ui.dimmer>.top.aligned.content>* {
  vertical-align: top;
}

.ui.dimmer>.bottom.aligned.content>* {
  vertical-align: bottom;
}

.ui.inverted.dimmer {
  background-color: rgba(255,255,255,.85);
}

.ui.inverted.dimmer>.content>* {
  color: #FFF;
}

.ui.simple.dimmer {
  display: block;
  opacity: 1;
  width: 0%;
  height: 0%;
  z-index: -100;
  background-color: rgba(0,0,0,0);
}

.dimmed.dimmable>.ui.simple.dimmer {
  overflow: visible;
  opacity: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.85);
  z-index: 1;
}

.ui.simple.inverted.dimmer {
  background-color: rgba(255,255,255,0);
}

.dimmed.dimmable>.ui.simple.inverted.dimmer {
  background-color: rgba(255,255,255,.85);
}

/*!
 * # Semantic UI 2.3.1 - Dropdown
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 */

.ui.dropdown {
  cursor: pointer;
  position: relative;
  display: inline-block;
  outline: 0;
  text-align: left;
  transition: box-shadow .1s ease,width .1s ease;
  -webkit-tap-highlight-color: transparent;
}

.ui.dropdown .menu {
  cursor: auto;
  position: absolute;
  display: none;
  outline: 0;
  top: 100%;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  margin: 0;
  padding: 0;
  font-size: 1em;
  text-shadow: none;
  text-align: left;
  box-shadow: 0 2px 3px 0 rgba(34,36,38,.15);
  border-radius: .28571429rem;
  transition: opacity .1s ease;
  z-index: 11;
  will-change: transform,opacity;
}

.ui.dropdown .menu>* {
  white-space: nowrap;
}

.ui.dropdown>input:not(.search):first-child,
.ui.dropdown>select {
  display: none!important;
}

.ui.dropdown>.dropdown.icon {
  position: relative;
  font-size: .85714286em;
  margin: 0 0 0 1em;
}

.ui.dropdown .menu>.item .dropdown.icon {
  width: auto;
  float: right;
  margin: 0 0 0 1em;
}

.ui.dropdown .menu>.item .dropdown.icon+.text {
  margin-right: 1em;
}

.ui.dropdown>.text {
  display: inline-block;
  transition: none;
}

.ui.dropdown .menu>.item {
  position: relative;
  cursor: pointer;
  display: block;
  border: none;
  height: auto;
  text-align: left;
  border-top: none;
  line-height: 1em;
  color: rgba(0,0,0,.87);
  padding: .78571429rem 1.14285714rem!important;
  font-size: 1rem;
  text-transform: none;
  font-weight: 400;
  box-shadow: none;
  -webkit-touch-callout: none;
}

.ui.dropdown .menu>.item:first-child {
  border-top-width: 0;
}

.ui.dropdown .menu .item>[class*="right floated"],
.ui.dropdown>.text>[class*="right floated"] {
  float: right!important;
  margin-right: 0!important;
  margin-left: 1em!important;
}

.ui.dropdown .menu .item>[class*="left floated"],
.ui.dropdown>.text>[class*="left floated"] {
  float: left!important;
  margin-left: 0!important;
  margin-right: 1em!important;
}

.ui.dropdown .menu .item>.flag.floated,
.ui.dropdown .menu .item>.icon.floated,
.ui.dropdown .menu .item>.image.floated,
.ui.dropdown .menu .item>img.floated {
  margin-top: 0;
}

.ui.dropdown .menu>.header {
  margin: 1rem 0 .75rem;
  padding: 0 1.14285714rem;
  color: rgba(0,0,0,.85);
  font-size: .78571429em;
  font-weight: 700;
  text-transform: uppercase;
}

.ui.dropdown .menu>.divider {
  border-top: 1px solid rgba(34,36,38,.1);
  height: 0;
  margin: .5em 0;
}

.ui.dropdown.dropdown .menu>.input {
  width: auto;
  display: flex;
  margin: 1.14285714rem .78571429rem;
  min-width: 10rem;
}

.ui.button.dropdown .menu,
.ui.label.dropdown .menu {
  min-width: 100%;
}

.ui.dropdown .menu>.header+.input {
  margin-top: 0;
}

.ui.dropdown .menu>.input:not(.transparent) input {
  padding: .5em 1em;
}

.ui.dropdown .menu>.input:not(.transparent) .button,
.ui.dropdown .menu>.input:not(.transparent) .icon,
.ui.dropdown .menu>.input:not(.transparent) .label {
  padding-top: .5em;
  padding-bottom: .5em;
}

.ui.dropdown .menu>.item>.description,
.ui.dropdown>.text>.description {
  float: right;
  margin: 0 0 0 1em;
  color: rgba(0,0,0,.4);
}

.ui.dropdown .menu>.message {
  padding: .78571429rem 1.14285714rem;
  font-weight: 400;
}

.ui.dropdown .menu>.message:not(.ui) {
  color: rgba(0,0,0,.4);
}

.ui.dropdown .menu .menu {
  top: 0!important;
  left: 100%;
  right: auto;
  margin: 0 0 0 -.5em!important;
  border-radius: .28571429rem!important;
  z-index: 21!important;
}

.ui.dropdown .menu .menu:after {
  display: none;
}

.ui.dropdown .menu>.item>.flag,
.ui.dropdown .menu>.item>.icon,
.ui.dropdown .menu>.item>.image,
.ui.dropdown .menu>.item>.label,
.ui.dropdown .menu>.item>img,
.ui.dropdown>.text>.flag,
.ui.dropdown>.text>.icon,
.ui.dropdown>.text>.image,
.ui.dropdown>.text>.label,
.ui.dropdown>.text>img {
  margin-top: 0;
  margin-left: 0;
  float: none;
  margin-right: .78571429rem;
}

.ui.dropdown .menu>.item>.image,
.ui.dropdown .menu>.item>img,
.ui.dropdown>.text>.image,
.ui.dropdown>.text>img {
  display: inline-block;
  vertical-align: top;
  width: auto;
  margin-top: -.5em;
  margin-bottom: -.5em;
  max-height: 2em;
}

.ui.dropdown .ui.menu>.item:before,
.ui.menu .ui.dropdown .menu>.item:before {
  display: none;
}

.ui.menu .ui.dropdown .menu .active.item {
  border-left: none;
}

.ui.buttons>.ui.dropdown:last-child .menu,
.ui.menu .right.dropdown.item .menu,
.ui.menu .right.menu .dropdown:last-child .menu {
  left: auto;
  right: 0;
}

.ui.dropdown.icon.button>.dropdown.icon {
  margin: 0;
}

.ui.selection.dropdown {
  cursor: pointer;
  word-wrap: break-word;
  line-height: 1em;
  white-space: normal;
  outline: 0;
  -webkit-transform: rotateZ(0);
  transform: rotateZ(0);
  min-width: 14em;
  min-height: 2.71428571em;
  display: inline-block;
  padding: .78571429em 2.1em .78571429em 1em;
  color: rgba(0,0,0,.87);
  box-shadow: none;
  border-radius: .28571429rem;
  transition: box-shadow .1s ease,width .1s ease;
}

.ui.selection.dropdown.active,
.ui.selection.dropdown.visible {
  z-index: 10;
}

select.ui.dropdown {
  height: 38px;
  padding: .5em;
  border: 1px solid rgba(34,36,38,.15);
  visibility: visible;
}

.ui.selection.dropdown>.delete.icon,
.ui.selection.dropdown>.dropdown.icon,
.ui.selection.dropdown>.search.icon {
  cursor: pointer;
  position: absolute;
  width: auto;
  height: auto;
  line-height: 1.21428571em;
  top: .78571429em;
  right: 1em;
  z-index: 3;
  margin: -.78571429em;
  padding: .91666667em;
  opacity: .8;
  transition: opacity .1s ease;
}

.ui.compact.selection.dropdown {
  min-width: 0;
}

.ui.selection.dropdown .menu {
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-overflow-scrolling: touch;
  border-top-width: 0!important;
  outline: 0;
  margin: 0 -1px;
  min-width: calc(102%);
  width: calc(102%);
  border-radius: 0 0 .28571429rem .28571429rem;
  box-shadow: 0 2px 3px 0 rgba(34,36,38,.15);
  transition: opacity .1s ease;
}

.ui.dropdown>.dropdown.icon,
.ui.scrolling.dropdown .menu,
.ui.search.dropdown .menu,
.ui.visible.popup {
  -webkit-backface-visibility: hidden;
}

.ui.selection.dropdown .menu:after,
.ui.selection.dropdown .menu:before {
  display: none;
}

.ui.selection.dropdown .menu>.message {
  padding: .78571429rem 1.14285714rem;
}

@media only screen and (max-width:767px) {
  .ui.selection.dropdown .menu {
    max-height: 8.01428571rem;
  }
}

@media only screen and (min-width:768px) {
  .ui.selection.dropdown .menu {
    max-height: 10.68571429rem;
  }
}

@media only screen and (min-width:992px) {
  .ui.selection.dropdown .menu {
    max-height: 16.02857143rem;
  }
}

@media only screen and (min-width:1920px) {
  .ui.selection.dropdown .menu {
    max-height: 21.37142857rem;
  }
}

.ui.selection.dropdown .menu>.item {
  border-top: 1px solid #FAFAFA;
  padding: .78571429rem 1.14285714rem!important;
  white-space: normal;
  word-wrap: normal;
}

.ui.selection.dropdown .menu>.hidden.addition.item {
  display: none;
}

.ui.selection.dropdown:hover {
  border-color: rgba(34,36,38,.35);
  box-shadow: none;
}

.ui.selection.active.dropdown,
.ui.selection.active.dropdown .menu {
  border-color: #96C8DA;
  box-shadow: 0 2px 3px 0 rgba(34,36,38,.15);
}

.ui.selection.dropdown:focus {
  border-color: #96C8DA;
  box-shadow: none;
}

.ui.selection.active.dropdown:hover,
.ui.selection.active.dropdown:hover .menu,
.ui.selection.dropdown:focus .menu {
  border-color: #96C8DA;
  box-shadow: 0 2px 3px 0 rgba(34,36,38,.15);
}

.ui.selection.visible.dropdown>.text:not(.default) {
  font-weight: 400;
  color: rgba(0,0,0,.8);
}

.ui.active.selection.dropdown>.dropdown.icon,
.ui.visible.selection.dropdown>.dropdown.icon {
  opacity: 1;
  z-index: 3;
}

.ui.active.selection.dropdown {
  border-bottom-left-radius: 0!important;
  border-bottom-right-radius: 0!important;
}

.ui.active.empty.selection.dropdown {
  border-radius: .28571429rem!important;
  box-shadow: none!important;
}

.ui.active.empty.selection.dropdown .menu,
.ui.search.dropdown>input.search {
  border: none!important;
  box-shadow: none!important;
}

.ui.search.dropdown {
  min-width: '';
}

.ui.search.dropdown>input.search {
  background: none!important;
  cursor: text;
  top: 0;
  left: 1px;
  width: 100%;
  outline: 0;
  -webkit-tap-highlight-color: rgba(255,255,255,0);
  padding: inherit;
  position: absolute;
  z-index: 2;
}

.ui.search.selection.dropdown>input.search,
.ui.search.selection.dropdown>span.sizer {
  padding: .67857143em 2.1em .67857143em 1em;
  line-height: 1.21428571em;
}

.ui.search.dropdown>.text {
  cursor: text;
  position: relative;
  left: 1px;
  z-index: 3;
}

.ui.multiple.dropdown .menu,
.ui.search.dropdown.active>input.search,
.ui.search.dropdown.visible>input.search {
  cursor: auto;
}

.ui.search.selection.dropdown>span.sizer {
  display: none;
  white-space: pre;
}

.ui.search.dropdown.active>.text,
.ui.search.dropdown.visible>.text {
  pointer-events: none;
}

.ui.active.search.dropdown input.search:focus+.text .flag,
.ui.active.search.dropdown input.search:focus+.text .icon {
  opacity: .45;
}

.ui.active.search.dropdown input.search:focus+.text {
  color: rgba(115,115,115,.87)!important;
}

.ui.search.dropdown .menu {
  overflow-x: hidden;
  overflow-y: auto;
  backface-visibility: hidden;
  -webkit-overflow-scrolling: touch;
}

@media only screen and (max-width:767px) {
  .ui.search.dropdown .menu {
    max-height: 8.01428571rem;
  }
}

@media only screen and (min-width:768px) {
  .ui.search.dropdown .menu {
    max-height: 10.68571429rem;
  }
}

@media only screen and (min-width:992px) {
  .ui.search.dropdown .menu {
    max-height: 16.02857143rem;
  }
}

@media only screen and (min-width:1920px) {
  .ui.search.dropdown .menu {
    max-height: 21.37142857rem;
  }
}

.ui.multiple.dropdown {
  padding: .22619048em 2.1em .22619048em .35714286em;
}

.ui.multiple.search.dropdown,
.ui.multiple.search.dropdown>input.search {
  cursor: text;
}

.ui.multiple.dropdown>.label {
  -ms-user-select: none;
  user-select: none;
  display: inline-block;
  vertical-align: top;
  white-space: normal;
  font-size: 1em;
  padding: .35714286em .78571429em;
  margin: .14285714rem .28571429rem .14285714rem 0;
  box-shadow: 0 0 0 1px rgba(34,36,38,.15) inset;
}

.ui.multiple.dropdown .dropdown.icon {
  margin: '';
  padding: '';
}

.ui.multiple.dropdown>.text {
  position: static;
  padding: 0;
  max-width: 100%;
  margin: .45238095em 0 .45238095em .64285714em;
  line-height: 1.21428571em;
}

.ui.multiple.dropdown>.label~input.search {
  margin-left: .14285714em!important;
}

.ui.multiple.dropdown>.label~.text {
  display: none;
}

.ui.multiple.search.dropdown>.text {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  padding: inherit;
  margin: .45238095em 0 .45238095em .64285714em;
  line-height: 1.21428571em;
}

.ui.loading.dropdown.button>i.icon:after,
.ui.loading.dropdown.button>i.icon:before,
.ui.multiple.search.dropdown>.label~.text {
  display: none;
}

.ui.multiple.search.dropdown>input.search {
  position: static;
  padding: 0;
  max-width: 100%;
  margin: .45238095em 0 .45238095em .64285714em;
  width: 2.2em;
  line-height: 1.21428571em;
}

.ui.inline.dropdown {
  cursor: pointer;
  display: inline-block;
  color: inherit;
}

.ui.inline.dropdown .dropdown.icon {
  margin: 0 .5em 0 .21428571em;
  vertical-align: baseline;
}

.ui.inline.dropdown>.text {
  font-weight: 700;
}

.ui.inline.dropdown .menu {
  cursor: auto;
  margin-top: .21428571em;
  border-radius: .28571429rem;
}

.ui.dropdown .menu .active.item {
  background: 0 0;
  font-weight: 700;
  color: rgba(0,0,0,.95);
  box-shadow: none;
  z-index: 12;
}

.ui.dropdown .menu>.item:hover {
  background: rgba(0,0,0,.05);
  color: rgba(0,0,0,.95);
  z-index: 13;
}

.ui.loading.dropdown>i.icon {
  height: 1em!important;
}

.ui.loading.dropdown>i.icon:after,
.ui.loading.dropdown>i.icon:before {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -.64285714em 0 0 -.64285714em;
  width: 1.28571429em;
  height: 1.28571429em;
}

.ui.loading.selection.dropdown>i.icon {
  padding: 1.5em 1.28571429em!important;
}

.ui.loading.dropdown>i.icon:before {
  content: '';
  border-radius: 500rem;
  border: .2em solid rgba(0,0,0,.1);
}

.ui.loading.dropdown>i.icon:after {
  content: '';
  box-shadow: 0 0 0 1px transparent;
  -webkit-animation: dropdown-spin .6s linear;
  animation: dropdown-spin .6s linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  border-radius: 500rem;
  border-color: #767676 transparent transparent;
  border-style: solid;
  border-width: .2em;
}

.ui.dropdown.error>.menu,
.ui.dropdown.error>.menu .menu,
.ui.multiple.selection.error.dropdown>.label,
.ui.selection.dropdown.error,
.ui.selection.dropdown.error:hover {
  border-color: #E0B4B4;
}

@-webkit-keyframes dropdown-spin {
  from {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes dropdown-spin {
  from {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.ui.default.dropdown:not(.button)>.text,
.ui.dropdown:not(.button)>.default.text {
  color: rgba(191,191,191,.87);
}

.ui.default.dropdown:not(.button)>input:focus~.text,
.ui.dropdown:not(.button)>input:focus~.default.text {
  color: rgba(115,115,115,.87);
}

.ui.loading.dropdown>.text {
  transition: none;
}

.ui.dropdown .loading.menu {
  display: block;
  visibility: hidden;
  z-index: -1;
}

.ui.dropdown>.loading.menu {
  left: 0!important;
  right: auto!important;
}

.ui.dropdown>.menu .loading.menu {
  left: 100%!important;
  right: auto!important;
}

.ui.dropdown .menu .selected.item,
.ui.dropdown.selected {
  background: rgba(0,0,0,.03);
  color: rgba(0,0,0,.95);
}

.ui.dropdown.error,
.ui.dropdown.error>.default.text,
.ui.dropdown.error>.menu>.item,
.ui.dropdown.error>.text {
  color: #9F3A38;
}

.ui.dropdown>.filtered.text {
  visibility: hidden;
}

.ui.dropdown .filtered.item {
  display: none!important;
}

.ui.selection.dropdown.error {
  background: #FFF6F6;
}

.ui.dropdown.error>.menu>.item:hover {
  background-color: #FFF2F2;
}

.ui.dropdown.error>.menu .active.item {
  background-color: #FDCFCF;
}

.ui.disabled.dropdown,
.ui.dropdown .menu>.disabled.item {
  cursor: default;
  pointer-events: none;
  opacity: .45;
}

.ui.dropdown .menu {
  left: 0;
}

.ui.dropdown .menu .right.menu,
.ui.dropdown .right.menu>.menu {
  left: 100%!important;
  right: auto!important;
  border-radius: .28571429rem!important;
}

.ui.dropdown>.left.menu {
  left: auto!important;
  right: 0!important;
}

.ui.dropdown .menu .left.menu,
.ui.dropdown>.left.menu .menu {
  left: auto;
  right: 100%;
  margin: 0 -.5em 0 0!important;
  border-radius: .28571429rem!important;
}

.ui.dropdown .item .left.dropdown.icon,
.ui.dropdown .left.menu .item .dropdown.icon {
  width: auto;
  float: left;
  margin: 0;
}

.ui.dropdown .scrolling.menu,
.ui.scrolling.dropdown .menu {
  overflow-y: auto;
  min-width: 100%!important;
  width: auto!important;
}

.ui.dropdown .item .left.dropdown.icon+.text,
.ui.dropdown .left.menu .item .dropdown.icon+.text {
  margin-left: 1em;
  margin-right: 0;
}

.ui.upward.dropdown>.menu {
  top: auto;
  bottom: 100%;
  box-shadow: 0 0 3px 0 rgba(0,0,0,.08);
  border-radius: .28571429rem .28571429rem 0 0;
}

.ui.dropdown .upward.menu {
  top: auto!important;
  bottom: 0!important;
}

.ui.simple.upward.active.dropdown,
.ui.simple.upward.dropdown:hover {
  border-radius: .28571429rem .28571429rem 0 0!important;
}

.ui.upward.dropdown.button:not(.pointing):not(.floating).active {
  border-radius: .28571429rem .28571429rem 0 0;
}

.ui.active.upward.selection.dropdown,
.ui.upward.selection.dropdown.visible {
  border-radius: 0 0 .28571429rem .28571429rem!important;
}

.ui.upward.selection.dropdown .menu {
  border-top-width: 1px!important;
  border-bottom-width: 0!important;
  box-shadow: 0 -2px 3px 0 rgba(0,0,0,.08);
}

.ui.upward.selection.dropdown:hover {
  box-shadow: 0 0 2px 0 rgba(0,0,0,.05);
}

.ui.upward.selection.dropdown.visible {
  box-shadow: 0 0 3px 0 rgba(0,0,0,.08);
}

.ui.upward.active.selection.dropdown:hover {
  box-shadow: 0 0 3px 0 rgba(0,0,0,.05);
}

.ui.upward.active.selection.dropdown:hover .menu {
  box-shadow: 0 -2px 3px 0 rgba(0,0,0,.08);
}

.ui.dropdown .scrolling.menu,
.ui.scrolling.dropdown .menu {
  overflow-x: hidden;
  overflow-y: auto;
}

.ui.scrolling.dropdown .menu {
  overflow-x: hidden;
  backface-visibility: hidden;
  -webkit-overflow-scrolling: touch;
}

.ui.dropdown .scrolling.menu {
  position: static;
  border: none;
  box-shadow: none!important;
  border-radius: 0!important;
  margin: 0!important;
  border-top: 1px solid rgba(34,36,38,.15);
}

.ui.dropdown .scrolling.menu .item:first-child,
.ui.dropdown .scrolling.menu>.item.item.item,
.ui.scrolling.dropdown .menu .item.item.item,
.ui.scrolling.dropdown .menu .item:first-child {
  border-top: none;
}

.ui.dropdown>.animating.menu .scrolling.menu,
.ui.dropdown>.visible.menu .scrolling.menu {
  display: block;
}

@media all and (-ms-high-contrast:none) {
  .ui.dropdown .scrolling.menu,
  .ui.scrolling.dropdown .menu {
    min-width: calc(83%);
  }
}

@media only screen and (max-width:767px) {
  .ui.dropdown .scrolling.menu,
  .ui.scrolling.dropdown .menu {
    max-height: 10.28571429rem;
  }
}

.ui.simple.dropdown .menu:after,
.ui.simple.dropdown .menu:before {
  display: none;
}

.ui.simple.dropdown .menu {
  position: absolute;
  display: block;
  overflow: hidden;
  top: -9999px!important;
  opacity: 0;
  width: 0;
  height: 0;
  transition: opacity .1s ease;
}

.ui.simple.active.dropdown,
.ui.simple.dropdown:hover {
  border-bottom-left-radius: 0!important;
  border-bottom-right-radius: 0!important;
}

.ui.simple.active.dropdown>.menu,
.ui.simple.dropdown:hover>.menu {
  overflow: visible;
  width: auto;
  height: auto;
  top: 100%!important;
  opacity: 1;
}

.ui.simple.dropdown:hover>.menu>.item:hover>.menu,
.ui.simple.dropdown>.menu>.item:active>.menu {
  overflow: visible;
  width: auto;
  height: auto;
  top: 0!important;
  left: 100%!important;
  opacity: 1;
}

.ui.simple.disabled.dropdown:hover .menu {
  display: none;
  height: 0;
  width: 0;
  overflow: hidden;
}

.ui.simple.visible.dropdown>.menu {
  display: block;
}

.ui.fluid.dropdown {
  display: block;
  width: 100%;
  min-width: 0;
}

.ui.fluid.dropdown>.dropdown.icon {
  float: right;
}

.ui.floating.dropdown .menu {
  left: 0;
  right: auto;
  box-shadow: 0 2px 4px 0 rgba(34,36,38,.12),0 2px 10px 0 rgba(34,36,38,.15)!important;
  border-radius: .28571429rem!important;
}

.ui.floating.dropdown>.menu {
  margin-top: .5em!important;
  border-radius: .28571429rem!important;
}

.ui.pointing.dropdown>.menu {
  top: 100%;
  margin-top: .78571429rem;
  border-radius: .28571429rem;
}

.ui.pointing.dropdown>.menu:after {
  display: block;
  position: absolute;
  pointer-events: none;
  content: '';
  visibility: visible;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: .5em;
  height: .5em;
  box-shadow: -1px -1px 0 0 rgba(34,36,38,.15);
  background: #FFF;
  z-index: 2;
  top: -.25em;
  left: 50%;
  margin: 0 0 0 -.25em;
}

.ui.top.left.pointing.dropdown>.menu {
  top: 100%;
  bottom: auto;
  left: 0;
  right: auto;
  margin: 1em 0 0;
}

.ui.top.left.pointing.dropdown>.menu:after {
  top: -.25em;
  left: 1em;
  right: auto;
  margin: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.ui.top.right.pointing.dropdown>.menu {
  top: 100%;
  bottom: auto;
  right: 0;
  left: auto;
  margin: 1em 0 0;
}

.ui.top.pointing.dropdown>.left.menu:after,
.ui.top.right.pointing.dropdown>.menu:after {
  top: -.25em;
  left: auto!important;
  right: 1em!important;
  margin: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.ui.left.pointing.dropdown>.menu {
  top: 0;
  left: 100%;
  right: auto;
  margin: 0 0 0 1em;
}

.ui.left.pointing.dropdown>.menu:after {
  top: 1em;
  left: -.25em;
  margin: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.ui.left:not(.top):not(.bottom).pointing.dropdown>.left.menu {
  left: auto!important;
  right: 100%!important;
  margin: 0 1em 0 0;
}

.ui.left:not(.top):not(.bottom).pointing.dropdown>.left.menu:after {
  top: 1em;
  left: auto;
  right: -.25em;
  margin: 0;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.ui.right.pointing.dropdown>.menu {
  top: 0;
  left: auto;
  right: 100%;
  margin: 0 1em 0 0;
}

.ui.right.pointing.dropdown>.menu:after {
  top: 1em;
  left: auto;
  right: -.25em;
  margin: 0;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.ui.bottom.pointing.dropdown>.menu {
  top: auto;
  bottom: 100%;
  left: 0;
  right: auto;
  margin: 0 0 1em;
}

.ui.bottom.pointing.dropdown>.menu:after {
  top: auto;
  bottom: -.25em;
  right: auto;
  margin: 0;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.ui.bottom.pointing.dropdown>.menu .menu {
  top: auto!important;
  bottom: 0!important;
}

.ui.bottom.left.pointing.dropdown>.menu {
  left: 0;
  right: auto;
}

.ui.bottom.left.pointing.dropdown>.menu:after {
  left: 1em;
  right: auto;
}

.ui.bottom.right.pointing.dropdown>.menu {
  right: 0;
  left: auto;
}

.ui.bottom.right.pointing.dropdown>.menu:after {
  left: auto;
  right: 1em;
}

.ui.pointing.upward.dropdown .menu,
.ui.top.pointing.upward.dropdown .menu {
  top: auto!important;
  bottom: 100%!important;
  margin: 0 0 .78571429rem;
  border-radius: .28571429rem;
}

.ui.pointing.upward.dropdown .menu:after,
.ui.top.pointing.upward.dropdown .menu:after {
  top: 100%!important;
  bottom: auto!important;
  box-shadow: 1px 1px 0 0 rgba(34,36,38,.15);
  margin: -.25em 0 0;
}

.ui.right.pointing.upward.dropdown:not(.top):not(.bottom) .menu {
  top: auto!important;
  bottom: 0!important;
  margin: 0 1em 0 0;
}

.ui.right.pointing.upward.dropdown:not(.top):not(.bottom) .menu:after {
  top: auto!important;
  bottom: 0!important;
  margin: 0 0 1em;
  box-shadow: -1px -1px 0 0 rgba(34,36,38,.15);
}

.ui.left.pointing.upward.dropdown:not(.top):not(.bottom) .menu {
  top: auto!important;
  bottom: 0!important;
  margin: 0 0 0 1em;
}

.ui.left.pointing.upward.dropdown:not(.top):not(.bottom) .menu:after {
  top: auto!important;
  bottom: 0!important;
  margin: 0 0 1em;
  box-shadow: -1px -1px 0 0 rgba(34,36,38,.15);
}

@font-face {
  font-family: Dropdown;
  src: url("data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMggjB5AAAAC8AAAAYGNtYXAPfuIIAAABHAAAAExnYXNwAAAAEAAAAWgAAAAIZ2x5Zjo82LgAAAFwAAABVGhlYWQAQ88bAAACxAAAADZoaGVhAwcB6QAAAvwAAAAkaG10eAS4ABIAAAMgAAAAIGxvY2EBNgDeAAADQAAAABJtYXhwAAoAFgAAA1QAAAAgbmFtZVcZpu4AAAN0AAABRXBvc3QAAwAAAAAEvAAAACAAAwIAAZAABQAAAUwBZgAAAEcBTAFmAAAA9QAZAIQAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADw2gHg/+D/4AHgACAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIPDa//3//wAAAAAAIPDX//3//wAB/+MPLQADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAIABJQElABMAABM0NzY3BTYXFhUUDwEGJwYvASY1AAUGBwEACAUGBoAFCAcGgAUBEgcGBQEBAQcECQYHfwYBAQZ/BwYAAQAAAG4BJQESABMAADc0PwE2MzIfARYVFAcGIyEiJyY1AAWABgcIBYAGBgUI/wAHBgWABwaABQWABgcHBgUFBgcAAAABABIASQC3AW4AEwAANzQ/ATYXNhcWHQEUBwYnBi8BJjUSBoAFCAcFBgYFBwgFgAbbBwZ/BwEBBwQJ/wgEBwEBB38GBgAAAAABAAAASQClAW4AEwAANxE0NzYzMh8BFhUUDwEGIyInJjUABQYHCAWABgaABQgHBgVbAQAIBQYGgAUIBwWABgYFBwAAAAEAAAABAADZuaKOXw889QALAgAAAAAA0ABHWAAAAADQAEdYAAAAAAElAW4AAAAIAAIAAAAAAAAAAQAAAeD/4AAAAgAAAAAAASUAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAABAAAAASUAAAElAAAAtwASALcAAAAAAAAACgAUAB4AQgBkAIgAqgAAAAEAAAAIABQAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAOAAAAAQAAAAAAAgAOAEcAAQAAAAAAAwAOACQAAQAAAAAABAAOAFUAAQAAAAAABQAWAA4AAQAAAAAABgAHADIAAQAAAAAACgA0AGMAAwABBAkAAQAOAAAAAwABBAkAAgAOAEcAAwABBAkAAwAOACQAAwABBAkABAAOAFUAAwABBAkABQAWAA4AAwABBAkABgAOADkAAwABBAkACgA0AGMAaQBjAG8AbQBvAG8AbgBWAGUAcgBzAGkAbwBuACAAMQAuADAAaQBjAG8AbQBvAG8Abmljb21vb24AaQBjAG8AbQBvAG8AbgBSAGUAZwB1AGwAYQByAGkAYwBvAG0AbwBvAG4ARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=") format('truetype'),url("data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AAAVwAAoAAAAABSgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAA9AAAAdkAAAHZLDXE/09TLzIAAALQAAAAYAAAAGAIIweQY21hcAAAAzAAAABMAAAATA9+4ghnYXNwAAADfAAAAAgAAAAIAAAAEGhlYWQAAAOEAAAANgAAADYAQ88baGhlYQAAA7wAAAAkAAAAJAMHAelobXR4AAAD4AAAACAAAAAgBLgAEm1heHAAAAQAAAAABgAAAAYACFAAbmFtZQAABAgAAAFFAAABRVcZpu5wb3N0AAAFUAAAACAAAAAgAAMAAAEABAQAAQEBCGljb21vb24AAQIAAQA6+BwC+BsD+BgEHgoAGVP/i4seCgAZU/+LiwwHi2v4lPh0BR0AAACIDx0AAACNER0AAAAJHQAAAdASAAkBAQgPERMWGyAlKmljb21vb25pY29tb29udTB1MXUyMHVGMEQ3dUYwRDh1RjBEOXVGMERBAAACAYkABgAIAgABAAQABwAKAA0AVgCfAOgBL/yUDvyUDvyUDvuUDvtvi/emFYuQjZCOjo+Pj42Qiwj3lIsFkIuQiY6Hj4iNhouGi4aJh4eHCPsU+xQFiIiGiYaLhouHjYeOCPsU9xQFiI+Jj4uQCA77b4v3FBWLkI2Pjo8I9xT3FAWPjo+NkIuQi5CJjogI9xT7FAWPh42Hi4aLhomHh4eIiIaJhosI+5SLBYaLh42HjoiPiY+LkAgO+92d928Vi5CNkI+OCPcU9xQFjo+QjZCLkIuPiY6Hj4iNhouGCIv7lAWLhomHh4iIh4eJhouGi4aNiI8I+xT3FAWHjomPi5AIDvvdi+YVi/eUBYuQjZCOjo+Pj42Qi5CLkImOhwj3FPsUBY+IjYaLhouGiYeHiAj7FPsUBYiHhomGi4aLh42Hj4iOiY+LkAgO+JQU+JQViwwKAAAAAAMCAAGQAAUAAAFMAWYAAABHAUwBZgAAAPUAGQCEAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAA8NoB4P/g/+AB4AAgAAAAAQAAAAAAAAAAAAAAIAAAAAAAAgAAAAMAAAAUAAMAAQAAABQABAA4AAAACgAIAAIAAgABACDw2v/9//8AAAAAACDw1//9//8AAf/jDy0AAwABAAAAAAAAAAAAAAABAAH//wAPAAEAAAABAAA5emozXw889QALAgAAAAAA0ABHWAAAAADQAEdYAAAAAAElAW4AAAAIAAIAAAAAAAAAAQAAAeD/4AAAAgAAAAAAASUAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAABAAAAASUAAAElAAAAtwASALcAAAAAUAAACAAAAAAADgCuAAEAAAAAAAEADgAAAAEAAAAAAAIADgBHAAEAAAAAAAMADgAkAAEAAAAAAAQADgBVAAEAAAAAAAUAFgAOAAEAAAAAAAYABwAyAAEAAAAAAAoANABjAAMAAQQJAAEADgAAAAMAAQQJAAIADgBHAAMAAQQJAAMADgAkAAMAAQQJAAQADgBVAAMAAQQJAAUAFgAOAAMAAQQJAAYADgA5AAMAAQQJAAoANABjAGkAYwBvAG0AbwBvAG4AVgBlAHIAcwBpAG8AbgAgADEALgAwAGkAYwBvAG0AbwBvAG5pY29tb29uAGkAYwBvAG0AbwBvAG4AUgBlAGcAdQBsAGEAcgBpAGMAbwBtAG8AbwBuAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA") format('woff');
  font-weight: 400;
  font-style: normal;
}

.ui.dropdown>.dropdown.icon {
  font-family: Dropdown;
  line-height: 1;
  height: 1em;
  backface-visibility: hidden;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  width: auto;
}

.ui.dropdown>.dropdown.icon:before {
  content: '\f0d7';
}

.ui.dropdown .menu .item .dropdown.icon:before {
  content: '\f0da';
}

.ui.dropdown .item .left.dropdown.icon:before,
.ui.dropdown .left.menu .item .dropdown.icon:before {
  content: "\f0d9";
}

.ui.vertical.menu .dropdown.item>.dropdown.icon:before {
  content: "\f0da";
}

/*!
 * # Semantic UI 2.3.1 - Video
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 */

.ui.embed {
  position: relative;
  max-width: 100%;
  height: 0;
  overflow: hidden;
  background: #DCDDDE;
  padding-bottom: 56.25%;
}

.ui.embed embed,
.ui.embed iframe,
.ui.embed object,
.ui.embed>.icon,
.ui.embed>.icon:after,
.ui.embed>.placeholder {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}

.ui.embed embed,
.ui.embed iframe,
.ui.embed object {
  border: none;
  margin: 0;
  padding: 0;
}

.ui.embed>.embed {
  display: none;
}

.ui.embed>.placeholder {
  cursor: pointer;
  display: block;
  background-color: radial-gradient(transparent 45%,rgba(0,0,0,.3));
}

.ui.active.embed>.icon,
.ui.active.embed>.placeholder,
.ui.modal,
.ui.popup {
  display: none;
}

.ui.embed>.icon {
  cursor: pointer;
  z-index: 2;
}

.ui.embed>.icon:after {
  z-index: 3;
  content: '';
  background: radial-gradient(transparent 45%,rgba(0,0,0,.3));
  opacity: .5;
  transition: opacity .5s ease;
}

.ui.embed>.icon:before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  color: #FFF;
  font-size: 6rem;
  text-shadow: 0 2px 10px rgba(34,36,38,.2);
  transition: opacity .5s ease,color .5s ease;
  z-index: 10;
}

.ui.embed .icon:hover:after {
  background: radial-gradient(transparent 45%,rgba(0,0,0,.3));
  opacity: 1;
}

.ui.embed .icon:hover:before {
  color: #FFF;
}

.ui.active.embed>.embed {
  display: block;
}

.ui.square.embed {
  padding-bottom: 100%;
}

.ui[class*="4:3"].embed {
  padding-bottom: 75%;
}

.ui[class*="16:9"].embed {
  padding-bottom: 56.25%;
}

.ui[class*="21:9"].embed {
  padding-bottom: 42.85714286%;
}

/*!
 * # Semantic UI 2.3.1 - Modal
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 */

.ui.modal {
  z-index: 1001;
  text-align: left;
  background: #FFF;
  border: none;
  box-shadow: 1px 3px 3px 0 rgba(0,0,0,.2),1px 3px 15px 2px rgba(0,0,0,.2);
  -webkit-transform-origin: 50% 25%;
  transform-origin: 50% 25%;
  flex: 0 0 auto;
  border-radius: .28571429rem;
  -moz-user-select: text;
  user-select: text;
  will-change: top,left,margin,transform,opacity;
}

.ui.modal>.icon:first-child+*,
.ui.modal>:first-child:not(.icon) {
  border-top-left-radius: .28571429rem;
  border-top-right-radius: .28571429rem;
}

.ui.modal>:last-child {
  border-bottom-left-radius: .28571429rem;
  border-bottom-right-radius: .28571429rem;
}

.ui.modal>.close {
  cursor: pointer;
  position: absolute;
  top: -2.5rem;
  right: -2.5rem;
  z-index: 1;
  opacity: .8;
  font-size: 1.25em;
  color: #FFF;
  width: 2.25rem;
  height: 2.25rem;
  padding: .625rem 0 0;
}

.ui.modal>.close:hover {
  opacity: 1;
}

.ui.modal>.header {
  display: block;
  font-family: Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;
  background: #FFF;
  margin: 0;
  padding: 1.25rem 1.5rem;
  box-shadow: none;
  color: rgba(0,0,0,.85);
  border-bottom: 1px solid rgba(34,36,38,.15);
}

.ui.modal>.header:not(.ui) {
  font-size: 1.42857143rem;
  line-height: 1.28571429em;
  font-weight: 700;
}

.ui.modal>.content {
  display: block;
  width: 100%;
  font-size: 1em;
  line-height: 1.4;
  padding: 1.5rem;
  background: #FFF;
}

.ui.modal>.image.content {
  display: flex;
  flex-direction: row;
}

.ui.modal>.content>.image {
  display: block;
  flex: 0 1 auto;
  width: '';
  align-self: top;
}

.ui.modal>[class*="top aligned"] {
  align-self: top;
}

.ui.modal>[class*="middle aligned"] {
  align-self: middle;
}

.ui.modal>[class*=stretched] {
  align-self: stretch;
}

.ui.modal>.content>.description {
  display: block;
  flex: 1 0 auto;
  min-width: 0;
  align-self: top;
}

.ui.modal>.content>.icon+.description,
.ui.modal>.content>.image+.description {
  flex: 0 1 auto;
  min-width: '';
  width: auto;
  padding-left: 2em;
}

.ui.modal>.content>.image>i.icon {
  margin: 0;
  opacity: 1;
  width: auto;
  line-height: 1;
  font-size: 8rem;
}

.ui.modal>.actions {
  background: #F9FAFB;
  padding: 1rem;
  border-top: 1px solid rgba(34,36,38,.15);
  text-align: right;
}

.ui.basic.modal,
.ui.basic.modal>.actions,
.ui.basic.modal>.content,
.ui.basic.modal>.header {
  background-color: transparent;
}

.ui.modal .actions>.button {
  margin-left: .75em;
}

@media only screen and (max-width:767px) {
  .ui.modal {
    width: 95%;
    margin: 0;
  }
}

@media only screen and (min-width:768px) {
  .ui.dropdown .scrolling.menu,
  .ui.scrolling.dropdown .menu {
    max-height: 15.42857143rem;
  }

  .ui.modal {
    width: 88%;
    margin: 0;
  }
}

@media only screen and (min-width:992px) {
  .ui.dropdown .scrolling.menu,
  .ui.scrolling.dropdown .menu {
    max-height: 20.57142857rem;
  }

  .ui.modal {
    width: 850px;
    margin: 0;
  }
}

@media only screen and (min-width:1200px) {
  .ui.modal {
    width: 900px;
    margin: 0;
  }
}

@media only screen and (min-width:1920px) {
  .ui.dropdown .scrolling.menu,
  .ui.scrolling.dropdown .menu {
    max-height: 20.57142857rem;
  }

  .ui.modal {
    width: 950px;
    margin: 0;
  }
}

@media only screen and (max-width:991px) {
  .ui.modal>.header {
    padding-right: 2.25rem;
  }

  .ui.modal>.close {
    top: 1.0535rem;
    right: 1rem;
    color: rgba(0,0,0,.87);
  }
}

@media only screen and (max-width:767px) {
  .ui.modal>.header {
    padding: .75rem 2.25rem .75rem 1rem!important;
  }

  .ui.modal>.content {
    display: block;
    padding: 1rem!important;
  }

  .ui.modal>.close {
    top: .5rem!important;
    right: .5rem!important;
  }

  .ui.modal .image.content {
    flex-direction: column;
  }

  .ui.modal .content>.image {
    display: block;
    max-width: 100%;
    margin: 0 auto!important;
    text-align: center;
    padding: 0 0 1rem!important;
  }

  .ui.modal>.content>.image>i.icon {
    font-size: 5rem;
    text-align: center;
  }

  .ui.modal .content>.description {
    display: block;
    width: 100%!important;
    margin: 0!important;
    padding: 1rem 0!important;
    box-shadow: none;
  }

  .ui.modal>.actions {
    padding: 1rem 1rem 0!important;
  }

  .ui.modal .actions>.button,
  .ui.modal .actions>.buttons {
    margin-bottom: 1rem;
  }
}

.ui.inverted.dimmer>.ui.modal {
  box-shadow: 1px 3px 10px 2px rgba(0,0,0,.2);
}

.ui.basic.modal {
  border: none;
  border-radius: 0;
  box-shadow: none!important;
  color: #FFF;
}

.ui.basic.modal>.header {
  color: #FFF;
}

.ui.basic.modal>.close {
  top: 1rem;
  right: 1.5rem;
}

.ui.inverted.dimmer>.basic.modal {
  color: rgba(0,0,0,.87);
}

.ui.inverted.dimmer>.ui.basic.modal>.header {
  color: rgba(0,0,0,.85);
}

@media only screen and (max-width:991px) {
  .ui.basic.modal>.close {
    color: #FFF;
  }
}

.ui.loading.modal {
  display: block;
  visibility: hidden;
  z-index: -1;
}

.ui.active.modal {
  display: block;
}

.modals.dimmer[class*="top aligned"] .modal {
  margin: 5vh auto;
}

.scrolling.dimmable.dimmed {
  overflow: hidden;
}

.scrolling.dimmable>.dimmer {
  justify-content: flex-start;
  position: fixed;
}

.scrolling.dimmable.dimmed>.dimmer {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.modals.dimmer .ui.scrolling.modal {
  margin: 1rem auto!important;
}

.scrolling.undetached.dimmable.dimmed {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.scrolling.undetached.dimmable.dimmed>.dimmer {
  overflow: hidden;
}

.scrolling.undetached.dimmable .ui.scrolling.modal {
  position: absolute;
  left: 50%;
  margin-top: 1rem!important;
}

.ui.modal .scrolling.content {
  max-height: calc(70vh);
  overflow: auto;
}

.ui.fullscreen.modal {
  width: 95%!important;
  left: 0!important;
  margin: 1em auto;
}

.ui.fullscreen.scrolling.modal {
  left: 0!important;
}

.ui.fullscreen.modal>.header {
  padding-right: 2.25rem;
}

.ui.fullscreen.modal>.close {
  top: 1.0535rem;
  right: 1rem;
  color: rgba(0,0,0,.87);
}

.ui.modal {
  font-size: 1rem;
}

.ui.mini.modal>.header:not(.ui),
.ui.small.modal>.header:not(.ui) {
  font-size: 1.3em;
}

@media only screen and (max-width:767px) {
  .ui.mini.modal {
    width: 95%;
    margin: 0;
  }
}

@media only screen and (min-width:768px) {
  .ui.mini.modal {
    width: 35.2%;
    margin: 0;
  }
}

@media only screen and (min-width:992px) {
  .ui.mini.modal {
    width: 340px;
    margin: 0;
  }
}

@media only screen and (min-width:1200px) {
  .ui.mini.modal {
    width: 360px;
    margin: 0;
  }
}

@media only screen and (min-width:1920px) {
  .ui.mini.modal {
    width: 380px;
    margin: 0;
  }
}

@media only screen and (max-width:767px) {
  .ui.tiny.modal {
    width: 95%;
    margin: 0;
  }
}

@media only screen and (min-width:768px) {
  .ui.tiny.modal {
    width: 52.8%;
    margin: 0;
  }
}

@media only screen and (min-width:992px) {
  .ui.tiny.modal {
    width: 510px;
    margin: 0;
  }
}

@media only screen and (min-width:1200px) {
  .ui.tiny.modal {
    width: 540px;
    margin: 0;
  }
}

@media only screen and (min-width:1920px) {
  .ui.tiny.modal {
    width: 570px;
    margin: 0;
  }
}

@media only screen and (max-width:767px) {
  .ui.small.modal {
    width: 95%;
    margin: 0;
  }
}

@media only screen and (min-width:768px) {
  .ui.small.modal {
    width: 70.4%;
    margin: 0;
  }
}

@media only screen and (min-width:992px) {
  .ui.small.modal {
    width: 680px;
    margin: 0;
  }
}

@media only screen and (min-width:1200px) {
  .ui.small.modal {
    width: 720px;
    margin: 0;
  }
}

@media only screen and (min-width:1920px) {
  .ui.small.modal {
    width: 760px;
    margin: 0;
  }
}

.ui.large.modal>.header {
  font-size: 1.6em;
}

@media only screen and (max-width:767px) {
  .ui.large.modal {
    width: 95%;
    margin: 0;
  }
}

@media only screen and (min-width:768px) {
  .ui.large.modal {
    width: 88%;
    margin: 0;
  }
}

@media only screen and (min-width:992px) {
  .ui.large.modal {
    width: 1020px;
    margin: 0;
  }
}

@media only screen and (min-width:1200px) {
  .ui.large.modal {
    width: 1080px;
    margin: 0;
  }
}

@media only screen and (min-width:1920px) {
  .ui.large.modal {
    width: 1140px;
    margin: 0;
  }
}

/*!
 * # Semantic UI 2.3.1 - Popup
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 */

.ui.popup {
  position: absolute;
  top: 0;
  right: 0;
  min-width: -webkit-min-content;
  min-width: -moz-min-content;
  min-width: min-content;
  z-index: 1900;
  border: 1px solid #D4D4D5;
  line-height: 1.4285em;
  max-width: 250px;
  background: #FFF;
  padding: .833em 1em;
  font-weight: 400;
  font-style: normal;
  color: rgba(0,0,0,.87);
  border-radius: .28571429rem;
  box-shadow: 0 2px 4px 0 rgba(34,36,38,.12),0 2px 10px 0 rgba(34,36,38,.15);
}

.ui.popup:before,
[data-tooltip]:before {
  content: '';
  width: .71428571em;
  height: .71428571em;
  z-index: 2;
  box-shadow: 1px 1px 0 0 #bababc;
}

.ui.popup>.header {
  padding: 0;
  font-family: Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;
  font-size: 1.14285714em;
  line-height: 1.2;
  font-weight: 700;
}

[data-tooltip]:after,
[data-tooltip]:before {
  position: absolute;
  font-size: 1rem;
  background: #FFF;
}

.ui.popup>.header+.content {
  padding-top: .5em;
}

.ui.popup:before {
  position: absolute;
  background: #FFF;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

[data-tooltip] {
  position: relative;
}

[data-tooltip]:not([data-position]):before {
  top: auto;
  right: auto;
  bottom: 100%;
  left: 50%;
  background: #FFF;
  margin-left: -.07142857rem;
  margin-bottom: .14285714rem;
}

[data-tooltip]:not([data-position]):after {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 100%;
  margin-bottom: .5em;
}

[data-tooltip]:after,
[data-tooltip]:before {
  pointer-events: none;
  visibility: hidden;
}

[data-tooltip]:before {
  opacity: 0;
  -webkit-transform: rotate(45deg) scale(0)!important;
  transform: rotate(45deg) scale(0)!important;
  -webkit-transform-origin: center top;
  transform-origin: center top;
  transition: all .1s ease;
}

[data-tooltip]:after {
  content: attr(data-tooltip);
  text-transform: none;
  text-align: left;
  white-space: nowrap;
  border: 1px solid #D4D4D5;
  line-height: 1.4285em;
  max-width: none;
  padding: .833em 1em;
  font-weight: 400;
  font-style: normal;
  color: rgba(0,0,0,.87);
  border-radius: .28571429rem;
  box-shadow: 0 2px 4px 0 rgba(34,36,38,.12),0 2px 10px 0 rgba(34,36,38,.15);
  z-index: 1;
  opacity: 1;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
  transition: all .1s ease;
}

[data-tooltip]:hover:after,
[data-tooltip]:hover:before {
  visibility: visible;
  pointer-events: auto;
}

[data-tooltip]:hover:before {
  -webkit-transform: rotate(45deg) scale(1)!important;
  transform: rotate(45deg) scale(1)!important;
  opacity: 1;
}

[data-tooltip]:after,
[data-tooltip][data-position="top center"]:after,
[data-tooltip][data-position="bottom center"]:after {
  -webkit-transform: translateX(-50%) scale(0)!important;
  transform: translateX(-50%) scale(0)!important;
}

[data-tooltip]:hover:after,
[data-tooltip][data-position="bottom center"]:hover:after {
  -webkit-transform: translateX(-50%) scale(1)!important;
  transform: translateX(-50%) scale(1)!important;
}

[data-tooltip][data-position="left center"]:after,
[data-tooltip][data-position="right center"]:after {
  -webkit-transform: translateY(-50%) scale(0)!important;
  transform: translateY(-50%) scale(0)!important;
}

[data-tooltip][data-position="left center"]:hover:after,
[data-tooltip][data-position="right center"]:hover:after {
  -webkit-transform: translateY(-50%) scale(1)!important;
  transform: translateY(-50%) scale(1)!important;
}

[data-tooltip][data-position="top left"]:after,
[data-tooltip][data-position="top right"]:after,
[data-tooltip][data-position="bottom left"]:after,
[data-tooltip][data-position="bottom right"]:after {
  -webkit-transform: scale(0)!important;
  transform: scale(0)!important;
}

[data-tooltip][data-position="top left"]:hover:after,
[data-tooltip][data-position="top right"]:hover:after,
[data-tooltip][data-position="bottom left"]:hover:after,
[data-tooltip][data-position="bottom right"]:hover:after {
  -webkit-transform: scale(1)!important;
  transform: scale(1)!important;
}

[data-tooltip][data-inverted]:before {
  box-shadow: none!important;
  background: #1B1C1D;
}

[data-tooltip][data-inverted]:after {
  background: #1B1C1D;
  color: #FFF;
  border: none;
  box-shadow: none;
}

[data-tooltip][data-inverted]:after .header {
  background-color: none;
  color: #FFF;
}

[data-position="top center"][data-tooltip]:after {
  top: auto;
  right: auto;
  left: 50%;
  bottom: 100%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  margin-bottom: .5em;
}

[data-position="top center"][data-tooltip]:before {
  top: auto;
  right: auto;
  bottom: 100%;
  left: 50%;
  background: #FFF;
  margin-left: -.07142857rem;
  margin-bottom: .14285714rem;
}

[data-position="top left"][data-tooltip]:after {
  top: auto;
  right: auto;
  left: 0;
  bottom: 100%;
  margin-bottom: .5em;
}

[data-position="top left"][data-tooltip]:before {
  top: auto;
  right: auto;
  bottom: 100%;
  left: 1em;
  margin-left: -.07142857rem;
  margin-bottom: .14285714rem;
}

[data-position="top right"][data-tooltip]:after {
  top: auto;
  left: auto;
  right: 0;
  bottom: 100%;
  margin-bottom: .5em;
}

[data-position="top right"][data-tooltip]:before {
  top: auto;
  left: auto;
  bottom: 100%;
  right: 1em;
  margin-left: -.07142857rem;
  margin-bottom: .14285714rem;
}

[data-position="bottom center"][data-tooltip]:after {
  bottom: auto;
  right: auto;
  left: 50%;
  top: 100%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  margin-top: .5em;
}

[data-position="bottom center"][data-tooltip]:before {
  bottom: auto;
  right: auto;
  top: 100%;
  left: 50%;
  margin-left: -.07142857rem;
  margin-top: .14285714rem;
}

[data-position="bottom left"][data-tooltip]:after {
  left: 0;
  top: 100%;
  margin-top: .5em;
}

[data-position="bottom left"][data-tooltip]:before {
  bottom: auto;
  right: auto;
  top: 100%;
  left: 1em;
  margin-left: -.07142857rem;
  margin-top: .14285714rem;
}

[data-position="bottom right"][data-tooltip]:after {
  right: 0;
  top: 100%;
  margin-top: .5em;
}

[data-position="bottom right"][data-tooltip]:before {
  bottom: auto;
  left: auto;
  top: 100%;
  right: 1em;
  margin-left: -.14285714rem;
  margin-top: .07142857rem;
}

[data-position="left center"][data-tooltip]:after {
  right: 100%;
  top: 50%;
  margin-right: .5em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

[data-position="right center"][data-tooltip]:after {
  left: 100%;
  top: 50%;
  margin-left: .5em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

[data-position~=bottom][data-tooltip]:before {
  background: #FFF;
  box-shadow: -1px -1px 0 0 #bababc;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

[data-position="left center"][data-tooltip]:before {
  right: 100%;
  top: 50%;
  margin-top: -.14285714rem;
  margin-right: -.07142857rem;
  background: #FFF;
  box-shadow: 1px -1px 0 0 #bababc;
}

[data-position="right center"][data-tooltip]:before {
  left: 100%;
  top: 50%;
  margin-top: -.07142857rem;
  margin-left: .14285714rem;
  background: #FFF;
  box-shadow: -1px 1px 0 0 #bababc;
}

.ui.bottom.center.popup:before,
.ui.bottom.left.popup:before,
.ui.bottom.right.popup:before {
  top: -.30714286em;
  box-shadow: -1px -1px 0 0 #bababc;
}

[data-position~=top][data-tooltip]:before {
  background: #FFF;
}

[data-inverted][data-position~=bottom][data-tooltip]:before {
  background: #1B1C1D;
  box-shadow: -1px -1px 0 0 #bababc;
}

[data-inverted][data-position="left center"][data-tooltip]:before {
  background: #1B1C1D;
  box-shadow: 1px -1px 0 0 #bababc;
}

[data-inverted][data-position="right center"][data-tooltip]:before {
  background: #1B1C1D;
  box-shadow: -1px 1px 0 0 #bababc;
}

[data-inverted][data-position~=top][data-tooltip]:before {
  background: #1B1C1D;
}

[data-position~=bottom][data-tooltip]:after {
  -webkit-transform-origin: center top;
  transform-origin: center top;
}

[data-position="left center"][data-tooltip]:before {
  -webkit-transform-origin: top center;
  transform-origin: top center;
}

[data-position="left center"][data-tooltip]:after,
[data-position="right center"][data-tooltip]:before {
  -webkit-transform-origin: right center;
  transform-origin: right center;
}

[data-position="right center"][data-tooltip]:after {
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

.ui.popup {
  margin: 0;
}

.ui.top.popup {
  margin: 0 0 .71428571em;
}

.ui.top.left.popup {
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

.ui.top.center.popup {
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

.ui.top.right.popup {
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

.ui.left.center.popup {
  margin: 0 .71428571em 0 0;
  -webkit-transform-origin: right 50%;
  transform-origin: right 50%;
}

.ui.right.center.popup {
  margin: 0 0 0 .71428571em;
  -webkit-transform-origin: left 50%;
  transform-origin: left 50%;
}

.ui.bottom.popup {
  margin: .71428571em 0 0;
}

.ui.bottom.left.popup {
  -webkit-transform-origin: left top;
  transform-origin: left top;
}

.ui.bottom.center.popup {
  -webkit-transform-origin: center top;
  transform-origin: center top;
}

.ui.bottom.right.popup {
  -webkit-transform-origin: right top;
  transform-origin: right top;
  margin-right: 0;
}

.ui.bottom.center.popup:before {
  margin-left: -.30714286em;
  left: 50%;
  right: auto;
  bottom: auto;
}

.ui.bottom.left.popup {
  margin-left: 0;
}

.ui.bottom.left.popup:before {
  left: 1em;
  right: auto;
  bottom: auto;
  margin-left: 0;
}

.ui.bottom.right.popup:before {
  right: 1em;
  bottom: auto;
  left: auto;
  margin-left: 0;
}

.ui.top.center.popup:before {
  top: auto;
  right: auto;
  bottom: -.30714286em;
  left: 50%;
  margin-left: -.30714286em;
}

.ui.top.left.popup {
  margin-left: 0;
}

.ui.top.left.popup:before {
  bottom: -.30714286em;
  left: 1em;
  top: auto;
  right: auto;
  margin-left: 0;
}

.ui.top.right.popup {
  margin-right: 0;
}

.ui.top.right.popup:before {
  bottom: -.30714286em;
  right: 1em;
  top: auto;
  left: auto;
  margin-left: 0;
}

.ui.left.center.popup:before {
  top: 50%;
  right: -.30714286em;
  bottom: auto;
  left: auto;
  margin-top: -.30714286em;
  box-shadow: 1px -1px 0 0 #bababc;
}

.ui.right.center.popup:before {
  top: 50%;
  left: -.30714286em;
  bottom: auto;
  right: auto;
  margin-top: -.30714286em;
  box-shadow: -1px 1px 0 0 #bababc;
}

.ui.bottom.popup:before,
.ui.left.center.popup:before,
.ui.right.center.popup:before,
.ui.top.popup:before {
  background: #FFF;
}

.ui.inverted.bottom.popup:before,
.ui.inverted.left.center.popup:before,
.ui.inverted.popup,
.ui.inverted.right.center.popup:before,
.ui.inverted.top.popup:before {
  background: #1B1C1D;
}

.ui.popup>.ui.grid:not(.padded) {
  width: calc(101.75%);
  margin: -.7rem -.875rem;
}

.ui.loading.popup {
  display: block;
  visibility: hidden;
  z-index: -1;
}

.ui.animating.popup,
.ui.visible.popup {
  display: block;
}

.ui.visible.popup {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  backface-visibility: hidden;
}

.ui.basic.popup:before {
  display: none;
}

.ui.wide.popup {
  max-width: 350px;
}

.ui[class*="very wide"].popup {
  max-width: 550px;
}

@media only screen and (max-width:767px) {
  .ui.wide.popup,
  .ui[class*="very wide"].popup {
    max-width: 250px;
  }
}

.ui.fluid.popup {
  width: 100%;
  max-width: none;
}

.ui.inverted.popup {
  color: #FFF;
  border: none;
  box-shadow: none;
}

.ui.inverted.popup .header {
  background-color: none;
  color: #FFF;
}

.ui.inverted.popup:before {
  background-color: #1B1C1D;
  box-shadow: none!important;
}

.ui.flowing.popup {
  max-width: none;
}

.ui.mini.popup {
  font-size: .78571429rem;
}

.ui.tiny.popup {
  font-size: .85714286rem;
}

.ui.small.popup {
  font-size: .92857143rem;
}

.ui.popup {
  font-size: 1rem;
}

.ui.large.popup {
  font-size: 1.14285714rem;
}

.ui.huge.popup {
  font-size: 1.42857143rem;
}

/*!
 * # Semantic UI 2.3.1 - Sticky
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 */

.ui.sticky {
  position: static;
  transition: none;
  z-index: 800;
}

.ui.sticky.bound {
  position: absolute;
  left: auto;
  right: auto;
}

.ui.sticky.fixed {
  position: fixed;
  left: auto;
  right: auto;
}

.ui.sticky.bound.top,
.ui.sticky.fixed.top {
  top: 0;
  bottom: auto;
}

.ui.sticky.bound.bottom,
.ui.sticky.fixed.bottom {
  top: auto;
  bottom: 0;
}

.ui.native.sticky {
  position: -webkit-sticky;
  position: -moz-sticky;
  position: -ms-sticky;
  position: -o-sticky;
  position: sticky;
}

/*!
 * # Semantic UI 2.3.1 - Transition
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 */

.transition {
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  animation-fill-mode: both;
}

.animating.transition {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  visibility: visible!important;
}

.loading.transition {
  position: absolute;
  top: -99999px;
  left: -99999px;
}

.hidden.transition {
  display: none;
  visibility: hidden;
}

.visible.transition {
  display: block!important;
  visibility: visible!important;
}

.disabled.transition {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

.looping.transition {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.transition.browse {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
}

.transition.browse.in {
  -webkit-animation-name: browseIn;
  animation-name: browseIn;
}

.transition.browse.left.out,
.transition.browse.out {
  -webkit-animation-name: browseOutLeft;
  animation-name: browseOutLeft;
}

.transition.browse.right.out {
  -webkit-animation-name: browseOutRight;
  animation-name: browseOutRight;
}

@-webkit-keyframes browseIn {
  0% {
    -webkit-transform: scale(.8) translateZ(0);
    transform: scale(.8) translateZ(0);
    z-index: -1;
  }

  10% {
    -webkit-transform: scale(.8) translateZ(0);
    transform: scale(.8) translateZ(0);
    z-index: -1;
    opacity: .7;
  }

  80% {
    -webkit-transform: scale(1.05) translateZ(0);
    transform: scale(1.05) translateZ(0);
    opacity: 1;
    z-index: 999;
  }

  100% {
    -webkit-transform: scale(1) translateZ(0);
    transform: scale(1) translateZ(0);
    z-index: 999;
  }
}

@keyframes browseIn {
  0% {
    -webkit-transform: scale(.8) translateZ(0);
    transform: scale(.8) translateZ(0);
    z-index: -1;
  }

  10% {
    -webkit-transform: scale(.8) translateZ(0);
    transform: scale(.8) translateZ(0);
    z-index: -1;
    opacity: .7;
  }

  80% {
    -webkit-transform: scale(1.05) translateZ(0);
    transform: scale(1.05) translateZ(0);
    opacity: 1;
    z-index: 999;
  }

  100% {
    -webkit-transform: scale(1) translateZ(0);
    transform: scale(1) translateZ(0);
    z-index: 999;
  }
}

@-webkit-keyframes browseOutLeft {
  0% {
    z-index: 999;
    -webkit-transform: translateX(0) rotateY(0) rotateX(0);
    transform: translateX(0) rotateY(0) rotateX(0);
  }

  50% {
    z-index: -1;
    -webkit-transform: translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);
    transform: translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);
  }

  80% {
    opacity: 1;
  }

  100% {
    z-index: -1;
    -webkit-transform: translateX(0) rotateY(0) rotateX(0) translateZ(-10px);
    transform: translateX(0) rotateY(0) rotateX(0) translateZ(-10px);
    opacity: 0;
  }
}

@keyframes browseOutLeft {
  0% {
    z-index: 999;
    -webkit-transform: translateX(0) rotateY(0) rotateX(0);
    transform: translateX(0) rotateY(0) rotateX(0);
  }

  50% {
    z-index: -1;
    -webkit-transform: translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);
    transform: translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);
  }

  80% {
    opacity: 1;
  }

  100% {
    z-index: -1;
    -webkit-transform: translateX(0) rotateY(0) rotateX(0) translateZ(-10px);
    transform: translateX(0) rotateY(0) rotateX(0) translateZ(-10px);
    opacity: 0;
  }
}

@-webkit-keyframes browseOutRight {
  0% {
    z-index: 999;
    -webkit-transform: translateX(0) rotateY(0) rotateX(0);
    transform: translateX(0) rotateY(0) rotateX(0);
  }

  50% {
    z-index: 1;
    -webkit-transform: translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);
    transform: translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);
  }

  80% {
    opacity: 1;
  }

  100% {
    z-index: 1;
    -webkit-transform: translateX(0) rotateY(0) rotateX(0) translateZ(-10px);
    transform: translateX(0) rotateY(0) rotateX(0) translateZ(-10px);
    opacity: 0;
  }
}

@keyframes browseOutRight {
  0% {
    z-index: 999;
    -webkit-transform: translateX(0) rotateY(0) rotateX(0);
    transform: translateX(0) rotateY(0) rotateX(0);
  }

  50% {
    z-index: 1;
    -webkit-transform: translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);
    transform: translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);
  }

  80% {
    opacity: 1;
  }

  100% {
    z-index: 1;
    -webkit-transform: translateX(0) rotateY(0) rotateX(0) translateZ(-10px);
    transform: translateX(0) rotateY(0) rotateX(0) translateZ(-10px);
    opacity: 0;
  }
}

.drop.transition {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-duration: .4s;
  animation-duration: .4s;
  -webkit-animation-timing-function: cubic-bezier(.34,1.61,.7,1);
  animation-timing-function: cubic-bezier(.34,1.61,.7,1);
}

.drop.transition.in {
  -webkit-animation-name: dropIn;
  animation-name: dropIn;
}

.drop.transition.out {
  -webkit-animation-name: dropOut;
  animation-name: dropOut;
}

@-webkit-keyframes dropIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes dropIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes dropOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}

@keyframes dropOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}

.transition.fade.in {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

.transition[class*="fade up"].in {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.transition[class*="fade down"].in {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

.transition[class*="fade left"].in {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

.transition[class*="fade right"].in {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

.transition.fade.out {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

.transition[class*="fade up"].out {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

.transition[class*="fade down"].out {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

.transition[class*="fade left"].out {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

.transition[class*="fade right"].out {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10%);
    transform: translateY(10%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10%);
    transform: translateY(10%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(10%);
    transform: translateX(10%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(10%);
    transform: translateX(10%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-10%);
    transform: translateX(-10%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-10%);
    transform: translateX(-10%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(5%);
    transform: translateY(5%);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(5%);
    transform: translateY(5%);
  }
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-5%);
    transform: translateY(-5%);
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-5%);
    transform: translateY(-5%);
  }
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(5%);
    transform: translateX(5%);
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(5%);
    transform: translateX(5%);
  }
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-5%);
    transform: translateX(-5%);
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-5%);
    transform: translateX(-5%);
  }
}

.flip.transition.in,
.flip.transition.out {
  -webkit-animation-duration: .6s;
  animation-duration: .6s;
}

.horizontal.flip.transition.in {
  -webkit-animation-name: horizontalFlipIn;
  animation-name: horizontalFlipIn;
}

.horizontal.flip.transition.out {
  -webkit-animation-name: horizontalFlipOut;
  animation-name: horizontalFlipOut;
}

.vertical.flip.transition.in {
  -webkit-animation-name: verticalFlipIn;
  animation-name: verticalFlipIn;
}

.vertical.flip.transition.out {
  -webkit-animation-name: verticalFlipOut;
  animation-name: verticalFlipOut;
}

@-webkit-keyframes horizontalFlipIn {
  0% {
    -webkit-transform: perspective(2000px) rotateY(-90deg);
    transform: perspective(2000px) rotateY(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform: perspective(2000px) rotateY(0);
    transform: perspective(2000px) rotateY(0);
    opacity: 1;
  }
}

@keyframes horizontalFlipIn {
  0% {
    -webkit-transform: perspective(2000px) rotateY(-90deg);
    transform: perspective(2000px) rotateY(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform: perspective(2000px) rotateY(0);
    transform: perspective(2000px) rotateY(0);
    opacity: 1;
  }
}

@-webkit-keyframes verticalFlipIn {
  0% {
    -webkit-transform: perspective(2000px) rotateX(-90deg);
    transform: perspective(2000px) rotateX(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform: perspective(2000px) rotateX(0);
    transform: perspective(2000px) rotateX(0);
    opacity: 1;
  }
}

@keyframes verticalFlipIn {
  0% {
    -webkit-transform: perspective(2000px) rotateX(-90deg);
    transform: perspective(2000px) rotateX(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform: perspective(2000px) rotateX(0);
    transform: perspective(2000px) rotateX(0);
    opacity: 1;
  }
}

@-webkit-keyframes horizontalFlipOut {
  0% {
    -webkit-transform: perspective(2000px) rotateY(0);
    transform: perspective(2000px) rotateY(0);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(2000px) rotateY(90deg);
    transform: perspective(2000px) rotateY(90deg);
    opacity: 0;
  }
}

@keyframes horizontalFlipOut {
  0% {
    -webkit-transform: perspective(2000px) rotateY(0);
    transform: perspective(2000px) rotateY(0);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(2000px) rotateY(90deg);
    transform: perspective(2000px) rotateY(90deg);
    opacity: 0;
  }
}

@-webkit-keyframes verticalFlipOut {
  0% {
    -webkit-transform: perspective(2000px) rotateX(0);
    transform: perspective(2000px) rotateX(0);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(2000px) rotateX(-90deg);
    transform: perspective(2000px) rotateX(-90deg);
    opacity: 0;
  }
}

@keyframes verticalFlipOut {
  0% {
    -webkit-transform: perspective(2000px) rotateX(0);
    transform: perspective(2000px) rotateX(0);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(2000px) rotateX(-90deg);
    transform: perspective(2000px) rotateX(-90deg);
    opacity: 0;
  }
}

.scale.transition.in {
  -webkit-animation-name: scaleIn;
  animation-name: scaleIn;
}

.scale.transition.out {
  -webkit-animation-name: scaleOut;
  animation-name: scaleOut;
}

@-webkit-keyframes scaleIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.8);
    transform: scale(.8);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes scaleIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.8);
    transform: scale(.8);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes scaleOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.9);
    transform: scale(.9);
  }
}

@keyframes scaleOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.9);
    transform: scale(.9);
  }
}

.transition.fly {
  -webkit-animation-duration: .6s;
  animation-duration: .6s;
  transition-timing-function: cubic-bezier(.215,.61,.355,1);
}

.transition.fly.in {
  -webkit-animation-name: flyIn;
  animation-name: flyIn;
}

.transition[class*="fly up"].in {
  -webkit-animation-name: flyInUp;
  animation-name: flyInUp;
}

.transition[class*="fly down"].in {
  -webkit-animation-name: flyInDown;
  animation-name: flyInDown;
}

.transition[class*="fly left"].in {
  -webkit-animation-name: flyInLeft;
  animation-name: flyInLeft;
}

.transition[class*="fly right"].in {
  -webkit-animation-name: flyInRight;
  animation-name: flyInRight;
}

.transition.fly.out {
  -webkit-animation-name: flyOut;
  animation-name: flyOut;
}

.transition[class*="fly up"].out {
  -webkit-animation-name: flyOutUp;
  animation-name: flyOutUp;
}

.transition[class*="fly down"].out {
  -webkit-animation-name: flyOutDown;
  animation-name: flyOutDown;
}

.transition[class*="fly left"].out {
  -webkit-animation-name: flyOutLeft;
  animation-name: flyOutLeft;
}

.transition[class*="fly right"].out {
  -webkit-animation-name: flyOutRight;
  animation-name: flyOutRight;
}

@-webkit-keyframes flyIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3,.3,.3);
    transform: scale3d(.3,.3,.3);
  }

  20% {
    -webkit-transform: scale3d(1.1,1.1,1.1);
    transform: scale3d(1.1,1.1,1.1);
  }

  40% {
    -webkit-transform: scale3d(.9,.9,.9);
    transform: scale3d(.9,.9,.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03,1.03,1.03);
    transform: scale3d(1.03,1.03,1.03);
  }

  80% {
    -webkit-transform: scale3d(.97,.97,.97);
    transform: scale3d(.97,.97,.97);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale3d(1,1,1);
    transform: scale3d(1,1,1);
  }
}

@keyframes flyIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3,.3,.3);
    transform: scale3d(.3,.3,.3);
  }

  20% {
    -webkit-transform: scale3d(1.1,1.1,1.1);
    transform: scale3d(1.1,1.1,1.1);
  }

  40% {
    -webkit-transform: scale3d(.9,.9,.9);
    transform: scale3d(.9,.9,.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03,1.03,1.03);
    transform: scale3d(1.03,1.03,1.03);
  }

  80% {
    -webkit-transform: scale3d(.97,.97,.97);
    transform: scale3d(.97,.97,.97);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale3d(1,1,1);
    transform: scale3d(1,1,1);
  }
}

@-webkit-keyframes flyInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0,1500px,0);
    transform: translate3d(0,1500px,0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0,-20px,0);
    transform: translate3d(0,-20px,0);
  }

  75% {
    -webkit-transform: translate3d(0,10px,0);
    transform: translate3d(0,10px,0);
  }

  90% {
    -webkit-transform: translate3d(0,-5px,0);
    transform: translate3d(0,-5px,0);
  }

  100% {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

@keyframes flyInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0,1500px,0);
    transform: translate3d(0,1500px,0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0,-20px,0);
    transform: translate3d(0,-20px,0);
  }

  75% {
    -webkit-transform: translate3d(0,10px,0);
    transform: translate3d(0,10px,0);
  }

  90% {
    -webkit-transform: translate3d(0,-5px,0);
    transform: translate3d(0,-5px,0);
  }

  100% {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

@-webkit-keyframes flyInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0,-1500px,0);
    transform: translate3d(0,-1500px,0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0,25px,0);
    transform: translate3d(0,25px,0);
  }

  75% {
    -webkit-transform: translate3d(0,-10px,0);
    transform: translate3d(0,-10px,0);
  }

  90% {
    -webkit-transform: translate3d(0,5px,0);
    transform: translate3d(0,5px,0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes flyInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0,-1500px,0);
    transform: translate3d(0,-1500px,0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0,25px,0);
    transform: translate3d(0,25px,0);
  }

  75% {
    -webkit-transform: translate3d(0,-10px,0);
    transform: translate3d(0,-10px,0);
  }

  90% {
    -webkit-transform: translate3d(0,5px,0);
    transform: translate3d(0,5px,0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@-webkit-keyframes flyInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(1500px,0,0);
    transform: translate3d(1500px,0,0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px,0,0);
    transform: translate3d(-25px,0,0);
  }

  75% {
    -webkit-transform: translate3d(10px,0,0);
    transform: translate3d(10px,0,0);
  }

  90% {
    -webkit-transform: translate3d(-5px,0,0);
    transform: translate3d(-5px,0,0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes flyInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(1500px,0,0);
    transform: translate3d(1500px,0,0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px,0,0);
    transform: translate3d(-25px,0,0);
  }

  75% {
    -webkit-transform: translate3d(10px,0,0);
    transform: translate3d(10px,0,0);
  }

  90% {
    -webkit-transform: translate3d(-5px,0,0);
    transform: translate3d(-5px,0,0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@-webkit-keyframes flyInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-1500px,0,0);
    transform: translate3d(-1500px,0,0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px,0,0);
    transform: translate3d(25px,0,0);
  }

  75% {
    -webkit-transform: translate3d(-10px,0,0);
    transform: translate3d(-10px,0,0);
  }

  90% {
    -webkit-transform: translate3d(5px,0,0);
    transform: translate3d(5px,0,0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes flyInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-1500px,0,0);
    transform: translate3d(-1500px,0,0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px,0,0);
    transform: translate3d(25px,0,0);
  }

  75% {
    -webkit-transform: translate3d(-10px,0,0);
    transform: translate3d(-10px,0,0);
  }

  90% {
    -webkit-transform: translate3d(5px,0,0);
    transform: translate3d(5px,0,0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@-webkit-keyframes flyOut {
  20% {
    -webkit-transform: scale3d(.9,.9,.9);
    transform: scale3d(.9,.9,.9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1,1.1,1.1);
    transform: scale3d(1.1,1.1,1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.3,.3,.3);
    transform: scale3d(.3,.3,.3);
  }
}

@keyframes flyOut {
  20% {
    -webkit-transform: scale3d(.9,.9,.9);
    transform: scale3d(.9,.9,.9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1,1.1,1.1);
    transform: scale3d(1.1,1.1,1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.3,.3,.3);
    transform: scale3d(.3,.3,.3);
  }
}

@-webkit-keyframes flyOutUp {
  20% {
    -webkit-transform: translate3d(0,10px,0);
    transform: translate3d(0,10px,0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0,-20px,0);
    transform: translate3d(0,-20px,0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0,2000px,0);
    transform: translate3d(0,2000px,0);
  }
}

@keyframes flyOutUp {
  20% {
    -webkit-transform: translate3d(0,10px,0);
    transform: translate3d(0,10px,0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0,-20px,0);
    transform: translate3d(0,-20px,0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0,2000px,0);
    transform: translate3d(0,2000px,0);
  }
}

@-webkit-keyframes flyOutDown {
  20% {
    -webkit-transform: translate3d(0,-10px,0);
    transform: translate3d(0,-10px,0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0,20px,0);
    transform: translate3d(0,20px,0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0,-2000px,0);
    transform: translate3d(0,-2000px,0);
  }
}

@keyframes flyOutDown {
  20% {
    -webkit-transform: translate3d(0,-10px,0);
    transform: translate3d(0,-10px,0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0,20px,0);
    transform: translate3d(0,20px,0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0,-2000px,0);
    transform: translate3d(0,-2000px,0);
  }
}

@-webkit-keyframes flyOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px,0,0);
    transform: translate3d(20px,0,0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px,0,0);
    transform: translate3d(-2000px,0,0);
  }
}

@keyframes flyOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px,0,0);
    transform: translate3d(20px,0,0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px,0,0);
    transform: translate3d(-2000px,0,0);
  }
}

@-webkit-keyframes flyOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px,0,0);
    transform: translate3d(-20px,0,0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px,0,0);
    transform: translate3d(2000px,0,0);
  }
}

@keyframes flyOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px,0,0);
    transform: translate3d(-20px,0,0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px,0,0);
    transform: translate3d(2000px,0,0);
  }
}

.transition.slide.in,
.transition[class*="slide down"].in {
  -webkit-animation-name: slideInY;
  animation-name: slideInY;
  -webkit-transform-origin: top center;
  transform-origin: top center;
}

.transition[class*="slide up"].in {
  -webkit-animation-name: slideInY;
  animation-name: slideInY;
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
}

.transition[class*="slide left"].in {
  -webkit-animation-name: slideInX;
  animation-name: slideInX;
  -webkit-transform-origin: center right;
  transform-origin: center right;
}

.transition[class*="slide right"].in {
  -webkit-animation-name: slideInX;
  animation-name: slideInX;
  -webkit-transform-origin: center left;
  transform-origin: center left;
}

.transition.slide.out,
.transition[class*="slide down"].out {
  -webkit-animation-name: slideOutY;
  animation-name: slideOutY;
  -webkit-transform-origin: top center;
  transform-origin: top center;
}

.transition[class*="slide up"].out {
  -webkit-animation-name: slideOutY;
  animation-name: slideOutY;
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
}

.transition[class*="slide left"].out {
  -webkit-animation-name: slideOutX;
  animation-name: slideOutX;
  -webkit-transform-origin: center right;
  transform-origin: center right;
}

.transition[class*="slide right"].out {
  -webkit-animation-name: slideOutX;
  animation-name: slideOutX;
  -webkit-transform-origin: center left;
  transform-origin: center left;
}

@-webkit-keyframes slideInY {
  0% {
    opacity: 0;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }

  100% {
    opacity: 1;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
}

@keyframes slideInY {
  0% {
    opacity: 0;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }

  100% {
    opacity: 1;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
}

@-webkit-keyframes slideInX {
  0% {
    opacity: 0;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }

  100% {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

@keyframes slideInX {
  0% {
    opacity: 0;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }

  100% {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

@-webkit-keyframes slideOutY {
  0% {
    opacity: 1;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }
}

@keyframes slideOutY {
  0% {
    opacity: 1;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }
}

@-webkit-keyframes slideOutX {
  0% {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
}

@keyframes slideOutX {
  0% {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
}

.transition.swing {
  -webkit-animation-duration: .8s;
  animation-duration: .8s;
}

.transition[class*="swing down"].in {
  -webkit-animation-name: swingInX;
  animation-name: swingInX;
  -webkit-transform-origin: top center;
  transform-origin: top center;
}

.transition[class*="swing up"].in {
  -webkit-animation-name: swingInX;
  animation-name: swingInX;
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
}

.transition[class*="swing left"].in {
  -webkit-animation-name: swingInY;
  animation-name: swingInY;
  -webkit-transform-origin: center right;
  transform-origin: center right;
}

.transition[class*="swing right"].in {
  -webkit-animation-name: swingInY;
  animation-name: swingInY;
  -webkit-transform-origin: center left;
  transform-origin: center left;
}

.transition.swing.out,
.transition[class*="swing down"].out {
  -webkit-animation-name: swingOutX;
  animation-name: swingOutX;
  -webkit-transform-origin: top center;
  transform-origin: top center;
}

.transition[class*="swing up"].out {
  -webkit-animation-name: swingOutX;
  animation-name: swingOutX;
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
}

.transition[class*="swing left"].out {
  -webkit-animation-name: swingOutY;
  animation-name: swingOutY;
  -webkit-transform-origin: center right;
  transform-origin: center right;
}

.transition[class*="swing right"].out {
  -webkit-animation-name: swingOutY;
  animation-name: swingOutY;
  -webkit-transform-origin: center left;
  transform-origin: center left;
}

@-webkit-keyframes swingInX {
  0% {
    -webkit-transform: perspective(1000px) rotateX(90deg);
    transform: perspective(1000px) rotateX(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(1000px) rotateX(-30deg);
    transform: perspective(1000px) rotateX(-30deg);
    opacity: 1;
  }

  60% {
    -webkit-transform: perspective(1000px) rotateX(15deg);
    transform: perspective(1000px) rotateX(15deg);
  }

  80% {
    -webkit-transform: perspective(1000px) rotateX(-7.5deg);
    transform: perspective(1000px) rotateX(-7.5deg);
  }

  100% {
    -webkit-transform: perspective(1000px) rotateX(0);
    transform: perspective(1000px) rotateX(0);
  }
}

@keyframes swingInX {
  0% {
    -webkit-transform: perspective(1000px) rotateX(90deg);
    transform: perspective(1000px) rotateX(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(1000px) rotateX(-30deg);
    transform: perspective(1000px) rotateX(-30deg);
    opacity: 1;
  }

  60% {
    -webkit-transform: perspective(1000px) rotateX(15deg);
    transform: perspective(1000px) rotateX(15deg);
  }

  80% {
    -webkit-transform: perspective(1000px) rotateX(-7.5deg);
    transform: perspective(1000px) rotateX(-7.5deg);
  }

  100% {
    -webkit-transform: perspective(1000px) rotateX(0);
    transform: perspective(1000px) rotateX(0);
  }
}

@-webkit-keyframes swingInY {
  0% {
    -webkit-transform: perspective(1000px) rotateY(-90deg);
    transform: perspective(1000px) rotateY(-90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(1000px) rotateY(30deg);
    transform: perspective(1000px) rotateY(30deg);
    opacity: 1;
  }

  60% {
    -webkit-transform: perspective(1000px) rotateY(-17.5deg);
    transform: perspective(1000px) rotateY(-17.5deg);
  }

  80% {
    -webkit-transform: perspective(1000px) rotateY(7.5deg);
    transform: perspective(1000px) rotateY(7.5deg);
  }

  100% {
    -webkit-transform: perspective(1000px) rotateY(0);
    transform: perspective(1000px) rotateY(0);
  }
}

@keyframes swingInY {
  0% {
    -webkit-transform: perspective(1000px) rotateY(-90deg);
    transform: perspective(1000px) rotateY(-90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(1000px) rotateY(30deg);
    transform: perspective(1000px) rotateY(30deg);
    opacity: 1;
  }

  60% {
    -webkit-transform: perspective(1000px) rotateY(-17.5deg);
    transform: perspective(1000px) rotateY(-17.5deg);
  }

  80% {
    -webkit-transform: perspective(1000px) rotateY(7.5deg);
    transform: perspective(1000px) rotateY(7.5deg);
  }

  100% {
    -webkit-transform: perspective(1000px) rotateY(0);
    transform: perspective(1000px) rotateY(0);
  }
}

@-webkit-keyframes swingOutX {
  0% {
    -webkit-transform: perspective(1000px) rotateX(0);
    transform: perspective(1000px) rotateX(0);
  }

  40% {
    -webkit-transform: perspective(1000px) rotateX(-7.5deg);
    transform: perspective(1000px) rotateX(-7.5deg);
  }

  60% {
    -webkit-transform: perspective(1000px) rotateX(17.5deg);
    transform: perspective(1000px) rotateX(17.5deg);
  }

  80% {
    -webkit-transform: perspective(1000px) rotateX(-30deg);
    transform: perspective(1000px) rotateX(-30deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(1000px) rotateX(90deg);
    transform: perspective(1000px) rotateX(90deg);
    opacity: 0;
  }
}

@keyframes swingOutX {
  0% {
    -webkit-transform: perspective(1000px) rotateX(0);
    transform: perspective(1000px) rotateX(0);
  }

  40% {
    -webkit-transform: perspective(1000px) rotateX(-7.5deg);
    transform: perspective(1000px) rotateX(-7.5deg);
  }

  60% {
    -webkit-transform: perspective(1000px) rotateX(17.5deg);
    transform: perspective(1000px) rotateX(17.5deg);
  }

  80% {
    -webkit-transform: perspective(1000px) rotateX(-30deg);
    transform: perspective(1000px) rotateX(-30deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(1000px) rotateX(90deg);
    transform: perspective(1000px) rotateX(90deg);
    opacity: 0;
  }
}

@-webkit-keyframes swingOutY {
  0% {
    -webkit-transform: perspective(1000px) rotateY(0);
    transform: perspective(1000px) rotateY(0);
  }

  40% {
    -webkit-transform: perspective(1000px) rotateY(7.5deg);
    transform: perspective(1000px) rotateY(7.5deg);
  }

  60% {
    -webkit-transform: perspective(1000px) rotateY(-10deg);
    transform: perspective(1000px) rotateY(-10deg);
  }

  80% {
    -webkit-transform: perspective(1000px) rotateY(30deg);
    transform: perspective(1000px) rotateY(30deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(1000px) rotateY(-90deg);
    transform: perspective(1000px) rotateY(-90deg);
    opacity: 0;
  }
}

@keyframes swingOutY {
  0% {
    -webkit-transform: perspective(1000px) rotateY(0);
    transform: perspective(1000px) rotateY(0);
  }

  40% {
    -webkit-transform: perspective(1000px) rotateY(7.5deg);
    transform: perspective(1000px) rotateY(7.5deg);
  }

  60% {
    -webkit-transform: perspective(1000px) rotateY(-10deg);
    transform: perspective(1000px) rotateY(-10deg);
  }

  80% {
    -webkit-transform: perspective(1000px) rotateY(30deg);
    transform: perspective(1000px) rotateY(30deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(1000px) rotateY(-90deg);
    transform: perspective(1000px) rotateY(-90deg);
    opacity: 0;
  }
}

.transition.zoom.in {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

.transition.zoom.out {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 1;
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes zoomIn {
  0% {
    opacity: 1;
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}

@keyframes zoomOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}

.flash.transition {
  -webkit-animation-duration: 750ms;
  animation-duration: 750ms;
  -webkit-animation-name: flash;
  animation-name: flash;
}

.shake.transition {
  -webkit-animation-duration: 750ms;
  animation-duration: 750ms;
  -webkit-animation-name: shake;
  animation-name: shake;
}

.bounce.transition {
  -webkit-animation-duration: 750ms;
  animation-duration: 750ms;
  -webkit-animation-name: bounce;
  animation-name: bounce;
}

.tada.transition {
  -webkit-animation-duration: 750ms;
  animation-duration: 750ms;
  -webkit-animation-name: tada;
  animation-name: tada;
}

.pulse.transition {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

.jiggle.transition {
  -webkit-animation-duration: 750ms;
  animation-duration: 750ms;
  -webkit-animation-name: jiggle;
  animation-name: jiggle;
}

.transition.glow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: cubic-bezier(.19,1,.22,1);
  animation-timing-function: cubic-bezier(.19,1,.22,1);
  -webkit-animation-name: glow;
  animation-name: glow;
}

@-webkit-keyframes flash {
  0%, 100%, 50% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  0%, 100%, 50% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}

@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}

@-webkit-keyframes bounce {
  0%, 100%, 20%, 50%, 80% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@keyframes bounce {
  0%, 100%, 20%, 50%, 80% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  10%, 20% {
    -webkit-transform: scale(.9) rotate(-3deg);
    transform: scale(.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  10%, 20% {
    -webkit-transform: scale(.9) rotate(-3deg);
    transform: scale(.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

@-webkit-keyframes pulse {
  0%, 100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  50% {
    -webkit-transform: scale(.9);
    transform: scale(.9);
    opacity: .7;
  }
}

@keyframes pulse {
  0%, 100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  50% {
    -webkit-transform: scale(.9);
    transform: scale(.9);
    opacity: .7;
  }
}

@-webkit-keyframes jiggle {
  0%, 100% {
    -webkit-transform: scale3d(1,1,1);
    transform: scale3d(1,1,1);
  }

  30% {
    -webkit-transform: scale3d(1.25,.75,1);
    transform: scale3d(1.25,.75,1);
  }

  40% {
    -webkit-transform: scale3d(.75,1.25,1);
    transform: scale3d(.75,1.25,1);
  }

  50% {
    -webkit-transform: scale3d(1.15,.85,1);
    transform: scale3d(1.15,.85,1);
  }

  65% {
    -webkit-transform: scale3d(.95,1.05,1);
    transform: scale3d(.95,1.05,1);
  }

  75% {
    -webkit-transform: scale3d(1.05,.95,1);
    transform: scale3d(1.05,.95,1);
  }
}

@keyframes jiggle {
  0%, 100% {
    -webkit-transform: scale3d(1,1,1);
    transform: scale3d(1,1,1);
  }

  30% {
    -webkit-transform: scale3d(1.25,.75,1);
    transform: scale3d(1.25,.75,1);
  }

  40% {
    -webkit-transform: scale3d(.75,1.25,1);
    transform: scale3d(.75,1.25,1);
  }

  50% {
    -webkit-transform: scale3d(1.15,.85,1);
    transform: scale3d(1.15,.85,1);
  }

  65% {
    -webkit-transform: scale3d(.95,1.05,1);
    transform: scale3d(.95,1.05,1);
  }

  75% {
    -webkit-transform: scale3d(1.05,.95,1);
    transform: scale3d(1.05,.95,1);
  }
}

@-webkit-keyframes glow {
  0%, 100% {
    background-color: #FCFCFD;
  }

  30% {
    background-color: #FFF6CD;
  }
}

@keyframes glow {
  0%, 100% {
    background-color: #FCFCFD;
  }

  30% {
    background-color: #FFF6CD;
  }
}
.slick-list,
.slick-slider,
.slick-track {
  position: relative;
  display: block;
}

.slick-loading .slick-slide,
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slider {
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: 0;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-list,
.slick-slider .slick-track {
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}

.slick-track {
  left: 0;
  top: 0;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:after,
.slick-track:before {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}
.clear:after,
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

progress,
sub,
sup {
  vertical-align: baseline;
}

button,
hr,
input {
  overflow: visible;
}

[type=checkbox],
[type=radio],
legend {
  box-sizing: border-box;
  padding: 0;
}

.off-screen {
  position: absolute;
  left: -5000em;
  clip: rect(0 0 0 0);
}

.on-screen {
  position: static;
  left: auto;
  clip: auto;
}

.unfloat {
  float: none;
  width: auto;
}

.clear:after {
  content: "";
  height: 0;
  clear: both;
  visibility: hidden;
}

.internet-explorer .clear {
  zoom: 1;
}

/*! normalize.css v4.1.1 | MIT License | github.com/necolas/normalize.css */

html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

audio,
canvas,
progress,
video {
  display: inline-block;
}

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

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

a:active,
a:hover {
  outline-width: 0;
}

abbr[title] {
  border-bottom: none;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
}

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

small {
  font-size: 80%;
}

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

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

img {
  border-style: none;
}

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

code,
kbd,
pre,
samp {
  font-family: monospace,monospace;
  font-size: 1em;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
}

button,
input,
select,
textarea {
  font: inherit;
  margin: 0;
}

optgroup {
  font-weight: 700;
}

button,
input {
  line-height: normal;
}

button,
select {
  text-transform: none;
}

[type=reset],
[type=submit],
button,
html [type=button] {
  -webkit-appearance: button;
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring,
button:-moz-focusring {
  outline: ButtonText dotted 1px;
}

fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: .35em .625em .75em;
}

legend {
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: .54;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

iframe {
  border: 0;
}

@-webkit-keyframes pop {
  0%, 100%, 20%, 40%, 60%, 80% {
    -webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
  }

  0%, 40% {
    -webkit-transform: scale3d(.9,.9,.9);
  }

  20% {
    -webkit-transform: scale3d(1.1,1.1,1.1);
  }

  60% {
    -webkit-transform: scale3d(1.03,1.03,1.03);
  }

  80% {
    -webkit-transform: scale3d(.97,.97,.97);
  }

  100% {
    -webkit-transform: scale3d(1,1,1);
  }
}

@keyframes pop {
  0%, 100%, 20%, 40%, 60%, 80% {
    transition-timing-function: cubic-bezier(.215,.61,.355,1);
  }

  0%, 40% {
    -webkit-transform: scale3d(.9,.9,.9);
    transform: scale3d(.9,.9,.9);
  }

  20% {
    -webkit-transform: scale3d(1.1,1.1,1.1);
    transform: scale3d(1.1,1.1,1.1);
  }

  60% {
    -webkit-transform: scale3d(1.03,1.03,1.03);
    transform: scale3d(1.03,1.03,1.03);
  }

  80% {
    -webkit-transform: scale3d(.97,.97,.97);
    transform: scale3d(.97,.97,.97);
  }

  100% {
    -webkit-transform: scale3d(1,1,1);
    transform: scale3d(1,1,1);
  }
}

@-webkit-keyframes bounce {
  0%, 100%, 20%, 53%, 80% {
    transition-timing-function: cubic-bezier(.215,.61,.355,1);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    transition-timing-function: cubic-bezier(.755,.05,.855,.06);
    -webkit-transform: translate3d(0,-20px,0);
    transform: translate3d(0,-30px,0);
  }

  70% {
    transition-timing-function: cubic-bezier(.755,.05,.855,.06);
    -webkit-transform: translate3d(0,-10px,0);
    transform: translate3d(0,-10px,0);
  }

  90% {
    -webkit-transform: translate3d(0,-4px,0);
    transform: translate3d(0,-4px,0);
  }
}

@keyframes bounce {
  0%, 100%, 20%, 53%, 80% {
    transition-timing-function: cubic-bezier(.215,.61,.355,1);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    transition-timing-function: cubic-bezier(.755,.05,.855,.06);
    -webkit-transform: translate3d(0,-30px,0);
    transform: translate3d(0,-30px,0);
  }

  70% {
    transition-timing-function: cubic-bezier(.755,.05,.855,.06);
    -webkit-transform: translate3d(0,-10px,0);
    transform: translate3d(0,-10px,0);
  }

  90% {
    -webkit-transform: translate3d(0,-4px,0);
    transform: translate3d(0,-4px,0);
  }
}

@-webkit-keyframes nudge {
  0%, 100%, 20%, 53%, 80% {
    transition-timing-function: cubic-bezier(.215,.61,.355,1);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    transition-timing-function: cubic-bezier(.755,.05,.855,.06);
    -webkit-transform: translate3d(0,-6px,0);
    transform: translate3d(0,-6px,0);
  }

  70% {
    transition-timing-function: cubic-bezier(.755,.05,.855,.06);
    -webkit-transform: translate3d(0,-8px,0);
    transform: translate3d(0,-8px,0);
  }

  90% {
    -webkit-transform: translate3d(0,-4px,0);
    transform: translate3d(0,-4px,0);
  }
}

@keyframes nudge {
  0%, 100%, 20%, 53%, 80% {
    transition-timing-function: cubic-bezier(.215,.61,.355,1);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    transition-timing-function: cubic-bezier(.755,.05,.855,.06);
    -webkit-transform: translate3d(0,-6px,0);
    transform: translate3d(0,-6px,0);
  }

  70% {
    transition-timing-function: cubic-bezier(.755,.05,.855,.06);
    -webkit-transform: translate3d(0,-8px,0);
    transform: translate3d(0,-8px,0);
  }

  90% {
    -webkit-transform: translate3d(0,-4px,0);
    transform: translate3d(0,-4px,0);
  }
}

@font-face {
  font-family: Rockwell-Bold;
  src: url("/tenderstem/assets/font/2D2A11_0_0.eot");
  src: url("/tenderstem/assets/font/2D2A11_0_0.eot?#iefix") format('embedded-opentype'),url("/tenderstem/assets/font/2D2A11_0_0.woff") format('woff'),url("/tenderstem/assets/font/2D2A11_0_0.ttf") format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: Rockwell;
  src: url("/tenderstem/assets/font/2D2A11_1_0.eot");
  src: url("/tenderstem/assets/font/2D2A11_1_0.eot?#iefix") format('embedded-opentype'),url("/tenderstem/assets/font/2D2A11_1_0.woff") format('woff'),url("/tenderstem/assets/font/2D2A11_1_0.ttf") format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: LoveYaLikeASisterSolid;
  src: url("/tenderstem/assets/font/2D2A11_2_0.eot");
  src: url("/tenderstem/assets/font/2D2A11_2_0.eot?#iefix") format('embedded-opentype'),url("/tenderstem/assets/font/2D2A11_2_0.woff") format('woff'),url("/tenderstem/assets/font/2D2A11_2_0.ttf") format('truetype');
  font-weight: 400;
  font-style: normal;
}

@media screen {
  body,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    line-height: 1.4;
    font-weight: 400;
  }

  h1,
  h3,
  h4,
  h5,
  h6 {
    padding: .625rem 0;
  }

  .btn,
  .mod-section.mod-hero a h2:focus,
  .mod-section.mod-hero a h2:hover,
  .modal.subscribe-modal .cancel,
  .row .checkbox label:after,
  .row .field-icon .icon,
  .row .radio label:after,
  .row .ui.dropdown .dropdown.icon:before,
  .row .ui.selection.dropdown .dropdown.icon:before,
  .row.checkbox label:after,
  .row.radio label:after,
  .slick-dots button,
  .toolbar .trigger .bar,
  a {
    transition-property: all;
    transition-duration: .2s;
  }

  .btn,
  a img {
    border: 0;
  }

  .fluid-image img,
  .icon img {
    -ms-interpolation-mode: bicubic;
  }

  #footer .satelite,
  .icon,
  .icon-large,
  .toolbar li,
  figure {
    text-align: center;
  }

  .icon,
  .icon-circle,
  body {
    position: relative;
  }

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

  body {
    background: #fff;
    font-family: Rockwell,georgia,times,serif;
    font-size: 1rem;
    color: #464646;
    -webkit-tap-highlight-color: #66a03a;
  }

  .ui.popup .header,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: LoveYaLikeASisterSolid,Arial,Helvetica,sans-serif;
  }

  body.navigation-open {
    height: 100vh;
    overflow: hidden;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: #66a03a;
    margin: 0;
  }

  #footer .satelite li a,
  legend {
    font-family: Arial,Helvetica,sans-serif;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 2rem;
    padding: .625rem 0 1.25rem;
  }

  h3 {
    font-size: 1.625rem;
  }

  h4,
  h5,
  h6 {
    font-size: 1.5rem;
  }

  p {
    margin: 0 auto 1.25rem;
    max-width: 41.25rem;
  }

  .fluid-image img,
  .fluid-video,
  figure img {
    max-width: 100%;
    height: auto;
  }

  sup {
    font-size: 80%;
    top: -.3em;
  }

  a {
    color: #66a03a;
    text-decoration: none;
  }

  a:focus,
  a:hover {
    color: #3c3c3c;
  }

  a:active {
    color: #a0a0a0;
  }

  ol,
  ul {
    margin: 0;
    padding: 0 0 1.25rem 2.5rem;
  }

  ol li,
  ul li {
    margin: 0 0 .625rem;
  }

  nav ol,
  nav ul {
    list-style: none;
    padding: 0;
  }

  .fluid-video {
    margin: 0 0 1.25rem;
  }

  .js-disabled .lazy {
    display: none!important;
  }

  figure {
    margin: 1.25rem auto;
    max-width: 100%!important;
  }

  .icon {
    color: currentColor;
    display: block;
    height: 1.625rem;
    width: 1.625rem;
    z-index: 0;
  }

  .icon img,
  .icon svg {
    position: absolute;
    top: 0;
    left: 0;
  }

  .icon svg {
    fill: currentColor;
    width: 100%;
    height: 100%;
  }

  .icon img {
    height: 100%;
    width: auto;
    margin: 0 auto;
  }

  .icon-circle {
    padding: 0 0 1.875rem;
  }

  .icon-circle div {
    background: #66a03a;
    padding: 1rem;
    position: absolute;
    top: 0;
    left: 50%;
    margin: -2.25rem 0 0 -2.25rem;
    border-radius: 50%;
  }

  .icon-circle div .icon {
    color: #fff;
    width: 2.5rem;
    height: 2.5rem;
  }

  .icon-large {
    margin: 0 auto 1.25rem;
  }

  .icon-large .icon {
    color: #66a03a;
    width: 6.25rem;
    height: 6.25rem;
    margin: -1.25rem auto 0;
  }

  #wrapper {
    font-size: 1.25rem;
    padding-bottom: 4.75rem;
  }

  .container {
    max-width: 70rem;
    padding: 0 .625rem;
    margin: 0 auto;
  }

  #skip {
    position: relative;
  }

  #skip a {
    position: absolute;
    left: -5000em;
    clip: rect(0 0 0 0);
  }

  #skip a:focus {
    background: #f5c32c;
    padding: .625rem;
    text-decoration: underline;
    z-index: 1000;
    top: 0;
    left: 0;
    clip: auto;
  }

  #header {
    left: 0;
    z-index: 80;
    width: 100%;
  }

  #header>.container {
    max-width: 80rem;
    padding-top: .9375rem;
    padding-bottom: .9375rem;
    position: relative;
  }

  #header .logo {
    display: block;
    background: url("/tenderstem/assets/img/_global/tenderstem-logo-2x.png") no-repeat;
    background-size: contain;
    width: 11.25rem;
    height: 4.5rem;
    margin: 0 auto;
  }

  #header .breadcrumbs {
    padding: .625rem 0;
    background: rgba(255,255,255,.3);
    position: relative;
    z-index: 2;
  }

  #header .breadcrumbs .container {
    max-width: 75rem;
  }

  #header .breadcrumbs .crumbs {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: nowrap;
    clear: both;
    overflow: auto;
  }

  #header .breadcrumbs .crumbs li {
    font-size: .75rem;
    color: #66a03a;
    background: #fff;
    padding: .125rem .25rem;
    margin: 0;
    align-items: center;
    flex-shrink: 0;
  }

  .btn.btn-icon,
  .toolbar ul {
    justify-content: space-between;
  }

  #header .breadcrumbs .crumbs li a {
    color: #a0a0a0;
  }

  #header .breadcrumbs .crumbs li a:focus,
  #header .breadcrumbs .crumbs li a:hover {
    color: #66a03a;
  }

  #header .breadcrumbs .crumbs li .icon {
    display: inline-block;
    color: #a0a0a0;
    margin: 0 0 0 .3125rem;
    width: .625rem;
    height: .75rem;
    position: relative;
    top: .125rem;
  }

  .toolbar {
    background: url("/tenderstem/assets/img/_global/paper.jpg") #ebe8e4;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 120;
  }

  .mod-slide,
  .row .field,
  .row .field-icon,
  .toolbar .trigger .toggle {
    position: relative;
  }

  .toolbar ul {
    display: flex;
  }

  .toolbar li {
    width: 25%;
    margin: 0;
  }

  .toolbar .trigger .toggle,
  .toolbar a .icon {
    height: 2.125rem;
    margin: 0 auto .5rem;
    width: 2.125rem;
  }

  .toolbar a {
    font-size: .875rem;
    font-weight: 500;
    line-height: 1;
    display: block;
    padding: .625rem;
    cursor: pointer;
  }

  .toolbar a:focus,
  .toolbar a:hover {
    color: #3c3c3c;
  }

  .toolbar .trigger .toggle {
    display: block;
  }

  .toolbar .trigger .bar {
    background: #66a03a;
    display: block;
    width: 2.125rem;
    height: .3125rem;
    position: absolute;
    left: 0;
  }

  .divider:before,
  .slick-prev {
    left: .625rem;
  }

  .toolbar .trigger .bar-one {
    top: .3125rem;
  }

  .toolbar .trigger .bar-two {
    top: .9375rem;
  }

  .toolbar .trigger .bar-three {
    top: 1.5625rem;
  }

  .toolbar .trigger:focus:not(.open),
  .toolbar .trigger:hover:not(.open) {
    color: #3c3c3c;
    cursor: pointer;
  }

  .toolbar .trigger:focus:not(.open) .bar,
  .toolbar .trigger:hover:not(.open) .bar {
    background: #3c3c3c;
  }

  .toolbar .trigger.open {
    background: url("/tenderstem/assets/img/_global/paper.jpg") #fff;
    color: #a0a0a0;
  }

  .toolbar .trigger.open .bar-one {
    background: #a0a0a0;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    top: .9375rem;
  }

  .toolbar .trigger.open .bar-two {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  .toolbar .trigger.open .bar-three {
    background: #a0a0a0;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    top: .9375rem;
  }

  .toolbar .trigger.open:focus,
  .toolbar .trigger.open:hover {
    color: #3c3c3c;
  }

  .toolbar .trigger.open:focus .bar,
  .toolbar .trigger.open:hover .bar {
    background: #3c3c3c;
  }

  #footer {
    background: #f0f0f0;
    padding: 0 0 1.25rem;
  }

  #footer .container {
    max-width: 66.25rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  #footer .satelite {
    padding: 0;
    order: 2;
    width: 100%;
  }

  #footer .satelite li {
    display: inline;
    padding: 0 .625rem;
  }

  #footer .satelite li a {
    font-size: .75rem;
    line-height: 1;
  }

  #footer .social {
    list-style: none;
    padding: .625rem 0;
    display: flex;
  }

  #footer .social li {
    margin: 0 .375rem;
  }

  #footer .social a {
    background: #66a03a;
    display: block;
    padding: .5rem;
    border-radius: 50%;
  }

  #footer .social a .icon {
    color: #fff;
    width: 1.25rem;
    height: 1.25rem;
  }

  #footer .social a.twitter:focus,
  #footer .social a.twitter:hover {
    background-color: #55acee;
  }

  #footer .social a.facebook:focus,
  #footer .social a.facebook:hover {
    background-color: #3b5998;
  }

  #footer .social a.pinterest:focus,
  #footer .social a.pinterest:hover {
    background-color: #cb2027;
  }

  #footer .social a.instagram:focus,
  #footer .social a.instagram:hover {
    background-color: #d93175;
  }

  #footer .footer-logo {
    display: block;
    background: url("/tenderstem/assets/img/_global/adventure-lockup.png") no-repeat;
    width: 11.25rem;
    height: 11.75rem;
    background-size: cover;
    margin: 0 auto;
  }

  .navigation-open #footer {
    background: 0 0;
    padding-top: 1.25rem;
    padding-bottom: 8.75rem;
  }

  .btns {
    text-align: right;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .btn,
  .error-message,
  .mod-builder,
  .mod-panels .panel .copy h4,
  .mod-section,
  .modal.subscribe-modal .content,
  .row .terms {
    text-align: center;
  }

  .btn {
    font-size: 1.5rem;
    background: #66a03a;
    font-family: Rockwell,georgia,times,serif;
    font-weight: 400;
    line-height: 1.2;
    color: #fff;
    padding: 1rem 1.25rem;
    min-width: 16.25rem;
    display: inline-block;
    margin: 0 .625rem .625rem;
    border-radius: .75rem;
  }

  .btn:focus,
  .btn:hover {
    background: #5a8d33;
    color: #fff;
    cursor: pointer;
  }

  .btn:active {
    background: #646464;
  }

  .btn.btn-icon {
    display: flex;
    align-items: center;
    text-align: left;
  }

  .btn.btn-icon .icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: -.25rem;
    margin-left: .3125rem;
  }

  .btn.btn-icon:focus:focus .icon,
  .btn.btn-icon:hover:hover .icon {
    -webkit-animation: pop .6s 1 both;
    animation: pop .6s 1 both;
  }

  .btn-small {
    font-size: 1.25rem;
    padding: .75rem 1.875rem;
    min-width: inherit;
  }

  .btn-teal {
    background: #06a8a5;
    color: #fff;
  }

  .btn-teal:focus,
  .btn-teal:hover {
    background: #323232;
    color: #06a8a5;
  }

  .btn-green {
    background: #66a03a;
    color: #fff;
  }

  .btn-green:focus,
  .btn-green:hover {
    background: #323232;
    color: #66a03a;
  }

  .btn-orange {
    background: #de6808;
    color: #fff;
  }

  .btn-orange:focus,
  .btn-orange:hover {
    background: #323232;
    color: #de6808;
  }

  .btn-brown {
    background: #7f7671;
    color: #fff;
  }

  .btn-brown:focus,
  .btn-brown:hover {
    background: #323232;
    color: #7f7671;
  }

  .btn-yellow {
    background: #f5c32c;
    color: #323232;
  }

  .btn-yellow:focus,
  .btn-yellow:hover {
    background: #323232;
    color: #f5c32c;
  }

  .btn-blue {
    background: #009fe3;
    color: #fff;
  }

  .btn-blue:focus,
  .btn-blue:hover {
    background: #323232;
    color: #009fe3;
  }

  .btn-cream {
    background: #ebe8e4;
    color: #7f7671;
  }

  .btn-cream:focus,
  .btn-cream:hover {
    background: #323232;
    color: #ebe8e4;
  }

  .mod-carousel+.mod-section {
    -webkit-transform: translateY(-.625rem);
    transform: translateY(-.625rem);
    margin-bottom: -.625rem;
  }

  .slick-next,
  .slick-prev {
    background: 0 0;
    color: #fff;
    position: absolute;
    top: 60%;
    display: block;
    padding: .625rem;
    margin-top: -.9375rem;
    z-index: 5;
    border: 0;
    cursor: pointer;
  }

  .slick-next .icon,
  .slick-prev .icon {
    width: .75rem;
    height: 1.25rem;
  }

  .slick-next:focus,
  .slick-next:hover,
  .slick-prev:focus,
  .slick-prev:hover {
    outline: 0;
    color: #66a03a;
    -webkit-animation: pop .6s 1 both;
    animation: pop .6s 1 both;
  }

  .slick-next {
    right: .625rem;
  }

  .slick-disabled {
    color: #a0a0a0;
    cursor: default;
  }

  .slick-disabled:focus,
  .slick-disabled:hover {
    -webkit-animation-name: none;
    animation-name: none;
    color: #a0a0a0;
  }

  .slick-dots {
    list-style: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .slick-dots li {
    margin: 0 .3125rem;
  }

  .slick-dots button {
    background: #b4b4b4;
    display: block;
    color: #fff;
    border: 0;
    width: .9375rem;
    height: .9375rem;
    padding: 0;
    text-indent: -6.25rem;
    overflow: hidden;
    cursor: pointer;
    border-radius: 100%;
  }

  .slick-dots button:active,
  .slick-dots button:focus {
    outline: 0;
  }

  .slick-dots button:focus,
  .slick-dots button:hover {
    background: #000;
  }

  .slick-dots .slick-active button {
    background: #66a03a;
  }

  form {
    padding: 0;
    margin: 0 auto .625rem;
  }

  fieldset {
    border: 0;
    padding: 0;
  }

  legend {
    font-weight: 400;
    font-size: 1.25rem;
    color: #141414;
    margin: 0 0 .625rem;
  }

  input,
  select,
  textarea {
    background: #fff;
    font-size: 1rem;
    color: #141414;
    border: .0625rem solid #a0a0a0;
    padding: .75rem;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    -webkit-appearance: none;
  }

  input::-webkit-input-placeholder,
  select::-webkit-input-placeholder,
  textarea::-webkit-input-placeholder {
    color: #8c8c8c;
  }

  input::-moz-placeholder,
  select::-moz-placeholder,
  textarea::-moz-placeholder {
    color: #8c8c8c;
  }

  input:-ms-input-placeholder,
  select:-ms-input-placeholder,
  textarea:-ms-input-placeholder {
    color: #8c8c8c;
  }

  input[type=search] {
    -webkit-appearance: none;
  }

  .instruction {
    margin: 3.75rem auto;
  }

  .row {
    margin: 0 auto 1.25rem;
    text-align: left;
    max-width: 30rem;
  }

  .row .label,
  .row label {
    padding: .125rem 0;
    margin-bottom: 0;
    display: block;
  }

  .row label:focus,
  .row label:hover {
    color: #141414;
    cursor: pointer;
  }

  .row label:active {
    color: #282828;
  }

  .row .field input,
  .row .field select,
  .row .field textarea {
    width: 100%;
  }

  .row .field-icon input,
  .row .field-icon select,
  .row .field-icon textarea {
    padding-left: 2.1875rem;
  }

  .row .field-icon .icon {
    position: absolute;
    top: .375rem;
    left: .3125rem;
  }

  .row .multiple {
    display: flex;
    flex-direction: column;
  }

  .row .multiple .group {
    display: flex;
  }

  .row .multiple label {
    width: auto;
    float: none;
    text-align: left;
  }

  .row .checkbox label:after,
  .row .checkbox label:before,
  .row .radio label:before,
  .row.checkbox label:after,
  .row.checkbox label:before,
  .row.radio label:before {
    width: 1.25rem;
    height: 1.25rem;
    top: .4375rem;
    content: "";
    display: block;
  }

  .row .multiple input[type=checkbox],
  .row .multiple input[type=radio] {
    margin: .5rem .5rem .5rem 0;
  }

  .row .checkbox input,
  .row.checkbox input {
    position: absolute;
    left: -5000em;
    clip: rect(0 0 0 0);
  }

  .row .checkbox label,
  .row.checkbox label {
    position: relative;
    padding-left: 1.875rem;
  }

  .row .checkbox label:before,
  .row.checkbox label:before {
    background: #dedad0;
    border: .0625rem solid #dedad0;
    border-radius: .125rem;
    position: absolute;
    left: 0;
  }

  .row .checkbox label:after,
  .row.checkbox label:after {
    background: url("/tenderstem/assets/svg/_global/check.svg") 50% 50% no-repeat;
    position: absolute;
    left: 0;
    opacity: 0;
  }

  .row .checkbox input[type=checkbox]:checked+label:before,
  .row.checkbox input[type=checkbox]:checked+label:before {
    background: #7f7671;
    border-color: #7f7671;
  }

  .row .checkbox input[type=checkbox]:checked+label:after,
  .row.checkbox input[type=checkbox]:checked+label:after {
    opacity: 1;
  }

  .row .checkbox input[type=checkbox]:disabled+label:after,
  .row.checkbox input[type=checkbox]:disabled+label:after {
    opacity: .5;
  }

  .row .radio input,
  .row.radio input {
    position: absolute;
    left: -5000em;
    clip: rect(0 0 0 0);
  }

  .row .radio label,
  .row.radio label {
    position: relative;
    padding-left: 1.875rem;
  }

  .row .radio label:before,
  .row.radio label:before {
    background: #dedad0;
    border: .0625rem solid #dedad0;
    border-radius: 50%;
    position: absolute;
    left: 0;
  }

  .row .radio label:after,
  .row.radio label:after {
    content: "";
    background: #fff;
    display: block;
    width: .5rem;
    height: .5rem;
    position: absolute;
    top: .8125rem;
    left: .375rem;
    opacity: 0;
    border-radius: 50%;
  }

  .mod-additional-recipes .recipe a:focus .info,
  .mod-additional-recipes .recipe a:hover .info,
  .row .radio input[type=radio]:checked+label:after,
  .row.radio input[type=radio]:checked+label:after {
    opacity: 1;
  }

  .row .radio input[type=radio]:checked+label:before,
  .row.radio input[type=radio]:checked+label:before {
    background: #7f7671;
    border-color: #7f7671;
  }

  .row input[type=range] {
    background: linear-gradient(to left,#c8c8c8 50%,#66a03a 50%) #de6808;
    width: 100%;
    height: .5rem;
    border: 0;
    border-radius: .25rem;
    padding: 0;
    margin: 0 0 .9375rem;
    online: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
  }

  .row input[type=range]::-webkit-slider-thumb {
    background: #fff;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    -webkit-appearance: none;
    z-index: 50;
    transition-property: all;
    transition-duration: .2s;
  }

  .row input[type=range]::-webkit-slider-thumb:active,
  .row input[type=range]::-webkit-slider-thumb:focus,
  .row input[type=range]::-webkit-slider-thumb:hover {
    background: #e6e6e6;
    cursor: pointer;
  }

  .row input[type=range]::-moz-slider-thumb {
    background: #fff;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    -moz-appearance: none;
    transition-property: all;
    transition-duration: .2s;
  }

  .row input[type=range]::-moz-slider-thumb:active,
  .row input[type=range]::-moz-slider-thumb:focus,
  .row input[type=range]::-moz-slider-thumb:hover {
    background: #e6e6e6;
  }

  .row input[type=range]::-ms-thumb {
    background: #fff;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    -ms-appearance: none;
    transition-property: all;
    transition-duration: .2s;
  }

  .row input[type=range]::-ms-thumb:active,
  .row input[type=range]::-ms-thumb:focus,
  .row input[type=range]::-ms-thumb:hover {
    background: #e6e6e6;
  }

  .row input[type=range]::-ms-fill-lower {
    background: #66a03a;
  }

  .row input[type=range]::-ms-fill-upper {
    background: #c8c8c8;
  }

  .row .ui.dropdown,
  .row .ui.selection.dropdown {
    background: #de6808;
    width: 100%;
    border-radius: .75rem;
    min-width: 12.5rem;
    border: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-right: 2.5rem;
  }

  .row .ui.dropdown .dropdown.icon,
  .row .ui.selection.dropdown .dropdown.icon {
    width: 3.125rem;
    height: 100%;
    padding: 0;
    right: 0;
    top: 0;
    margin: 0;
  }

  .row .ui.dropdown .dropdown.icon:before,
  .row .ui.selection.dropdown .dropdown.icon:before {
    background: url("/tenderstem/assets/svg/_common/cevron-down.svg") no-repeat;
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -.375rem -.75rem;
    display: block;
    width: 1.5rem;
    height: .875rem;
  }

  .row .ui.dropdown.active,
  .row .ui.selection.dropdown.active {
    border-color: #dedad0;
  }

  .row .ui.dropdown.active .dropdown.icon:before,
  .row .ui.selection.dropdown.active .dropdown.icon:before {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }

  .row .ui.dropdown .text,
  .row .ui.selection.dropdown .text {
    color: #fff;
    font-size: .9375rem;
  }

  .row .ui.dropdown .text.default,
  .row .ui.selection.dropdown .text.default {
    color: #fff;
  }

  .row .ui.dropdown .menu,
  .row .ui.selection.dropdown .menu {
    background: #ebe8e4;
    min-width: 100%;
    width: 100%;
  }

  .row .ui.dropdown.active .menu,
  .row .ui.dropdown.active:focus .menu,
  .row .ui.selection.dropdown.active .menu,
  .row .ui.selection.dropdown.active:focus .menu {
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .row .ui.dropdown.multiple .label {
    background: #fff;
    font-size: .875rem;
    border: .0625rem solid #66a03a;
    border-radius: .375rem;
    width: auto;
    margin: .1875rem;
    align-items: center;
    position: relative;
    padding-right: 1.875rem;
  }

  .row .ui.dropdown.multiple .label .icon {
    cursor: pointer;
    position: absolute;
    right: .5rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url("/tenderstem/assets/svg/_common/close.svg") no-repeat;
    background-size: 100%;
    width: .75rem;
    height: .75rem;
  }

  .row .ui.dropdown.multiple .label .icon:focus,
  .row .ui.dropdown.multiple .label .icon:hover {
    background: url("/tenderstem/assets/svg/_common/close-red.svg") no-repeat;
    background-size: 100%;
  }

  .row .ui.dropdown.multiple .label:hover {
    cursor: default;
  }

  .error label {
    color: #aa1717;
  }

  .error input,
  .error select,
  .error textarea {
    border-color: #aa1717;
    color: #aa1717;
  }

  .error .ui.dropdown,
  .error .ui.selection.dropdown,
  .error .ui.selection.dropdown.active {
    border-color: #aa1717;
  }

  .error .message {
    background: #aa1717;
    color: #fff;
    font-size: 1rem;
    padding: .625rem;
    display: inline-block;
    position: relative;
    margin-top: .375rem;
  }

  .error .message:before {
    content: '';
    display: block;
    height: 0;
    width: 0;
    position: absolute;
    top: -.75rem;
    margin-left: -.625rem;
    border-left: .625rem solid transparent;
    border-right: .625rem solid transparent;
    border-bottom: .75rem solid #aa1717;
    left: .9375rem;
  }

  .error-message {
    max-width: 25rem;
    margin: 0 auto 1.25rem;
    color: #aa1717;
  }

  .error-message .icon-container {
    padding: .625rem;
    background: #aa1717;
    display: inline-block;
    border-radius: 50%;
  }

  .error-message .icon-container .icon {
    color: #fff;
    width: 3.125rem;
    height: 3.125rem;
  }

  .has-tooltip {
    position: relative;
  }

  .has-tooltip .tooltip {
    background: #66a03a;
    padding: .3125rem;
    display: inline-block;
    border-radius: 50%;
    color: #fff;
    position: absolute;
    top: -2rem;
    right: 0;
    cursor: help;
  }

  .has-tooltip .tooltip .icon {
    font-size: 1.125rem;
    line-height: 1.25rem;
    width: 1.25rem;
    height: 1.25rem;
  }

  .has-tooltip .tooltip:focus,
  .has-tooltip .tooltip:hover {
    background: #4e7b2c;
  }

  .js-disabled .row .ui.dropdown {
    background: url("data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2ZXJzaW9uPSIxLjEiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgNDA1LjQ1NiA0MDUuNDU2IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA0MDUuNDU2IDQwNS40NTY7IiB4bWw6c3BhY2U9InByZXNlcnZlIiB3aWR0aD0iMTZweCIgaGVpZ2h0PSIxNnB4Ij4NCjxnPg0KCTxwYXRoIGQ9Ik03NC4xMzQsNjQuMTQ3Yy00Ljk4NSwwLjA3OC05LjkxMSwyLjE2My0xMy40MzgsNS42ODhsLTU1LDU1QzIuMDk2LDEyOC40MzIsMCwxMzMuNDkyLDAsMTM4LjU4MyAgIHMyLjA5NiwxMC4xNTEsNS42OTcsMTMuNzVsMTgzLjI4MSwxODMuMjgxYzMuNTk5LDMuNjAxLDguNjU5LDUuNjk3LDEzLjc1LDUuNjk3czEwLjE1MS0yLjA5NiwxMy43NS01LjY5N2wxODMuMjgxLTE4My4yODEgICBjMy42MDEtMy41OTksNS42OTctOC42NTksNS42OTctMTMuNzVzLTIuMDk2LTEwLjE1MS01LjY5Ny0xMy43NWwtNTUtNTVjLTMuNTk4LTMuNTkxLTguNjUxLTUuNjgxLTEzLjczNC01LjY4MSAgIGMtNS4wODMsMC0xMC4xMzYsMi4wOS0xMy43MzQsNS42ODFMMjAyLjcyOCwxODQuMzk3TDg4LjE2Niw2OS44MzNDODQuNDk5LDY2LjE2OSw3OS4zMTgsNjQuMDcsNzQuMTM0LDY0LjE0N0w3NC4xMzQsNjQuMTQ3eiIgZmlsbD0iIzk2OTY5NiIvPg0KPC9nPg0KPC9zdmc+DQo=") right 10px top 50% no-repeat #fff;
    font-size: 1rem;
    color: #141414;
    border: .0625rem solid #a0a0a0;
    padding: .75rem;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    height: auto;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    line-height: normal;
    position: relative;
  }

  .js-disabled .row .ui.dropdown[multiple] {
    background-image: none;
  }

  .mod-image {
    margin: 0 0 1.875rem;
  }

  .mod-image.full-width img {
    width: 100%;
    display: block;
  }

  .mod-image.full-width.first-element {
    margin-top: -3.75rem;
  }

  .mod-image.full-width.last-element,
  .mod-image.full-width.only-element {
    margin-bottom: -3.75rem;
  }

  .mod-section {
    padding: 3.75rem 0;
    position: relative;
  }

  .mod-section:first-of-type {
    padding-top: 5rem;
  }

  .mod-section h1,
  .mod-section h2,
  .mod-section h3 {
    padding: .625rem 0 1.25rem;
    margin: 0 auto 1.25rem;
    position: relative;
  }

  .mod-section h2,
  .mod-section h3 {
    font-size: 2rem;
  }

  .mod-section:not(.mod-hero) h1:after,
  .mod-section:not(.mod-hero) h2:after,
  .mod-section:not(.mod-hero) h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    height: .0625rem;
    width: 100%;
    max-width: 50%;
    border-bottom: dotted 3px #66a03a;
  }

  .mod-section ol,
  .mod-section ul {
    list-style-position: inside;
    padding-left: 0;
  }

  .mod-section .intro p {
    font-size: 1.5rem;
    color: #505050;
    font-weight: 400;
    max-width: none;
  }

  .mod-section .intro p:last-of-type {
    margin: 0;
  }

  .mod-section.mod-hero {
    position: relative;
    padding-bottom: 0;
    overflow: hidden;
  }

  .mod-section.mod-hero:first-child {
    padding-top: 0;
  }

  .mod-section.mod-hero img,
  .mod-section.mod-hero picture {
    width: 100%;
    display: block;
  }

  .mod-section.mod-hero a {
    color: #fff;
  }

  .mod-section.mod-hero a:active {
    outline: 0;
  }

  .mod-section.mod-hero a h2:focus,
  .mod-section.mod-hero a h2:hover {
    color: #fff;
    text-shadow: 1px 1px 7px rgba(0,0,0,.6);
  }

  .mod-section.mod-hero .container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    max-height: 37.5rem;
    padding: 0 2.5rem;
  }

  .mod-section.mod-hero .container h1,
  .mod-section.mod-hero .container h2 {
    font-size: 1.875rem;
    color: inherit;
    padding: 0;
    border: none;
    margin: 0;
    text-shadow: 1px 1px 5px rgba(0,0,0,.5);
  }

  .mod-section.mod-theme-blue h1:after,
  .mod-section.mod-theme-blue h2:after,
  .mod-section.mod-theme-blue h3:after,
  .mod-section.mod-theme-blue h4:after,
  .mod-section.mod-theme-blue h5:after,
  .mod-section.mod-theme-blue h6:after,
  .mod-section.mod-theme-green h1:after,
  .mod-section.mod-theme-green h2:after,
  .mod-section.mod-theme-green h3:after,
  .mod-section.mod-theme-green h4:after,
  .mod-section.mod-theme-green h5:after,
  .mod-section.mod-theme-green h6:after,
  .mod-section.mod-theme-orange h1:after,
  .mod-section.mod-theme-orange h2:after,
  .mod-section.mod-theme-orange h3:after,
  .mod-section.mod-theme-orange h4:after,
  .mod-section.mod-theme-orange h5:after,
  .mod-section.mod-theme-orange h6:after,
  .mod-section.mod-theme-purple h1:after,
  .mod-section.mod-theme-purple h2:after,
  .mod-section.mod-theme-purple h3:after,
  .mod-section.mod-theme-purple h4:after,
  .mod-section.mod-theme-purple h5:after,
  .mod-section.mod-theme-purple h6:after,
  .mod-section.mod-theme-yellow h1:after,
  .mod-section.mod-theme-yellow h2:after,
  .mod-section.mod-theme-yellow h3:after,
  .mod-section.mod-theme-yellow h4:after,
  .mod-section.mod-theme-yellow h5:after,
  .mod-section.mod-theme-yellow h6:after {
    border-color: inherit;
  }

  .mod-section.mod-hero .container h1.long,
  .mod-section.mod-hero .container h2.long {
    font-size: 1.5rem;
  }

  .mod-section.mod-hero .container h1 sup,
  .mod-section.mod-hero .container h2 sup {
    font-size: 40%;
    top: -1em;
    margin-right: -.4em;
  }

  .mod-section.mod-hero:after {
    background: url("/tenderstem/assets/img/_global/white-curve.png");
    background-size: 100% 100%;
    content: '';
    display: block;
    width: 100%;
    height: 2.625rem;
    position: absolute;
    bottom: 0;
    left: 0;
  }

  .mod-section.mod-hero.next-section-bg-paper:after {
    background: url("/tenderstem/assets/img/_global/paper-curve.png");
    background-size: 100% 100%;
  }

  .mod-section.mod-hero.next-section-bg-marble:after {
    background: url("/tenderstem/assets/img/_global/marble-curve.png");
    background-size: 100% 100%;
  }

  .mod-section.mod-hero.next-section-bg-wood:after {
    background: url("/tenderstem/assets/img/_global/wood-curve.png");
    background-size: 100% 100%;
  }

  .mod-section.mod-hero.next-section-bg-blue:after {
    background: url("/tenderstem/assets/img/_global/blue-curve.png");
    background-size: 100% 100%;
  }

  .mod-section.mod-hero.next-section-bg-brown:after {
    background: url("/tenderstem/assets/img/_global/brown-curve.png");
    background-size: 100% 100%;
  }

  .mod-section.mod-hero.next-section-bg-gray:after {
    background: url("/tenderstem/assets/img/_global/gray-curve.png");
    background-size: 100% 100%;
  }

  .mod-section.mod-hero.next-section-bg-green:after {
    background: url("/tenderstem/assets/img/_global/green-curve.png");
    background-size: 100% 100%;
  }

  .mod-section.mod-hero.next-section-bg-orange:after {
    background: url("/tenderstem/assets/img/_global/orange-curve.png");
    background-size: 100% 100%;
  }

  .mod-section.mod-hero.next-section-bg-teal:after {
    background: url("/tenderstem/assets/img/_global/teal-curve.png");
    background-size: 100% 100%;
  }

  .mod-section.mod-hero.next-section-bg-yellow:after {
    background: url("/tenderstem/assets/img/_global/yellow-curve.png");
    background-size: 100% 100%;
  }

  .mod-section.mod-video {
    margin: 0;
    max-height: none;
  }

  .mod-section.mod-video h1 {
    position: absolute;
    left: -5000em;
    clip: rect(0 0 0 0);
  }

  .mod-section.mod-video .video.container {
    position: relative;
    max-height: none;
    padding: 0;
    z-index: 1;
  }

  .mod-section.mod-video .video.container video {
    display: block;
    width: 100%;
    height: auto;
  }

  .mod-section.mod-video img,
  .mod-section.mod-video.controls:after {
    display: none;
  }

  .mod-section.mod-video .background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .mod-section.mod-video:after {
    z-index: 1;
  }

  .mod-section.mod-video+.mod-section .icon-section {
    pointer-events: none;
  }

  .mod-section.mod-icon .icon-section {
    width: 7.5rem;
    height: 7.5rem;
    padding: 1.25rem 0;
    position: absolute;
    left: 50%;
    top: -3.75rem;
    z-index: 20;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .mod-section.mod-icon .icon-section:before {
    -webkit-mask: url("/tenderstem/assets/img/_global/mask.png") no-repeat 0 100%;
    mask: url("/tenderstem/assets/img/_global/mask.png") no-repeat 0 100%;
    background: #fff;
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
  }

  .mod-section.mod-icon .icon-section .icon {
    width: 4.375rem;
    height: 4.375rem;
    margin: 0 auto;
    z-index: 2;
    color: #66a03a;
  }

  .mod-section.cardboard,
  .mod-section.stone,
  .mod-section.wood {
    color: #7f7671;
  }

  .mod-section.mod-bg-image {
    padding-left: .625rem;
    padding-right: .625rem;
  }

  .mod-section.mod-bg-image .container {
    background: rgba(255,255,255,.8);
    padding: 2.5rem 1.25rem 1.25rem;
    border-radius: .75rem;
  }

  .mod-section.mod-bg-image .background {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }

  .mod-section.mod-bg-image .background img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    min-width: 100%;
    max-width: none;
    min-height: 100%;
  }

  .mod-section.paint {
    background: url("/tenderstem/assets/img/_global/paint.jpg") #f5c32c;
  }

  .mod-section.paint .icon-section:before,
  .mod-section.paint:after {
    background: url("/tenderstem/assets/img/_global/paint.jpg") 0 50% #f5c32c;
  }

  .mod-section.cardboard,
  .mod-section.cardboard .icon-section:before,
  .mod-section.cardboard:after {
    background: url("/tenderstem/assets/img/_global/cardboard.jpg") #ebe8e4;
  }

  .mod-section.wood {
    background: url("/tenderstem/assets/img/_global/wood.jpg") repeat-y #f0f0f0;
    background-size: 100% auto;
  }

  .mod-section.wood .icon-section:before,
  .mod-section.wood:after {
    background: url("/tenderstem/assets/img/_global/wood.jpg") #f0f0f0;
  }

  .mod-section.wood-slats,
  .mod-section.wood-slats .icon-section:before,
  .mod-section.wood-slats:after {
    background: url("/tenderstem/assets/img/_global/wood-slats.jpg") #f1e5d6;
  }

  .mod-section.stone,
  .mod-section.stone .icon-section:before,
  .mod-section.stone:after {
    background: url("/tenderstem/assets/img/_global/stone.jpg") #e6e6e6;
  }

  .mod-section.mod-background-blue .icon-section .icon,
  .mod-section.mod-background-green .icon-section .icon {
    color: #f5c32c;
  }

  .mod-section.stone-cream,
  .mod-section.stone-cream .icon-section:before,
  .mod-section.stone-cream:after {
    background: url("/tenderstem/assets/img/_global/stone-cream.jpg") #ebe8e4;
  }

  .mod-section.marble {
    background: url("/tenderstem/assets/img/_global/marble.jpg") repeat-y #fff;
    background-size: 100% auto;
  }

  .mod-section.marble .icon-section:before,
  .mod-section.marble:after {
    background: url("/tenderstem/assets/img/_global/marble.jpg") 50% 50% #fff;
  }

  .mod-section.paper {
    background: url("/tenderstem/assets/img/_global/paper.jpg") repeat-y #eae7e1;
    background-size: 100% auto;
  }

  .mod-section.paper .icon-section:before {
    background: url("/tenderstem/assets/img/_global/paper.jpg") #dbcab5;
  }

  .mod-section.mod-background-blue {
    background: #009fe3;
  }

  .mod-section.mod-background-blue .icon-section:before {
    background-color: #009fe3;
  }

  .mod-section.mod-background-brown {
    background: #7f7671;
  }

  .mod-section.mod-background-brown .icon-section:before {
    background-color: #7f7671;
  }

  .mod-section.mod-background-gray {
    background: #aaa;
  }

  .mod-section.mod-background-gray .icon-section:before {
    background-color: #aaa;
  }

  .mod-section.mod-background-green {
    background: #66a03a;
  }

  .mod-section.mod-background-green .icon-section:before {
    background-color: #66a03a;
  }

  .mod-section.mod-background-teal .icon-section .icon,
  .mod-section.mod-background-yellow .icon-section .icon {
    color: #fff;
  }

  .mod-section.mod-background-orange {
    background: #de6808;
  }

  .mod-section.mod-background-orange .icon-section:before {
    background-color: #de6808;
  }

  .mod-section.mod-background-teal {
    background: #06a8a5;
  }

  .mod-section.mod-background-teal .icon-section:before {
    background-color: #06a8a5;
  }

  .mod-section.mod-background-yellow {
    background: #f5c32c;
  }

  .mod-section.mod-background-yellow .icon-section:before {
    background-color: #f5c32c;
  }

  .mod-section.mod-theme-blue .icon-section .icon,
  .mod-section.mod-theme-blue h1,
  .mod-section.mod-theme-blue h2,
  .mod-section.mod-theme-blue h3,
  .mod-section.mod-theme-blue h4,
  .mod-section.mod-theme-blue h5,
  .mod-section.mod-theme-blue h6 {
    color: #009fe3;
  }

  .mod-section.mod-theme-green .icon-section .icon,
  .mod-section.mod-theme-green h1,
  .mod-section.mod-theme-green h2,
  .mod-section.mod-theme-green h3,
  .mod-section.mod-theme-green h4,
  .mod-section.mod-theme-green h5,
  .mod-section.mod-theme-green h6 {
    color: #66a03a;
  }

  .mod-section.mod-theme-orange .icon-section .icon,
  .mod-section.mod-theme-orange h1,
  .mod-section.mod-theme-orange h2,
  .mod-section.mod-theme-orange h3,
  .mod-section.mod-theme-orange h4,
  .mod-section.mod-theme-orange h5,
  .mod-section.mod-theme-orange h6 {
    color: #de6808;
  }

  .mod-section.mod-theme-purple .icon-section .icon,
  .mod-section.mod-theme-purple h1,
  .mod-section.mod-theme-purple h2,
  .mod-section.mod-theme-purple h3,
  .mod-section.mod-theme-purple h4,
  .mod-section.mod-theme-purple h5,
  .mod-section.mod-theme-purple h6 {
    color: #562d6d;
  }

  .mod-section.mod-theme-yellow .icon-section .icon,
  .mod-section.mod-theme-yellow h1,
  .mod-section.mod-theme-yellow h2,
  .mod-section.mod-theme-yellow h3,
  .mod-section.mod-theme-yellow h4,
  .mod-section.mod-theme-yellow h5,
  .mod-section.mod-theme-yellow h6 {
    color: #f5c32c;
  }

  .ui.dimmer {
    background-color: rgba(200,200,200,.4);
  }

  .modal.subscribe-modal {
    max-width: 27.5rem;
    position: relative;
  }

  .modal.subscribe-modal .image.content {
    padding: 0!important;
    overflow: hidden;
  }

  .modal.subscribe-modal .image.content .image {
    max-width: 100%;
    padding-bottom: 0!important;
    margin: 0 auto;
    display: block;
  }

  .modal.subscribe-modal.no-image .content {
    padding-top: 3.125rem!important;
  }

  .modal.subscribe-modal .content {
    padding: 1.25rem!important;
  }

  .modal.subscribe-modal .content .copy>:last-child {
    margin-bottom: 0;
  }

  .modal.subscribe-modal .title {
    font-size: 1.375rem;
    padding-top: 0;
  }

  .modal.subscribe-modal .actions {
    background: 0 0;
    border: none;
    padding: 0 1.25rem 1.25rem!important;
  }

  .modal.subscribe-modal .btn {
    margin: 0;
    width: 100%;
  }

  .modal.subscribe-modal .cancel {
    position: absolute;
    background: #f5c32c;
    top: .625rem;
    right: .625rem;
    width: 1.875rem;
    height: 1.875rem;
    border: none;
    border-radius: 50%;
    cursor: pointer;
  }

  .modal.subscribe-modal .cancel:hover {
    background: #66a03a;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }

  .modal.subscribe-modal .cancel:focus {
    outline: 0;
  }

  .modal.subscribe-modal .cancel:after,
  .modal.subscribe-modal .cancel:before {
    content: '';
    background: #fff;
    width: 70%;
    height: .125rem;
    display: block;
    position: absolute;
    top: 50%;
    left: 15%;
    margin-top: -.0625rem;
  }

  .modal.subscribe-modal .cancel:before {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }

  .modal.subscribe-modal .cancel:after {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }

  .mod-table {
    width: 100%;
    overflow-x: auto;
    margin: 1.25rem 0;
  }

  table {
    border-collapse: collapse;
    border-spacing: 0;
    border: .25rem solid #fff;
    width: 100%;
  }

  table td,
  table th {
    background: #ebe8e4;
    color: #7f7671;
    line-height: 1.2;
    padding: .625rem;
    border-right: .0625rem solid #fff;
    border-bottom: .0625rem solid #fff;
  }

  table td:last-child,
  table th:last-child {
    border-right: 0;
  }

  table tr:nth-child(even) td {
    background: #dedad0;
  }

  table tr:hover td,
  table tr:hover th {
    color: #141414;
  }

  table thead th {
    background: #66a03a;
    color: #fff;
    font-weight: 400;
    border-bottom-width: .25rem;
  }

  .mod-video {
    margin: 2.5rem 0;
  }

  .mod-video a {
    background: #000;
    display: block;
    position: relative;
    color: #fff;
  }

  .mod-video a .icon {
    display: block;
    width: 6.25rem;
    height: 6.25rem;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -3.125rem 0 0 -3.125rem;
  }

  .mod-additional-recipes .recipe .info .btn,
  .mod-builder .copy h3 {
    margin: 0;
  }

  .mod-video a img {
    width: 100%;
    display: block;
  }

  .mod-video a:focus,
  .mod-video a:hover {
    color: #66a03a;
  }

  .mod-video .video-player {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
  }

  .mod-video .video-player embed,
  .mod-video .video-player iframe,
  .mod-video .video-player object {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .mod-additional-recipes {
    display: block;
    padding-bottom: 1.25rem;
  }

  .mod-additional-recipes .recipe {
    width: 100%;
    height: 17.5rem;
    padding: .625rem;
  }

  .mod-additional-recipes .recipe a {
    display: block;
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: relative;
    color: #fff;
  }

  .mod-additional-recipes .recipe .info,
  .mod-additional-recipes .recipe img {
    position: absolute;
    width: 100%;
    transition-property: all;
    transition-duration: .2s;
  }

  .mod-additional-recipes .recipe a:focus img,
  .mod-additional-recipes .recipe a:hover img {
    -webkit-transform: translate(-50%,-50%) scale(1.1);
    transform: translate(-50%,-50%) scale(1.1);
  }

  .mod-additional-recipes .recipe img {
    display: block;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
  }

  .mod-additional-recipes .recipe .info {
    background: #66a03a;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    top: 0;
    left: 0;
    height: 100%;
  }

  .mod-additional-recipes .recipe .info h4 {
    color: #fff;
    font-size: 1.25rem;
    padding: 0 .625rem .625rem;
  }

  h1+.mod-builder,
  h2+.mod-builder {
    padding-top: 2.5rem;
  }

  .mod-builder p {
    max-width: 100%;
  }

  .mod-builder .copy h3:after {
    display: none;
  }

  .mod-builder .image img {
    display: block;
    margin: 0 auto 1.25rem;
  }

  .mod-builder .image.position-centre img {
    margin: 0 auto 1.25rem;
  }

  .mod-builder .image.position-fullWidth img {
    width: 100%;
    margin-bottom: 1rem;
  }

  .mod-components {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin: 0 -.625rem;
  }

  .mod-components .mod-component {
    width: 100%;
    padding: 0 .625rem;
    margin: 0 0 3.125rem;
    display: flex;
    flex-direction: column;
  }

  .mod-components .mod-component .no-link,
  .mod-components .mod-component>a {
    background: #fff;
    display: flex;
    height: 100%;
    padding-bottom: 1.25rem;
    border-radius: .75rem;
    position: relative;
  }

  .mod-components .mod-component>a {
    flex-direction: column;
  }

  .mod-components .mod-component>a:focus .placeholder .icon,
  .mod-components .mod-component>a:focus img,
  .mod-components .mod-component>a:hover .placeholder .icon,
  .mod-components .mod-component>a:hover img {
    -webkit-transform: translate(-50%,-50%) scale(1.05) rotate(5deg);
    transform: translate(-50%,-50%) scale(1.05) rotate(5deg);
    transition-duration: 1s;
  }

  .mod-components .mod-component .no-link {
    flex-direction: column;
  }

  .mod-components .mod-component .fluid-image {
    position: relative;
    width: 100%;
    height: 15.625rem;
    border-radius: .75rem .75rem 0 0;
    overflow: hidden;
  }

  .mod-components .mod-component .fluid-image img {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%) scale(1);
    transform: translate(-50%,-50%) scale(1);
    transition-property: all;
    transition-duration: .2s;
  }

  .mod-components .mod-component .placeholder {
    position: relative;
    width: 100%;
    height: 15.625rem;
    background: #dcdcdc;
    border-radius: .75rem .75rem 0 0;
    overflow: hidden;
  }

  .mod-components .mod-component .placeholder .icon {
    width: 5rem;
    height: 5rem;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%) scale(1);
    transform: translate(-50%,-50%) scale(1);
    transition-property: all;
    transition-duration: .2s;
  }

  .mod-components .mod-component .copy {
    padding: 0 1.25rem 1.875rem;
  }

  .mod-components .mod-component h2,
  .mod-components .mod-component h3 {
    font-family: Rockwell,georgia,times,serif;
    color: #464646;
    font-size: 1.375rem;
    padding: 1.25rem 0;
    margin: 0;
    border: none;
  }

  .mod-components .mod-component h2:after,
  .mod-components .mod-component h3:after {
    border: none;
  }

  .mod-components .mod-component p {
    font-size: 1.125rem;
    color: #787878;
  }

  .mod-components .mod-component p:last-of-type {
    margin: 0;
  }

  .mod-components .mod-component .no-link .copy {
    padding-bottom: .5rem;
  }

  .mod-components .mod-component .btns {
    margin-top: auto;
    width: 100%;
    padding: 0 1.25rem;
  }

  .mod-components .mod-component .btns .btn {
    font-size: 1.125rem;
    margin: 0;
    width: 100%;
    min-width: inherit;
  }

  .mod-insta-feed {
    background: #fff;
    padding: 1.875rem 0 2.5rem;
    overflow: hidden;
  }

  .mod-insta-feed .insta-logo {
    width: 6.25rem;
    height: auto;
  }

  .mod-insta-feed #feed-container .item {
    height: 12.5rem;
  }

  .mod-insta-feed #feed-container .item a {
    display: block;
    overflow: hidden;
    position: relative;
    height: 100%;
    width: 100%;
  }

  .mod-insta-feed #feed-container .item a:hover .overlay {
    opacity: 1;
  }

  .mod-insta-feed #feed-container .item img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    min-height: 100%;
  }

  .mod-insta-feed .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: rgba(0,0,0,.5);
    color: #fff;
    opacity: 0;
  }

  .mod-insta-feed .overlay div {
    display: flex;
    justify-content: flex-end;
    width: 4.375rem;
  }

  .mod-insta-feed .overlay div:first-of-type {
    margin: 0 0 .3125rem;
  }

  .mod-insta-feed .overlay div .icon {
    margin-left: .625rem;
  }

  .mod-insta-feed .slick-list {
    margin: 0 -.625rem;
  }

  .mod-insta-feed .slick-list .item {
    padding: 0 .625rem 1.25rem;
  }

  .mod-insta-feed .slick-next,
  .mod-insta-feed .slick-prev {
    top: 50%;
    color: #66a03a;
  }

  .js-disabled .mod-insta-feed {
    display: none;
  }

  .mod-pagination .pagination-carousel {
    position: relative;
    max-width: 13.75rem;
    margin: 2.5rem auto;
    opacity: 0;
  }

  .mod-pagination .pagination-carousel.slick-initialized {
    opacity: 1;
  }

  .mod-pagination .pagination-carousel a {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #66a03a;
    width: 2.1875rem;
    height: 2.1875rem;
    border-radius: 50%;
    margin: 0 .375rem;
    text-decoration: none;
  }

  .mod-pagination .pagination-carousel a.current,
  .mod-pagination .pagination-carousel a:focus,
  .mod-pagination .pagination-carousel a:hover {
    color: #fff;
    background: #66a03a;
  }

  .mod-pagination .pagination-carousel .slick-arrow {
    border: none;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    cursor: pointer;
    justify-content: center;
    color: #66a03a;
  }

  .mod-pagination .pagination-carousel .slick-arrow.slick-next:focus,
  .mod-pagination .pagination-carousel .slick-arrow.slick-next:hover,
  .mod-pagination .pagination-carousel .slick-arrow.slick-prev:focus,
  .mod-pagination .pagination-carousel .slick-arrow.slick-prev:hover {
    color: #646464;
    -webkit-animation: none;
    animation: none;
    background: 0 0;
  }

  .mod-pagination .pagination-carousel .slick-arrow.slick-prev {
    left: -3.125rem;
  }

  .mod-pagination .pagination-carousel .slick-arrow.slick-next {
    right: -3.125rem;
  }

  .mod-pagination .pagination-carousel .slick-arrow.slick-disabled {
    cursor: default;
    opacity: .5;
    color: #646464;
  }

  p+.mod-panels {
    padding: 2.5rem 0 0;
  }

  .mod-panels {
    padding: 0;
  }

  .mod-panels .panel {
    background: #f5c32c;
    margin: 0 0 3.75rem;
    border-radius: .75rem;
    color: #3c3c3c;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
  }

  .mod-panels .panel:not(.no-link):focus img,
  .mod-panels .panel:not(.no-link):hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  .mod-panels .panel:not(.no-link):focus .more,
  .mod-panels .panel:not(.no-link):hover .more {
    background: 0 0;
  }

  .mod-panels .panel .copy {
    padding: 1.25rem .625rem;
    align-self: flex-start;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    color: #fff;
  }

  .mod-panels .panel .copy h4 {
    color: inherit;
    font-size: 1.25rem;
    padding-bottom: .875rem;
    width: 100%;
  }

  .mod-panels .panel .copy p {
    color: inherit;
    font-size: 1.125rem;
    padding-bottom: .625rem;
  }

  .mod-panels .panel .copy .more {
    font-size: .75rem;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0;
    background: 0 0;
    max-width: 100%;
    min-width: 0;
  }

  .mod-panels .panel .asset {
    align-self: flex-end;
    width: 100%;
  }

  .mod-panels .panel .panel-icon {
    padding-top: .625rem;
    position: relative;
    z-index: 1;
  }

  .mod-panels .panel .panel-icon div {
    background: #66a03a;
    padding: .625rem;
    position: absolute;
    top: 0;
    left: 50%;
    margin: -1.875rem 0 0 -1.875rem;
    border-radius: 50%;
  }

  .mod-panels .panel .panel-icon div .icon {
    color: #fff;
    width: 2.8125rem;
    height: 2.8125rem;
    z-index: 2;
  }

  .mod-panels .panel .fluid-image {
    overflow: hidden;
  }

  .mod-panels .panel .fluid-image img {
    width: 100%;
    display: block;
    transition-property: all;
    transition-duration: .2s;
  }

  .mod-panels .panel .btn-container {
    position: relative;
    clear: both;
    margin: 0 .625rem;
  }

  .mod-panels .panel .btn-container .btn {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    min-width: auto;
    display: block;
    padding: .625rem;
  }

  .mod-panels .panel-green,
  .mod-panels .panel-green .panel-icon div {
    background: #66a03a;
  }

  .mod-panels .panel-yellow,
  .mod-panels .panel-yellow .panel-icon div {
    background: #f5c32c;
  }

  .mod-panels .panel-yellow .copy {
    color: #3c3c3c;
  }

  .mod-panels .panel-orange {
    background: #de6808;
  }

  .mod-panels .panel-blue {
    background: #009fe3;
  }

  .mod-recipe-filters {
    background: #de6808;
    color: #fff;
    padding: 1.25rem .625rem;
    margin-bottom: 3.75rem;
  }

  .mod-recipe-filters h4 {
    color: #fff!important;
    padding-top: 0;
  }

  .mod-recipe-filters .search {
    margin: 0;
    max-width: none;
  }

  .mod-recipe-filters .search input {
    font-size: 1.25rem;
    background: #fff;
    border-color: #fff;
    padding: .8125rem 3.75rem .6875rem .9375rem;
  }

  .mod-recipe-filters .checkbox label,
  .ui.popup .content {
    font-size: 1.125rem;
  }

  .mod-recipe-filters .search .icon {
    color: #66a03a;
    -webkit-transform: rotate(-15deg);
    transform: rotate(-15deg);
    left: auto;
    right: .9375rem;
    top: .625rem;
    width: 2.1875rem;
    height: 2.1875rem;
  }

  .mod-recipe-filters .filters {
    text-align: left;
    padding-top: .625rem;
    width: 100%;
  }

  .mod-recipe-filters .group {
    margin-bottom: .625rem;
  }

  .mod-recipe-filters .label {
    font-weight: 600;
    padding-bottom: .625rem;
  }

  .mod-recipe-filters .label-icon {
    display: flex;
    align-items: center;
  }

  .mod-recipe-filters .label-icon .icon {
    margin-right: .625rem;
    width: 1.875rem;
    height: 1.875rem;
  }

  .mod-recipe-filters .checkbox label:before {
    background: #c8e2e1;
    border-color: #c8e2e1;
    border-radius: 0;
    top: .375rem;
  }

  .mod-recipe-filters .checkbox label:after {
    top: .375rem;
  }

  .mod-recipe-filters .checkbox label:focus:before,
  .mod-recipe-filters .checkbox label:hover:before {
    background: #fff;
    border-color: #fff;
  }

  .mod-recipe-filters .checkbox input[type=checkbox]:checked+label:before {
    background: #66a03a;
    border-color: #66a03a;
  }

  .mod-recipe-filters .range {
    position: relative;
    padding-bottom: 1.25rem;
  }

  .mod-recipe-filters .range .helper {
    background: #7fbf4e;
    font-size: .875rem;
    color: #fff;
    text-align: center;
    display: block;
    position: absolute;
    top: 2.8125rem;
    left: 50%;
    padding: .25rem;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 4;
    width: 6.25rem;
  }

  .mod-recipe-filters .range .helper:before {
    content: '';
    display: block;
    height: 0;
    width: 0;
    position: absolute;
    left: 50%;
    top: -.9375rem;
    margin-left: -.625rem;
    border-left: .625rem solid transparent;
    border-right: .625rem solid transparent;
    border-bottom: .9375rem solid #7fbf4e;
    transition-property: all;
    transition-duration: .2s;
  }

  .mod-recipe-filters .range .helper.static:before {
    top: 0;
    z-index: -1;
  }

  .mod-recipe-filters .range .helper.minimum {
    left: 0;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  .mod-recipe-filters .range .helper.minimum:before {
    bottom: 100%;
    top: auto;
    left: .4375rem;
    border-left: none;
    margin-left: 0;
  }

  .mod-recipe-filters .range .helper.maximum {
    left: auto!important;
    right: 0;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  .mod-recipe-filters .range .helper.maximum:before {
    bottom: 100%;
    top: auto;
    left: auto;
    right: .4375rem;
    border-right: none;
  }

  .mod-recipe-filters .people .multiple {
    flex-direction: row;
  }

  .mod-recipe-filters .radio {
    margin: 0 .625rem 0 0;
  }

  .mod-recipe-filters .radio label {
    background: #66a03a;
    color: #fff;
    padding: .375rem;
    line-height: 1;
    text-align: center;
    border-radius: 50%;
    transition-property: all;
    transition-duration: .2s;
  }

  .mod-recipe-filters .radio label span {
    display: block;
    width: 1.25rem;
    height: 1.25rem;
  }

  .js-disabled .mod-recipe-filters .fieldset .range .helper,
  .mod-recipe-filters .radio label:after,
  .mod-recipe-filters .radio label:before {
    display: none;
  }

  .mod-recipe-filters .radio label:focus,
  .mod-recipe-filters .radio label:hover {
    background: #4e7b2c;
    color: #fff;
  }

  .mod-recipe-filters .radio input[type=radio]:checked+label {
    background: #7f7671;
    color: #fff;
  }

  .mod-recipe-filters .btn {
    margin: .625rem 0 0;
    min-width: auto;
    width: 100%;
    position: relative;
    z-index: 2;
  }

  .mod-recipe-filters .more {
    padding: 0;
  }

  .mod-recipe-filters .more div {
    background: #de6808;
    margin: -.3125rem 0 0 -1.25rem;
    padding: .875rem;
  }

  .mod-recipe-filters .more div .icon {
    width: 1.25rem;
    height: 1.25rem;
    position: relative;
    bottom: -.3125rem;
    transition-property: all;
    transition-duration: .2s;
  }

  .mod-recipe-filters .more div:focus,
  .mod-recipe-filters .more div:hover {
    cursor: pointer;
  }

  .mod-recipe-filters .more div:focus .icon,
  .mod-recipe-filters .more div:hover .icon {
    color: #141414;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation: nudge 1s 1 both;
    animation: nudge 1s 1 both;
  }

  .mod-recipe-filters.open .more div {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .mod-recipe-filters.open .more div .icon {
    bottom: .3125rem;
  }

  .js-disabled .mod-recipe-filters .fieldset .range input[type=range] {
    background: #c8c8c8;
  }

  .js-disabled .mod-recipe-filters .fieldset .btns {
    width: 100%;
    margin: .625rem 0 0;
  }

  .js-disabled .mod-recipe-filters .fieldset .btns .btn {
    width: 40%;
    margin: 0 .625rem;
  }

  .container .mod-recipe-finder {
    padding-right: 0;
    padding-left: 0;
  }

  .mod-recipe-finder {
    padding: 2.5rem 1.25rem;
  }

  .mod-recipe-finder .row {
    margin-bottom: .625rem;
  }

  .mod-recipe-finder .row .ui.selection.dropdown {
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .mod-recipe-finder .row .ui.selection.dropdown .label {
    border: none;
    color: #de6808;
  }

  .mod-recipe-finder .row .ui.selection.dropdown .label .icon {
    background: url("/tenderstem/assets/svg/_common/close-orange.svg") no-repeat;
    background-size: 100%;
  }

  .mod-recipe-finder .row .ui.selection.dropdown .label .icon:focus,
  .mod-recipe-finder .row .ui.selection.dropdown .label .icon:hover {
    background: url("/tenderstem/assets/svg/_common/close-red.svg") no-repeat;
    background-size: 100%;
  }

  .mod-recipe-finder .btns {
    padding-top: 2.5rem;
  }

  .mod-share {
    list-style: none;
    padding: 1.25rem 0;
    text-align: center;
  }

  .mod-share li {
    display: inline-block;
    margin: 0 .1875rem;
  }

  .mod-share a,
  .mod-share div {
    background: #66a03a;
    display: block;
    padding: .625rem;
    border-radius: 50%;
    position: relative;
  }

  .mod-share a .icon,
  .mod-share div .icon {
    color: #fff;
    width: 1.5rem;
    height: 1.5rem;
  }

  .mod-share a textarea,
  .mod-share div textarea {
    position: absolute;
  }

  #content,
  .divider {
    position: relative;
  }

  .mod-share a:focus,
  .mod-share a:hover,
  .mod-share div:focus,
  .mod-share div:hover {
    background: #7f7671;
    cursor: pointer;
  }

  .mod-share a.twitter:focus,
  .mod-share a.twitter:hover,
  .mod-share div.twitter:focus,
  .mod-share div.twitter:hover {
    background: #55acee;
  }

  .mod-share a.facebook:focus,
  .mod-share a.facebook:hover,
  .mod-share div.facebook:focus,
  .mod-share div.facebook:hover {
    background: #3b5998;
  }

  .mod-share a.pinterest:focus,
  .mod-share a.pinterest:hover,
  .mod-share div.pinterest:focus,
  .mod-share div.pinterest:hover {
    background: #cb2027;
  }

  .mod-share a.instagram:focus,
  .mod-share a.instagram:hover,
  .mod-share div.instagram:focus,
  .mod-share div.instagram:hover {
    background: #d93175;
  }

  .ui.popup {
    background: #66a03a;
    color: #fff;
    border-radius: 0;
    border: 0;
    text-align: center;
    box-shadow: none;
  }

  .ui.popup.bottom:before,
  .ui.popup.center:before,
  .ui.popup.left:before,
  .ui.popup.right:before,
  .ui.popup.top:before {
    background: #66a03a!important;
    box-shadow: none!important;
  }

  .ui.popup .header {
    font-weight: 600;
  }

  #content {
    overflow: hidden;
  }

  .divider {
    max-width: 70rem;
    padding: 0 .625rem;
    margin: 0 auto;
  }

  .divider hr {
    display: block;
    width: 1rem;
    height: 1rem;
    background: #ebe8e4;
    border-radius: 50%;
    border: 0;
    padding: 0;
    margin: 0 auto;
  }

  .divider:after,
  .divider:before {
    content: '';
    display: block;
    width: 44%;
    height: .25rem;
    background: #ebe8e4;
    position: absolute;
    top: .375rem;
    border-radius: .125rem;
  }

  .divider:after {
    right: .625rem;
  }
}

@media screen and (max-width:49.9375rem) {
  figure {
    float: none!important;
    width: 100%!important;
  }
}

@media screen and (min-width:50rem) {
  figure[style*=left] {
    margin-right: 1.25rem!important;
  }

  figure[style*=right] {
    margin-left: 1.25rem!important;
  }
}

@media screen and (min-width:62.5rem) {
  #wrapper {
    padding-bottom: 0;
  }

  #skip .skip-toolbar {
    display: none;
  }

  #header>.container {
    position: relative;
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
  }
}

@media screen and (max-width:62.4375rem) {
  #skip .skip-nav {
    display: none;
  }

  #header .subscribe {
    display: block;
    background: #66a03a;
    border-radius: 100%;
    width: 2.125rem;
    height: 2.125rem;
    position: absolute;
    top: 50%;
    right: .625rem;
    margin-top: -1.0625rem;
  }

  #header .subscribe .icon {
    color: #fff;
    width: 1.5rem;
    height: 1.125rem;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
  }

  #header .subscribe .label {
    position: absolute;
    left: -5000em;
    clip: rect(0 0 0 0);
  }
}

@media screen and (min-width:62.5rem) {
  #header .subscribe:after,
  #header .subscribe:before {
    border-top: 1.875rem solid transparent;
    border-bottom: 1.875rem solid transparent;
  }

  #header .subscribe {
    font-size: .6875rem;
    line-height: 1.6;
    font-family: LoveYaLikeASisterSolid,Arial,Helvetica,sans-serif;
    background: #f5c32c;
    color: #3c3c3c;
    position: absolute;
    top: 0;
    right: .625rem;
    margin: 0;
    padding: 5rem .875rem 1.25rem;
    z-index: 101;
    display: block;
    max-width: 6.25rem;
    text-align: center;
    transition: none;
  }

  #header .subscribe:after,
  #header .subscribe:before {
    content: '';
    position: absolute;
    bottom: -1.25rem;
  }

  #header .subscribe:before {
    border-left: 6.25rem solid #f5c32c;
    left: 0;
  }

  #header .subscribe:after {
    border-right: 6.25rem solid #f5c32c;
    right: 0;
  }

  #header .subscribe .label {
    position: relative;
    z-index: 1;
  }

  #header .subscribe .icon {
    display: none;
  }

  #header .subscribe:focus,
  #header .subscribe:hover {
    background: #009fe3;
    color: #fff;
  }

  #header .subscribe:focus:before,
  #header .subscribe:hover:before {
    border-left-color: #009fe3;
  }

  #header .subscribe:focus:after,
  #header .subscribe:hover:after {
    border-right-color: #009fe3;
  }
}

@media screen and (max-width:62.4375rem) {
  #header .navigation-container,
  #header .navigation-wrapper,
  #header .navigation-wrapper .navigation-menu {
    width: 100%;
    transition-property: all;
    transition-duration: .2s;
  }

  #header .navigation-container {
    background: url("/tenderstem/assets/img/_global/paper.jpg") #fff;
    position: fixed;
    display: none;
    opacity: 0;
    top: 0;
    left: 0;
    overflow: auto;
    height: 100vh;
    z-index: 100;
  }

  #header .navigation-container .container {
    padding: 0;
  }

  .navigation-open #header .navigation-container {
    display: block;
    opacity: 1;
  }

  .navigation-open #header .navigation-container .footer-logo {
    display: none;
  }

  #header .navigation-container .logo {
    margin: .625rem auto;
  }

  #header .navigation-wrapper {
    position: relative;
    clear: both;
    margin: 0 auto;
    height: auto;
    overflow: hidden;
  }

  #header .navigation-wrapper ul {
    list-style: none;
    padding: 0;
    width: 100%;
  }

  #header .navigation-wrapper li {
    border-bottom: .0625rem solid #dedad0;
    margin: 0;
  }

  #header .navigation-wrapper li .group,
  #header .navigation-wrapper li a {
    font-weight: 600;
    display: block;
    padding: .625rem;
  }

  #header .navigation-wrapper li .group .icon,
  #header .navigation-wrapper li a .icon {
    float: right;
  }

  #header .navigation-wrapper li a.current {
    background: #66a03a;
    color: #fff;
  }

  #header .navigation-wrapper li:last-child {
    border-bottom: 0;
  }

  #header .navigation-wrapper .navigation-menu {
    position: absolute;
    top: 0;
    left: 0;
  }

  #header .navigation-wrapper .navigation-menu.inactive {
    left: -100%;
  }

  #header .navigation-wrapper .navigation-menu.level-two {
    left: 200%;
  }

  #header .navigation-wrapper .navigation-menu.level-two ul {
    background: #66a03a;
  }

  #header .navigation-wrapper .navigation-menu.level-two li {
    border-color: #fff;
  }

  #header .navigation-wrapper .navigation-menu.level-two .group,
  #header .navigation-wrapper .navigation-menu.level-two a {
    color: #fff;
  }

  #header .navigation-wrapper .navigation-menu.level-two .group:focus,
  #header .navigation-wrapper .navigation-menu.level-two .group:hover,
  #header .navigation-wrapper .navigation-menu.level-two a:focus,
  #header .navigation-wrapper .navigation-menu.level-two a:hover {
    color: #141414;
  }

  #header .navigation-wrapper .navigation-menu.level-two .group.active,
  #header .navigation-wrapper .navigation-menu.level-two a.active {
    background: #00f;
  }

  #header .navigation-wrapper .navigation-menu.level-two.active {
    z-index: 10;
    left: 100%;
  }

  #header .navigation-wrapper .navigation-menu.level-two.inactive {
    left: 0;
  }

  #header .navigation-wrapper .navigation-menu.level-three {
    left: 200%;
  }

  #header .navigation-wrapper .navigation-menu.level-three.active {
    left: 100%;
  }

  #header .navigation-wrapper .history {
    display: flex;
    padding: 0 0 .625rem .625rem;
    overflow: auto;
  }

  #header .navigation-wrapper .history .back,
  #header .navigation-wrapper .history .current,
  #header .navigation-wrapper .history .reset {
    font-size: .875rem;
    color: #66a03a;
    padding: 0 .625rem 0 0;
    display: flex;
    flex-shrink: 0;
    align-items: center;
  }

  #header .navigation-wrapper .history .back .icon,
  #header .navigation-wrapper .history .current .icon,
  #header .navigation-wrapper .history .reset .icon {
    width: .875rem;
    height: 1rem;
    margin: 0 0 0 .625rem;
  }

  #header .navigation-wrapper .history .back:focus,
  #header .navigation-wrapper .history .back:hover,
  #header .navigation-wrapper .history .current:focus,
  #header .navigation-wrapper .history .current:hover,
  #header .navigation-wrapper .history .reset:focus,
  #header .navigation-wrapper .history .reset:hover {
    color: #141414;
    cursor: pointer;
  }

  #header .navigation-wrapper .history .current,
  #header .navigation-wrapper .history .current:focus,
  #header .navigation-wrapper .history .current:hover {
    color: #a0a0a0;
  }

  #header .js-disabled .navigation-wrapper {
    overflow: visible;
  }

  #header .js-disabled .navigation-wrapper .navigation-menu {
    position: static;
    padding: 0 0 0 1.25rem;
  }

  #header .js-disabled .navigation-wrapper .navigation-menu .menu-more {
    background: #dedad0;
  }

  #header .js-disabled .navigation-wrapper .navigation-menu .menu-more .icon {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }

  #header .js-disabled .navigation-wrapper .history {
    display: none;
  }
}

@media screen and (min-width:62.5rem) {
  #header .navigation-wrapper {
    height: auto!important;
  }

  #header .navigation-container {
    width: 100%;
    display: block;
    position: relative;
    z-index: 100;
    background: #66a03a;
    padding-right: 6.875rem;
  }

  #header .navigation-container .logo {
    display: none;
  }

  #header .navigation-container .navigation {
    display: flex;
    justify-content: center;
    width: 100%;
    position: relative;
  }

  #header .navigation-container .navigation li {
    margin: 0;
  }

  #header .navigation-container .navigation>li {
    position: relative;
    margin: 0;
    width: 100%;
  }

  #header .navigation-container .navigation>li.wide {
    position: static;
  }

  #header .navigation-container .navigation>li.wide.navigation-more .navigation-menu.has-level-three ul li {
    min-width: auto!important;
    max-width: 100%;
  }

  #header .navigation-container .navigation>li.active>a {
    background: #476f28;
    color: #fff;
  }

  #header .navigation-container .navigation>li a {
    font-size: .875rem;
    text-transform: uppercase;
    color: #fff;
    font-weight: 400;
    padding: .625rem 1.25rem;
    height: 100%;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: none;
  }

  #header .navigation-container .navigation .history,
  #header .navigation-container .navigation>li a .icon {
    display: none;
  }

  #header .navigation-container .navigation>li a.current,
  #header .navigation-container .navigation>li a:focus,
  #header .navigation-container .navigation>li a:hover,
  #header .navigation-container .navigation>li.open a {
    background: #4e7b2c;
    color: #fff;
  }

  #header .navigation-container .navigation .navigation-more>a:focus+.navigation-menu,
  #header .navigation-container .navigation .navigation-more>a:focus+.navigation-menu .navigation-menu {
    display: block;
    opacity: 1;
  }

  #header .navigation-container .navigation .navigation-more .navigation-menu {
    background: #4e7b2c;
    display: none;
    opacity: 0;
    position: absolute;
    left: 0;
    width: auto;
    min-width: 100%;
    top: 100%;
    padding: .625rem;
    text-align: left;
    transition-property: all;
    transition-duration: .2s;
  }

  #header .navigation-container .navigation .navigation-more .navigation-menu.level-two>ul li:first-child {
    display: none;
  }

  #header .navigation-container .navigation .navigation-more .navigation-menu.level-three>ul li:first-child {
    display: block;
  }

  #header .navigation-container .navigation .navigation-more .navigation-menu.has-level-three ul {
    display: flex;
  }

  #header .navigation-container .navigation .navigation-more .navigation-menu.has-level-three ul li {
    flex-grow: 1;
    min-width: 12.5rem;
  }

  #header .navigation-container .navigation .navigation-more .navigation-menu.has-level-three ul a {
    display: block;
    height: auto;
  }

  #header .navigation-container .navigation .navigation-more .navigation-menu .group {
    font-size: .875rem;
    text-transform: uppercase;
    color: #323232;
    font-weight: 400;
    padding: .3125rem 1.25rem;
    display: block;
    position: relative;
    margin: 0 0 .625rem;
  }

  #header .navigation-container .navigation .navigation-more .navigation-menu .group .icon {
    display: none;
  }

  #header .navigation-container .navigation .navigation-more .navigation-menu .group:after {
    content: '';
    display: block;
    width: 90%;
    height: .0625rem;
    border-bottom: dashed .0625rem #323232;
    position: absolute;
    bottom: 0;
    left: 5%;
  }

  #header .navigation-container .navigation .navigation-more .navigation-menu .level-three {
    position: static;
    width: auto;
    padding: 0;
  }

  #header .navigation-container .navigation .navigation-more .navigation-menu .level-three ul {
    display: block;
    padding: 0;
  }

  #header .navigation-container .navigation .navigation-more .navigation-menu .level-three ul li {
    width: 100%;
  }

  #header .navigation-container .navigation .navigation-more .navigation-menu .level-three ul a {
    font-weight: 500;
  }

  #header .navigation-container .navigation .navigation-more .navigation-menu a {
    padding: .625rem 1.25rem;
    display: block;
    text-align: left;
    align-items: flex-start;
  }

  #header .navigation-container .navigation .navigation-more .navigation-menu a:focus,
  #header .navigation-container .navigation .navigation-more .navigation-menu a:hover {
    color: #141414;
  }

  #header .navigation-container .navigation li:last-child .navigation-menu {
    left: auto;
    right: 0;
  }

  #header .navigation-container .navigation .open .navigation-menu {
    display: block;
    opacity: 1;
  }

  #header .breadcrumbs {
    margin-bottom: -2.625rem;
  }

  .js-disabled #header .navigation-container .navigation .navigation-more:focus .navigation-menu,
  .js-disabled #header .navigation-container .navigation .navigation-more:hover .navigation-menu {
    display: block;
    opacity: 1;
  }

  .toolbar {
    display: none;
  }

  #footer .container {
    padding: 2.5rem 0;
    align-items: center;
    justify-content: space-between;
  }

  #footer .satelite {
    width: auto;
    order: 0;
  }
}

@media screen and (min-width:56.25rem) {
  .slick-prev {
    left: 1.25rem;
  }

  .slick-next {
    right: 1.25rem;
  }

  .slick-next,
  .slick-prev {
    margin-top: -1.25rem;
  }

  .slick-next .icon,
  .slick-prev .icon {
    width: 1.125rem;
    height: 1.875rem;
  }
}

@media screen and (min-width:50rem) {
  .row .multiple {
    padding-top: .25rem;
  }

  .row .multiple-horizontal {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .row .multiple-horizontal .group {
    width: 33.333%;
    padding-right: .625rem;
  }

  .voucher-help {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }

  .voucher-help div {
    padding-right: 1.25rem;
    flex-grow: 1;
  }

  .voucher-help img {
    max-width: 40%;
  }

  .mod-section.mod-hero .container {
    padding: 0 3.4375rem;
  }

  .mod-section.mod-hero .container h1,
  .mod-section.mod-hero .container h2 {
    font-size: 3rem;
  }

  .mod-section.mod-hero .container h1.long,
  .mod-section.mod-hero .container h2.long {
    font-size: 2.5rem;
  }

  .mod-section.mod-video .video.container {
    padding: 0 9.375rem;
  }

  .mod-section.mod-video .video.container.full-width {
    padding: 0;
  }
}

@media screen and (max-width:37.5rem) {
  .mod-section.mod-video+.mod-section .icon-section {
    -webkit-transform: translateX(-50%) scale(.7);
    transform: translateX(-50%) scale(.7);
  }
}

@media screen and (max-width:50rem) {
  .mod-section.mod-hero:after {
    display: none;
  }

  .mod-section {
    background-size: auto!important;
  }
}

@media screen and (min-width:31.25rem) {
  .row .ui.dropdown.multiple .label {
    float: left;
  }

  .mod-additional-recipes {
    margin: 0 -.625rem;
  }

  .mod-additional-recipes .recipe {
    width: 50%;
    float: left;
  }
}

@media screen and (min-width:43.75rem) {
  .mod-additional-recipes .recipe:first-child {
    height: 35rem;
    width: 50%;
  }

  .mod-additional-recipes .recipe:first-child .info h4 {
    font-size: 1.625rem;
  }

  .mod-additional-recipes .recipe:first-child .fluid-image img {
    max-width: 70rem;
    width: 35rem;
    height: 35rem;
  }
}

@media screen and (min-width:62.5rem) {
  .mod-additional-recipes .recipe {
    width: 33.333333%;
  }

  .mod-additional-recipes .recipe:first-child {
    height: 35rem;
    width: 50%;
  }

  .mod-additional-recipes .recipe:nth-child(2),
  .mod-additional-recipes .recipe:nth-child(3) {
    width: 50%;
  }

  .mod-additional-recipes .recipe:nth-child(2) .info h4,
  .mod-additional-recipes .recipe:nth-child(3) .info h4 {
    font-size: 1.375rem;
  }

  .mod-additional-recipes .recipe:nth-child(4) .info h4,
  .mod-additional-recipes .recipe:nth-child(5) .info h4,
  .mod-additional-recipes .recipe:nth-child(6) .info h4 {
    font-size: 1.125rem;
  }
}

@media screen and (min-width:37.5rem) {
  .mod-builder .copy-block.left.before,
  .mod-builder .copy-block.right.before {
    text-align: left;
  }

  .mod-builder .image.position-left {
    float: left;
    margin-right: 1.25rem;
    max-width: 48%;
  }

  .mod-builder .image.position-right {
    float: right;
    margin-left: 1.25rem;
    max-width: 48%;
  }
}

@media screen and (min-width:31.25rem) {
  .mod-components .mod-component {
    width: 50%;
  }
}

@media screen and (min-width:50rem) {
  table td,
  table th {
    padding: 1rem;
  }

  .mod-components .mod-component {
    width: 33.333333%;
  }

  .mod-insta-feed #feed-container .item {
    height: 15.3125rem;
  }
}

@media screen and (min-width:67.5rem) {
  .mod-insta-feed .slick-list {
    margin: 0 -1.25rem;
  }

  .mod-insta-feed .slick-list .item {
    padding: 0 1.25rem;
  }

  .mod-insta-feed .slick-next {
    right: -2.5rem;
  }

  .mod-insta-feed .slick-prev {
    left: -2.5rem;
  }
}

@media screen and (min-width:37.5rem) {
  .mod-panels {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
  }

  .mod-panels .panel {
    display: flex;
    flex-wrap: wrap;
    width: 48%;
  }
}

@media screen and (min-width:50rem) {
  .mod-panels .panel {
    width: 32%;
  }
}

@media screen and (min-width:37.5rem) {
  .col-2 .panel {
    width: 48%;
  }

  .col-2 .panel:nth-last-child(-n+2) {
    margin-bottom: 0;
  }

  .mod-recipe-filters {
    padding: 1.25rem;
  }

  .mod-recipe-filters .fieldset {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .mod-recipe-filters .fieldset .filters {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }

  .mod-recipe-filters .fieldset .filters .row {
    width: 100%;
  }

  .mod-recipe-filters .fieldset .filters .dietary,
  .mod-recipe-filters .fieldset .filters .ingredients {
    width: 50%;
  }

  .mod-recipe-filters .fieldset .filters .more,
  .mod-recipe-filters .fieldset .filters .variables {
    width: 100%;
  }

  .mod-recipe-filters .fieldset .btns,
  .mod-recipe-filters .fieldset .search {
    width: 40%;
    margin: 0 .625rem .625rem;
  }

  .mod-recipe-filters .fieldset .btns .btn,
  .mod-recipe-filters .fieldset .search .btn {
    margin: 0;
  }

  .mod-recipe-filters.open .fieldset .btns {
    width: 100%;
    margin: .625rem 0 0;
  }

  .mod-recipe-filters.open .fieldset .btns .btn {
    width: 40%;
    margin: 0 .625rem;
  }
}

@media screen and (min-width:56.25rem) {
  .mod-recipe-filters {
    padding: 1.875rem;
  }

  .mod-recipe-filters h2 {
    padding-bottom: .625rem;
  }

  .mod-recipe-filters .fieldset .filters {
    justify-content: space-between;
    padding-bottom: 1.25rem;
  }

  .mod-recipe-filters .fieldset .filters .dietary,
  .mod-recipe-filters .fieldset .filters .ingredients {
    width: 25%;
  }

  .mod-recipe-filters .fieldset .filters .dietary {
    margin-left: 2%;
  }

  .mod-recipe-filters .fieldset .filters .variables {
    width: 45%;
    margin-left: 3%;
  }

  .mod-recipe-filters .fieldset .filters .variables .field,
  .mod-recipe-filters .fieldset .filters .variables .multiple {
    margin-left: 2.5rem;
  }

  .mod-recipe-filters.open .btns {
    width: 100%;
    margin: .625rem 0 0;
  }

  .mod-recipe-filters.open .btns .btn {
    width: 40%;
    margin: 0 .625rem;
  }

  .mod-recipe-filters .more div {
    padding: 1.375rem;
    margin: -.625rem 0 0 -1.5625rem;
  }

  .mod-recipe-filters .more div .icon {
    width: 1.625rem;
    height: 1.625rem;
    bottom: -.625rem;
  }
}

@media screen and (min-width:40rem) {
  .mod-recipe-finder .options {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -.625rem;
  }

  .mod-recipe-finder .row {
    width: 50%;
    padding: 0 .625rem .625rem;
  }
}

@media screen and (min-width:56.25rem) {
  .mod-recipe-finder .row {
    width: 25%;
  }
}

@media screen and (min-width:43.75rem) {
  .divider:after,
  .divider:before {
    width: 46%;
  }
}

@media print {
@page {
    margin-top: 3.75rem;
}

  body {
    background: #fff;
    color: #323232;
  }

  #footer,
  #skip,
  #toolbar,
  .breadcrumbs,
  .findARecipe,
  .icon-large,
  .icon-section,
  .mod-share,
  nav {
    display: none!important;
  }

  svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: #66a03a;
  }

  #header {
    text-align: center;
    margin: 0 0 20px;
  }

  #header .logo,
  #header a,
  #header svg {
    width: 6.25rem;
    height: 6.25rem;
    margin: 0 auto;
  }

  #header .subscribe {
    display: none;
  }

  #content a {
    text-decoration: none;
    color: #323232;
  }

  #content a[href]:after {
    content: " (" attr(href) ")";
    color: #66a03a;
  }

  #content .mod-section,
  #content div,
  #content section {
    display: block;
    width: auto;
    max-width: none;
    margin: 0;
    padding: 0;
    float: none;
  }

  #content h1 {
    font-size: 24px;
  }

  #content h1,
  #content h2,
  #content h3,
  #content h4,
  #content h5,
  #content h6 {
    color: #66a03a;
    padding: 15px 0;
    margin: 0;
    text-transform: capitalize;
  }

  #content .mod-hero button,
  #content h1:after,
  #content h2:after,
  #content h3:after,
  #content h4:after,
  #content h5:after,
  #content h6:after {
    display: none;
  }

  #content p {
    padding: 0;
    margin: 0 0 10px;
  }

  #content img {
    display: block;
    max-height: 400px;
    width: auto;
    margin: 0 0 20px;
    position: static;
    left: 0;
    top: 0;
    -webkit-transform: translate(0,0);
    transform: translate(0,0);
    border-radius: 0;
  }

  #content ol,
  #content ul {
    list-style: outside;
    margin-left: 20px;
    padding: 0;
  }

  #content ol li,
  #content ul li {
    padding: 0;
    margin: 0 0 10px;
    border: none;
  }

  #content ol {
    list-style-type: decimal;
  }

  #content .description p {
    max-width: none;
  }

  #content .specifications {
    clear: both;
    padding: 20px 0;
  }

  #content .specifications .icon-circle {
    display: none;
  }

  #content .specifications h4,
  #content .specifications p {
    display: inline-block;
    padding: 0;
    margin: 0 5px 10px 0;
  }

  #content .specifications h4:after {
    content: ':';
  }

  #content .diet {
    clear: both;
    padding-bottom: 10px;
  }

  #content .diet h2 {
    color: #000;
    margin: 0 0 5px;
    padding: 0;
  }

  #content .diet ul {
    margin: 0;
  }

  #content .nutritional ul {
    padding: 0;
    margin: 0;
  }

  #content .nutritional ul strong {
    color: #323232;
    text-transform: capitalize;
  }

  #content .method img {
    max-height: 250px;
  }

  #content .try-frozen {
    display: block;
    font-weight: 700;
  }

  #content .recipe-inspiration,
  #content .related-recipes,
  #content .try-frozen .icon {
    display: none;
  }
}