  @charset "UTF-8";
/*!
IWInterface.css - https://www.intelliwidget.com
This file and all accompanying files (C) 2014-2020 Lilaea Media LLC except where noted. See license for details.
*/
.iwi-overlay {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.75);
  opacity: 0;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  display: none;
}
.iwi-overlay.iwi-overlay-active {
  opacity: 1;
  display: block;
}
.iwi-modal-container {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  max-height: 90vh;
  max-width: 90vw;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  background-color: #fff;
  padding: 2.5rem;
}
.iwi-modal-container.show {
  display: block;
  z-index: 10000;
}
.iwi-modal-container .close, .iwi-menupane .close {
  color: #000;
  position: absolute;
  top: 0;
  right: .5rem;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
  font-size: 1.5rem;
  padding: 0;
  margin: 0;
  cursor: pointer;
}
.iwi-tabs {
  display: block;
  list-style: none;
  padding: 0;
  margin: 0;
  border-bottom: 1px solid #ddd;
}
.iwi-tabs > * {
  margin: 0 .25rem -1px !important;
  display: inline-block;
}
.iwi-tabs > * > a {
  padding: .5rem;
  border: 1px solid #ddd;
  border-bottom: 1px solid transparent;
  display: block;
}
.iwi-tabs > * a.open {
  border-bottom: 1px solid #fff;
  ;
}
.iwi-tab-content > * {
  display: none;
  padding: 1rem;
}
.iwi-accordion-container {
  display: none;
  padding: 1rem;
  margin: 0;
}
.iwi-menupane {
  position: fixed;
  right: -100%;
  top: 0;
  z-index: 1000;
  background-color: #ddd;
  -webkit-transition: right .3s;
  transition: right .3s;
  width: 360px;
  padding: 30px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  height: 100vh;
}
.iwi-menupane.show {
  right: 0;
}
#iwi_bodypane {
  right: 0;
  -webkit-transition: right .3s;
  transition: right .3s;
  width: 100vw;
}
#iwi_bodypane.show {
  right: 300px;
}